opencode-telegram-link 1.0.0-rc.1 → 1.0.0-rc.2
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/README.md +3 -3
- package/dist/broker/main.js +8 -4
- package/dist/broker/main.js.map +4 -4
- package/dist/broker/server.d.ts.map +1 -1
- package/dist/plugin.js +2 -2
- package/dist/plugin.js.map +2 -2
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
OpenCode Telegram Notifier is a privacy-first OpenCode plugin and multi-host management gateway for asynchronous notifications, interactive inline buttons, safe remote replies, and proactive remote task dispatching. It is designed for developers who run OpenCode across multiple projects and multiple computers (dev machine, laptop, VPS) while routing every Telegram and Web interaction to the exact originating host, process, and workspace window.
|
|
4
4
|
|
|
5
|
-
> Version: **v1.0.0-rc.
|
|
6
|
-
> Status: Release Candidate
|
|
5
|
+
> Version: **v1.0.0-rc.2** (OpenCode Commander Web Dashboard, Proactive Remote Dispatch, Multi-Engine Voice STT, Multi-Host Gateway & Node Agent Architecture).
|
|
6
|
+
> Status: Release Candidate 2. Install from a release tarball or source checkout until the first public npm package is published.
|
|
7
7
|
|
|
8
8
|
[繁體中文總覽 (Traditional Chinese)](docs/README.zh-TW.md)
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
## Features & Highlights (v1.0.0-rc.
|
|
12
|
+
## Features & Highlights (v1.0.0-rc.2)
|
|
13
13
|
|
|
14
14
|
- 🖥️ **OpenCode Commander (Web GUI Dashboard)**: Built-in modern Glassmorphism Web Console (`http://<gateway-ip>:42617/dashboard`) providing real-time visibility, live metrics, and centralized cluster management.
|
|
15
15
|
- 🌐 **Cluster Topology & 1-to-1 Window Mapping**: Live cards for all connected computers and OpenCode workspace windows with real-time session indicators and task counters.
|
package/dist/broker/main.js
CHANGED
|
@@ -17975,7 +17975,7 @@ function rejectionHash(updateId, reason) {
|
|
|
17975
17975
|
import { randomUUID as randomUUID4 } from "crypto";
|
|
17976
17976
|
|
|
17977
17977
|
// src/version.ts
|
|
17978
|
-
var PACKAGE_VERSION = "1.0.0-rc.
|
|
17978
|
+
var PACKAGE_VERSION = "1.0.0-rc.2";
|
|
17979
17979
|
|
|
17980
17980
|
// src/telegram/commands.ts
|
|
17981
17981
|
function isSlashCommand(text) {
|
|
@@ -20100,7 +20100,9 @@ class BrokerServer {
|
|
|
20100
20100
|
clearInterval(this.#livenessTimer);
|
|
20101
20101
|
clearInterval(this.#maintenanceTimer);
|
|
20102
20102
|
failPendingCommands(this.#pendingCommands, "broker stopped");
|
|
20103
|
-
|
|
20103
|
+
try {
|
|
20104
|
+
await this.#telegramRuntimeRef.value?.stop();
|
|
20105
|
+
} catch {}
|
|
20104
20106
|
await this.#server.stop(true);
|
|
20105
20107
|
this.#connections.clear();
|
|
20106
20108
|
await this.#removeDiscovery();
|
|
@@ -20939,7 +20941,9 @@ ${replyText}`,
|
|
|
20939
20941
|
if (this.#deliveryTimer)
|
|
20940
20942
|
clearInterval(this.#deliveryTimer);
|
|
20941
20943
|
this.#deliveryTimer = undefined;
|
|
20942
|
-
|
|
20944
|
+
try {
|
|
20945
|
+
await this.#poller.stop();
|
|
20946
|
+
} catch {}
|
|
20943
20947
|
}
|
|
20944
20948
|
publish(notification) {
|
|
20945
20949
|
if (!this.#registry.resolve(notification.route)) {
|
|
@@ -21893,4 +21897,4 @@ export {
|
|
|
21893
21897
|
runBroker
|
|
21894
21898
|
};
|
|
21895
21899
|
|
|
21896
|
-
//# debugId=
|
|
21900
|
+
//# debugId=02CC163E478BF57D64756E2164756E21
|