@yemi33/minions 0.1.491 → 0.1.492

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.491 (2026-04-07)
3
+ ## 0.1.492 (2026-04-07)
4
4
 
5
5
  ### Fixes
6
+ - settings button shows modal immediately with loading state
6
7
  - CC respects user scroll position — no auto-scroll when reading history
7
8
  - steering feedback — toast notification, ensure polling resumes
8
9
  - remove pipelines/ from git tracking — user-local config
@@ -1,6 +1,10 @@
1
1
  // settings.js — Settings panel functions extracted from dashboard.html
2
2
 
3
3
  async function openSettings() {
4
+ document.getElementById('modal-title').textContent = 'Settings';
5
+ document.getElementById('modal-body').innerHTML = '<p style="color:var(--muted)">Loading...</p>';
6
+ document.getElementById('modal').classList.add('open');
7
+
4
8
  let data;
5
9
  try {
6
10
  const res = await fetch('/api/settings');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.491",
3
+ "version": "0.1.492",
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"