nothumanallowed 8.0.2 → 8.0.3
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 +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.3",
|
|
4
4
|
"description": "NotHumanAllowed — 38 AI agents + unified productivity suite. Gmail, Calendar, Drive, Contacts, Tasks, GitHub, Notion, Slack, voice chat, smart scheduler. 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 = '8.0.
|
|
8
|
+
export const VERSION = '8.0.3';
|
|
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
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
* Web UI v2 — Rewritten from scratch. Mobile-first. BEM CSS. No escape hell.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
+
import { VERSION } from '../constants.mjs';
|
|
6
|
+
|
|
5
7
|
export function getHTML(port) {
|
|
6
8
|
const ts = Date.now();
|
|
7
9
|
|
|
@@ -1420,6 +1422,7 @@ init();
|
|
|
1420
1422
|
<div class="sidebar__label">Config</div>
|
|
1421
1423
|
<div class="nav-item" data-view="settings" onclick="switchView('settings')"><span class="nav-item__icon">⚙</span> Settings</div>
|
|
1422
1424
|
</div>
|
|
1425
|
+
<div style="padding:12px 16px;margin-top:auto;border-top:1px solid var(--border);font-size:10px;color:var(--dim)">NHA v${VERSION}</div>
|
|
1423
1426
|
</nav>
|
|
1424
1427
|
|
|
1425
1428
|
<div class="header">
|