summaryrefslogtreecommitdiff
path: root/src/res
AgeCommit message (Collapse)Author
2018-09-19src: deprecate global COUNTER_* and remove perfctrJames M Snell
To support Performance Counters on Windows, a number of global `COUNTER_` methods were added that are undocumented and really only intended to be used internally by Node.js. Unfortunately, the perfctr support apparently hasn't even worked for quite a while and no one has even complained. This removes the perfctr support and replaces the global functions with deprecated non-ops for now, with the intent of removing those outright in the next major release cycle. PR-URL: https://github.com/nodejs/node/pull/22485 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
2017-03-10meta: restore original copyright headerJames M Snell
A prior io.js era commit inappropriately removed the original copyright statements from the source. This restores those in any files still remaining from that edit. Ref: https://github.com/nodejs/TSC/issues/174 Ref: https://github.com/nodejs/node/pull/10599 PR-URL: https://github.com/nodejs/node/pull/10155 Note: This PR was required, reviewed-by and approved by the Node.js Foundation Legal Committee and the TSC. There is no `Approved-By:` meta data.
2016-03-31etw: add event messagesJoão Reis
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> PR-URL: https://github.com/nodejs/node/pull/5936
2015-10-01build,win: fix node.exe resource versionJoão Reis
When MSBuild invokes rc.exe, it passes NODE_TAG unstringified, but passes it correctly to cl.exe. Hence, this workaround was made to apply only to the resource file. Fixes: https://github.com/nodejs/node/issues/2963 PR-URL: https://github.com/nodejs/node/pull/3053 Reviewed-By: Alexis Campailla <orangemocha@nodejs.org> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2015-08-23installer: fix installers for node.js renameFrederic Hemberger
This commit completes the io.js to Node.js rename in the Windows installer. Fixes: https://github.com/nodejs/node/issues/2418 PR-URL: https://github.com/nodejs/node/pull/2367 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
2015-08-23node: rename from io.js to nodecjihrig
This commit replaces instances of io.js with Node.js, based on the recent convergence. There are some remaining instances of io.js, related to build and the installer. Fixes: https://github.com/nodejs/node/issues/2361 PR-URL: https://github.com/nodejs/node/pull/2367 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
2015-08-09build: update manifest to include Windows 10Lucien Greathouse
Windows 10 wasn't listed in the executable manifest. This caused problems with trying to detect Windows 10 via `os.release()`. PR-URL: https://github.com/nodejs/io.js/pull/2332 Reviewed-By: Roman Reiss <me@silverwind.io>
2015-02-28install: new performance counters provider guidRussell Dempsey
The io.js performance counters manifest conflicts with the one from node, causing installer failures. Change the GUID in the io.js performance counters manifest file to resolve the conflicts. Fixes: https://github.com/iojs/io.js/issues/524 PR: https://github.com/iojs/io.js/pull/1001 Reviewed-by: Bert Belder <bertbelder@gmail.com>
2015-01-14win: use the new io.js iconBert Belder
PR: https://github.com/iojs/io.js/pull/356 Reviewed-by: Rod Vagg <rod@vagg.com>
2015-01-14win: update icon for io.jsBert Belder
PR: https://github.com/iojs/io.js/pull/354 Reviewed-by: Rod Vagg <rod@vagg.com>
2015-01-12Remove excessive copyright/license boilerplateisaacs
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
2015-01-13src: rename node to io.js for Windows installerRod Vagg
* 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>
2015-01-08win,tracing: node -> iojs in perfctr/etw manifestsBert Belder
PR-URL: https://github.com/iojs/io.js/pull/263 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-01-08win,src: node -> iojs in executable manifestBert Belder
PR-URL: https://github.com/iojs/io.js/pull/263 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2014-11-03windows: fix process description to say "Node.js"Rod Vagg
Newer incarnations of the task manager only show the description, not even the product name. PR-URL: https://github.com/node-forward/node/pull/46 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuisl.nl>
2014-09-17win: manifest node.exe for Windows 8.1Alexis Campailla
Adding a compatibility section to node.exe embedded manifest so that Node is declared explicitly compatible with Windows 8.1. Required so that os.release() can return the correct version on Windows 8.1. See http://msdn.microsoft.com/en-us/library/windows/desktop/ms724451(v=vs.85).aspx Reviewed-by: Trevor Norris <trev.norris@gmail.com>
2013-01-11windows: add support for '_Total' perf countersScott Blomquist
2012-11-21windows: add tracing with performance countersScott Blomquist
Patch by Henry Rawas and Scott Blomquist.
2012-11-01windows: generate ETW events to track v8 compiled code positionsScott Blomquist
Patch by Henry Rawas and Scott Blomquist.
2012-06-25windows: remove 256x256 version of the iconBert Belder
Nobody needs that anyway, it's just eating up space.
2012-06-19windows: update iconBert Belder
2012-06-13Windows: Enable ETW events.Igor Zinkovsky
This commit enables ETW events to be fired on Windows for existing DTrace probes. ETW instrumentation is enabled by default. It is possible to build node.exe without ETW instrumentation by using --without-etw option with configure script.
2012-06-13Move resource files to src/res.Bert Belder
tools/msvs/res is not an appropriate place.