Skip to content

Commit

Permalink
Make 'Latest added first' default option instead of custom
Browse files Browse the repository at this point in the history
  • Loading branch information
kommunarr committed Apr 11, 2024
1 parent 318fe08 commit 9db7e48
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/renderer/store/modules/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ const state = {
thumbnailPreference: '',
blurThumbnails: false,
useProxy: false,
userPlaylistSortOrder: 'custom',
userPlaylistSortOrder: 'date_added_descending',
useRssFeeds: false,
useSponsorBlock: false,
videoVolumeMouseScroll: false,
Expand Down
1 change: 0 additions & 1 deletion src/renderer/views/Playlist/Playlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ export default defineComponent({
videoSearchQuery: '',

promptOpen: false,
localSortOrder: SORT_BY_VALUES.Custom
}
},
computed: {
Expand Down
8 changes: 4 additions & 4 deletions static/locales/en-US.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -872,10 +872,10 @@ Playlist:
Last Updated On: Last Updated On
Sort By:
Sort By: Sort By
DatePublishedNewest: Latest added first
DatePublishedOldest: Earliest added first
DateAddedNewest: Latest published first
DateAddedOldest: Earliest published first
DateAddedNewest: Latest added first
DateAddedOldest: Earliest added first
DatePublishedNewest: Latest published first
DatePublishedOldest: Earliest published first
AuthorAscending: Author (A-Z)
AuthorDescending: Author (Z-A)
VideoTitleAscending: Title (A-Z)
Expand Down

0 comments on commit 9db7e48

Please sign in to comment.