Merge branch 'master' of https://github.com/jpirnay/crosspoint-reader into feat-expose-override

This commit is contained in:
jpirnay
2026-05-23 21:25:08 +02:00
34 changed files with 1641 additions and 178 deletions
+5 -1
View File
@@ -44,6 +44,10 @@ struct PercentResult {
int percent = 0;
};
struct PrintedPageResult {
std::string label;
};
struct PageResult {
uint32_t page = 0;
};
@@ -78,7 +82,7 @@ struct StarredPageResult {
using ResultVariant =
std::variant<std::monostate, WifiResult, KeyboardResult, MenuResult, ChapterResult, PercentResult, PageResult,
SyncResult, NetworkModeResult, FootnoteResult, FilePathResult, StarredPageResult>;
SyncResult, NetworkModeResult, FootnoteResult, FilePathResult, StarredPageResult, PrintedPageResult>;
struct ActivityResult {
bool isCancelled = false;