nothumanallowed 13.2.50 → 13.2.51
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 +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.51",
|
|
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.2.
|
|
8
|
+
export const VERSION = '13.2.51';
|
|
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
|
@@ -3129,10 +3129,10 @@ function downloadStudioPDF() {
|
|
|
3129
3129
|
.replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>')
|
|
3130
3130
|
.replace(/\*\*(.*?)\*\*/g,'<strong>$1</strong>')
|
|
3131
3131
|
.replace(/\*(.*?)\*/g,'<em>$1</em>')
|
|
3132
|
-
.replace(
|
|
3133
|
-
.replace(
|
|
3134
|
-
.replace(
|
|
3135
|
-
.replace(
|
|
3132
|
+
.replace(new RegExp('^#{3}[ \\t]+(.+)$','gm'),'<h3>$1</h3>')
|
|
3133
|
+
.replace(new RegExp('^#{2}[ \\t]+(.+)$','gm'),'<h2>$1</h2>')
|
|
3134
|
+
.replace(new RegExp('^#{1}[ \\t]+(.+)$','gm'),'<h2>$1</h2>')
|
|
3135
|
+
.replace(new RegExp('^-[ \\t]+(.+)$','gm'),'<li>$1</li>')
|
|
3136
3136
|
.replace(/(<li>[\s\S]*?<\/li>)/g,'<ul>$1</ul>')
|
|
3137
3137
|
.replace(/\n{2,}/g,'</p><p>')
|
|
3138
3138
|
.replace(/\n/g,'<br>');
|