nothumanallowed 13.5.85 → 13.5.86
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/services/web-ui.mjs +13 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.86",
|
|
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/services/web-ui.mjs
CHANGED
|
@@ -6679,7 +6679,8 @@ function renderWebCraft(el) {
|
|
|
6679
6679
|
// Minimized: small pill in bottom-right corner
|
|
6680
6680
|
? '<div id="wcGenOverlay" onclick="wcOverlayRestore()" style="position:absolute;bottom:12px;right:12px;z-index:50;background:rgba(0,0,0,0.85);border:1px solid var(--green3);border-radius:20px;padding:5px 12px;display:flex;align-items:center;gap:7px;cursor:pointer;animation:wcBubbleIn .2s ease;backdrop-filter:blur(4px)">'
|
|
6681
6681
|
+'<span style="font-size:16px;animation:wcRobotBob .9s ease-in-out infinite">🤖</span>'
|
|
6682
|
-
+'<span style="font-size:10px;color:var(--green);font-weight:700">Generando
|
|
6682
|
+
+'<span id="wcPillLabel" style="font-size:10px;color:var(--green);font-weight:700;max-width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap">'+wcEsc(_wcGenOverlayState.name || 'Generando...')+'</span>'
|
|
6683
|
+
+'<span style="font-size:9px;color:var(--dim)">'+wcGenElapsed()+'</span>'
|
|
6683
6684
|
+'<span style="display:flex;gap:3px">'+[0,1,2].map(function(_,idx){ return '<span style="width:4px;height:4px;border-radius:50%;background:var(--green);animation:wcDot 1.1s ease-in-out infinite '+(idx*0.18)+'s"></span>'; }).join('')+'</span>'
|
|
6684
6685
|
+'</div>'
|
|
6685
6686
|
// Full overlay
|
|
@@ -7893,7 +7894,15 @@ async function wcGenerate() {
|
|
|
7893
7894
|
if (_wcTimerInterval) clearInterval(_wcTimerInterval);
|
|
7894
7895
|
_wcTimerInterval = setInterval(function() {
|
|
7895
7896
|
if (!wcState.running) { clearInterval(_wcTimerInterval); _wcTimerInterval = null; return; }
|
|
7896
|
-
|
|
7897
|
+
if (_wcOverlayMinimized) {
|
|
7898
|
+
// Update pill label + elapsed without full re-render
|
|
7899
|
+
var pill = document.getElementById('wcPillLabel');
|
|
7900
|
+
if (pill) pill.textContent = _wcGenOverlayState.name || 'Generando...';
|
|
7901
|
+
var ov = document.getElementById('wcGenOverlay');
|
|
7902
|
+
if (ov) { var spans = ov.querySelectorAll('span'); if (spans[1]) spans[1].textContent = wcGenElapsed(); }
|
|
7903
|
+
} else {
|
|
7904
|
+
wcUpdateGenOverlay(_wcGenOverlayState.fi, _wcGenOverlayState.total, _wcGenOverlayState.name);
|
|
7905
|
+
}
|
|
7897
7906
|
}, 1000);
|
|
7898
7907
|
}
|
|
7899
7908
|
|
|
@@ -7910,9 +7919,9 @@ async function wcGenerate() {
|
|
|
7910
7919
|
: '';
|
|
7911
7920
|
ov.innerHTML =
|
|
7912
7921
|
'<div style="font-size:38px;animation:wcRobotBob 1s ease-in-out infinite">🤖</div>' +
|
|
7913
|
-
'<div style="font-size:13px;font-weight:700;color:var(--green);margin-top:12px">Generazione in corso
|
|
7922
|
+
'<div style="font-size:13px;font-weight:700;color:var(--green);margin-top:12px">' + (name.indexOf('Retry:') === 0 ? 'Retry in corso...' : name.indexOf('Fix:') === 0 ? 'Correzione in corso...' : 'Generazione in corso...') + '</div>' +
|
|
7914
7923
|
'<div style="font-size:10px;color:var(--dim);margin-top:2px">Clicca per navigare i file</div>' +
|
|
7915
|
-
'<div style="font-size:11px;color:var(--dim);font-family:var(--mono);max-width:300px;text-align:center;word-break:break-all;margin-top:8px">'+wcEsc(name)+'</div>' +
|
|
7924
|
+
'<div style="font-size:11px;color:'+(name.indexOf('Retry:')===0?'#fb923c':name.indexOf('Fix:')===0?'#facc15':'var(--dim)')+';font-family:var(--mono);max-width:300px;text-align:center;word-break:break-all;margin-top:8px">'+wcEsc(name)+'</div>' +
|
|
7916
7925
|
'<div style="width:220px;height:4px;background:rgba(255,255,255,0.1);border-radius:2px;overflow:hidden;margin-top:12px">' +
|
|
7917
7926
|
'<div style="height:100%;width:'+pct+'%;background:var(--green);border-radius:2px;transition:width .4s ease;animation:wcBarPulse 1.5s ease-in-out infinite"></div>' +
|
|
7918
7927
|
'</div>' +
|