ccmanager 4.1.0 → 4.1.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.
|
@@ -201,7 +201,7 @@ export class SessionManager extends EventEmitter {
|
|
|
201
201
|
}
|
|
202
202
|
getRestoreSnapshot(session) {
|
|
203
203
|
return session.serializer.serialize({
|
|
204
|
-
scrollback:
|
|
204
|
+
scrollback: 0,
|
|
205
205
|
});
|
|
206
206
|
}
|
|
207
207
|
async createSessionInternal(worktreePath, ptyProcess, options = {}) {
|
|
@@ -774,7 +774,7 @@ describe('SessionManager', () => {
|
|
|
774
774
|
const restoreHandler = vi.fn();
|
|
775
775
|
sessionManager.on('sessionRestore', restoreHandler);
|
|
776
776
|
sessionManager.setSessionActive(session.id, true);
|
|
777
|
-
expect(serializeMock).toHaveBeenCalledWith({ scrollback:
|
|
777
|
+
expect(serializeMock).toHaveBeenCalledWith({ scrollback: 0 });
|
|
778
778
|
expect(restoreHandler).toHaveBeenCalledWith(session, '\u001b[31mrestored\u001b[0m');
|
|
779
779
|
});
|
|
780
780
|
it('should skip restore event when serialized output is empty', async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccmanager",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.1",
|
|
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": "4.1.
|
|
45
|
-
"@kodaikabasawa/ccmanager-darwin-x64": "4.1.
|
|
46
|
-
"@kodaikabasawa/ccmanager-linux-arm64": "4.1.
|
|
47
|
-
"@kodaikabasawa/ccmanager-linux-x64": "4.1.
|
|
48
|
-
"@kodaikabasawa/ccmanager-win32-x64": "4.1.
|
|
44
|
+
"@kodaikabasawa/ccmanager-darwin-arm64": "4.1.1",
|
|
45
|
+
"@kodaikabasawa/ccmanager-darwin-x64": "4.1.1",
|
|
46
|
+
"@kodaikabasawa/ccmanager-linux-arm64": "4.1.1",
|
|
47
|
+
"@kodaikabasawa/ccmanager-linux-x64": "4.1.1",
|
|
48
|
+
"@kodaikabasawa/ccmanager-win32-x64": "4.1.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@eslint/js": "^9.28.0",
|