@wrongstack/desktop 1.0.3 → 1.0.6
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/assets/icon.png +0 -0
- package/assets/icon.svg +6 -0
- package/dist/main/agent-bridge.js +1 -3
- package/dist/main/main.js +2363 -2153
- package/dist/preload/preload.cjs +9 -0
- package/dist/preload/webui-preload.cjs +6 -0
- package/dist/renderer/assets/index-0iZUYcLZ.js +10 -0
- package/dist/renderer/assets/index-By9A0swX.css +1 -0
- package/dist/renderer/index.html +2 -2
- package/package.json +19 -6
- package/dist/renderer/assets/index-0PiIJ5rt.js +0 -371
- package/dist/renderer/assets/index-DNaesuTF.css +0 -1
package/assets/icon.png
ADDED
|
Binary file
|
package/assets/icon.svg
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" fill="none" role="img" aria-labelledby="wrongstack-logo-title" shape-rendering="crispEdges">
|
|
2
|
+
<title id="wrongstack-logo-title">WrongStack</title>
|
|
3
|
+
<rect width="400" height="400" fill="#121210"/>
|
|
4
|
+
<path fill="#FD9F02" d="M30 170h60v60H30zM170 170h60v60h-60zM240 170h60v60h-60zM310 170h60v60h-60z"/>
|
|
5
|
+
<path fill="#FE2E5F" d="M100 200h60v60h-60z"/>
|
|
6
|
+
</svg>
|
|
@@ -175,9 +175,7 @@ var DesktopAgentBridge = class extends EventEmitter {
|
|
|
175
175
|
conversation.reconnectTimer = null;
|
|
176
176
|
if (!conversation.reconnectUrl) return;
|
|
177
177
|
if (conversation.ws?.readyState !== WebSocket.OPEN) {
|
|
178
|
-
void this.connect(conversation.runtimeId, conversation.reconnectUrl).catch(
|
|
179
|
-
() => void 0
|
|
180
|
-
);
|
|
178
|
+
void this.connect(conversation.runtimeId, conversation.reconnectUrl).catch(() => void 0);
|
|
181
179
|
}
|
|
182
180
|
}, reconnect.plan.delayMs);
|
|
183
181
|
}
|