aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-06-27 00:06:08 +0200
committerdec05eba <dec05eba@protonmail.com>2024-06-27 00:06:08 +0200
commit33167be93badbd69f703b2c081b0bb6df3a65ce6 (patch)
treec7f92bc33d0e0f4f487d02caccb173ba076edecf /include
parente2adb33f6cb05fb424175633c56ff43cc24a7adf (diff)
Add local_anime.sort_episodes_by_name config to allow sorting episodes differently than series. True by defaultHEADmaster
Diffstat (limited to 'include')
-rw-r--r--include/Config.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/Config.hpp b/include/Config.hpp
index 53d2d46..68e4462 100644
--- a/include/Config.hpp
+++ b/include/Config.hpp
@@ -45,7 +45,8 @@ namespace QuickMedia {
struct LocalAnimeConfig {
std::string directory;
- bool sort_by_name = false;
+ bool sort_by_name = false; // Series
+ bool sort_episodes_by_name = true;
bool auto_group_episodes = true;
};