Skip to content

Commit

Permalink
feat: removed custom order of auto playlists
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafaalagamy authored Aug 9, 2024
1 parent 1c6444e commit 3a8e9ee
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ val SongSortTypeKey = stringPreferencesKey("songSortType")
val SongSortDescendingKey = booleanPreferencesKey("songSortDescending")
val PlaylistSongSortTypeKey = stringPreferencesKey("playlistSongSortType")
val PlaylistSongSortDescendingKey = booleanPreferencesKey("playlistSongSortDescending")
val AutoPlaylistSongSortTypeKey = stringPreferencesKey("autoPlaylistSongSortType")
val AutoPlaylistSongSortDescendingKey = booleanPreferencesKey("autoPlaylistSongSortDescending")
val ArtistSortTypeKey = stringPreferencesKey("artistSortType")
val ArtistSortDescendingKey = booleanPreferencesKey("artistSortDescending")
val AlbumSortTypeKey = stringPreferencesKey("albumSortType")
Expand Down Expand Up @@ -117,6 +119,13 @@ enum class ArtistSortType {
PLAY_TIME,
}

enum class AutoPlaylistSongSortType {
CREATE_DATE,
NAME,
ARTIST,
PLAY_TIME,
}

enum class ArtistSongSortType {
CREATE_DATE,
NAME,
Expand Down

0 comments on commit 3a8e9ee

Please sign in to comment.