@yemi33/minions 0.1.340 → 0.1.341

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,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.340 (2026-04-04)
3
+ ## 0.1.341 (2026-04-04)
4
4
 
5
5
  ### Features
6
6
  - add Reset to Defaults button in settings modal
7
7
 
8
8
  ### Fixes
9
+ - MM)
9
10
  - work items table shows date (YYYY-MM-DD) instead of time-only
10
11
  - CC stop button kills LLM process immediately + fix text/copy overlap
11
12
 
@@ -56,7 +56,7 @@ function wiRow(item) {
56
56
  (item.failReason ? '<span style="display:block;font-size:9px;color:var(--red)" title="' + escHtml(item.failReason) + '">' + escHtml(item.failReason.slice(0, 30)) + '</span>' : '') +
57
57
  '</td>' +
58
58
  '<td>' + prLink + '</td>' +
59
- '<td><span class="pr-date">' + escHtml((item.created || '').slice(0, 10)) + '</span></td>' +
59
+ '<td><span class="pr-date">' + escHtml((item.created || '').slice(0, 16).replace('T', ' ')) + '</span></td>' +
60
60
  '<td style="white-space:nowrap;font-size:9px;color:var(--muted)">' +
61
61
  (item.references && item.references.length ? '<span title="' + item.references.length + ' reference(s)" style="margin-right:4px">&#x1F517;' + item.references.length + '</span>' : '') +
62
62
  (item.acceptanceCriteria && item.acceptanceCriteria.length ? '<span title="' + item.acceptanceCriteria.length + ' acceptance criteria">&#x2611;' + item.acceptanceCriteria.length + '</span>' : '') +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.340",
3
+ "version": "0.1.341",
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"