claude-threads 0.48.13 → 0.48.14

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 CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.48.14] - 2026-01-09
11
+
12
+ ### Fixed
13
+ - **Clean screen before update restart** - Screen now clears and cursor is restored before the daemon restarts, so the new UI appears cleanly at the top instead of below the old UI remnants (#144)
14
+
10
15
  ## [0.48.13] - 2026-01-09
11
16
 
12
17
  ### Fixed
package/dist/index.js CHANGED
@@ -64999,6 +64999,8 @@ class AutoUpdateManager extends EventEmitter9 {
64999
64999
  await new Promise((resolve7) => setTimeout(resolve7, 1000));
65000
65000
  await this.callbacks.prepareForRestart();
65001
65001
  log22.info(`\uD83D\uDD04 Restarting for update to v${updateInfo.latestVersion}`);
65002
+ process.stdout.write("\x1B[2J\x1B[H");
65003
+ process.stdout.write("\x1B[?25h");
65002
65004
  process.exit(RESTART_EXIT_CODE);
65003
65005
  } else {
65004
65006
  const errorMsg = result.error ?? "Unknown error";
@@ -65320,6 +65322,8 @@ async function main() {
65320
65322
  for (const client of platforms.values()) {
65321
65323
  client.disconnect();
65322
65324
  }
65325
+ process.stdout.write("\x1B[2J\x1B[H");
65326
+ process.stdout.write("\x1B[?25h");
65323
65327
  }
65324
65328
  });
65325
65329
  session.setAutoUpdateManager(autoUpdateManager);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-threads",
3
- "version": "0.48.13",
3
+ "version": "0.48.14",
4
4
  "description": "Share Claude Code sessions live in a Mattermost channel with interactive features",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",