@yemi33/minions 0.1.348 → 0.1.350
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 +3 -1
- package/dashboard/js/modal.js +3 -1
- package/dashboard/js/render-meetings.js +8 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.350 (2026-04-06)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
|
+
- preserve scroll position in meeting modal during live-poll refresh
|
|
7
|
+
- remove settings Reset button when modal closes
|
|
6
8
|
- comprehensive status mutation guards — prevent done items from being reverted
|
|
7
9
|
|
|
8
10
|
### Other
|
package/dashboard/js/modal.js
CHANGED
|
@@ -6,9 +6,11 @@ function closeModal() {
|
|
|
6
6
|
document.getElementById('modal').classList.remove('open');
|
|
7
7
|
// Hide Q&A section (only shown for document modals)
|
|
8
8
|
document.getElementById('modal-qa').style.display = 'none';
|
|
9
|
-
// Remove settings
|
|
9
|
+
// Remove settings buttons if present
|
|
10
10
|
const settingsBtn = document.getElementById('modal-settings-save');
|
|
11
11
|
if (settingsBtn) settingsBtn.remove();
|
|
12
|
+
const resetBtn = document.getElementById('modal-settings-reset');
|
|
13
|
+
if (resetBtn) resetBtn.remove();
|
|
12
14
|
// Save Q&A session for this document (persist across modal open/close)
|
|
13
15
|
if (_qaSessionKey && (_qaHistory.length > 0 || _qaQueue.length > 0)) {
|
|
14
16
|
_qaSessions.set(_qaSessionKey, {
|
|
@@ -223,7 +223,14 @@ function openMeetingDetail(id) {
|
|
|
223
223
|
}
|
|
224
224
|
fetch('/api/meetings/' + encodeURIComponent(id))
|
|
225
225
|
.then(r => r.json())
|
|
226
|
-
.then(d => {
|
|
226
|
+
.then(d => {
|
|
227
|
+
if (d.meeting && _meetingPollId === id) {
|
|
228
|
+
const body = document.getElementById('modal-body');
|
|
229
|
+
const savedScroll = body ? body.scrollTop : 0;
|
|
230
|
+
_renderMeetingDetail(d.meeting);
|
|
231
|
+
if (body) body.scrollTop = savedScroll;
|
|
232
|
+
}
|
|
233
|
+
})
|
|
227
234
|
.catch(function() {});
|
|
228
235
|
}, 3000);
|
|
229
236
|
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.350",
|
|
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"
|