@yemi33/minions 0.1.433 → 0.1.434
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 +2 -1
- package/dashboard.js +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.434 (2026-04-06)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- version check interval on settings page
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
- Convert remaining lifecycle.js safeWrite calls to mutateJsonFileLocked
|
|
12
12
|
|
|
13
13
|
### Fixes
|
|
14
|
+
- don't show 'update available' when running from git repo
|
|
14
15
|
- CC network error shows helpful message + New Session button
|
|
15
16
|
- clicking outside command center dismisses it
|
|
16
17
|
- PR dedup prefers merged/abandoned over active regardless of order
|
package/dashboard.js
CHANGED
|
@@ -343,7 +343,8 @@ function getStatus() {
|
|
|
343
343
|
dashboardStale,
|
|
344
344
|
stale: engineStale || dashboardStale,
|
|
345
345
|
latest: _npmVersionCache?.latest || null,
|
|
346
|
-
|
|
346
|
+
// Only show "update available" for npm installs (no git repo) — repo users manage their own updates
|
|
347
|
+
updateAvailable: !diskCommit && !!(diskVersion && _npmVersionCache?.latest && _npmVersionCache.latest !== diskVersion && _compareVersions(_npmVersionCache.latest, diskVersion) > 0),
|
|
347
348
|
_npmCheckError: _npmVersionCache?.error || null,
|
|
348
349
|
};
|
|
349
350
|
})(),
|
|
@@ -3488,7 +3489,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
|
|
|
3488
3489
|
dashboardRunning: _dashboardVersion.codeVersion,
|
|
3489
3490
|
dashboardRunningCommit: _dashboardVersion.codeCommit,
|
|
3490
3491
|
latest: npm.latest,
|
|
3491
|
-
updateAvailable: !!(diskVersion && npm.latest && _compareVersions(npm.latest, diskVersion) > 0),
|
|
3492
|
+
updateAvailable: !diskCommit && !!(diskVersion && npm.latest && _compareVersions(npm.latest, diskVersion) > 0),
|
|
3492
3493
|
engineStale,
|
|
3493
3494
|
dashboardStale,
|
|
3494
3495
|
stale: engineStale || dashboardStale,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.434",
|
|
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"
|