diff --git a/src/i18n/en_US.json b/src/i18n/en_US.json index deb4a8f8..bcdb36b0 100644 --- a/src/i18n/en_US.json +++ b/src/i18n/en_US.json @@ -199,6 +199,9 @@ "podcast.episodes": "Episodes", "podcast.playEpisode": "Play Episode", "podcast.website": "Podcast Website", + "action.edit": "Edit", + "action.done": "Done", + "action.editTracklist": "Edit Tracklist", "action.addToLibrary": "Add to Library", "action.addToLibrary.success": "Added to Library", "action.addToLibrary.error": "Error Adding to Library", diff --git a/src/i18n/source/en_US.json b/src/i18n/source/en_US.json index deb4a8f8..bcdb36b0 100644 --- a/src/i18n/source/en_US.json +++ b/src/i18n/source/en_US.json @@ -199,6 +199,9 @@ "podcast.episodes": "Episodes", "podcast.playEpisode": "Play Episode", "podcast.website": "Podcast Website", + "action.edit": "Edit", + "action.done": "Done", + "action.editTracklist": "Edit Tracklist", "action.addToLibrary": "Add to Library", "action.addToLibrary.success": "Added to Library", "action.addToLibrary.error": "Error Adding to Library", diff --git a/src/main/base/store.ts b/src/main/base/store.ts index 2e8226ab..f0ab7cbf 100644 --- a/src/main/base/store.ts +++ b/src/main/base/store.ts @@ -170,7 +170,7 @@ export class Store { "styles": [], "scrollbars": 0, // 0 = show on hover, 2 = always hide, 3 = always show "refresh_rate": 0, - "window_background_style": "artwork", // "none", "artwork", "color" + "window_background_style": "none", // "none", "artwork", "color" "animated_artwork": "limited", // 0 = always, 1 = limited, 2 = never "animated_artwork_qualityLevel": 1, "bg_artwork_rotation": false, diff --git a/src/renderer/less/pages.less b/src/renderer/less/pages.less index 2ac0bedf..2e03391e 100644 --- a/src/renderer/less/pages.less +++ b/src/renderer/less/pages.less @@ -498,6 +498,18 @@ height: 100%; overflow: hidden; + .editTracksBtn { + position: absolute; + top: 20px; + right: 20px; + z-index: 1; + + >span { + display: flex; + gap: 8px; + } + } + .mediaContainer { transition: width 0.5s ease-in-out, height 0.5s ease-in-out; width: 260px;height:260px; diff --git a/src/renderer/views/app/chrome-bottom.ejs b/src/renderer/views/app/chrome-bottom.ejs index fb6b37bd..4e88e841 100644 --- a/src/renderer/views/app/chrome-bottom.ejs +++ b/src/renderer/views/app/chrome-bottom.ejs @@ -90,6 +90,7 @@ {playerLCD.desiredDuration = 0;playerLCD.userInteraction = false}, 1000);" + @touchend="mk.seekToTime($event.target.value);setTimeout(()=>{playerLCD.desiredDuration = 0;playerLCD.userInteraction = false}, 1000);" :max="mk.currentPlaybackDuration" :value="getSongProgress()"> diff --git a/src/renderer/views/app/chrome-top.ejs b/src/renderer/views/app/chrome-top.ejs index 9d2ca250..a64b36c0 100644 --- a/src/renderer/views/app/chrome-top.ejs +++ b/src/renderer/views/app/chrome-top.ejs @@ -107,6 +107,7 @@ {playerLCD.desiredDuration = 0;playerLCD.userInteraction = false}, 1000);" + @touchend="mk.seekToTime($event.target.value);setTimeout(()=>{playerLCD.desiredDuration = 0;playerLCD.userInteraction = false}, 1000);" :max="mk.currentPlaybackDuration" :value="getSongProgress()"> diff --git a/src/renderer/views/pages/cider-playlist.ejs b/src/renderer/views/pages/cider-playlist.ejs index 9936028a..b7b8bfee 100644 --- a/src/renderer/views/pages/cider-playlist.ejs +++ b/src/renderer/views/pages/cider-playlist.ejs @@ -104,7 +104,14 @@