0.6.3 - Playlist search, few other things i forgot
This commit is contained in:
parent
e9d97986b5
commit
e029c41b43
26 changed files with 520 additions and 62 deletions
|
|
@ -33,7 +33,8 @@ Cache _$CacheFromJson(Map<String, dynamic> json) {
|
|||
SortType.DEFAULT
|
||||
..searchHistory =
|
||||
Cache._searchHistoryFromJson(json['searchHistory2'] as List)
|
||||
..threadsWarning = json['threadsWarning'] as bool ?? false;
|
||||
..threadsWarning = json['threadsWarning'] as bool ?? false
|
||||
..lastUpdateCheck = json['lastUpdateCheck'] as int ?? 0;
|
||||
}
|
||||
|
||||
Map<String, dynamic> _$CacheToJson(Cache instance) => <String, dynamic>{
|
||||
|
|
@ -48,6 +49,7 @@ Map<String, dynamic> _$CacheToJson(Cache instance) => <String, dynamic>{
|
|||
'trackSort': _$SortTypeEnumMap[instance.trackSort],
|
||||
'searchHistory2': Cache._searchHistoryToJson(instance.searchHistory),
|
||||
'threadsWarning': instance.threadsWarning,
|
||||
'lastUpdateCheck': instance.lastUpdateCheck,
|
||||
};
|
||||
|
||||
T _$enumDecode<T>(
|
||||
|
|
@ -94,6 +96,7 @@ const _$AlbumSortTypeEnumMap = {
|
|||
AlbumSortType.REVERSE: 'REVERSE',
|
||||
AlbumSortType.ALPHABETIC: 'ALPHABETIC',
|
||||
AlbumSortType.ARTIST: 'ARTIST',
|
||||
AlbumSortType.DATE: 'DATE',
|
||||
};
|
||||
|
||||
const _$ArtistSortTypeEnumMap = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue