Image Resolution Setting (#492)

* Add customizable resolution for the fullscreen player image

---------

Co-authored-by: iiPython <ben@iipython.dev>
Co-authored-by: Benjamin <iipython@proton.me>
This commit is contained in:
darkpixlz 2024-02-13 18:00:59 -08:00 committed by GitHub
parent f796a35f5c
commit 6e677d7454
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 39 additions and 7 deletions

View file

@ -187,6 +187,7 @@ export interface SettingsState {
};
general: {
accent: string;
albumArtRes?: number | null;
buttonSize: number;
defaultFullPlaylist: boolean;
externalLinks: boolean;
@ -304,6 +305,7 @@ const initialState: SettingsState = {
},
general: {
accent: 'rgb(53, 116, 252)',
albumArtRes: undefined,
buttonSize: 20,
defaultFullPlaylist: true,
externalLinks: true,