@yemi33/minions 0.1.104 → 0.1.105
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 +8 -0
- package/dashboard/js/render-inbox.js +5 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -56,16 +56,17 @@ function renderNotes(notes) {
|
|
|
56
56
|
|
|
57
57
|
if (!content || !content.trim()) { el.innerHTML = '<p class="empty">No team notes yet.</p>'; return; }
|
|
58
58
|
el.innerHTML = '<div class="notes-preview" onclick="openNotesModal()" title="Click to expand">' + renderMd(content) + '</div>';
|
|
59
|
+
el.querySelector('.notes-preview')._rawContent = content;
|
|
59
60
|
}
|
|
60
61
|
|
|
61
62
|
function openNotesModal() {
|
|
62
63
|
const preview = document.querySelector('.notes-preview');
|
|
63
64
|
if (!preview) return;
|
|
64
|
-
const content = preview.textContent;
|
|
65
|
+
const content = preview._rawContent || preview.textContent;
|
|
65
66
|
document.getElementById('modal-title').textContent = 'Team Notes';
|
|
66
|
-
document.getElementById('modal-body').
|
|
67
|
-
document.getElementById('modal-body').style.fontFamily = '
|
|
68
|
-
document.getElementById('modal-body').style.whiteSpace = '
|
|
67
|
+
document.getElementById('modal-body').innerHTML = '<div style="font-size:12px;line-height:1.6">' + renderMd(content) + '</div>';
|
|
68
|
+
document.getElementById('modal-body').style.fontFamily = "'Segoe UI', system-ui, sans-serif";
|
|
69
|
+
document.getElementById('modal-body').style.whiteSpace = 'normal';
|
|
69
70
|
_modalDocContext = { title: 'Team Notes', content, selection: '' };
|
|
70
71
|
_modalEditable = 'notes.md';
|
|
71
72
|
_modalFilePath = 'notes.md'; showModalQa();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.105",
|
|
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"
|