@yemi33/minions 0.1.348 → 0.1.349

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,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.348 (2026-04-04)
3
+ ## 0.1.349 (2026-04-04)
4
4
 
5
5
  ### Fixes
6
+ - remove settings Reset button when modal closes
6
7
  - comprehensive status mutation guards — prevent done items from being reverted
7
8
 
8
9
  ### Other
@@ -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 save button if present
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, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.348",
3
+ "version": "0.1.349",
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"