nothumanallowed 13.5.67 → 13.5.68

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.67",
3
+ "version": "13.5.68",
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": {
@@ -7118,7 +7118,6 @@ function wcChatKeydown(e) {
7118
7118
  }
7119
7119
 
7120
7120
  function wcStopAll() {
7121
- // Abort ongoing generation
7122
7121
  if (_wcGenAbortCtrl) { _wcGenAbortCtrl.abort(); _wcGenAbortCtrl = null; }
7123
7122
  wcState.running = false;
7124
7123
  wcChatRunning = false;
@@ -7128,6 +7127,21 @@ function wcStopAll() {
7128
7127
  renderWebCraft(document.getElementById('content'));
7129
7128
  }
7130
7129
 
7130
+ function wcOverlayMinimize() {
7131
+ _wcOverlayMinimized = true;
7132
+ renderWebCraft(document.getElementById('content'));
7133
+ if (_wcOverlayTimer) clearTimeout(_wcOverlayTimer);
7134
+ _wcOverlayTimer = setTimeout(function() {
7135
+ if (wcState.running) { _wcOverlayMinimized = false; renderWebCraft(document.getElementById('content')); }
7136
+ }, 10000);
7137
+ }
7138
+
7139
+ function wcOverlayRestore() {
7140
+ if (_wcOverlayTimer) { clearTimeout(_wcOverlayTimer); _wcOverlayTimer = null; }
7141
+ _wcOverlayMinimized = false;
7142
+ renderWebCraft(document.getElementById('content'));
7143
+ }
7144
+
7131
7145
  function wcRemoveAttachment(ai) {
7132
7146
  wcChatAttachments.splice(ai, 1);
7133
7147
  renderWebCraft(document.getElementById('content'));
@@ -7781,22 +7795,6 @@ async function wcGenerate() {
7781
7795
  '<div style="display:flex;gap:4px;margin-top:10px">'+[0,1,2,3,4].map(function(_,idx){ return '<div style="width:6px;height:6px;border-radius:50%;background:var(--green);animation:wcDot 1.1s ease-in-out infinite '+(idx*0.14)+'s"></div>'; }).join('')+'</div>';
7782
7796
  }
7783
7797
 
7784
- function wcOverlayMinimize() {
7785
- _wcOverlayMinimized = true;
7786
- renderWebCraft(document.getElementById('content'));
7787
- // Restore after 10s of inactivity
7788
- if (_wcOverlayTimer) clearTimeout(_wcOverlayTimer);
7789
- _wcOverlayTimer = setTimeout(function() {
7790
- if (wcState.running) { _wcOverlayMinimized = false; renderWebCraft(document.getElementById('content')); }
7791
- }, 10000);
7792
- }
7793
-
7794
- function wcOverlayRestore() {
7795
- if (_wcOverlayTimer) { clearTimeout(_wcOverlayTimer); _wcOverlayTimer = null; }
7796
- _wcOverlayMinimized = false;
7797
- renderWebCraft(document.getElementById('content'));
7798
- }
7799
-
7800
7798
  for (var fi = 0; fi < filePlan.length; fi++) {
7801
7799
  var fp = filePlan[fi];
7802
7800
  wcUpdateGenOverlay(fi, filePlan.length, fp.name);