nothumanallowed 6.4.0 → 6.4.1
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/commands/ui.mjs +2 -2
- package/src/constants.mjs +1 -1
- package/src/services/web-ui.mjs +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.1",
|
|
4
4
|
"description": "NotHumanAllowed — 38 AI agents for security, code, DevOps, data & daily ops. Per-agent memory, Telegram + Discord auto-responder, proactive intelligence daemon, voice chat, plugin system.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/commands/ui.mjs
CHANGED
|
@@ -533,8 +533,8 @@ export async function cmdUI(args) {
|
|
|
533
533
|
return;
|
|
534
534
|
}
|
|
535
535
|
|
|
536
|
-
// ── Favicon (no-content)
|
|
537
|
-
if (pathname === '/favicon.ico') {
|
|
536
|
+
// ── Favicon + Apple touch icons (no-content, suppress 404) ────────
|
|
537
|
+
if (pathname === '/favicon.ico' || pathname.startsWith('/apple-touch-icon')) {
|
|
538
538
|
res.writeHead(204);
|
|
539
539
|
res.end();
|
|
540
540
|
return;
|
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 = '6.4.
|
|
8
|
+
export const VERSION = '6.4.1';
|
|
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
|
@@ -724,7 +724,7 @@ function renderSettings(el) {
|
|
|
724
724
|
}
|
|
725
725
|
|
|
726
726
|
function settingsSection(id, title, desc, fields) {
|
|
727
|
-
var h = '<
|
|
727
|
+
var h = '<form class="card" style="margin-bottom:16px" id="settings-' + id + '" onsubmit="event.preventDefault();saveSettingsSection(\\x27' + id + '\\x27)">' +
|
|
728
728
|
'<div class="card__title" style="color:var(--green);font-size:14px;margin-bottom:4px">' + esc(title) + '</div>' +
|
|
729
729
|
'<div style="font-size:11px;color:var(--dim);margin-bottom:12px">' + esc(desc) + '</div>';
|
|
730
730
|
|
|
@@ -753,7 +753,7 @@ function settingsSection(id, title, desc, fields) {
|
|
|
753
753
|
'<span id="settings-status-' + id + '" style="font-size:11px;color:var(--dim)"></span>' +
|
|
754
754
|
'</div>';
|
|
755
755
|
|
|
756
|
-
h += '</
|
|
756
|
+
h += '</form>';
|
|
757
757
|
return h;
|
|
758
758
|
}
|
|
759
759
|
|