aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/Body.hpp4
-rw-r--r--include/DownloadUtils.hpp2
2 files changed, 2 insertions, 4 deletions
diff --git a/include/Body.hpp b/include/Body.hpp
index fb22a21..22d9ff9 100644
--- a/include/Body.hpp
+++ b/include/Body.hpp
@@ -230,12 +230,8 @@ namespace QuickMedia {
float get_item_height(BodyItem *item, float width, bool load_texture = true, bool include_embedded_item = true, bool merge_with_previous = false, int item_index = -1);
float get_spacing_y() const;
- static bool string_find_case_insensitive(const std::string &str, const std::string &substr);
- // TODO: Make this actually fuzzy... Right now it's just a case insensitive string find.
- // This would require reordering the body.
// TODO: Highlight the part of the text that matches the search.
- // TODO: Ignore dot, whitespace and special characters
void filter_search_fuzzy(const std::string &text);
void filter_search_fuzzy_item(const std::string &text, BodyItem *body_item);
diff --git a/include/DownloadUtils.hpp b/include/DownloadUtils.hpp
index 40ec12a..dd74f50 100644
--- a/include/DownloadUtils.hpp
+++ b/include/DownloadUtils.hpp
@@ -22,7 +22,9 @@ namespace QuickMedia {
using DownloadErrorHandler = std::function<bool(std::string&)>;
DownloadResult download_to_string(const std::string &url, std::string &result, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false, bool fail_on_error = true);
+ // Note: This function saves the content to the file atomically
DownloadResult download_to_string_cache(const std::string &url, std::string &result, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false, DownloadErrorHandler error_handler = nullptr, Path cache_path = "");
+ // Note: This function saves the content to the file atomically
DownloadResult download_to_file(const std::string &url, const std::string &destination_filepath, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false);
DownloadResult download_to_json(const std::string &url, rapidjson::Document &result, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false, bool fail_on_error = true);
} \ No newline at end of file