diff options
author | Rod Vagg <rod@vagg.org> | 2015-01-11 05:49:45 +0000 |
---|---|---|
committer | Rod Vagg <rod@vagg.org> | 2015-01-13 09:44:34 +1100 |
commit | 43e4c906e2272e2eee94ebb4c36d0ada0ae75f2a (patch) | |
tree | 86737610172185006e3188795775104abdc607a6 /src/res | |
parent | dd260d21521082fdc6d70da851e826b440b46b44 (diff) | |
download | node-new-43e4c906e2272e2eee94ebb4c36d0ada0ae75f2a.tar.gz |
src: rename node to io.js for Windows installer
* quote "NODE_VERSION_STRING" in node.rc to allow for complex version
strings
* change user-facing strings
* make sure .bat files are crlf
PR-URL: https://github.com/iojs/io.js/pull/291
Reviewed-By: Bert Belder <bertbelder@gmail.com>
Reviewed-By: Nikolai Vavilov <vvnicholas@gmail.com>
Diffstat (limited to 'src/res')
-rw-r--r-- | src/res/node.rc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/res/node.rc b/src/res/node.rc index 48559ab5c1..dd0d53f255 100644 --- a/src/res/node.rc +++ b/src/res/node.rc @@ -50,14 +50,14 @@ BEGIN BEGIN BLOCK "040904b0" BEGIN - VALUE "CompanyName", "Joyent, Inc" - VALUE "ProductName", "Node.js" - VALUE "FileDescription", "Node.js: Evented I/O for V8 JavaScript" - VALUE "FileVersion", NODE_VERSION_STRING - VALUE "ProductVersion", NODE_VERSION_STRING + VALUE "CompanyName", "io.js" + VALUE "ProductName", "io.js" + VALUE "FileDescription", "io.js: Server-side JavaScript" + VALUE "FileVersion", "NODE_VERSION_STRING" + VALUE "ProductVersion", "NODE_VERSION_STRING" VALUE "OriginalFilename", "iojs.exe" - VALUE "InternalName", "node" - VALUE "LegalCopyright", "Copyright Joyent, Inc. and other Node contributors. MIT license." + VALUE "InternalName", "iojs" + VALUE "LegalCopyright", "Copyright io.js contributors. MIT license." END END BLOCK "VarFileInfo" |