Feature/modify download settings (#429)

* [Codegen] Update settings fragment

* Extract logic to change a number setting

* Show slider for global update interval setting

* Add download settings
This commit is contained in:
schroda
2023-11-04 14:40:43 +01:00
committed by GitHub
parent 1acda66b16
commit 14e7af9a4a
10 changed files with 562 additions and 183 deletions

View File

@@ -406,34 +406,54 @@ export const WEBUI_UPDATE_STATUS = gql`
export const SERVER_SETTINGS = gql`
fragment SERVER_SETTINGS on SettingsType {
autoDownloadNewChapters
backupInterval
backupPath
backupTTL
backupTime
basicAuthEnabled
basicAuthPassword
basicAuthUsername
debugLogsEnabled
downloadAsCbz
downloadsPath
electronPath
excludeCompleted
excludeNotStarted
excludeUnreadChapters
globalUpdateInterval
initialOpenInBrowserEnabled
# Server ip and port bindings
ip
localSourcePath
maxSourcesInParallel
port
# Socks proxy
socksProxyEnabled
socksProxyHost
socksProxyPort
systemTrayEnabled
webUIChannel
# webUI
webUIFlavor
initialOpenInBrowserEnabled
webUIInterface
electronPath
webUIChannel
webUIUpdateCheckInterval
# downloader
downloadAsCbz
downloadsPath
autoDownloadNewChapters
excludeEntryWithUnreadChapters
autoDownloadAheadLimit
# requests
maxSourcesInParallel
# updater
excludeUnreadChapters
excludeNotStarted
excludeCompleted
globalUpdateInterval
updateMangas
# Authentication
basicAuthEnabled
basicAuthUsername
basicAuthPassword
# misc
debugLogsEnabled
gqlDebugLogsEnabled
systemTrayEnabled
# backup
backupPath
backupTime
backupInterval
backupTTL
}
`;