nothumanallowed 13.5.197 → 13.5.198
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/package.json +1 -1
- package/src/constants.mjs +1 -1
- package/src/services/web-ui.mjs +11 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.198",
|
|
4
4
|
"description": "NotHumanAllowed — 38 AI agents, 80 tools, Studio (visual agentic workflows). Email, calendar, browser automation, screen capture, canvas, cron/heartbeat, Alexandria E2E messaging, GitHub, Notion, Slack, voice chat, free AI (Liara), 28 languages. Zero-dependency CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/constants.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { fileURLToPath } from 'url';
|
|
|
5
5
|
const __filename = fileURLToPath(import.meta.url);
|
|
6
6
|
const __dirname = path.dirname(__filename);
|
|
7
7
|
|
|
8
|
-
export const VERSION = '13.5.
|
|
8
|
+
export const VERSION = '13.5.198';
|
|
9
9
|
export const BASE_URL = 'https://nothumanallowed.com/cli';
|
|
10
10
|
export const API_BASE = 'https://nothumanallowed.com/api/v1';
|
|
11
11
|
|
package/src/services/web-ui.mjs
CHANGED
|
@@ -4357,6 +4357,11 @@ function stopStudio() {
|
|
|
4357
4357
|
// Mark any still-running nodes as error
|
|
4358
4358
|
studioState.nodes.forEach(function(n) { if (n.status === 'running') n.status = 'error'; });
|
|
4359
4359
|
renderStudioNodes();
|
|
4360
|
+
// Save partial session so it appears in the sidebar with X button
|
|
4361
|
+
if (studioState.task && studioState.nodes.length > 0) {
|
|
4362
|
+
saveStudioSession(studioState.task + ' [Interrotta]', studioState.nodes, studioState.log, studioState.result || '');
|
|
4363
|
+
renderStudioSessionsBar();
|
|
4364
|
+
}
|
|
4360
4365
|
}
|
|
4361
4366
|
|
|
4362
4367
|
function studioReset() {
|
|
@@ -6822,20 +6827,14 @@ function restoreStudioSession(idx) {
|
|
|
6822
6827
|
}
|
|
6823
6828
|
// Restore canvas if present
|
|
6824
6829
|
if (s.canvas) {
|
|
6825
|
-
|
|
6826
|
-
|
|
6827
|
-
|
|
6828
|
-
|
|
6829
|
-
var ct = document.getElementById('canvasTitle');
|
|
6830
|
-
if (ct) ct.textContent = 'Studio Report';
|
|
6830
|
+
studioState.canvas = s.canvas;
|
|
6831
|
+
// Use showCanvas() so allCanvasData is keyed correctly (activeConvId || '_default')
|
|
6832
|
+
// and renderCanvasPanel() is called, loading the iframe properly
|
|
6833
|
+
showCanvas(s.canvas, 'Studio Report: ' + s.task.slice(0, 50));
|
|
6831
6834
|
var scb = document.getElementById('studioCanvasBtn');
|
|
6832
6835
|
if (scb) scb.style.display = '';
|
|
6833
|
-
|
|
6834
|
-
|
|
6835
|
-
if (!allCanvasData[convId]) allCanvasData[convId] = {canvases:[], browsers:[]};
|
|
6836
|
-
allCanvasData[convId].canvases.push({html: s.canvas, title: s.task.slice(0,60), ts: s.ts});
|
|
6837
|
-
canvasIdx = allCanvasData[convId].canvases.length - 1;
|
|
6838
|
-
canvasMode = 'canvas';
|
|
6836
|
+
var ct = document.getElementById('canvasTitle');
|
|
6837
|
+
if (ct) ct.textContent = 'Studio Report';
|
|
6839
6838
|
}
|
|
6840
6839
|
showToast('success', 'Session restored', s.task.slice(0, 60), 3000);
|
|
6841
6840
|
}
|