From f227565dbfa5687125bf86f32d5ce48e6b47be11 Mon Sep 17 00:00:00 2001 From: lostb1t Date: Wed, 21 Aug 2024 17:58:42 +0200 Subject: [PATCH 1/2] Use DateCreate for sorting last added --- utils/atoms/filters.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/atoms/filters.ts b/utils/atoms/filters.ts index e9ab2e95..2b858826 100644 --- a/utils/atoms/filters.ts +++ b/utils/atoms/filters.ts @@ -13,7 +13,9 @@ export const sortOptions: { { key: "SortName", value: "Name" }, { key: "CommunityRating", value: "Community Rating" }, { key: "CriticRating", value: "Critics Rating" }, - { key: "DateLastContentAdded", value: "Content Added" }, + { key: "DateCreated", value: "Date Added" }, + // only works for shows (last episode added) keeping for future ref. + // { key: "DateLastContentAdded", value: "Content Added" }, { key: "DatePlayed", value: "Date Played" }, { key: "PlayCount", value: "Play Count" }, { key: "ProductionYear", value: "Production Year" }, From f863c95f70d6dd30a2775889d89ff545c245577e Mon Sep 17 00:00:00 2001 From: lostb1t Date: Wed, 21 Aug 2024 18:00:06 +0200 Subject: [PATCH 2/2] Disable bitrate filter --- utils/atoms/filters.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/utils/atoms/filters.ts b/utils/atoms/filters.ts index 2b858826..7324f569 100644 --- a/utils/atoms/filters.ts +++ b/utils/atoms/filters.ts @@ -14,7 +14,7 @@ export const sortOptions: { { key: "CommunityRating", value: "Community Rating" }, { key: "CriticRating", value: "Critics Rating" }, { key: "DateCreated", value: "Date Added" }, - // only works for shows (last episode added) keeping for future ref. + // Only works for shows (last episode added) keeping for future ref. // { key: "DateLastContentAdded", value: "Content Added" }, { key: "DatePlayed", value: "Date Played" }, { key: "PlayCount", value: "Play Count" }, @@ -25,7 +25,8 @@ export const sortOptions: { { key: "StartDate", value: "Start Date" }, { key: "IsUnplayed", value: "Is Unplayed" }, { key: "IsPlayed", value: "Is Played" }, - { key: "VideoBitRate", value: "Video Bit Rate" }, + // Broken in JF + // { key: "VideoBitRate", value: "Video Bit Rate" }, { key: "AirTime", value: "Air Time" }, { key: "Studio", value: "Studio" }, { key: "IsFavoriteOrLiked", value: "Is Favorite Or Liked" },