@yemi33/minions 0.1.344 → 0.1.345

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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.345 (2026-04-04)
4
+
5
+ ### Fixes
6
+ - move settings status message to header actions bar next to buttons
7
+
3
8
  ## 0.1.344 (2026-04-04)
4
9
 
5
10
  ### Fixes
@@ -75,7 +75,6 @@ async function openSettings() {
75
75
  '<h3 style="font-size:13px;color:var(--blue);margin-bottom:8px">Routing Table</h3>' +
76
76
  '<textarea id="set-routing" rows="12" style="width:100%;padding:8px;background:var(--surface);border:1px solid var(--border);border-radius:4px;color:var(--text);font-family:monospace;font-size:11px;resize:vertical">' + escHtml(data.routing || '') + '</textarea>' +
77
77
 
78
- '<span id="settings-status" style="font-size:11px;color:var(--muted)"></span>' +
79
78
  '</div>';
80
79
 
81
80
  document.getElementById('modal-title').textContent = 'Settings';
@@ -101,6 +100,12 @@ async function openSettings() {
101
100
  saveBtn.onclick = saveSettings;
102
101
  actions.insertBefore(saveBtn, actions.lastElementChild);
103
102
  }
103
+ if (!document.getElementById('settings-status')) {
104
+ const status = document.createElement('span');
105
+ status.id = 'settings-status';
106
+ status.style.cssText = 'font-size:11px;color:var(--muted)';
107
+ actions.insertBefore(status, actions.lastElementChild);
108
+ }
104
109
  document.getElementById('modal-body').innerHTML = html;
105
110
  document.getElementById('modal-body').style.fontFamily = '';
106
111
  document.getElementById('modal-body').style.whiteSpace = '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.344",
3
+ "version": "0.1.345",
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"