From 74b98bed98aad3e70e8abe51292767ea8a7d109a Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 12 Feb 2022 04:31:44 +0100 Subject: Local-manga: show if the latest chapter of a manga has been read --- include/Path.hpp | 1 + include/QuickMedia.hpp | 1 + 2 files changed, 2 insertions(+) (limited to 'include') diff --git a/include/Path.hpp b/include/Path.hpp index bb08cc6..67e6942 100644 --- a/include/Path.hpp +++ b/include/Path.hpp @@ -10,6 +10,7 @@ namespace QuickMedia { Path(const char *path) : data(path) {} Path(const std::string &path) : data(path) {} + // TODO: Return a copy instead? makes it easier to use. Do the same for append Path& join(const Path &other) { data += "/"; data += other.data; diff --git a/include/QuickMedia.hpp b/include/QuickMedia.hpp index 27c6bb2..c3f06de 100644 --- a/include/QuickMedia.hpp +++ b/include/QuickMedia.hpp @@ -72,6 +72,7 @@ namespace QuickMedia { mgl::Text search_result_text; AsyncTask fetch_future; AsyncTask next_page_future; + std::string body_item_url_before_refresh; }; class Program { -- cgit v1.2.3