ccmanager 3.6.5 → 3.6.6
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.
|
@@ -277,11 +277,6 @@ export class SessionManager extends EventEmitter {
|
|
|
277
277
|
session.process.onData((data) => {
|
|
278
278
|
// Write data to virtual terminal
|
|
279
279
|
session.terminal.write(data);
|
|
280
|
-
// Check for screen clear escape sequence (e.g., from /clear command)
|
|
281
|
-
// When detected, clear the output history to prevent replaying old content on restore
|
|
282
|
-
if (data.includes('\x1B[2J')) {
|
|
283
|
-
session.outputHistory = [];
|
|
284
|
-
}
|
|
285
280
|
// Store in output history as Buffer
|
|
286
281
|
const buffer = Buffer.from(data, 'utf8');
|
|
287
282
|
session.outputHistory.push(buffer);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccmanager",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.6",
|
|
4
4
|
"description": "TUI application for managing multiple Claude Code sessions across Git worktrees",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Kodai Kabasawa",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"bin"
|
|
42
42
|
],
|
|
43
43
|
"optionalDependencies": {
|
|
44
|
-
"@kodaikabasawa/ccmanager-darwin-arm64": "3.6.
|
|
45
|
-
"@kodaikabasawa/ccmanager-darwin-x64": "3.6.
|
|
46
|
-
"@kodaikabasawa/ccmanager-linux-arm64": "3.6.
|
|
47
|
-
"@kodaikabasawa/ccmanager-linux-x64": "3.6.
|
|
48
|
-
"@kodaikabasawa/ccmanager-win32-x64": "3.6.
|
|
44
|
+
"@kodaikabasawa/ccmanager-darwin-arm64": "3.6.6",
|
|
45
|
+
"@kodaikabasawa/ccmanager-darwin-x64": "3.6.6",
|
|
46
|
+
"@kodaikabasawa/ccmanager-linux-arm64": "3.6.6",
|
|
47
|
+
"@kodaikabasawa/ccmanager-linux-x64": "3.6.6",
|
|
48
|
+
"@kodaikabasawa/ccmanager-win32-x64": "3.6.6"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@eslint/js": "^9.28.0",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"ink-text-input": "^6.0.0",
|
|
76
76
|
"meow": "^14.0.0",
|
|
77
77
|
"react": "^19.2.3",
|
|
78
|
-
"react-devtools-core": "^
|
|
78
|
+
"react-devtools-core": "^7.0.1",
|
|
79
79
|
"react-dom": "^19.2.3",
|
|
80
80
|
"strip-ansi": "^7.1.0"
|
|
81
81
|
}
|