save shuffle state in config

This commit is contained in:
Siiiiinth
2026-02-15 09:29:20 -08:00
committed by Drew Weymouth
parent 1a5fed3add
commit cec32f68e3
5 changed files with 9 additions and 8 deletions
+2
View File
@@ -123,6 +123,7 @@ type NowPlayingPageConfig struct {
type PlaybackConfig struct {
Autoplay bool
Shuffle bool
RepeatMode string
SkipOneStarWhenShuffling bool
SkipKeywordWhenShuffling string
@@ -263,6 +264,7 @@ func DefaultConfig(appVersionTag string) *Config {
},
Playback: PlaybackConfig{
Autoplay: false,
Shuffle: false,
RepeatMode: "None",
UseWaveformSeekbar: false,
},