diff options
author | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 23:08:57 +0300 |
---|---|---|
committer | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 23:08:57 +0300 |
commit | 726b81b19251674e149ccfbb1abacbd837fc6db0 (patch) | |
tree | fbdbb227dc01357eb76e8222d76185bc124c5ca6 /node_modules/rcedit/README.md | |
parent | 34f0890e175698940d49238097579f44e4d78c89 (diff) | |
download | FlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.gz FlashRunner-726b81b19251674e149ccfbb1abacbd837fc6db0.tar.zst |
Removed files that should not have been included in git
Diffstat (limited to 'node_modules/rcedit/README.md')
-rw-r--r-- | node_modules/rcedit/README.md | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/node_modules/rcedit/README.md b/node_modules/rcedit/README.md deleted file mode 100644 index eee2ce7..0000000 --- a/node_modules/rcedit/README.md +++ /dev/null @@ -1,43 +0,0 @@ -# node-rcedit - -[](https://circleci.com/gh/electron/node-rcedit/tree/master) - -Node module to edit resources of Windows executables. - -## Requirements - -On platforms other than Windows, you will need to have [Wine](https://winehq.org) -1.6 or later installed and in the system path. - -## Usage - -```javascript -const rcedit = require('rcedit') -``` - -### `async rcedit(exePath, options)` - -`exePath` is the path to the Windows executable to be modified. - -`options` is an object that can contain following fields: - -* `version-string` - An object containing properties to change the `exePath`'s - version string. -* `file-version` - File's version to change to. -* `product-version` - Product's version to change to. -* `icon` - Path to the icon file (`.ico`) to set as the `exePath`'s default icon. -* `requested-execution-level` - Requested execution level to change to, must be - either `asInvoker`, `highestAvailable`, or `requireAdministrator`. See - [here](https://msdn.microsoft.com/en-us/library/6ad1fshk.aspx#Anchor_9) for - more details. -* `application-manifest` - String path to a local manifest file to use. - See [here](https://msdn.microsoft.com/en-us/library/windows/desktop/aa374191.aspx) - for more details. - -Returns a `Promise` with no value. - -## Building - -* Clone the repository -* Run `npm install` -* Run `npm test` to run the tests |