@yemi33/minions 0.1.864 → 0.1.865
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/modal-qa.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.865 (2026-04-11)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- optimistic running state on pipeline Run Now click
|
|
7
7
|
|
|
8
8
|
### Fixes
|
|
9
|
+
- always show doc-chat expand bar when thread is collapsed
|
|
9
10
|
- poll for old process exit before steering resume (replaces fixed delay)
|
|
10
11
|
- add 3s delay before steering resume to let old process tree exit
|
|
11
12
|
- set steering state before killImmediate to prevent race
|
package/dashboard/js/modal-qa.js
CHANGED
|
@@ -122,7 +122,7 @@ function _initQaSession() {
|
|
|
122
122
|
var wrap = document.getElementById('modal-qa-thread-wrap');
|
|
123
123
|
var expandBar = document.getElementById('qa-expand-bar');
|
|
124
124
|
if (wrap) wrap.style.display = 'none';
|
|
125
|
-
if (expandBar) expandBar.style.display = '
|
|
125
|
+
if (expandBar) expandBar.style.display = '';
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
128
|
|
|
@@ -134,7 +134,7 @@ function clearQaConversation() {
|
|
|
134
134
|
var wrap = document.getElementById('modal-qa-thread-wrap');
|
|
135
135
|
var expandBar = document.getElementById('qa-expand-bar');
|
|
136
136
|
if (wrap) wrap.style.display = 'none';
|
|
137
|
-
if (expandBar) expandBar.style.display = '
|
|
137
|
+
if (expandBar) expandBar.style.display = '';
|
|
138
138
|
if (_qaSessionKey) _qaSessions.delete(_qaSessionKey);
|
|
139
139
|
}
|
|
140
140
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.865",
|
|
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"
|