How to use rcedit - 2 common examples

To help you get started, we’ve selected a few rcedit examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github bluedaniel / Kakapo-app / tools / installer-win.js View on Github external
await new Promise(resolve => {
    console.log(`[${new Date()}] Starting winRcedit ...`);
    rcedit(
      'release/win32/Kakapo-win32-x64/Kakapo.exe',
      {
        icon: 'node_modules/kakapo-assets/images/desktop/app.ico',
        'file-version': packagejson.version,
        'product-version': packagejson.version,
        'version-string': {
          CompanyName: 'Kakapo',
          ProductVersion: packagejson.version,
          ProductName: 'Kakapo',
          FileDescription: 'Kakapo',
          InternalName: 'Kakapo.exe',
          OriginalFilename: 'Kakapo.exe',
        },
      },
      () => resolve(console.log(`[${new Date()}] Finished winRcedit`))
    );
github bluedaniel / Kakapo-app / gulpfile.babel.js / tasks / installer-win.js View on Github external
gulp.task("win-rcedit", cb => rcedit(config.tempDirectory + "/win32/Kakapo-win32-x64/Kakapo.exe", rceditOpts, cb));

rcedit

Node module to edit resources of exe

MIT
Latest version published 6 months ago

Package Health Score

82 / 100
Full package analysis

Popular rcedit functions