diff --git a/app/background.js b/app/background.js index 389161c..e867660 100644 --- a/app/background.js +++ b/app/background.js @@ -88,7 +88,7 @@ app.on('ready', async () => { createWindow(); //Create Tray - if (nativeTheme.shouldUseDarkColors) + if (settings.forceWhiteTrayIcon || nativeTheme.shouldUseDarkColors) tray = new Tray(assetPath("icon-taskbar-white.png")); else tray = new Tray(assetPath("icon-taskbar-black.png")); diff --git a/app/client/src/App.vue b/app/client/src/App.vue index 8ad2b9f..0fe1019 100644 --- a/app/client/src/App.vue +++ b/app/client/src/App.vue @@ -173,7 +173,7 @@ + style='height: calc(100vh - 140px);'> diff --git a/app/client/src/locales/en.json b/app/client/src/locales/en.json index 70d97dd..d963c5d 100644 --- a/app/client/src/locales/en.json +++ b/app/client/src/locales/en.json @@ -128,5 +128,7 @@ "Removed from playlist!": "Removed from playlist!", "Playlist deleted!": "Playlist deleted!", "Delete": "Delete", - "Are you sure you want to delete this playlist?": "Are you sure you want to delete this playlist?" + "Are you sure you want to delete this playlist?": "Are you sure you want to delete this playlist?", + "Force white tray icon": "Force white tray icon", + "Force default (white) tray icon if theme incorrectly detected. Requires restart.": "Force default (white) tray icon if theme incorrectly detected. Requires restart." } \ No newline at end of file diff --git a/app/client/src/views/FullscreenPlayer.vue b/app/client/src/views/FullscreenPlayer.vue index 47dc488..fc8775a 100644 --- a/app/client/src/views/FullscreenPlayer.vue +++ b/app/client/src/views/FullscreenPlayer.vue @@ -16,7 +16,7 @@ :src='$root.track.albumArt.full' :lazy-src="$root.track.albumArt.thumb" aspect-ratio="1" - max-height="calc(90vh - 285px)" + max-height="calc(90vh - 310px)" class='ma-4' contain> @@ -70,7 +70,7 @@ -
+
mdi-repeat @@ -134,7 +134,7 @@ - + - +

{{$root.track.title}}

Album:

@@ -182,7 +182,7 @@
- +
@@ -204,19 +204,20 @@