vibe-monitor 1.0.2 → 1.0.3
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/package.json +1 -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/package.json
CHANGED
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
|