nothumanallowed 13.5.112 → 13.5.113
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 +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.113",
|
|
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.113';
|
|
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
|
@@ -4871,7 +4871,13 @@ function _doGenerateXLSX() {
|
|
|
4871
4871
|
function renderStudioResult() {
|
|
4872
4872
|
var el = document.getElementById('studioResult');
|
|
4873
4873
|
if (!el) return;
|
|
4874
|
-
if (!studioState.result) {
|
|
4874
|
+
if (!studioState.result) {
|
|
4875
|
+
el.style.display = 'none';
|
|
4876
|
+
var _xb = document.getElementById('studioInlineXlsxBtn'); if (_xb) _xb.style.display = 'none';
|
|
4877
|
+
var _cb = document.getElementById('studioInlineCsvBtn'); if (_cb) _cb.style.display = 'none';
|
|
4878
|
+
var _pb = document.getElementById('studioInlinePdfBtn'); if (_pb) _pb.style.display = 'none';
|
|
4879
|
+
return;
|
|
4880
|
+
}
|
|
4875
4881
|
el.style.display = 'block';
|
|
4876
4882
|
var hasCanvas = !!(studioState.canvas);
|
|
4877
4883
|
var body = hasCanvas
|