claude-threads 0.48.12 → 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 +11 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,10 +7,20 @@ 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
|
+
|
|
15
|
+
## [0.48.13] - 2026-01-09
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- **Don't crash when no platforms connect** - Improved 0.48.12 fix to log error instead of throwing when all platforms fail to connect, allowing the bot to stay running so users can fix configuration
|
|
19
|
+
|
|
10
20
|
## [0.48.12] - 2026-01-09
|
|
11
21
|
|
|
12
22
|
### Fixed
|
|
13
|
-
- **Graceful platform connection failures** - Bot no longer crashes when one platform fails to connect. Failed platforms are automatically disabled and the bot continues with remaining platforms
|
|
23
|
+
- **Graceful platform connection failures** - Bot no longer crashes when one platform fails to connect. Failed platforms are automatically disabled and the bot continues with remaining platforms
|
|
14
24
|
|
|
15
25
|
## [0.48.11] - 2026-01-09
|
|
16
26
|
|
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";
|
|
@@ -65298,7 +65300,7 @@ async function main() {
|
|
|
65298
65300
|
}));
|
|
65299
65301
|
const successfulConnections = connectionResults.filter((r) => r.status === "fulfilled" && r.value.success);
|
|
65300
65302
|
if (successfulConnections.length === 0) {
|
|
65301
|
-
|
|
65303
|
+
ui.addLog({ level: "error", component: "init", message: "\u26A0\uFE0F No platforms connected. Check your configuration and credentials." });
|
|
65302
65304
|
}
|
|
65303
65305
|
await session.initialize();
|
|
65304
65306
|
let isShuttingDown2 = false;
|
|
@@ -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);
|