• Renamed "Base64Image" to "Thumbnail:

• Minor CSS bug fixes
• Fully documented python script
This commit is contained in:
nutty
2026-06-29 00:56:23 +10:00
parent 79edc15f0b
commit 4575b0d2c6
9 changed files with 119 additions and 23 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ async function ChangeTrack(mediaProps) {
artistLabel.innerText = swapArtistTrack ? mediaProps.Title : mediaProps.Artist;
// Extract the image source string (use fallback if Windows has no art)
const newArtUrl = mediaProps.Base64Image;
const newArtUrl = mediaProps.Thumbnail;
// const accent = mediaProps.AccentColor || "#ffffff";
// Set the image
+2 -2
View File
@@ -32,12 +32,12 @@
transition: opacity 0.5s ease;
}
#art-layer {
#album-art-layer {
z-index: 1;
transition: all 0.5s ease;
}
#art-transition-layer {
#album-art-transition-layer {
z-index: 0;
}