UI: Remove unused shield icon from NameLayer#3368
UI: Remove unused shield icon from NameLayer#3368PGrayCS wants to merge 5 commits intoopenfrontio:mainfrom
Conversation
|
|
WalkthroughRemoved shield icon support from the game's NameLayer and added formatting automation plus a collection of Node.js Windows launcher scripts, documentation, and assorted CI/run metadata files. Changes include UI code deletion, a new GitHub Actions fmt workflow, many node-v20.11.1-win-x64 scripts/docs, and run logs. Changes
Estimated code review effort🎯 4 (Complex) | ⏱️ ~45 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
looks like prettier + eslint failing |
|
I am tired. Unsure why this prettier error keeps happening. Gonna come back to this :) |
There was a problem hiding this comment.
Actionable comments posted: 11
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In @.github/workflows/fmt.yml:
- Around line 1-19: The Auto Format GitHub Actions workflow named "format" is
problematic (it runs npx prettier on a single file, commits as
github-actions[bot], and can retrigger itself), so delete this workflow file
entirely; remove the job "format" and its steps that checkout, setup-node, run
npm ci/install, run prettier on src/client/graphics/layers/NameLayer.ts, and the
git commit/push steps, and instead rely on the existing npm run format,
pre-commit lint-staged hooks, and the CI prettier check already present in
ci.yml.
In `@node-v20.11.1-win-x64/CHANGELOG.md`:
- Around line 1-1378: The PR accidentally includes a large vendored Node.js
changelog (CHANGELOG.md) unrelated to the NameLayer.ts cleanup; remove this file
from the branch/PR by deleting the file from the commit set (e.g., git rm
--cached or git rm and commit/rebase to drop the change), force-push the branch
to update the PR, and ensure no other commits reintroduce
node-v20.11.1-win-x64/CHANGELOG.md; if you need to keep it locally, leave it out
of the repo or add an appropriate ignore rule so it’s not re-added.
- Around line 324-326: The changelog entries for "## 2015-09-08, Version 4.0.0
(Stable), `@rvagg`" and the other affected entry for "Version 0.1.5" have
incorrect visible target text pointing to "CHANGELOG_V6.md#6.0.0"; update the
visible link text to match the actual target version and anchor (e.g., change
the visible text to "Moved to doc/changelogs/CHANGELOG_V4.md#4.0.0" for the
4.0.0 entry and to the correct "CHANGELOG_V1.md#0.1.5" or the appropriate
file/anchor for 0.1.5), ensuring the anchor fragment and filename in the link
text match the link URL and the version header names (reference the header line
"## 2015-09-08, Version 4.0.0 (Stable), `@rvagg`" and the similar "Version 0.1.5"
entry to locate and correct the link text).
In `@node-v20.11.1-win-x64/corepack`:
- Around line 1-12: Remove the committed vendored Node.js distribution directory
`node-v20.11.1-win-x64/` from the PR (delete the directory and its files from
the branch), and add `node-v20.11.1-win-x64/` to .gitignore so it is not
re-added; ensure you do not alter unrelated files (the shield icon changes) and
verify no build scripts depend on the checked-in binary before removing.
In `@node-v20.11.1-win-x64/corepack.cmd`:
- Around line 1-7: This file (corepack.cmd in node-v20.11.1-win-x64) is a
vendored Node.js distribution file and should be removed from the repo: delete
corepack.cmd (and the entire node-v20.11.1-win-x64 folder if all are vendored),
remove it from the index (git rm or git rm --cached if you need to preserve
local copy) and commit the removal, and add a rule to .gitignore (e.g., ignore
node-v20.11.1-win-x64/* or the pattern used for vendored node distributions) to
prevent re-adding; if you must keep any Windows scripts, ensure line endings are
normalized (use .gitattributes to enforce CRLF for *.cmd) but the preferred fix
is to remove the vendored distribution entirely.
In `@node-v20.11.1-win-x64/install_tools.bat`:
- Around line 1-55: This file (install_tools.bat) is a vendored Node
distribution script and must be removed from the repo; delete the file (and do
not re-add the node-v20.11.1-win-x64/ distribution directory) and update
.gitignore or remove the entire distribution artifact from the commit. Also
convert the script's line endings from Unix LF to Windows CRLF (or add a
.gitattributes entry and set core.autocrlf) so the PowerShell Start-Process
invocation ("%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" ...
iex ((New-Object
System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) ...)
will run correctly on Windows.
In `@node-v20.11.1-win-x64/nodevars.bat`:
- Around line 1-24: Remove the accidentally committed Node.js binary
distribution directory node-v20.11.1-win-x64 (including nodevars.bat and all
included binaries) from the PR and repository history, and add an entry to
.gitignore to exclude future binary distributions (e.g., a pattern like
node-v*/); ensure the commit only contains the intended changes to NameLayer.ts
and not the binary files, and if necessary use git rm --cached or recreate the
branch to purge those files from the commit history.
In `@node-v20.11.1-win-x64/npm.cmd`:
- Around line 1-19: This is a vendored Windows batch from Node distribution
(contains symbols like NODE_EXE, NPM_CLI_JS and the npm-cli invocation) that
should be removed from the repo; delete this npm.cmd file and remove any
accidental Node distribution artifacts (and ensure
corepack/node-v20.11.1-win-x64 is not committed) or add appropriate entries to
ignore them, and if for some reason you must keep it, convert line endings to
CRLF and commit with normalized EOL so the batch parser won’t fail (ensure the
file is removed from the index with git rm --cached if you add it to
.gitignore).
In `@node-v20.11.1-win-x64/npx.cmd`:
- Around line 1-20: Remove the accidentally committed Node.js distribution
directory node-v20.11.1-win-x64 and its tracked files (e.g., npx.cmd shown in
the diff) from the repo: delete the entire node-v20.11.1-win-x64 directory, git
rm all files under it, commit that removal, and ensure node-v20.11.1-win-x64 is
added to .gitignore so future commits won’t reintroduce the distribution; if
this commit has already been pushed and you need to purge the binary from
history, follow your repo policy to rewrite history (git filter-repo or BFG) and
coordinate with the team.
In `@runs.json`:
- Line 1: The runs.json file is an accidental commit containing CI run data;
remove it from the PR by deleting runs.json from the repository (or git rm
--cached runs.json if you need to keep a local copy), add an entry for runs.json
to .gitignore to prevent future commits, and commit the change with a clear
message (e.g., "remove accidental runs.json and ignore it"); then push the
branch so the PR no longer includes this artifact.
In `@runs.txt`:
- Around line 1-20: Remove the accidentally committed CI/CD activity log
"runs.txt" from the PR: delete the file from the branch (remove it from the
commit that added it or create a new commit that deletes it), and add an entry
"runs.txt" to .gitignore (update the existing .gitignore or create one) so it
won’t be re-added; ensure the branch history or the PR no longer contains the
file (if necessary, amend or revert the commit that introduced runs.txt or use
git rm --cached to stop tracking before deleting) and push the cleanup commit.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 5d0a296d-435d-4ed3-9c67-db2ffb54ad44
⛔ Files ignored due to path filters (2)
node-v20.11.1-win-x64/node.exeis excluded by!**/*.exenode.zipis excluded by!**/*.zip
📒 Files selected for processing (16)
.github/workflows/fmt.ymlnode-v20.11.1-win-x64/CHANGELOG.mdnode-v20.11.1-win-x64/LICENSEnode-v20.11.1-win-x64/README.mdnode-v20.11.1-win-x64/corepacknode-v20.11.1-win-x64/corepack.cmdnode-v20.11.1-win-x64/install_tools.batnode-v20.11.1-win-x64/nodevars.batnode-v20.11.1-win-x64/npmnode-v20.11.1-win-x64/npm.cmdnode-v20.11.1-win-x64/npxnode-v20.11.1-win-x64/npx.cmdpr_body.mdruns.jsonruns.txtsrc/client/graphics/layers/NameLayer.ts
| name: Auto Format | ||
| on: [push] | ||
| jobs: | ||
| format: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ github.head_ref || github.ref_name }} | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 20 | ||
| - run: npm ci --ignore-scripts || npm install --ignore-scripts | ||
| - run: npx prettier --write src/client/graphics/layers/NameLayer.ts | ||
| - run: | | ||
| git config user.name "github-actions[bot]" | ||
| git config user.email "github-actions[bot]@users.noreply.github.com" | ||
| git commit -a -m "Auto-format" || true | ||
| git push |
There was a problem hiding this comment.
This workflow has several problems and should be removed.
-
Infinite loop risk: Pushing commits triggers more pushes. The
github-actions[bot]commits will trigger this workflow again. You needif: github.actor != 'github-actions[bot]'or similar guard, but even then this pattern is fragile. -
Only formats one file: Hardcoding
NameLayer.tsdefeats the purpose. The repo already hasnpm run formatwhich formats everything. -
Conflicts with existing CI: The CI workflow at
.github/workflows/ci.ymlalready runsnpx prettier --check .(Lines 62-73). Auto-committing formatting changes after CI passes creates race conditions. -
Duplicates existing tooling: The
package.jsonalready has lint-staged with Prettier on pre-commit. Running formatting locally before push is the correct approach.
Instead of this workflow, please run npm run format locally before pushing, or configure your editor to format on save.
Recommended action
-name: Auto Format
-on: [push]
-jobs:
- format:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- with:
- ref: ${{ github.head_ref || github.ref_name }}
- - uses: actions/setup-node@v4
- with:
- node-version: 20
- - run: npm ci --ignore-scripts || npm install --ignore-scripts
- - run: npx prettier --write src/client/graphics/layers/NameLayer.ts
- - run: |
- git config user.name "github-actions[bot]"
- git config user.email "github-actions[bot]@users.noreply.github.com"
- git commit -a -m "Auto-format" || true
- git pushDelete this file entirely and run npm run format locally instead.
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| name: Auto Format | |
| on: [push] | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.head_ref || github.ref_name }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - run: npm ci --ignore-scripts || npm install --ignore-scripts | |
| - run: npx prettier --write src/client/graphics/layers/NameLayer.ts | |
| - run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git commit -a -m "Auto-format" || true | |
| git push |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In @.github/workflows/fmt.yml around lines 1 - 19, The Auto Format GitHub
Actions workflow named "format" is problematic (it runs npx prettier on a single
file, commits as github-actions[bot], and can retrigger itself), so delete this
workflow file entirely; remove the job "format" and its steps that checkout,
setup-node, run npm ci/install, run prettier on
src/client/graphics/layers/NameLayer.ts, and the git commit/push steps, and
instead rely on the existing npm run format, pre-commit lint-staged hooks, and
the CI prettier check already present in ci.yml.
| # Node.js Changelog | ||
|
|
||
| Select a Node.js version below to view the changelog history: | ||
|
|
||
| * [Node.js 20](doc/changelogs/CHANGELOG_V20.md) **Long Term Support** | ||
| * [Node.js 19](doc/changelogs/CHANGELOG_V19.md) End-of-Life | ||
| * [Node.js 18](doc/changelogs/CHANGELOG_V18.md) Long Term Support | ||
| * [Node.js 17](doc/changelogs/CHANGELOG_V17.md) End-of-Life | ||
| * [Node.js 16](doc/changelogs/CHANGELOG_V16.md) End-of-Life | ||
| * [Node.js 15](doc/changelogs/CHANGELOG_V15.md) End-of-Life | ||
| * [Node.js 14](doc/changelogs/CHANGELOG_V14.md) End-of-Life | ||
| * [Node.js 13](doc/changelogs/CHANGELOG_V13.md) End-of-Life | ||
| * [Node.js 12](doc/changelogs/CHANGELOG_V12.md) End-of-Life | ||
| * [Node.js 11](doc/changelogs/CHANGELOG_V11.md) End-of-Life | ||
| * [Node.js 10](doc/changelogs/CHANGELOG_V10.md) End-of-Life | ||
| * [Node.js 9](doc/changelogs/CHANGELOG_V9.md) End-of-Life | ||
| * [Node.js 8](doc/changelogs/CHANGELOG_V8.md) End-of-Life | ||
| * [Node.js 7](doc/changelogs/CHANGELOG_V7.md) End-of-Life | ||
| * [Node.js 6](doc/changelogs/CHANGELOG_V6.md) End-of-Life | ||
| * [Node.js 5](doc/changelogs/CHANGELOG_V5.md) End-of-Life | ||
| * [Node.js 4](doc/changelogs/CHANGELOG_V4.md) End-of-Life | ||
| * [io.js](doc/changelogs/CHANGELOG_IOJS.md) End-of-Life | ||
| * [Node.js 0.12](doc/changelogs/CHANGELOG_V012.md) End-of-Life | ||
| * [Node.js 0.10](doc/changelogs/CHANGELOG_V010.md) End-of-Life | ||
| * [Archive](doc/changelogs/CHANGELOG_ARCHIVE.md) | ||
|
|
||
| Please use the following table to find the changelog for a specific Node.js | ||
| release. | ||
|
|
||
| <table> | ||
| <tr> | ||
| <th title="LTS Until 2026-04"><a href="doc/changelogs/CHANGELOG_V20.md">20</a> (LTS)</th> | ||
| <th title="LTS Until 2025-04"><a href="doc/changelogs/CHANGELOG_V18.md">18</a> (LTS)</th> | ||
| <th title="LTS Until 2023-09"><a href="doc/changelogs/CHANGELOG_V16.md">16</a> (LTS)</th> | ||
| </tr> | ||
| <tr> | ||
| <td valign="top"> | ||
| <b><a href="doc/changelogs/CHANGELOG_V20.md#20.11.1">20.11.1</a></b><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.11.0">20.11.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.10.0">20.10.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.9.0">20.9.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.8.1">20.8.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.8.0">20.8.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.7.0">20.7.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.6.1">20.6.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.6.0">20.6.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.5.1">20.5.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.5.0">20.5.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.4.0">20.4.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.3.1">20.3.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.3.0">20.3.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.2.0">20.2.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.1.0">20.1.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V20.md#20.0.0">20.0.0</a><br/> | ||
| </td> | ||
| <td valign="top"> | ||
| <b><a href="doc/changelogs/CHANGELOG_V18.md#18.15.0">18.15.0</a></b><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.14.2">18.14.2</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.14.1">18.14.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.14.0">18.14.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.13.0">18.13.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.12.1">18.12.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.12.0">18.12.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.11.0">18.11.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.10.0">18.10.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.9.1">18.9.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.9.0">18.9.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.8.0">18.8.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.7.0">18.7.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.6.0">18.6.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.5.0">18.5.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.4.0">18.4.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.3.0">18.3.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.2.0">18.2.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.1.0">18.1.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V18.md#18.0.0">18.0.0</a><br/> | ||
| </td> | ||
| <td valign="top"> | ||
| <b><a href="doc/changelogs/CHANGELOG_V16.md#16.20.0">16.20.0</a></b><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.19.1">16.19.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.19.0">16.19.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.18.1">16.18.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.18.0">16.18.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.17.1">16.17.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.17.0">16.17.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.16.0">16.16.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.15.1">16.15.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.15.0">16.15.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.14.2">16.14.2</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.14.1">16.14.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.14.0">16.14.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.13.2">16.13.2</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.13.1">16.13.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.13.0">16.13.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.12.0">16.12.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.11.1">16.11.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.11.0">16.11.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.10.0">16.10.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.9.1">16.9.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.9.0">16.9.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.8.0">16.8.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.7.0">16.7.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.6.2">16.6.2</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.6.1">16.6.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.6.0">16.6.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.5.0">16.5.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.4.2">16.4.2</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.4.1">16.4.1</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.4.0">16.4.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.3.0">16.3.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.2.0">16.2.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.1.0">16.1.0</a><br/> | ||
| <a href="doc/changelogs/CHANGELOG_V16.md#16.0.0">16.0.0</a><br/> | ||
| </td> | ||
| </tr> | ||
| </table> | ||
|
|
||
| ## Notes | ||
|
|
||
| * The [Node.js Long Term Support plan](https://github.com/nodejs/Release) covers | ||
| LTS releases. | ||
| * Release versions in **bold** text are the most recent supported releases. | ||
|
|
||
| *** | ||
|
|
||
| *** | ||
|
|
||
| ## 2016-05-06, Version 0.12.14 (Maintenance), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.14">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.14</a>. | ||
|
|
||
| ## 2016-05-06, Version 0.10.45 (Maintenance), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.45">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.45</a>. | ||
|
|
||
| ## 2016-05-05, Version 6.1.0 (Current), @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V6.md#6.1.0">Moved to doc/changelogs/CHANGELOG\_V6.md#6.1.0</a>. | ||
|
|
||
| ## 2016-05-05, Version 5.11.1 (Stable), @evanlucas | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.11.1">Moved to doc/changelogs/CHANGELOG\_V5.md#5.11.1</a>. | ||
|
|
||
| ## 2016-05-05, Version 4.4.4 'Argon' (LTS), @thealphanerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.4.4">Moved to doc/changelogs/CHANGELOG\_V4.md#4.4.4</a>. | ||
|
|
||
| ## 2016-04-26, Version 6.0.0 (Current), @jasnell | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V6.md#6.0.0">Moved to doc/changelogs/CHANGELOG\_V6.md#6.0.0</a>. | ||
|
|
||
| ## 2016-04-20, Version 5.11.0 (Stable), @thealphanerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.11.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.11.0</a>. | ||
|
|
||
| ## 2016-04-05, Version 5.10.1 (Stable), @thealphanerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.10.1">Moved to doc/changelogs/CHANGELOG\_V5.md#5.10.1</a>. | ||
|
|
||
| ## 2016-03-31, Version 0.10.44 (Maintenance), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.44">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.44</a>. | ||
|
|
||
| ## 2016-03-31, Version 5.10.0 (Stable), @evanlucas | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.10.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.10.0</a>. | ||
|
|
||
| ## 2016-03-31, Version 4.4.2 'Argon' (LTS), @thealphanerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.4.2">Moved to doc/changelogs/CHANGELOG\_V4.md#4.4.2</a>. | ||
|
|
||
| ## 2016-03-31, Version 0.12.13 (LTS), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.13">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.13</a>. | ||
|
|
||
| ## 2016-03-23, Version 5.9.1 (Stable), @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.9.1">Moved to doc/changelogs/CHANGELOG\_V5.md#5.9.1</a>. | ||
|
|
||
| ## 2016-03-22, Version 4.4.1 'Argon' (LTS), @thealphanerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.4.1">Moved to doc/changelogs/CHANGELOG\_V4.md#4.4.1</a>. | ||
|
|
||
| ## 2016-03-16, Version 5.9.0 (Stable), @evanlucas | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.9.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.9.0</a>. | ||
|
|
||
| ## 2016-03-08, Version 5.8.0 (Stable), @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.8.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.8.0</a>. | ||
|
|
||
| ## 2016-03-08, Version 4.4.0 'Argon' (LTS), @thealphanerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.4.0">Moved to doc/changelogs/CHANGELOG\_V4.md#4.4.0</a>. | ||
|
|
||
| ## 2016-03-08, Version 0.12.12 (LTS), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.12">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.12</a>. | ||
|
|
||
| ## 2016-03-03, Version 0.12.11 (LTS), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.11">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.11</a>. | ||
|
|
||
| ## 2016-03-02, Version 5.7.1 (Stable), @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.7.1">Moved to doc/changelogs/CHANGELOG\_V5.md#5.7.1</a>. | ||
|
|
||
| ## 2016-03-02, Version 4.3.2 'Argon' (LTS), @thealphanerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.3.2">Moved to doc/changelogs/CHANGELOG\_V4.md#4.3.2</a>. | ||
|
|
||
| ## 2016-02-23, Version 5.7.0 (Stable), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.7.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.7.0</a>. | ||
|
|
||
| ## 2016-02-16, Version 4.3.1 'Argon' (LTS), @thealphanerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.3.1">Moved to doc/changelogs/CHANGELOG\_V4.md#4.3.1</a>. | ||
|
|
||
| ## 2016-02-09, Version 5.6.0 (Stable), @jasnell | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.6.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.6.0</a>. | ||
|
|
||
| ## 2016-02-09, Version 4.3.0 'Argon' (LTS), @jasnell | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.3.0">Moved to doc/changelogs/CHANGELOG\_V4.md#4.3.0</a>. | ||
|
|
||
| ## 2016-02-09, Version 0.12.10 (LTS), @jasnell | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.10">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.10</a>. | ||
|
|
||
| ## 2016-02-09, Version 0.10.42 (Maintenance), @jasnell | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.42">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.42</a>. | ||
|
|
||
| ## 2016-01-21, Version 4.2.6 'Argon' (LTS), @TheAlphaNerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.2.6">Moved to doc/changelogs/CHANGELOG\_V4.md#4.2.6</a>. | ||
|
|
||
| ## 2016-01-20, Version 5.5.0 (Stable), @evanlucas | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.5.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.5.0</a>. | ||
|
|
||
| ## 2016-01-20, Version 4.2.5 'Argon' (LTS), @TheAlphaNerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.2.5">Moved to doc/changelogs/CHANGELOG\_V4.md#4.2.5</a>. | ||
|
|
||
| ## 2016-01-12, Version 5.4.1 (Stable), @TheAlphaNerd | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.4.1">Moved to doc/changelogs/CHANGELOG\_V5.md#5.4.1</a>. | ||
|
|
||
| ## 2016-01-06, Version 5.4.0 (Stable), @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.4.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.4.0</a>. | ||
|
|
||
| ## 2015-12-23, Version 4.2.4 'Argon' (LTS), @jasnell | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.2.4">Moved to doc/changelogs/CHANGELOG\_V4.md#4.2.4</a>. | ||
|
|
||
| ## 2015-12-16, Version 5.3.0 (Stable), @cjihrig | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.3.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.3.0</a>. | ||
|
|
||
| ## 2015-12-09, Version 5.2.0 (Stable), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.2.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.2.0</a>. | ||
|
|
||
| ## 2015-12-04, Version 5.1.1 (Stable), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.1.1">Moved to doc/changelogs/CHANGELOG\_V5.md#5.1.1</a>. | ||
|
|
||
| ## 2015-12-04, Version 4.2.3 'Argon' (LTS), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.2.3">Moved to doc/changelogs/CHANGELOG\_V4.md#4.2.3</a>. | ||
|
|
||
| ## 2015-12-04, Version 0.12.9 (LTS), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.9">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.9</a>. | ||
|
|
||
| ## 2015-12-04, Version 0.10.41 (Maintenance), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.41">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.41</a>. | ||
|
|
||
| ## 2015.11.25, Version 0.12.8 (LTS), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.8">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.8</a>. | ||
|
|
||
| ## 2015-11-17, Version 5.1.0 (Stable), @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.1.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.1.0</a>. | ||
|
|
||
| ## 2015-11-03, Version 4.2.2 'Argon' (LTS), @jasnell | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.2.2">Moved to doc/changelogs/CHANGELOG\_V4.md#4.2.2</a>. | ||
|
|
||
| ## 2015-10-29, Version 5.0.0 (Stable), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V5.md#5.0.0">Moved to doc/changelogs/CHANGELOG\_V5.md#5.0.0</a>. | ||
|
|
||
| ## 2015-10-13, Version 4.2.1 'Argon' (LTS), @jasnell | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.2.1">Moved to doc/changelogs/CHANGELOG\_V4.md#4.2.1</a>. | ||
|
|
||
| ## 2015-10-07, Version 4.2.0 'Argon' (LTS), @jasnell | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.2.0">Moved to doc/changelogs/CHANGELOG\_V4.md#4.2.0</a>. | ||
|
|
||
| ## 2015-10-05, Version 4.1.2 (Stable), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.1.2">Moved to doc/changelogs/CHANGELOG\_V4.md#4.1.2</a>. | ||
|
|
||
| ## 2015-09-22, Version 4.1.1 (Stable), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.1.1">Moved to doc/changelogs/CHANGELOG\_V4.md#4.1.1</a>. | ||
|
|
||
| ## 2015-09-17, Version 4.1.0 (Stable), @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.1.0">Moved to doc/changelogs/CHANGELOG\_V4.md#4.1.0</a>. | ||
|
|
||
| ## 2015-09-15, io.js Version 3.3.1 @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#3.3.1">Moved to doc/changelogs/CHANGELOG\_IOJS.md#3.3.1</a>. | ||
|
|
||
| ## 2015-09-08, Version 4.0.0 (Stable), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.0.0">Moved to doc/changelogs/CHANGELOG\_V6.md#6.0.0</a>. | ||
|
|
||
| ## 2015-09-02, Version 3.3.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#3.3.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#3.3.0</a>. | ||
|
|
||
| ## 2015-08-25, Version 3.2.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#3.2.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#3.2.0</a>. | ||
|
|
||
| ## 2015-08-18, Version 3.1.0, @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#3.1.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#3.1.0</a>. | ||
|
|
||
| ## 2015-08-04, Version 3.0.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#3.0.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#3.0.0</a>. | ||
|
|
||
| ## 2015-07-28, Version 2.5.0, @cjihrig | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.5.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.5.0</a>. | ||
|
|
||
| ## 2015-07-17, Version 2.4.0, @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.4.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.4.0</a>. | ||
|
|
||
| ## 2015-07-09, Version 2.3.4, @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.3.4">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.3.4</a>. | ||
|
|
||
| ## 2015-07-09, Version 1.8.4, @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.8.4">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.8.4</a>. | ||
|
|
||
| ## 2015-07-09, Version 0.12.7 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.7">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.7</a>. | ||
|
|
||
| ## 2015-07-04, Version 2.3.3, @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.3.3">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.3.3</a>. | ||
|
|
||
| ## 2015-07-04, Version 1.8.3, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.8.3">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.8.3</a>. | ||
|
|
||
| ## 2015-07-03, Version 0.12.6 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.6">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.6</a>. | ||
|
|
||
| ## 2015-07-01, Version 2.3.2, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.3.2">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.3.2</a>. | ||
|
|
||
| ## 2015-06-23, Version 2.3.1, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.3.1">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.3.1</a>. | ||
|
|
||
| ## 2015-06-22, Version 0.12.5 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.5">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.5</a>. | ||
|
|
||
| ## 2015-06-18, Version 0.10.39 (Maintenance) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.39">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.39</a>. | ||
|
|
||
| ## 2015-06-13, Version 2.3.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.3.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.3.0</a>. | ||
|
|
||
| ## 2015-06-01, Version 2.2.1, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.2.1">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.2.1</a>. | ||
|
|
||
| ## 2015-05-31, Version 2.2.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.2.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.2.0</a>. | ||
|
|
||
| ## 2015-05-24, Version 2.1.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.1.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.1.0</a>. | ||
|
|
||
| ## 2015-05-22, Version 0.12.4 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.4">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.4</a>. | ||
|
|
||
| ## 2015-05-17, Version 1.8.2, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.8.2">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.8.2</a>. | ||
|
|
||
| ## 2015-05-15, Version 2.0.2, @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.0.2">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.0.2</a>. | ||
|
|
||
| ## 2015-05-13, Version 0.12.3 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.3">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.3</a>. | ||
|
|
||
| ## 2015-05-07, Version 2.0.1, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.0.1">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.0.1</a>. | ||
|
|
||
| ## 2015-05-04, Version 2.0.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#2.0.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#2.0.0</a>. | ||
|
|
||
| ## 2015-04-20, Version 1.8.1, @chrisdickinson | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.8.1">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.8.1</a>. | ||
|
|
||
| ## 2015-04-14, Version 1.7.1, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.7.1">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.7.1</a>. | ||
|
|
||
| ## 2015-04-14, Version 1.7.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.7.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.7.0</a>. | ||
|
|
||
| ## 2015-04-06, Version 1.6.4, @Fishrock123 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.6.4">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.6.4</a>. | ||
|
|
||
| ## 2015-03-31, Version 1.6.3, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.6.3">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.6.3</a>. | ||
|
|
||
| ## 2015-03-31, Version 0.12.2 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.2">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.2</a>. | ||
|
|
||
| ## 2015-03-23, Version 1.6.2, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.6.2">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.6.2</a>. | ||
|
|
||
| ## 2015-03-23, Version 0.12.1 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.1">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.1</a>. | ||
|
|
||
| ## 2015-03-23, Version 0.10.38 (Maintenance) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.38">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.38</a>. | ||
|
|
||
| ## 2015-03-20, Version 1.6.1, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.6.1">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.6.1</a>. | ||
|
|
||
| ## 2015-03-19, Version 1.6.0, @chrisdickinson | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.6.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.6.0</a>. | ||
|
|
||
| ## 2015-03-11, Version 0.10.37 (Maintenance) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.37">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.37</a>. | ||
|
|
||
| ## 2015-03-09, Version 1.5.1, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.5.1">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.5.1</a>. | ||
|
|
||
| ## 2015-03-06, Version 1.5.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.5.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.5.0</a>. | ||
|
|
||
| ## 2015-03-02, Version 1.4.3, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.4.3">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.4.3</a>. | ||
|
|
||
| ## 2015-02-28, Version 1.4.2, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.4.2">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.4.2</a>. | ||
|
|
||
| ## 2015-02-26, Version 1.4.1, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.4.1">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.4.1</a>. | ||
|
|
||
| ## 2015-02-20, Version 1.3.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.3.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.3.0</a>. | ||
|
|
||
| ## 2015-02-10, Version 1.2.0, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.2.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.2.0</a>. | ||
|
|
||
| ## 2015-02-06, Version 0.12.0 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V012.md#0.12.0">Moved to doc/changelogs/CHANGELOG\_V012.md#0.12.0</a>. | ||
|
|
||
| ## 2015-02-03, Version 1.1.0, @chrisdickinson | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.1.0">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.1.0</a>. | ||
|
|
||
| ## 2015-01-26, Version 0.10.36 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.36">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.36</a>. | ||
|
|
||
| ## 2015-01-24, Version 1.0.4, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.0.4">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.0.4</a>. | ||
|
|
||
| ## 2015-01-20, Version 1.0.3, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.0.3">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.0.3</a>. | ||
|
|
||
| ## 2015-01-16, Version 1.0.2, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.0.2">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.0.2</a>. | ||
|
|
||
| ## 2015-01-14, Version 1.0.1, @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_IOJS.md#1.0.1">Moved to doc/changelogs/CHANGELOG\_IOJS.md#1.0.1</a>. | ||
|
|
||
| ## 2014.09.24, Version 0.11.14 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.14">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.14</a>. | ||
|
|
||
| ## 2014.05.01, Version 0.11.13 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.13">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.13</a>. | ||
|
|
||
| ## 2014.03.11, Version 0.11.12 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.12">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.12</a>. | ||
|
|
||
| ## 2014.01.29, Version 0.11.11 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.11">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.11</a>. | ||
|
|
||
| ## 2013.12.31, Version 0.11.10 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.10">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.10</a>. | ||
|
|
||
| ## 2013.11.20, Version 0.11.9 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.9">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.9</a>. | ||
|
|
||
| ## 2013.10.30, Version 0.11.8 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.8">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.8</a>. | ||
|
|
||
| ## 2013.08.21, Version 0.11.7 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.7">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.7</a>. | ||
|
|
||
| ## 2013.08.21, Version 0.11.6 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.6">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.6</a>. | ||
|
|
||
| ## 2013.08.06, Version 0.11.5 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.5">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.5</a>. | ||
|
|
||
| ## 2013.07.12, Version 0.11.4 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.4">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.4</a>. | ||
|
|
||
| ## 2013.06.26, Version 0.11.3 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.3">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.3</a>. | ||
|
|
||
| ## 2013.05.13, Version 0.11.2 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.2">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.2</a>. | ||
|
|
||
| ## 2013.04.19, Version 0.11.1 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.1">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.1</a>. | ||
|
|
||
| ## 2013.03.28, Version 0.11.0 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.11.0">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.11.0</a>. | ||
|
|
||
| ## 2014.12.22, Version 0.10.35 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.35">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.35</a>. | ||
|
|
||
| ## 2014.12.17, Version 0.10.34 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.34">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.34</a>. | ||
|
|
||
| ## 2014.10.20, Version 0.10.33 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.33">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.33</a>. | ||
|
|
||
| ## 2014.09.16, Version 0.10.32 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.32">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.32</a>. | ||
|
|
||
| ## 2014.08.19, Version 0.10.31 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.31">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.31</a>. | ||
|
|
||
| ## 2014.07.31, Version 0.10.30 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.30">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.30</a>. | ||
|
|
||
| ## 2014.06.05, Version 0.10.29 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.29">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.29</a>. | ||
|
|
||
| ## 2014.05.01, Version 0.10.28 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.28">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.28</a>. | ||
|
|
||
| ## 2014.05.01, Version 0.10.27 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.27">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.27</a>. | ||
|
|
||
| ## 2014.02.18, Version 0.10.26 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.26">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.26</a>. | ||
|
|
||
| ## 2014.01.23, Version 0.10.25 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.25">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.25</a>. | ||
|
|
||
| ## 2013.12.18, Version 0.10.24 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.24">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.24</a>. | ||
|
|
||
| ## 2013.12.12, Version 0.10.23 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.23">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.23</a>. | ||
|
|
||
| ## 2013.11.12, Version 0.10.22 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.22">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.22</a>. | ||
|
|
||
| ## 2013.10.18, Version 0.10.21 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.21">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.21</a>. | ||
|
|
||
| ## 2013.09.30, Version 0.10.20 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.20">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.20</a>. | ||
|
|
||
| ## 2013.09.24, Version 0.10.19 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.19">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.19</a>. | ||
|
|
||
| ## 2013.09.04, Version 0.10.18 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.18">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.18</a>. | ||
|
|
||
| ## 2013.08.21, Version 0.10.17 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.17">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.17</a>. | ||
|
|
||
| ## 2013.08.16, Version 0.10.16 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.16">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.16</a>. | ||
|
|
||
| ## 2013.07.25, Version 0.10.15 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.15">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.15</a>. | ||
|
|
||
| ## 2013.07.25, Version 0.10.14 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.14">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.14</a>. | ||
|
|
||
| ## 2013.07.09, Version 0.10.13 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.13">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.13</a>. | ||
|
|
||
| ## 2013.06.18, Version 0.10.12 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.12">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.12</a>. | ||
|
|
||
| ## 2013.06.13, Version 0.10.11 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.11">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.11</a>. | ||
|
|
||
| ## 2013.06.04, Version 0.10.10 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.10">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.10</a>. | ||
|
|
||
| ## 2013.05.30, Version 0.10.9 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.9">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.9</a>. | ||
|
|
||
| ## 2013.05.24, Version 0.10.8 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.8">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.8</a>. | ||
|
|
||
| ## 2013.05.17, Version 0.10.7 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.7">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.7</a>. | ||
|
|
||
| ## 2013.05.14, Version 0.10.6 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.6">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.6</a>. | ||
|
|
||
| ## 2013.04.23, Version 0.10.5 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.5">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.5</a>. | ||
|
|
||
| ## 2013.04.11, Version 0.10.4 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.4">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.4</a>. | ||
|
|
||
| ## 2013.04.03, Version 0.10.3 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.3">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.3</a>. | ||
|
|
||
| ## 2013.03.28, Version 0.10.2 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.2">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.2</a>. | ||
|
|
||
| ## 2013.03.21, Version 0.10.1 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.1">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.1</a>. | ||
|
|
||
| ## 2013.03.11, Version 0.10.0 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V010.md#0.10.0">Moved to doc/changelogs/CHANGELOG\_V010.md#0.10.0</a>. | ||
|
|
||
| ## 2013.03.06, Version 0.9.12 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.12">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.12</a>. | ||
|
|
||
| ## 2013.03.01, Version 0.9.11 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.11">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.11</a>. | ||
|
|
||
| ## 2013.02.19, Version 0.9.10 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.10">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.10</a>. | ||
|
|
||
| ## 2013.02.07, Version 0.9.9 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.9">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.9</a>. | ||
|
|
||
| ## 2013.01.24, Version 0.9.8 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.8">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.8</a>. | ||
|
|
||
| ## 2013.01.18, Version 0.9.7 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.7">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.7</a>. | ||
|
|
||
| ## 2013.01.11, Version 0.9.6 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.6">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.6</a>. | ||
|
|
||
| ## 2012.12.30, Version 0.9.5 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.5">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.5</a>. | ||
|
|
||
| ## 2012.12.21, Version 0.9.4 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.4">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.4</a>. | ||
|
|
||
| ## 2012.10.24, Version 0.9.3 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.3">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.3</a>. | ||
|
|
||
| ## 2012.09.17, Version 0.9.2 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.2">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.2</a>. | ||
|
|
||
| ## 2012.08.28, Version 0.9.1 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.1">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.1</a>. | ||
|
|
||
| ## 2012.07.20, Version 0.9.0 (Unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.9.0">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.9.0</a>. | ||
|
|
||
| ## 2013.06.13, Version 0.8.25 (maintenance) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.25">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.25</a>. | ||
|
|
||
| ## 2013.06.04, Version 0.8.24 (maintenance) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.24">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.24</a>. | ||
|
|
||
| ## 2013.04.09, Version 0.8.23 (maintenance) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.23">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.23</a>. | ||
|
|
||
| ## 2013.03.07, Version 0.8.22 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.22">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.22</a>. | ||
|
|
||
| ## 2013.02.25, Version 0.8.21 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.21">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.21</a>. | ||
|
|
||
| ## 2013.02.15, Version 0.8.20 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.20">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.20</a>. | ||
|
|
||
| ## 2013.02.06, Version 0.8.19 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.19">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.19</a>. | ||
|
|
||
| ## 2013.01.18, Version 0.8.18 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.18">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.18</a>. | ||
|
|
||
| ## 2013.01.09, Version 0.8.17 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.17">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.17</a>. | ||
|
|
||
| ## 2012.12.13, Version 0.8.16 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.16">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.16</a>. | ||
|
|
||
| ## 2012.11.26, Version 0.8.15 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.15">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.15</a>. | ||
|
|
||
| ## 2012.10.25, Version 0.8.14 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.14">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.14</a>. | ||
|
|
||
| ## 2012.10.25, Version 0.8.13 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.13">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.13</a>. | ||
|
|
||
| ## 2012.10.12, Version 0.8.12 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.12">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.12</a>. | ||
|
|
||
| ## 2012.09.27, Version 0.8.11 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.11">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.11</a>. | ||
|
|
||
| ## 2012.09.25, Version 0.8.10 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.10">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.10</a>. | ||
|
|
||
| ## 2012.09.11, Version 0.8.9 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.9">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.9</a>. | ||
|
|
||
| ## 2012.08.22, Version 0.8.8 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.8">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.8</a>. | ||
|
|
||
| ## 2012.08.15, Version 0.8.7 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.7">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.7</a>. | ||
|
|
||
| ## 2012.08.07, Version 0.8.6 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.6">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.6</a>. | ||
|
|
||
| ## 2012.08.02, Version 0.8.5 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.5">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.5</a>. | ||
|
|
||
| ## 2012.07.25, Version 0.8.4 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.4">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.4</a>. | ||
|
|
||
| ## 2012.07.19, Version 0.8.3 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.3">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.3</a>. | ||
|
|
||
| ## 2012.07.09, Version 0.8.2 (Stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.2">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.2</a>. | ||
|
|
||
| ## 2012.06.29, Version 0.8.1 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.1">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.1</a>. | ||
|
|
||
| ## 2012.06.25, Version 0.8.0 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.8.0">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.8.0</a>. | ||
|
|
||
| ## 2012.06.19, Version 0.7.12 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.12">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.12</a>. | ||
|
|
||
| ## 2012.06.15, Version 0.7.11 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.11">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.11</a>. | ||
|
|
||
| ## 2012.06.11, Version 0.7.10 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.10">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.10</a>. | ||
|
|
||
| ## 2012.05.28, Version 0.7.9 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.9">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.9</a>. | ||
|
|
||
| ## 2012.04.18, Version 0.7.8 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.8">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.8</a>. | ||
|
|
||
| ## 2012.03.30, Version 0.7.7 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.7">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.7</a>. | ||
|
|
||
| ## 2012.03.13, Version 0.7.6 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.6">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.6</a>. | ||
|
|
||
| ## 2012.02.23, Version 0.7.5 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.5">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.5</a>. | ||
|
|
||
| ## 2012.02.14, Version 0.7.4 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.4">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.4</a>. | ||
|
|
||
| ## 2012.02.07, Version 0.7.3 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.3">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.3</a>. | ||
|
|
||
| ## 2012.02.01, Version 0.7.2 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.2">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.2</a>. | ||
|
|
||
| ## 2012.01.23, Version 0.7.1 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.1">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.1</a>. | ||
|
|
||
| ## 2012.01.16, Version 0.7.0 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.7.0">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.7.0</a>. | ||
|
|
||
| ## 2012.07.10 Version 0.6.20 (maintenance) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.20">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.20</a>. | ||
|
|
||
| ## 2012.06.06 Version 0.6.19 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.19">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.19</a>. | ||
|
|
||
| ## 2012.05.15 Version 0.6.18 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.18">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.18</a>. | ||
|
|
||
| ## 2012.05.04 Version 0.6.17 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.17">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.17</a>. | ||
|
|
||
| ## 2012.04.30 Version 0.6.16 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.16">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.16</a>. | ||
|
|
||
| ## 2012.04.09 Version 0.6.15 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.15">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.15</a>. | ||
|
|
||
| ## 2012.03.22 Version 0.6.14 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.14">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.14</a>. | ||
|
|
||
| ## 2012.03.15 Version 0.6.13 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.13">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.13</a>. | ||
|
|
||
| ## 2012.03.02 Version 0.6.12 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.12">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.12</a>. | ||
|
|
||
| ## 2012.02.17 Version 0.6.11 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.11">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.11</a>. | ||
|
|
||
| ## 2012.02.02, Version 0.6.10 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.10">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.10</a>. | ||
|
|
||
| ## 2012.01.27, Version 0.6.9 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.9">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.9</a>. | ||
|
|
||
| ## 2012.01.19, Version 0.6.8 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.8">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.8</a>. | ||
|
|
||
| ## 2012.01.06, Version 0.6.7 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.7">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.7</a>. | ||
|
|
||
| ## 2011.12.14, Version 0.6.6 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.6">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.6</a>. | ||
|
|
||
| ## 2011.12.04, Version 0.6.5 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.5">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.5</a>. | ||
|
|
||
| ## 2011.12.02, Version 0.6.4 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.4">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.4</a>. | ||
|
|
||
| ## 2011.11.25, Version 0.6.3 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.3">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.3</a>. | ||
|
|
||
| ## 2011.11.18, Version 0.6.2 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.2">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.2</a>. | ||
|
|
||
| ## 2011.11.11, Version 0.6.1 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.1">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.1</a>. | ||
|
|
||
| ## 2011.11.04, Version 0.6.0 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.6.0">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.6.0</a>. | ||
|
|
||
| ## 2011.10.21, Version 0.5.10 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.10">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.10</a>. | ||
|
|
||
| ## 2011.10.10, Version 0.5.9 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.9">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.9</a>. | ||
|
|
||
| ## 2011.09.30, Version 0.5.8 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.8">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.8</a>. | ||
|
|
||
| ## 2011.09.16, Version 0.5.7 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.7">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.7</a>. | ||
|
|
||
| ## 2011.09.08, Version 0.5.6 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.6">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.6</a>. | ||
|
|
||
| ## 2011.08.26, Version 0.5.5 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.5">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.5</a>. | ||
|
|
||
| ## 2011.08.12, Version 0.5.4 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.4">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.4</a>. | ||
|
|
||
| ## 2011.08.01, Version 0.5.3 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.3">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.3</a>. | ||
|
|
||
| ## 2011.07.22, Version 0.5.2 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.2">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.2</a>. | ||
|
|
||
| ## 2011.07.14, Version 0.5.1 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.1">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.1</a>. | ||
|
|
||
| ## 2011.07.05, Version 0.5.0 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.5.0">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.5.0</a>. | ||
|
|
||
| ## 2011.09.15, Version 0.4.12 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.12">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.12</a>. | ||
|
|
||
| ## 2011.08.17, Version 0.4.11 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.11">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.11</a>. | ||
|
|
||
| ## 2011.07.19, Version 0.4.10 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.10">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.10</a>. | ||
|
|
||
| ## 2011.06.29, Version 0.4.9 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.9">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.9</a>. | ||
|
|
||
| ## 2011.05.20, Version 0.4.8 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.8">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.8</a>. | ||
|
|
||
| ## 2011.04.22, Version 0.4.7 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.7">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.7</a>. | ||
|
|
||
| ## 2011.04.13, Version 0.4.6 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.6">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.6</a>. | ||
|
|
||
| ## 2011.04.01, Version 0.4.5 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.5">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.5</a>. | ||
|
|
||
| ## 2011.03.26, Version 0.4.4 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.4">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.4</a>. | ||
|
|
||
| ## 2011.03.18, Version 0.4.3 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.3">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.3</a>. | ||
|
|
||
| ## 2011.03.02, Version 0.4.2 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.2">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.2</a>. | ||
|
|
||
| ## 2011.02.19, Version 0.4.1 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.1">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.1</a>. | ||
|
|
||
| ## 2011.02.10, Version 0.4.0 (stable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.4.0">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.4.0</a>. | ||
|
|
||
| ## 2011.02.04, Version 0.3.8 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.3.8">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.3.8</a>. | ||
|
|
||
| ## 2011.01.27, Version 0.3.7 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.3.7">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.3.7</a>. | ||
|
|
||
| ## 2011.01.21, Version 0.3.6 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.3.6">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.3.6</a>. | ||
|
|
||
| ## 2011.01.16, Version 0.3.5 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.3.5">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.3.5</a>. | ||
|
|
||
| ## 2011.01.08, Version 0.3.4 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.3.4">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.3.4</a>. | ||
|
|
||
| ## 2011.01.02, Version 0.3.3 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.3.3">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.3.3</a>. | ||
|
|
||
| ## 2010.12.16, Version 0.3.2 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.3.2">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.3.2</a>. | ||
|
|
||
| ## 2010.11.16, Version 0.3.1 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.3.1">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.3.1</a>. | ||
|
|
||
| ## 2010.10.23, Version 0.3.0 (unstable) | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.3.0">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.3.0</a>. | ||
|
|
||
| ## 2010.08.20, Version 0.2.0 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.2.0">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.2.0</a>. | ||
|
|
||
| ## 2010.08.13, Version 0.1.104 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.104">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.104</a>. | ||
|
|
||
| ## 2010.08.04, Version 0.1.103 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.103">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.103</a>. | ||
|
|
||
| ## 2010.07.25, Version 0.1.102 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.102">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.102</a>. | ||
|
|
||
| ## 2010.07.16, Version 0.1.101 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.101">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.101</a>. | ||
|
|
||
| ## 2010.07.03, Version 0.1.100 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.100">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.100</a>. | ||
|
|
||
| ## 2010.06.21, Version 0.1.99 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.99">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.99</a>. | ||
|
|
||
| ## 2010.06.11, Version 0.1.98 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.98">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.98</a>. | ||
|
|
||
| ## 2010.05.29, Version 0.1.97 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.97">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.97</a>. | ||
|
|
||
| ## 2010.05.21, Version 0.1.96 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.96">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.96</a>. | ||
|
|
||
| ## 2010.05.13, Version 0.1.95 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.95">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.95</a>. | ||
|
|
||
| ## 2010.05.06, Version 0.1.94 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.94">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.94</a>. | ||
|
|
||
| ## 2010.04.29, Version 0.1.93 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.93">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.93</a>. | ||
|
|
||
| ## 2010.04.23, Version 0.1.92 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.92">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.92</a>. | ||
|
|
||
| ## 2010.04.15, Version 0.1.91 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.91">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.91</a>. | ||
|
|
||
| ## 2010.04.09, Version 0.1.90 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.90">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.90</a>. | ||
|
|
||
| ## 2010.03.19, Version 0.1.33 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.33">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.33</a>. | ||
|
|
||
| ## 2010.03.12, Version 0.1.32 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.32">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.32</a>. | ||
|
|
||
| ## 2010.03.05, Version 0.1.31 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.31">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.31</a>. | ||
|
|
||
| ## 2010.02.22, Version 0.1.30 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.30">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.30</a>. | ||
|
|
||
| ## 2010.02.17, Version 0.1.29 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.29">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.29</a>. | ||
|
|
||
| ## 2010.02.09, Version 0.1.28 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.28">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.28</a>. | ||
|
|
||
| ## 2010.02.03, Version 0.1.27 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.27">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.27</a>. | ||
|
|
||
| ## 2010.01.20, Version 0.1.26 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.26">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.26</a>. | ||
|
|
||
| ## 2010.01.09, Version 0.1.25 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.25">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.25</a>. | ||
|
|
||
| ## 2009.12.31, Version 0.1.24 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.24">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.24</a>. | ||
|
|
||
| ## 2009.12.22, Version 0.1.23 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.23">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.23</a>. | ||
|
|
||
| ## 2009.12.19, Version 0.1.22 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.22">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.22</a>. | ||
|
|
||
| ## 2009.12.06, Version 0.1.21 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.21">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.21</a>. | ||
|
|
||
| ## 2009.11.28, Version 0.1.20 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.20">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.20</a>. | ||
|
|
||
| ## 2009.11.28, Version 0.1.19 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.19">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.19</a>. | ||
|
|
||
| ## 2009.11.17, Version 0.1.18 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.18">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.18</a>. | ||
|
|
||
| ## 2009.11.07, Version 0.1.17 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.17">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.17</a>. | ||
|
|
||
| ## 2009.11.03, Version 0.1.16 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.16">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.16</a>. | ||
|
|
||
| ## 2009.10.28, Version 0.1.15 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.15">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.15</a>. | ||
|
|
||
| ## 2009.10.09, Version 0.1.14 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.14">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.14</a>. | ||
|
|
||
| ## 2009.09.30, Version 0.1.13 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.13">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.13</a>. | ||
|
|
||
| ## 2009.09.24, Version 0.1.12 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.12">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.12</a>. | ||
|
|
||
| ## 2009.09.18, Version 0.1.11 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.11">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.11</a>. | ||
|
|
||
| ## 2009.09.11, Version 0.1.10 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.10">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.10</a>. | ||
|
|
||
| ## 2009.09.05, Version 0.1.9 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.9">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.9</a>. | ||
|
|
||
| ## 2009.09.04, Version 0.1.8 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.8">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.8</a>. | ||
|
|
||
| ## 2009.08.27, Version 0.1.7 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.7">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.7</a>. | ||
|
|
||
| ## 2009.08.22, Version 0.1.6 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.6">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.6</a>. | ||
|
|
||
| ## 2009.08.21, Version 0.1.5 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.5">Moved to doc/changelogs/CHANGELOG\_V6.md#6.0.0</a>. | ||
|
|
||
| ## 2009.08.13, Version 0.1.4 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.4">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.4</a>. | ||
|
|
||
| ## 2009.08.06, Version 0.1.3 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.3">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.3</a>. | ||
|
|
||
| ## 2009.08.01, Version 0.1.2 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.2">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.2</a>. | ||
|
|
||
| ## 2009.07.27, Version 0.1.1 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.1">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.1</a>. | ||
|
|
||
| ## 2009.06.30, Version 0.1.0 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.1.0">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.1.0</a>. | ||
|
|
||
| ## 2009.06.24, Version 0.0.6 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.0.6">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.0.6</a>. | ||
|
|
||
| ## 2009.06.18, Version 0.0.5 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.0.5">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.0.5</a>. | ||
|
|
||
| ## 2009.06.13, Version 0.0.4 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.0.4">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.0.4</a>. | ||
|
|
||
| ## 2009.06.11, Version 0.0.3 | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_ARCHIVE.md#0.0.3">Moved to doc/changelogs/CHANGELOG\_ARCHIVE.md#0.0.3</a>. |
There was a problem hiding this comment.
Please drop this vendored Node.js changelog from the PR.
This file looks unrelated to the stated NameLayer.ts cleanup and adds a large third-party document to the repo. If this was committed by mistake from a local Node install, it should be removed from the PR to keep the change scoped and avoid unnecessary repository bloat.
🧰 Tools
🪛 LanguageTool
[uncategorized] ~5-~5: If this is a compound adjective that modifies the following noun, use a hyphen.
Context: ... 20](doc/changelogs/CHANGELOG_V20.md) Long Term Support * [Node.js 19](doc/changelogs...
(EN_COMPOUND_ADJECTIVE_INTERNAL)
[uncategorized] ~7-~7: If this is a compound adjective that modifies the following noun, use a hyphen.
Context: ...js 18](doc/changelogs/CHANGELOG_V18.md) Long Term Support * [Node.js 17](doc/changelogs/C...
(EN_COMPOUND_ADJECTIVE_INTERNAL)
[uncategorized] ~120-~120: If this is a compound adjective that modifies the following noun, use a hyphen.
Context: .../tr> ## Notes * The [Node.js Long Term Support plan](https://github.com/nodejs...
(EN_COMPOUND_ADJECTIVE_INTERNAL)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@node-v20.11.1-win-x64/CHANGELOG.md` around lines 1 - 1378, The PR
accidentally includes a large vendored Node.js changelog (CHANGELOG.md)
unrelated to the NameLayer.ts cleanup; remove this file from the branch/PR by
deleting the file from the commit set (e.g., git rm --cached or git rm and
commit/rebase to drop the change), force-push the branch to update the PR, and
ensure no other commits reintroduce node-v20.11.1-win-x64/CHANGELOG.md; if you
need to keep it locally, leave it out of the repo or add an appropriate ignore
rule so it’s not re-added.
| ## 2015-09-08, Version 4.0.0 (Stable), @rvagg | ||
|
|
||
| <a href="doc/changelogs/CHANGELOG_V4.md#4.0.0">Moved to doc/changelogs/CHANGELOG\_V6.md#6.0.0</a>. |
There was a problem hiding this comment.
Fix the wrong “Moved to …” targets in these entries.
The visible destination text is incorrect here: Version 4.0.0 and Version 0.1.5 both say they moved to CHANGELOG_V6.md#6.0.0, which does not match the entry being listed. Please correct the target text so the changelog is self-consistent.
Also applies to: 1340-1342
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@node-v20.11.1-win-x64/CHANGELOG.md` around lines 324 - 326, The changelog
entries for "## 2015-09-08, Version 4.0.0 (Stable), `@rvagg`" and the other
affected entry for "Version 0.1.5" have incorrect visible target text pointing
to "CHANGELOG_V6.md#6.0.0"; update the visible link text to match the actual
target version and anchor (e.g., change the visible text to "Moved to
doc/changelogs/CHANGELOG_V4.md#4.0.0" for the 4.0.0 entry and to the correct
"CHANGELOG_V1.md#0.1.5" or the appropriate file/anchor for 0.1.5), ensuring the
anchor fragment and filename in the link text match the link URL and the version
header names (reference the header line "## 2015-09-08, Version 4.0.0 (Stable),
`@rvagg`" and the similar "Version 0.1.5" entry to locate and correct the link
text).
| #!/bin/sh | ||
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
|
||
| case `uname` in | ||
| *CYGWIN*) basedir=`cygpath -w "$basedir"`;; | ||
| esac | ||
|
|
||
| if [ -x "$basedir/node" ]; then | ||
| exec "$basedir/node" "$basedir/node_modules/corepack/dist/corepack.js" "$@" | ||
| else | ||
| exec node "$basedir/node_modules/corepack/dist/corepack.js" "$@" | ||
| fi |
There was a problem hiding this comment.
Node.js distribution files should not be committed to the repository.
This file and the entire node-v20.11.1-win-x64/ directory appear to be a vendored Node.js installation. These files should not be part of this PR or the repository:
- They add significant size to the repo
- They are not related to the shield icon removal objective
- Node.js should be installed via the system package manager or CI setup actions
Please remove this directory and add node-v20.11.1-win-x64/ to .gitignore.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@node-v20.11.1-win-x64/corepack` around lines 1 - 12, Remove the committed
vendored Node.js distribution directory `node-v20.11.1-win-x64/` from the PR
(delete the directory and its files from the branch), and add
`node-v20.11.1-win-x64/` to .gitignore so it is not re-added; ensure you do not
alter unrelated files (the shield icon changes) and verify no build scripts
depend on the checked-in binary before removing.
| @SETLOCAL | ||
| @IF EXIST "%~dp0\node.exe" ( | ||
| "%~dp0\node.exe" "%~dp0\node_modules\corepack\dist\corepack.js" %* | ||
| ) ELSE ( | ||
| @SET PATHEXT=%PATHEXT:;.JS;=;% | ||
| node "%~dp0\node_modules\corepack\dist\corepack.js" %* | ||
| ) |
There was a problem hiding this comment.
Vendored Node.js file — should be removed.
Same concern as other files in node-v20.11.1-win-x64/. This is part of a Node.js distribution that should not be committed to the repository.
Static analysis also flags Unix line endings (LF) which would cause issues on Windows if this file were kept.
🧰 Tools
🪛 Blinter (1.0.112)
[error] 1-1: Unix line endings detected. Explanation: Batch file uses Unix line endings (LF-only) which can cause GOTO/CALL label parsing failures and script malfunction due to Windows batch parser 512-byte boundary bugs. Recommendation: Convert file to Windows line endings (CRLF). Use tools like dos2unix, notepad++, or configure git with 'git config core.autocrlf true'. Context: File uses Unix line endings (LF-only) - 7 LF sequences found
(E018)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@node-v20.11.1-win-x64/corepack.cmd` around lines 1 - 7, This file
(corepack.cmd in node-v20.11.1-win-x64) is a vendored Node.js distribution file
and should be removed from the repo: delete corepack.cmd (and the entire
node-v20.11.1-win-x64 folder if all are vendored), remove it from the index (git
rm or git rm --cached if you need to preserve local copy) and commit the
removal, and add a rule to .gitignore (e.g., ignore node-v20.11.1-win-x64/* or
the pattern used for vendored node distributions) to prevent re-adding; if you
must keep any Windows scripts, ensure line endings are normalized (use
.gitattributes to enforce CRLF for *.cmd) but the preferred fix is to remove the
vendored distribution entirely.
| @echo off | ||
|
|
||
| rem Ensure this Node.js and npm are first in the PATH | ||
| set "PATH=%APPDATA%\npm;%~dp0;%PATH%" | ||
|
|
||
| setlocal enabledelayedexpansion | ||
| pushd "%~dp0" | ||
|
|
||
| rem Figure out the Node.js version. | ||
| set print_version=.\node.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. | ||
| ) else ( | ||
| echo Your environment has been set up for using Node.js !version!. | ||
| ) | ||
|
|
||
| popd | ||
| endlocal | ||
|
|
||
| rem If we're in the Node.js directory, change to the user's home dir. | ||
| if "%CD%\"=="%~dp0" cd /d "%HOMEDRIVE%%HOMEPATH%" |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Check for other files in the node-v20.11.1-win-x64 directory
fd . 'node-v20.11.1-win-x64' --type f | head -50
# Check if this path is in .gitignore
echo "---"
echo "Checking .gitignore for node patterns:"
rg -i 'node-v|node_modules' .gitignore 2>/dev/null || echo "No node patterns found in .gitignore or .gitignore does not exist"Repository: openfrontio/OpenFrontIO
Length of output: 504
Remove the accidentally committed Node.js binary distribution directory from this PR.
The node-v20.11.1-win-x64/ directory contains a complete Node.js binary distribution (node.exe, npm.cmd, npx, and 13 other files). This should not be in version control. Your PR is about removing shield icon logic from NameLayer.ts, not adding Node.js tooling.
Delete the entire node-v20.11.1-win-x64/ directory. Also update .gitignore to exclude Node.js binary distributions if you install them locally:
node-v*/
🧰 Tools
🪛 Blinter (1.0.112)
[error] 1-1: Unix line endings detected. Explanation: Batch file uses Unix line endings (LF-only) which can cause GOTO/CALL label parsing failures and script malfunction due to Windows batch parser 512-byte boundary bugs. Recommendation: Convert file to Windows line endings (CRLF). Use tools like dos2unix, notepad++, or configure git with 'git config core.autocrlf true'. Context: File uses Unix line endings (LF-only) - 24 LF sequences found
(E018)
[error] 10-10: Unsafe SET command usage. Explanation: SET commands without proper validation or quoting can cause security issues. Recommendation: Always quote SET values and validate input: SET "var=safe value". Context: SET command value should be quoted for safety
(SEC002)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@node-v20.11.1-win-x64/nodevars.bat` around lines 1 - 24, Remove the
accidentally committed Node.js binary distribution directory
node-v20.11.1-win-x64 (including nodevars.bat and all included binaries) from
the PR and repository history, and add an entry to .gitignore to exclude future
binary distributions (e.g., a pattern like node-v*/); ensure the commit only
contains the intended changes to NameLayer.ts and not the binary files, and if
necessary use git rm --cached or recreate the branch to purge those files from
the commit history.
| :: Created by npm, please don't edit manually. | ||
| @ECHO OFF | ||
|
|
||
| SETLOCAL | ||
|
|
||
| SET "NODE_EXE=%~dp0\node.exe" | ||
| IF NOT EXIST "%NODE_EXE%" ( | ||
| SET "NODE_EXE=node" | ||
| ) | ||
|
|
||
| SET "NPM_CLI_JS=%~dp0\node_modules\npm\bin\npm-cli.js" | ||
| FOR /F "delims=" %%F IN ('CALL "%NODE_EXE%" "%NPM_CLI_JS%" prefix -g') DO ( | ||
| SET "NPM_PREFIX_NPM_CLI_JS=%%F\node_modules\npm\bin\npm-cli.js" | ||
| ) | ||
| IF EXIST "%NPM_PREFIX_NPM_CLI_JS%" ( | ||
| SET "NPM_CLI_JS=%NPM_PREFIX_NPM_CLI_JS%" | ||
| ) | ||
|
|
||
| "%NODE_EXE%" "%NPM_CLI_JS%" %* |
There was a problem hiding this comment.
Vendored Node.js file — should be removed.
This is part of the Node.js distribution that should not be committed. See comment on node-v20.11.1-win-x64/corepack.
Additionally, static analysis flags that this Windows batch file uses Unix line endings (LF), which can cause parsing failures in the Windows batch interpreter. If this file were to remain, it would need CRLF line endings.
🧰 Tools
🪛 Blinter (1.0.112)
[error] 1-1: Unix line endings detected. Explanation: Batch file uses Unix line endings (LF-only) which can cause GOTO/CALL label parsing failures and script malfunction due to Windows batch parser 512-byte boundary bugs. Recommendation: Convert file to Windows line endings (CRLF). Use tools like dos2unix, notepad++, or configure git with 'git config core.autocrlf true'. Context: File uses Unix line endings (LF-only) - 19 LF sequences found
(E018)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@node-v20.11.1-win-x64/npm.cmd` around lines 1 - 19, This is a vendored
Windows batch from Node distribution (contains symbols like NODE_EXE, NPM_CLI_JS
and the npm-cli invocation) that should be removed from the repo; delete this
npm.cmd file and remove any accidental Node distribution artifacts (and ensure
corepack/node-v20.11.1-win-x64 is not committed) or add appropriate entries to
ignore them, and if for some reason you must keep it, convert line endings to
CRLF and commit with normalized EOL so the batch parser won’t fail (ensure the
file is removed from the index with git rm --cached if you add it to
.gitignore).
| :: Created by npm, please don't edit manually. | ||
| @ECHO OFF | ||
|
|
||
| SETLOCAL | ||
|
|
||
| SET "NODE_EXE=%~dp0\node.exe" | ||
| IF NOT EXIST "%NODE_EXE%" ( | ||
| SET "NODE_EXE=node" | ||
| ) | ||
|
|
||
| SET "NPM_CLI_JS=%~dp0\node_modules\npm\bin\npm-cli.js" | ||
| SET "NPX_CLI_JS=%~dp0\node_modules\npm\bin\npx-cli.js" | ||
| FOR /F "delims=" %%F IN ('CALL "%NODE_EXE%" "%NPM_CLI_JS%" prefix -g') DO ( | ||
| SET "NPM_PREFIX_NPX_CLI_JS=%%F\node_modules\npm\bin\npx-cli.js" | ||
| ) | ||
| IF EXIST "%NPM_PREFIX_NPX_CLI_JS%" ( | ||
| SET "NPX_CLI_JS=%NPM_PREFIX_NPX_CLI_JS%" | ||
| ) | ||
|
|
||
| "%NODE_EXE%" "%NPX_CLI_JS%" %* |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Check how many files are in the node-v20.11.1-win-x64 directory
echo "Files in node-v20.11.1-win-x64:"
fd . 'node-v20.11.1-win-x64' --type f | wc -l
echo ""
echo "Directory size estimate:"
du -sh node-v20.11.1-win-x64 2>/dev/null || echo "Directory not found or du not available"
echo ""
echo "Check if this directory is in .gitignore:"
rg -l 'node-v20' .gitignore 2>/dev/null || echo "Not found in .gitignore"Repository: openfrontio/OpenFrontIO
Length of output: 220
Remove the node-v20.11.1-win-x64/ directory - Node.js distribution should not be in the repository.
This directory contains a Node.js distribution (68MB, 12 files) that was accidentally committed. It is unrelated to the PR objective of removing shield icon logic from NameLayer.
Node.js should be installed locally by each developer (using nvm, fnm, or other version managers), not stored in the repository. This adds unnecessary bloat and is not tracked in .gitignore.
Please delete the entire node-v20.11.1-win-x64/ directory before merging.
🧰 Tools
🪛 Blinter (1.0.112)
[error] 1-1: Unix line endings detected. Explanation: Batch file uses Unix line endings (LF-only) which can cause GOTO/CALL label parsing failures and script malfunction due to Windows batch parser 512-byte boundary bugs. Recommendation: Convert file to Windows line endings (CRLF). Use tools like dos2unix, notepad++, or configure git with 'git config core.autocrlf true'. Context: File uses Unix line endings (LF-only) - 20 LF sequences found
(E018)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@node-v20.11.1-win-x64/npx.cmd` around lines 1 - 20, Remove the accidentally
committed Node.js distribution directory node-v20.11.1-win-x64 and its tracked
files (e.g., npx.cmd shown in the diff) from the repo: delete the entire
node-v20.11.1-win-x64 directory, git rm all files under it, commit that removal,
and ensure node-v20.11.1-win-x64 is added to .gitignore so future commits won’t
reintroduce the distribution; if this commit has already been pushed and you
need to purge the binary from history, follow your repo policy to rewrite
history (git filter-repo or BFG) and coordinate with the team.
| @@ -0,0 +1 @@ | |||
| [{"conclusion":"","databaseId":22779695417,"name":"ƒÅÀ´©Å Release","status":"in_progress"},{"conclusion":"","databaseId":22779684479,"name":"ƒº¬ CI","status":"in_progress"},{"conclusion":"failure","databaseId":22779684448,"name":"ƒº╝ PR","status":"completed"},{"conclusion":"failure","databaseId":22779625463,"name":"ƒº╝ PR","status":"completed"},{"conclusion":"failure","databaseId":22779340794,"name":"ƒº¬ CI","status":"completed"},{"conclusion":"failure","databaseId":22779340779,"name":"ƒº╝ PR","status":"completed"},{"conclusion":"success","databaseId":22779118782,"name":"ƒº╝ PR","status":"completed"},{"conclusion":"success","databaseId":22779118738,"name":"ƒº¬ CI","status":"completed"},{"conclusion":"success","databaseId":22779117839,"name":"ƒÜÇ Deploy","status":"completed"},{"conclusion":"success","databaseId":22779117792,"name":"PR #3369","status":"completed"},{"conclusion":"success","databaseId":22777973661,"name":"Copilot code review","status":"completed"},{"conclusion":"success","databaseId":22777972731,"name":"ƒº¬ CI","status":"completed"},{"conclusion":"success","databaseId":22777972720,"name":"ƒº╝ PR","status":"completed"},{"conclusion":"success","databaseId":22777972693,"name":"ƒº╝ PR","status":"completed"},{"conclusion":"success","databaseId":22777971985,"name":"ƒº╝ PR","status":"completed"},{"conclusion":"success","databaseId":22777971345,"name":"PR #3369","status":"completed"},{"conclusion":"success","databaseId":22777953606,"name":"ƒÜÇ Deploy","status":"completed"},{"conclusion":"failure","databaseId":22776933499,"name":"ƒº╝ PR","status":"completed"},{"conclusion":"failure","databaseId":22776882014,"name":"ƒº¬ CI","status":"completed"},{"conclusion":"success","databaseId":22776881998,"name":"ƒº╝ PR","status":"completed"}] | |||
There was a problem hiding this comment.
This file appears to be accidentally committed.
This JSON file contains CI/CD pipeline run data (database IDs, workflow names, statuses). It looks like debug output or a local artifact that should not be checked into the repository.
Please remove this file from the PR. Consider adding it to .gitignore if it's generated locally.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@runs.json` at line 1, The runs.json file is an accidental commit containing
CI run data; remove it from the PR by deleting runs.json from the repository (or
git rm --cached runs.json if you need to keep a local copy), add an entry for
runs.json to .gitignore to prevent future commits, and commit the change with a
clear message (e.g., "remove accidental runs.json and ignore it"); then push the
branch so the PR no longer includes this artifact.
| in_progress v0.29.20 ƒÅÀ´©Å Release v0.29.20 release 22779695417 51s 2026-03-06T19:57:41Z | ||
| in_progress UI: Remove unused shield icon from NameLayer ƒº¬ CI fix/remove-shield-icon pull_request 22779684479 1m10s 2026-03-06T19:57:22Z | ||
| completed failure UI: Remove unused shield icon from NameLayer ƒº╝ PR fix/remove-shield-icon pull_request 22779684448 8s 2026-03-06T19:57:22Z | ||
| completed failure UI: Remove unused shield icon from NameLayer ƒº╝ PR fix/remove-shield-icon pull_request 22779625463 8s 2026-03-06T19:55:36Z | ||
| completed failure UI: Remove unused shield icon from NameLayer ƒº¬ CI fix/remove-shield-icon pull_request 22779340794 1m8s 2026-03-06T19:56:03Z | ||
| completed failure UI: Remove unused shield icon from NameLayer ƒº╝ PR fix/remove-shield-icon pull_request 22779340779 8s 2026-03-06T19:47:13Z | ||
| completed success clientId replay bugfix (was picking first clientID in the array) ƒº╝ PR rejoinfix pull_request 22779118782 6s 2026-03-06T19:40:50Z | ||
| completed success clientId replay bugfix (was picking first clientID in the array) ƒº¬ CI rejoinfix pull_request 22779118738 1m23s 2026-03-06T19:40:50Z | ||
| completed success rabbit ƒÜÇ Deploy rejoinfix push 22779117839 2m50s 2026-03-06T19:40:49Z | ||
| completed success PR #3369 CodeQL refs/pull/3369/head dynamic 22779117792 1m53s 2026-03-06T19:40:49Z | ||
| completed success Copilot code review Copilot code review refs/pull/3369/head dynamic 22777973661 6m43s 2026-03-06T19:07:29Z | ||
| completed success clientId replay bugfix (was picking first clientID in the array) ƒº¬ CI rejoinfix pull_request 22777972731 1m33s 2026-03-06T19:07:27Z | ||
| completed success clientId replay bugfix (was picking first clientID in the array) ƒº╝ PR rejoinfix pull_request 22777972720 8s 2026-03-06T19:07:27Z | ||
| completed success clientId replay bugfix (was picking first clientID in the array) ƒº╝ PR rejoinfix pull_request 22777972693 7s 2026-03-06T19:07:27Z | ||
| completed success clientId replay bugfix (was picking first clientID in the array) ƒº╝ PR rejoinfix pull_request_target 22777971985 7s 2026-03-06T19:07:26Z | ||
| completed success PR #3369 CodeQL refs/pull/3369/head dynamic 22777971345 1m53s 2026-03-06T19:07:24Z | ||
| completed success clientId replay bugfix (was picking first clientID in the array) ƒÜÇ Deploy rejoinfix push 22777953606 2m30s 2026-03-06T19:06:54Z | ||
| completed failure UI: Remove unused shield icon from NameLayer ƒº╝ PR fix/remove-shield-icon pull_request 22776933499 8s 2026-03-06T18:38:29Z | ||
| completed failure UI: Remove unused shield icon from NameLayer ƒº¬ CI fix/remove-shield-icon pull_request 22776882014 1m22s 2026-03-06T18:37:05Z | ||
| completed success UI: Remove unused shield icon from NameLayer ƒº╝ PR fix/remove-shield-icon pull_request_target 22776881998 8s 2026-03-06T18:37:05Z |
There was a problem hiding this comment.
This file appears to be accidentally committed.
This is a CI/CD activity log file that should not be part of the repository. It contains internal pipeline execution data.
Please remove this file from the PR and consider adding runs.txt to .gitignore.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@runs.txt` around lines 1 - 20, Remove the accidentally committed CI/CD
activity log "runs.txt" from the PR: delete the file from the branch (remove it
from the commit that added it or create a new commit that deletes it), and add
an entry "runs.txt" to .gitignore (update the existing .gitignore or create one)
so it won’t be re-added; ensure the branch history or the PR no longer contains
the file (if necessary, amend or revert the commit that introduced runs.txt or
use git rm --cached to stop tracking before deleting) and push the cleanup
commit.
Description:
This PR resolves a housekeeping
TODOinNameLayer.tsto remove the disabled shield icon logic.Changes Included:
shieldIcon(ShieldIconBlack.svg).shieldIconImageHTMLImageElement class property and removed its instantiation within the class constructor.if (false)block that manually constructed the.player-shieldDOM elements (img, text span).renderPlayerInforender loop logic which attempted to locate the shield elements and apply sizing and text rendering.densitycalculation from the render loop entirely, which was formerly calculated per player astroops() / numTilesOwned()solely to display on the removed shield icon.Impact:
NameLayerconstruct logic.densityfor every player on the screen every render frame when it's not rendered.Please complete the following:
Please put your Discord username so you can be contacted if a bug or regression is found: