@yemi33/minions 0.1.676 → 0.1.677

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.677 (2026-04-09)
4
+
5
+ ### Fixes
6
+ - abort button shows 'Aborting...' then becomes 'Run Now'
7
+
3
8
  ## 0.1.676 (2026-04-09)
4
9
 
5
10
  ### Fixes
@@ -374,7 +374,18 @@ async function _abortPipeline(id, btn) {
374
374
  if (res.ok) {
375
375
  var d = await res.json().catch(function() { return {}; });
376
376
  showToast('cmd-toast', 'Pipeline aborted — ' + (d.cancelledWorkItems || 0) + ' work items cancelled', true);
377
- if (btn) { btn.textContent = '\u2713 Aborted'; btn.style.color = 'var(--red)'; }
377
+ // Replace abort button with Run Now
378
+ if (btn) {
379
+ btn.textContent = 'Run Now';
380
+ btn.style.color = 'var(--green)';
381
+ btn.style.borderColor = 'var(--green)';
382
+ btn.style.pointerEvents = '';
383
+ btn.style.opacity = '';
384
+ btn.onclick = function() { _triggerPipeline(id, btn); };
385
+ // Remove the retrigger button next to it (no longer needed)
386
+ var next = btn.nextElementSibling;
387
+ if (next && next.textContent.trim() === 'Retrigger') next.remove();
388
+ }
378
389
  refresh();
379
390
  openPipelineDetail(id);
380
391
  } else { var d = await res.json().catch(function() { return {}; }); alert('Abort failed: ' + (d.error || 'unknown')); if (btn) { btn.textContent = 'Abort'; btn.style.pointerEvents = ''; btn.style.opacity = ''; } }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.676",
3
+ "version": "0.1.677",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"