diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-11-26 20:29:09 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-11-26 20:29:09 +0100 |
commit | c5f465fe6c04afa26fd20ca600457d8de50cf42e (patch) | |
tree | 5801d74b030b22401f7507ae08bc7a1458e23865 /include | |
parent | 2409bd1b0dc0118036c3024fdf19a5dc16a26586 (diff) |
Allow nsfw ecchi in artists/authors page, add option to show h
Diffstat (limited to 'include')
-rw-r--r-- | include/Config.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Config.hpp b/include/Config.hpp index 832824f..48e6213 100644 --- a/include/Config.hpp +++ b/include/Config.hpp @@ -71,6 +71,10 @@ namespace QuickMedia { std::string symbols; }; + struct MangadexConfig { + bool allow_hentai = false; + }; + struct Config { Config() = default; Config(const Config&) = delete; @@ -88,6 +92,7 @@ namespace QuickMedia { PeertubeConfig peertube; DownloadConfig download; FontConfig font; + MangadexConfig mangadex; bool use_system_fonts = false; bool use_system_mpv_config = false; bool enable_shaders = true; |