diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-04-30 06:47:19 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-04-30 06:47:19 +0200 |
commit | 3563f867798a35491793f1c27c9840769367ebb6 (patch) | |
tree | bde7015de07ffa1b0d3ff8e164e5fba87e1b5171 /plugins | |
parent | 575ccde5d1e896a279d58375704f4ace3f48bf6a (diff) |
Fix 4chan codeblocks not visible, change titles and rearrange youtube tabs
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/MangaCombined.hpp | 2 | ||||
-rw-r--r-- | plugins/MangaGeneric.hpp | 2 | ||||
-rw-r--r-- | plugins/Mangadex.hpp | 2 | ||||
-rw-r--r-- | plugins/Manganelo.hpp | 2 | ||||
-rw-r--r-- | plugins/MediaGeneric.hpp | 2 | ||||
-rw-r--r-- | plugins/Youtube.hpp | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/plugins/MangaCombined.hpp b/plugins/MangaCombined.hpp index 56843c2..8d310f8 100644 --- a/plugins/MangaCombined.hpp +++ b/plugins/MangaCombined.hpp @@ -16,7 +16,7 @@ namespace QuickMedia { class MangaCombinedSearchPage : public Page { public: MangaCombinedSearchPage(Program *program, std::vector<MangaPlugin> search_pages); - const char* get_title() const override { return "All"; } + const char* get_title() const override { return "Search"; } bool search_is_filter() override { return false; } SearchResult search(const std::string &str, BodyItems &result_items) override; PluginResult get_page(const std::string &str, int page, BodyItems &result_items) override; diff --git a/plugins/MangaGeneric.hpp b/plugins/MangaGeneric.hpp index 2dca919..e313c97 100644 --- a/plugins/MangaGeneric.hpp +++ b/plugins/MangaGeneric.hpp @@ -95,7 +95,7 @@ namespace QuickMedia { class MangaGenericSearchPage : public Page { public: MangaGenericSearchPage(Program *program, const char *service_name, const char *website_url, bool fail_on_http_error = true); - const char* get_title() const override { return "All"; } + const char* get_title() const override { return "Search"; } bool search_is_filter() override { return false; } SearchResult search(const std::string &str, BodyItems &result_items) override; PluginResult get_page(const std::string &url, BodyItems &result_items); diff --git a/plugins/Mangadex.hpp b/plugins/Mangadex.hpp index 1befa1a..8e32aab 100644 --- a/plugins/Mangadex.hpp +++ b/plugins/Mangadex.hpp @@ -7,7 +7,7 @@ namespace QuickMedia { class MangadexSearchPage : public Page { public: MangadexSearchPage(Program *program) : Page(program) {} - const char* get_title() const override { return "All"; } + const char* get_title() const override { return "Search"; } bool search_is_filter() override { return false; } SearchResult search(const std::string &str, BodyItems &result_items) override; PluginResult get_page(const std::string &str, int page, BodyItems &result_items) override; diff --git a/plugins/Manganelo.hpp b/plugins/Manganelo.hpp index 8e6c2cd..7cf3420 100644 --- a/plugins/Manganelo.hpp +++ b/plugins/Manganelo.hpp @@ -6,7 +6,7 @@ namespace QuickMedia { class ManganeloSearchPage : public Page { public: ManganeloSearchPage(Program *program) : Page(program) {} - const char* get_title() const override { return "All"; } + const char* get_title() const override { return "Search"; } bool search_is_filter() override { return false; } SearchResult search(const std::string &str, BodyItems &result_items) override; PluginResult submit(const std::string &title, const std::string &url, std::vector<Tab> &result_tabs) override; diff --git a/plugins/MediaGeneric.hpp b/plugins/MediaGeneric.hpp index f7ff019..c7ce00b 100644 --- a/plugins/MediaGeneric.hpp +++ b/plugins/MediaGeneric.hpp @@ -35,7 +35,7 @@ namespace QuickMedia { class MediaGenericSearchPage : public Page { public: MediaGenericSearchPage(Program *program, const char *website_url, sf::Vector2i thumbnail_max_size); - const char* get_title() const override { return "All"; } + const char* get_title() const override { return "Search"; } bool search_is_filter() override { return false; } SearchResult search(const std::string &str, BodyItems &result_items) override; PluginResult get_page(const std::string &str, int page, BodyItems &result_items) override; diff --git a/plugins/Youtube.hpp b/plugins/Youtube.hpp index 4be5339..dc3f0e7 100644 --- a/plugins/Youtube.hpp +++ b/plugins/Youtube.hpp @@ -8,7 +8,7 @@ namespace QuickMedia { class YoutubeSearchPage : public Page { public: YoutubeSearchPage(Program *program) : Page(program) {} - const char* get_title() const override { return "All"; } + const char* get_title() const override { return "Search"; } bool search_is_filter() override { return false; } SearchResult search(const std::string &str, BodyItems &result_items) override; PluginResult get_page(const std::string &str, int page, BodyItems &result_items) override; |