@sumicom/quicksave 0.8.16 → 0.8.18

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/dist/index.js CHANGED
@@ -20,7 +20,7 @@ function collectValues(value, previous) {
20
20
  program
21
21
  .name('quicksave-agent')
22
22
  .description('Quicksave desktop agent for remote git control')
23
- .version('0.8.16')
23
+ .version('0.8.18')
24
24
  .allowExcessArguments(false)
25
25
  .option('-r, --repo <path>', 'Path to git repository (can specify multiple)', collectValues, [])
26
26
  .option('-c, --coding-path <path>', 'Path for Claude Code sessions (can specify multiple, non-git dirs OK)', collectValues, [])
@@ -72,7 +72,7 @@ program
72
72
  try {
73
73
  const result = await ensureDaemon();
74
74
  client = result.client;
75
- console.log(`Quicksave Agent v0.8.16 (daemon pid: ${result.hello.daemonPid})`);
75
+ console.log(`Quicksave Agent v0.8.18 (daemon pid: ${result.hello.daemonPid})`);
76
76
  console.log('='.repeat(50));
77
77
  }
78
78
  catch (err) {
@@ -9,7 +9,7 @@
9
9
  import { connect } from 'net';
10
10
  import { IPC_VERSION, BUILD_ID } from './types.js';
11
11
  // Package version — matches package.json
12
- const PACKAGE_VERSION = '0.8.16';
12
+ const PACKAGE_VERSION = '0.8.18';
13
13
  export class IpcClient {
14
14
  socket = null;
15
15
  nextId = 1;
@@ -38,7 +38,7 @@ import { enrichEntry } from '../ai/enrichEntry.js';
38
38
  import { getTerminalManager } from '../terminal/terminalManager.js';
39
39
  const HEARTBEAT_INTERVAL_MS = 30_000;
40
40
  const REGISTRY_WATCH_INTERVAL_MS = 1_000;
41
- const PACKAGE_VERSION = '0.8.16';
41
+ const PACKAGE_VERSION = '0.8.18';
42
42
  function startSessionRegistryWatcher(bus, claudeService) {
43
43
  const seen = new Map();
44
44
  const registry = getSessionRegistry();
@@ -27,7 +27,7 @@ const IS_DEV = globalThis.__QUICKSAVE_DEV__ === true;
27
27
  * In dev mode, hashes source file mtimes so the value only changes when code
28
28
  * actually changes — avoids spurious daemon restarts.
29
29
  */
30
- const _PLACEHOLDER = 'fa53873c233c';
30
+ const _PLACEHOLDER = 'e5b849493049';
31
31
  export const BUILD_ID = IS_DEV ? devBuildId() : _PLACEHOLDER;
32
32
  function devBuildId() {
33
33
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sumicom/quicksave",
3
- "version": "0.8.16",
3
+ "version": "0.8.18",
4
4
  "description": "Quicksave agent - remote git control CLI",
5
5
  "repository": {
6
6
  "type": "git",
@@ -41,8 +41,8 @@
41
41
  "tweetnacl": "^1.0.3",
42
42
  "ws": "^8.16.0",
43
43
  "zod": "^4.3.6",
44
- "@sumicom/quicksave-message-bus": "0.8.16",
45
- "@sumicom/quicksave-shared": "0.8.16"
44
+ "@sumicom/quicksave-shared": "0.8.18",
45
+ "@sumicom/quicksave-message-bus": "0.8.18"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/better-sqlite3": "^7.6.13",