Feature/automatic chapter deletion more options (#484)
* Add missing translations keys * [Codegen] Update to latest server schema changes * [VersionMapping] Require server version "r1431" for preview * Rename "deleteChaptersAutoMarkedRead" metadata setting * Add more options to auto delete chapters while reading Makes it possible to delete the last to fifth to last read chapter instead of only being able to delete the last read chapter
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
import gql from 'graphql-tag';
|
||||
import { WEBUI_UPDATE_INFO, WEBUI_UPDATE_STATUS } from '@/lib/graphql/Fragments';
|
||||
import { WEBUI_UPDATE_STATUS } from '@/lib/graphql/Fragments';
|
||||
|
||||
export const GET_ABOUT = gql`
|
||||
query GET_ABOUT {
|
||||
@@ -23,7 +23,6 @@ export const GET_ABOUT = gql`
|
||||
aboutWebUI {
|
||||
channel
|
||||
tag
|
||||
updateAvailable
|
||||
}
|
||||
}
|
||||
`;
|
||||
@@ -39,10 +38,11 @@ export const CHECK_FOR_SERVER_UPDATES = gql`
|
||||
`;
|
||||
|
||||
export const CHECK_FOR_WEBUI_UPDATE = gql`
|
||||
${WEBUI_UPDATE_INFO}
|
||||
query CHECK_FOR_WEBUI_UPDATE {
|
||||
checkForWebUIUpdate {
|
||||
...WEBUI_UPDATE_INFO
|
||||
channel
|
||||
tag
|
||||
updateAvailable
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user