@yemi33/minions 0.1.391 → 0.1.392
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 +4 -1
- package/dashboard/js/render-dispatch.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.392 (2026-04-06)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- track dashboard version — detect stale dashboard code separately
|
|
7
7
|
- Replace magic strings in pipeline.js with STAGE_TYPE/PIPELINE_STATUS/MEETING_STATUS constants (#244)
|
|
8
8
|
- Fix spawn-agent.js direct proc.kill() — use cross-platform helpers (#243)
|
|
9
9
|
|
|
10
|
+
### Fixes
|
|
11
|
+
- show 'minions update' as primary upgrade command in version banner
|
|
12
|
+
|
|
10
13
|
## 0.1.388 (2026-04-06)
|
|
11
14
|
|
|
12
15
|
### Fixes
|
|
@@ -233,8 +233,8 @@ function renderVersionBanner(version) {
|
|
|
233
233
|
el.title = 'The dashboard process is running older code. Run: minions restart';
|
|
234
234
|
} else if (version.updateAvailable) {
|
|
235
235
|
el.style.cssText = 'font-size:9px;padding:2px 8px;background:rgba(63,185,80,0.1);border:1px solid rgba(63,185,80,0.3);border-radius:4px;color:var(--green);cursor:help';
|
|
236
|
-
el.textContent = 'v' + v + commitLabel + ' — v' + version.latest + ' available. Run: npm update -g @yemi33/minions';
|
|
237
|
-
el.title = 'A newer version is available on npm';
|
|
236
|
+
el.textContent = 'v' + v + commitLabel + ' — v' + version.latest + ' available. Run: minions update or npm update -g @yemi33/minions';
|
|
237
|
+
el.title = 'A newer version is available on npm. Run minions update to upgrade and restart.';
|
|
238
238
|
} else {
|
|
239
239
|
el.style.cssText = 'font-size:9px;color:var(--muted)';
|
|
240
240
|
el.textContent = 'v' + v + commitLabel;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.392",
|
|
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"
|