nothumanallowed 13.5.120 → 13.5.121

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nothumanallowed",
3
- "version": "13.5.120",
3
+ "version": "13.5.121",
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.120';
8
+ export const VERSION = '13.5.121';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11
 
@@ -1557,7 +1557,8 @@ function emailOpenCompose(opts) {
1557
1557
  }
1558
1558
  h += '</div></div>';
1559
1559
  // Quill editor container
1560
- h += '<div id="quillContainer" style="flex:1;min-height:200px;background:#fff;border-radius:5px;overflow:auto"></div>';
1560
+ h += '<style>.ql-editor{color:#111!important;font-size:14px!important;line-height:1.6!important}.ql-editor p,.ql-editor li,.ql-editor h1,.ql-editor h2,.ql-editor h3{color:inherit}.ql-toolbar{background:#f5f5f5!important;border-radius:5px 5px 0 0!important}</style>';
1561
+ h += '<div id="quillContainer" style="flex:1;min-height:200px;background:#ffffff;border-radius:0 0 5px 5px;overflow:auto;display:flex;flex-direction:column"></div>';
1561
1562
  // Toolbar
1562
1563
  h += '<div style="display:flex;gap:8px;flex-wrap:wrap">';
1563
1564
  h += '<button onclick="emailSend()" style="padding:7px 18px;background:var(--green3);color:var(--bg);border:none;border-radius:5px;font-size:12px;font-weight:700;cursor:pointer">Send</button>';
@@ -1592,6 +1593,8 @@ function emailInitQuill(opts) {
1592
1593
  ]},
1593
1594
  placeholder: 'Write your message...',
1594
1595
  });
1596
+ // Force default text color to black (editor bg is white, NHA theme vars would make text grey)
1597
+ emailState.quillEditor.format('color', '#111111');
1595
1598
  // Pre-fill for forward
1596
1599
  if (opts && opts.type === 'forward' && opts.body) {
1597
1600
  emailState.quillEditor.clipboard.dangerouslyPasteHTML('<br><br><hr><p>---------- Forwarded message ----------</p>' + (opts.body || ''));