@jhizzard/termdeck 1.3.0 → 1.5.0
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/README.md +1 -1
- package/package.json +3 -5
- package/packages/cli/src/index.js +2 -2
- package/packages/client/public/app.js +645 -8
- package/packages/client/public/index.html +28 -6
- package/packages/client/public/style.css +136 -0
- package/packages/server/src/database.js +20 -1
- package/packages/server/src/index.js +111 -21
- package/packages/server/src/orchestration-preview.js +1 -1
- package/packages/server/src/session.js +46 -8
- package/packages/server/src/sprint-inject.js +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TermDeck
|
|
2
2
|
|
|
3
|
-
[](https://github.com/jhizzard/termdeck/actions/workflows/ci.yml)
|
|
4
4
|
|
|
5
5
|
> **The terminal that remembers what you fixed last month.**
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jhizzard/termdeck",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Browser-based terminal multiplexer with metadata overlays, panel flashback memory recall, and AI-aware session management",
|
|
5
5
|
"bin": {
|
|
6
6
|
"termdeck": "./packages/cli/src/index.js"
|
|
@@ -39,15 +39,13 @@
|
|
|
39
39
|
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
|
|
40
40
|
"better-sqlite3": "^12.9.0",
|
|
41
41
|
"chalk": "^5.3.0",
|
|
42
|
-
"express": "^
|
|
43
|
-
"open": "^10.0.0",
|
|
42
|
+
"express": "^5.2.1",
|
|
44
43
|
"pg": "^8.20.0",
|
|
45
|
-
"uuid": "^13.0.0",
|
|
46
44
|
"ws": "^8.16.0",
|
|
47
45
|
"yaml": "^2.3.4"
|
|
48
46
|
},
|
|
49
47
|
"devDependencies": {
|
|
50
|
-
"@anthropic-ai/sdk": "^0.
|
|
48
|
+
"@anthropic-ai/sdk": "^0.96.0"
|
|
51
49
|
},
|
|
52
50
|
"keywords": [
|
|
53
51
|
"terminal",
|
|
@@ -164,8 +164,8 @@ function reclaimStalePort(port) {
|
|
|
164
164
|
try { process.kill(parseInt(pid, 10), 'SIGKILL'); } catch (_e) {}
|
|
165
165
|
}
|
|
166
166
|
} else {
|
|
167
|
-
|
|
168
|
-
|
|
167
|
+
process.stderr.write(`\n \x1b[31m✗ Port ${port} is in use by a non-TermDeck process (PIDs: ${pids.join(' ')})\x1b[0m\n`);
|
|
168
|
+
process.stderr.write(` \x1b[2mTry a different port: termdeck --port ${port + 1}\x1b[0m\n\n`);
|
|
169
169
|
process.exit(1);
|
|
170
170
|
}
|
|
171
171
|
}
|