@ghostlygawd/hangar 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.1] - 2026-06-14
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **`Hangar.exe` crashed on launch** (a flash, then nothing). The esbuild bundle
|
|
15
|
+
left `import.meta.url` undefined, so the binary threw `fileURLToPath(undefined)`
|
|
16
|
+
at startup before the window could open. Define it via an esbuild banner, fix the
|
|
17
|
+
pkg asset path so the embedded `web/dist` lands where the server resolves it, and
|
|
18
|
+
**smoke-test the exe in CI** (run it, curl the dashboard) before attaching it to a
|
|
19
|
+
release — so a broken binary can't ship again. npm and the source install were
|
|
20
|
+
unaffected.
|
|
21
|
+
|
|
10
22
|
## [0.2.0] - 2026-06-13
|
|
11
23
|
|
|
12
24
|
### Security
|
|
@@ -96,6 +108,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
96
108
|
cloudflared tunnel), structured-field limit detection, and the one-pager site.
|
|
97
109
|
Apache-2.0.
|
|
98
110
|
|
|
99
|
-
[Unreleased]: https://github.com/GhostlyGawd/hangar/compare/v0.2.
|
|
111
|
+
[Unreleased]: https://github.com/GhostlyGawd/hangar/compare/v0.2.1...HEAD
|
|
112
|
+
[0.2.1]: https://github.com/GhostlyGawd/hangar/compare/v0.2.0...v0.2.1
|
|
100
113
|
[0.2.0]: https://github.com/GhostlyGawd/hangar/compare/v0.1.0...v0.2.0
|
|
101
114
|
[0.1.0]: https://github.com/GhostlyGawd/hangar/releases/tag/v0.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ghostlygawd/hangar",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "A free, open-source cockpit for parallel Claude Code on Windows — isolated worktree spaces, real interactive sessions, multi-account, zero-token observability.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|