Auxio/app
OxygenCobalt 58bea1dda5
sort: fix sort bug with same-year album songs
Fix a problem where given two albums with the same year, like this:

Album 1 [2018]
- Song 1
- Song 2

Album 2 [2018]
- Song 3
- Song 4

getSortedArtistSongs would incorrectly drop songs that came from
any albums that came after Album 1, resulting in this:

Song 1 [Album 1]
Song 2 [Album 1]

This was caused by a quirk in toSortedMap that would drop any
map entries that corresponded to a previous sorted entry. We now
get and sort the entries directly instead, which fixes the issue.
2021-07-30 19:59:18 -06:00
..
src sort: fix sort bug with same-year album songs 2021-07-30 19:59:18 -06:00
build.gradle app: upgrade to android 12 2021-07-29 10:49:18 -06:00
proguard-rules.pro Create dedicated app object 2021-01-14 07:42:56 -07:00