Feature/download ahead while reading (#464)

* Download next chapters when marking chapter as read while reading

* Add "auto delete chapter" settings

* Delete chapter after finished reading

* Delete chapters after marking them as read

* Improve "mark previous as read" action

Send only ids of chapters that are actually unread
This commit is contained in:
schroda
2023-11-19 21:17:35 +01:00
committed by GitHub
parent e26907e2ce
commit d12ac27b61
10 changed files with 240 additions and 31 deletions

View File

@@ -128,3 +128,11 @@ export const STOP_DOWNLOADER = gql`
}
}
`;
export const DOWNLOAD_AHEAD = gql`
mutation DOWNLOAD_AHEAD($input: DownloadAheadInput!) {
downloadAhead(input: $input) {
clientMutationId
}
}
`;