vibe-monitor 1.0.2 → 1.0.4
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/assets/characters/clawd-128.png +0 -0
- package/assets/characters/kiro-128.png +0 -0
- package/index.html +1 -1
- package/package.json +1 -1
- package/renderer.js +4 -1
- package/shared/character.js +3 -3
- /package/assets/{generate-icons.js → generators/generate-icons.js} +0 -0
- /package/assets/{icon-128.png → generators/icon-128.png} +0 -0
- /package/assets/{icon-16.png → generators/icon-16.png} +0 -0
- /package/assets/{icon-256.png → generators/icon-256.png} +0 -0
- /package/assets/{icon-32.png → generators/icon-32.png} +0 -0
- /package/assets/{icon-64.png → generators/icon-64.png} +0 -0
- /package/assets/{icon-generator.html → generators/icon-generator.html} +0 -0
|
Binary file
|
|
Binary file
|
package/index.html
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<div class="dot dim"></div>
|
|
30
30
|
<div class="dot dim"></div>
|
|
31
31
|
</div>
|
|
32
|
-
<div class="info-text project-text">
|
|
32
|
+
<div class="info-text project-text" id="project-line">
|
|
33
33
|
<span class="info-label"><span class="emoji-icon">📂 </span><canvas class="pixel-icon" id="icon-project" width="8" height="8"></canvas></span>
|
|
34
34
|
<span class="info-value" id="project-value">-</span>
|
|
35
35
|
</div>
|
package/package.json
CHANGED
package/renderer.js
CHANGED
|
@@ -41,6 +41,7 @@ function initDomCache() {
|
|
|
41
41
|
display: document.getElementById('display'),
|
|
42
42
|
statusText: document.getElementById('status-text'),
|
|
43
43
|
loadingDots: document.getElementById('loading-dots'),
|
|
44
|
+
projectLine: document.getElementById('project-line'),
|
|
44
45
|
toolLine: document.getElementById('tool-line'),
|
|
45
46
|
modelLine: document.getElementById('model-line'),
|
|
46
47
|
memoryLine: document.getElementById('memory-line'),
|
|
@@ -133,7 +134,9 @@ function updateDisplay() {
|
|
|
133
134
|
d.modelValue.textContent = displayModel;
|
|
134
135
|
d.memoryValue.textContent = currentMemory;
|
|
135
136
|
|
|
136
|
-
// Update model/memory visibility (hide memory on start state)
|
|
137
|
+
// Update project/model/memory visibility (hide memory on start state)
|
|
138
|
+
const showProject = currentProject && currentProject !== '-';
|
|
139
|
+
d.projectLine.style.display = showProject ? 'block' : 'none';
|
|
137
140
|
d.modelLine.style.display = currentModel && currentModel !== '-' ? 'block' : 'none';
|
|
138
141
|
const showMemory = currentState !== 'start' && currentMemory && currentMemory !== '-';
|
|
139
142
|
d.memoryLine.style.display = showMemory ? 'block' : 'none';
|
package/shared/character.js
CHANGED
|
@@ -7,10 +7,10 @@ let ctx = null;
|
|
|
7
7
|
const characterImages = {};
|
|
8
8
|
let imagesLoaded = false;
|
|
9
9
|
|
|
10
|
-
// Image paths for each character
|
|
10
|
+
// Image paths for each character (relative to this module)
|
|
11
11
|
const CHARACTER_IMAGES = {
|
|
12
|
-
clawd: '../
|
|
13
|
-
kiro: '../
|
|
12
|
+
clawd: new URL('../assets/characters/clawd-128.png', import.meta.url).href,
|
|
13
|
+
kiro: new URL('../assets/characters/kiro-128.png', import.meta.url).href
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
// Preload character images
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|