mirror of
https://github.com/stashapp/stash.git
synced 2025-12-08 01:13:09 +01:00
* Add script offset / delay to Handy support. Further work on #1376. Offsets are added to the current video position, so a positive value leads to earlier motion. (The most common setting.) This is needed because most script times have a consistent delay when compared to the video. (Delay from the API calls to the server should be handled by the server offset calculation.) * Rename scriptOffset to funscriptOffset * Correct localisation keys Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
89 lines
1.4 KiB
GraphQL
89 lines
1.4 KiB
GraphQL
fragment ConfigGeneralData on ConfigGeneralResult {
|
|
stashes {
|
|
path
|
|
excludeVideo
|
|
excludeImage
|
|
}
|
|
databasePath
|
|
generatedPath
|
|
cachePath
|
|
calculateMD5
|
|
videoFileNamingAlgorithm
|
|
parallelTasks
|
|
previewAudio
|
|
previewSegments
|
|
previewSegmentDuration
|
|
previewExcludeStart
|
|
previewExcludeEnd
|
|
previewPreset
|
|
maxTranscodeSize
|
|
maxStreamingTranscodeSize
|
|
apiKey
|
|
username
|
|
password
|
|
maxSessionAge
|
|
logFile
|
|
logOut
|
|
logLevel
|
|
logAccess
|
|
createGalleriesFromFolders
|
|
videoExtensions
|
|
imageExtensions
|
|
galleryExtensions
|
|
excludes
|
|
imageExcludes
|
|
customPerformerImageLocation
|
|
scraperUserAgent
|
|
scraperCertCheck
|
|
scraperCDPPath
|
|
stashBoxes {
|
|
name
|
|
endpoint
|
|
api_key
|
|
}
|
|
}
|
|
|
|
fragment ConfigInterfaceData on ConfigInterfaceResult {
|
|
menuItems
|
|
soundOnPreview
|
|
wallShowTitle
|
|
wallPlayback
|
|
maximumLoopDuration
|
|
autostartVideo
|
|
showStudioAsText
|
|
css
|
|
cssEnabled
|
|
language
|
|
slideshowDelay
|
|
handyKey
|
|
funscriptOffset
|
|
}
|
|
|
|
fragment ConfigDLNAData on ConfigDLNAResult {
|
|
serverName
|
|
enabled
|
|
whitelistedIPs
|
|
interfaces
|
|
}
|
|
|
|
fragment ConfigScrapingData on ConfigScrapingResult {
|
|
scraperUserAgent
|
|
scraperCertCheck
|
|
scraperCDPPath
|
|
excludeTagPatterns
|
|
}
|
|
|
|
fragment ConfigData on ConfigResult {
|
|
general {
|
|
...ConfigGeneralData
|
|
}
|
|
interface {
|
|
...ConfigInterfaceData
|
|
}
|
|
dlna {
|
|
...ConfigDLNAData
|
|
}
|
|
scraping {
|
|
...ConfigScrapingData
|
|
}
|
|
}
|