Fix drawdown for paging with many of the same first letters, update series sequence ascending/descending string, universalize default drawdown grouping limit

This commit is contained in:
advplyr 2025-01-11 15:33:43 -06:00
parent 8e6e0cf673
commit 847bedb65c
4 changed files with 15 additions and 13 deletions

View file

@ -210,7 +210,7 @@ export default {
languageCode: 'en-us',
downloadUsingCellular: 'ALWAYS',
streamingUsingCellular: 'ALWAYS',
androidAutoBrowseLimitForGrouping: 50,
androidAutoBrowseLimitForGrouping: 100,
androidAutoBrowseSeriesSequenceOrder: 'ASC'
},
theme: 'dark',
@ -315,11 +315,11 @@ export default {
],
androidAutoBrowseSeriesSequenceOrderItems: [
{
text: this.$strings.LabelAscending,
text: this.$strings.LabelSequenceAscending,
value: 'ASC'
},
{
text: this.$strings.LabelDescending,
text: this.$strings.LabelSequenceDescending,
value: 'DESC'
}
]