diff --git a/.gitattributes b/.gitattributes
index a185d697627..73e2881a3ee 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1 +1,2 @@
test/fixtures/* -text
+*.bat text eol=crlf
diff --git a/src/res/node.rc b/src/res/node.rc
index 48559ab5c1f..dd0d53f255a 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"
diff --git a/tools/msvs/msi/nodemsi.wixproj b/tools/msvs/msi/nodemsi.wixproj
index 1059bccb22d..f2caa1bb91b 100644
--- a/tools/msvs/msi/nodemsi.wixproj
+++ b/tools/msvs/msi/nodemsi.wixproj
@@ -6,7 +6,7 @@
3.5
{1d808ff0-b5a9-4be9-859d-b334b6f48be2}
2.0
- node-v$(NodeVersion)-$(Platform)
+ iojs-v$(NodeVersion)-$(Platform)
Package
True
$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets
diff --git a/tools/msvs/msi/product.wxs b/tools/msvs/msi/product.wxs
index ea14943772c..b05b04c8455 100755
--- a/tools/msvs/msi/product.wxs
+++ b/tools/msvs/msi/product.wxs
@@ -2,11 +2,11 @@
-
-
-
+
+
+
-
+
@@ -23,11 +23,11 @@
+ DowngradeErrorMessage="A later version of io.js is already installed. Setup will now exit."/>
-
+
@@ -40,8 +40,8 @@
@@ -52,14 +52,14 @@
+ Description="Installs support for io.js-specific performance counters.">
+ Description="Installs support for event tracing (ETW) events generated by io.js.">
@@ -67,7 +67,7 @@
+ Description="Install npm, the recommended package manager for io.js.">
@@ -78,18 +78,18 @@
+ Description="Add start menu entries that link the the online documentation for io.js $(var.ProductVersion) and the io.js website.">
+ Description="Add io.js, npm, and modules that were globally installed by npm to the PATH environment variable.">
+ Title="io.js and npm"
+ Description="Add io.js and npm (if installed) to the PATH environment variable.">
@@ -103,11 +103,11 @@
-
+
@@ -152,17 +152,17 @@
Type="string"
Value="$(var.ProductVersion)"/>
@@ -293,7 +293,7 @@
NOT Installed
1
-
+
diff --git a/tools/msvs/nodevars.bat b/tools/msvs/nodevars.bat
index 2941b81be4f..2b7915662ec 100644
--- a/tools/msvs/nodevars.bat
+++ b/tools/msvs/nodevars.bat
@@ -1,24 +1,24 @@
@echo off
-rem Ensure this Node.js and npm are first in the PATH
+rem Ensure this io.js and npm are first in the PATH
set PATH=%APPDATA%\npm;%~dp0;%PATH%
setlocal enabledelayedexpansion
pushd "%~dp0"
-rem Figure out the node version.
+rem Figure out the io.js version.
set print_version=.\iojs.exe -p -e "process.versions.node + ' (' + process.arch + ')'"
for /F "usebackq delims=" %%v in (`%print_version%`) do set version=%%v
rem Print message.
if exist npm.cmd (
- echo Your environment has been set up for using Node.js !version! and npm.
+ echo Your environment has been set up for using io.js !version! and npm.
) else (
- echo Your environment has been set up for using Node.js !version!.
+ echo Your environment has been set up for using io.js !version!.
)
popd
endlocal
-rem If we're in the node.js directory, change to the user's home dir.
+rem If we're in the io.js directory, change to the user's home dir.
if "%CD%\"=="%~dp0" cd /d "%HOMEDRIVE%%HOMEPATH%"
diff --git a/vcbuild.bat b/vcbuild.bat
index 5c1262d5390..8e79d5f980d 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -130,7 +130,7 @@ if errorlevel 1 goto exit
@rem Skip signing if the `nosign` option was specified.
if defined nosign goto licensertf
-signtool sign /a /d "Node.js" /t http://timestamp.globalsign.com/scripts/timestamp.dll Release\iojs.exe
+signtool sign /a /d "io.js" /t http://timestamp.globalsign.com/scripts/timestamp.dll Release\iojs.exe
if errorlevel 1 echo Failed to sign exe&goto exit
:licensertf
@@ -149,12 +149,12 @@ if not defined NIGHTLY goto msibuild
set NODE_VERSION=%NODE_VERSION%.%NIGHTLY%
:msibuild
-echo Building node-%NODE_VERSION%
+echo Building iojs-%NODE_VERSION%
msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Clean,Build /p:Configuration=%config% /p:Platform=%msiplatform% /p:NodeVersion=%NODE_VERSION% %noetw_msi_arg% %noperfctr_msi_arg% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
if errorlevel 1 goto exit
if defined nosign goto run
-signtool sign /a /d "Node.js" /t http://timestamp.globalsign.com/scripts/timestamp.dll Release\node-v%NODE_VERSION%-%msiplatform%.msi
+signtool sign /a /d "io.js" /t http://timestamp.globalsign.com/scripts/timestamp.dll Release\iojs-v%NODE_VERSION%-%msiplatform%.msi
if errorlevel 1 echo Failed to sign msi&goto exit
:run
@@ -218,5 +218,5 @@ rem ***************
:getnodeversion
set NODE_VERSION=
for /F "usebackq tokens=*" %%i in (`python "%~dp0tools\getnodeversion.py"`) do set NODE_VERSION=%%i
-if not defined NODE_VERSION echo Cannot determine current version of node.js & exit /b 1
+if not defined NODE_VERSION echo Cannot determine current version of io.js & exit /b 1
goto :EOF