[Feature] Added slideshow to gallery in wall display mode (#1224)

This commit is contained in:
Elad Lachmi
2021-04-13 07:59:37 +03:00
committed by GitHub
parent 6a4421f8e1
commit f443223d16
15 changed files with 463 additions and 55 deletions

View File

@@ -2,7 +2,7 @@ fragment ConfigGeneralData on ConfigGeneralResult {
stashes {
path
excludeVideo
excludeImage
excludeImage
}
databasePath
generatedPath
@@ -52,6 +52,7 @@ fragment ConfigInterfaceData on ConfigInterfaceResult {
css
cssEnabled
language
slideshowDelay
}
fragment ConfigData on ConfigResult {

View File

@@ -188,6 +188,8 @@ input ConfigInterfaceInput {
cssEnabled: Boolean
"""Interface language"""
language: String
"""Slideshow Delay"""
slideshowDelay: Int
}
type ConfigInterfaceResult {
@@ -210,6 +212,8 @@ type ConfigInterfaceResult {
cssEnabled: Boolean
"""Interface language"""
language: String
"""Slideshow Delay"""
slideshowDelay: Int
}
"""All configuration settings"""