0.6.7 - shows in search, album art resolution
This commit is contained in:
parent
babd12bae2
commit
c3a26b0e3b
18 changed files with 369 additions and 28 deletions
|
|
@ -40,6 +40,7 @@ Settings _$SettingsFromJson(Map<String, dynamic> json) {
|
|||
..artistSeparator = json['artistSeparator'] as String ?? ', '
|
||||
..singletonFilename =
|
||||
json['singletonFilename'] as String ?? '%artist% - %title%'
|
||||
..albumArtResolution = json['albumArtResolution'] as int ?? 1400
|
||||
..theme =
|
||||
_$enumDecodeNullable(_$ThemesEnumMap, json['theme']) ?? Themes.Dark
|
||||
..useSystemTheme = json['useSystemTheme'] as bool ?? false
|
||||
|
|
@ -76,6 +77,7 @@ Map<String, dynamic> _$SettingsToJson(Settings instance) => <String, dynamic>{
|
|||
'nomediaFiles': instance.nomediaFiles,
|
||||
'artistSeparator': instance.artistSeparator,
|
||||
'singletonFilename': instance.singletonFilename,
|
||||
'albumArtResolution': instance.albumArtResolution,
|
||||
'theme': _$ThemesEnumMap[instance.theme],
|
||||
'useSystemTheme': instance.useSystemTheme,
|
||||
'colorGradientBackground': instance.colorGradientBackground,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue