Mark some options as "coming soon"

This commit is contained in:
grimsi
2025-06-14 13:19:53 +02:00
parent 3fd795acb1
commit c31081756d
2 changed files with 6 additions and 6 deletions
@@ -38,11 +38,11 @@ function LibraryManagementLayout({getConfig, formik}: any) {
return (
<div className="flex flex-col">
<Section title="Permissions"/>
<ConfigFormField configElement={getConfig("library.allow-public-access")}/>
<ConfigFormField configElement={getConfig("library.allow-public-access")} isDisabled/>
<Section title="Scanning"/>
<div className="flex flex-col gap-4">
<ConfigFormField configElement={getConfig("library.scan.enable-filesystem-watcher")}/>
<ConfigFormField configElement={getConfig("library.scan.enable-filesystem-watcher")} isDisabled/>
<ConfigFormField configElement={getConfig("library.scan.scan-empty-directories")}/>
<div className="flex flex-row gap-4 items-baseline">
<ConfigFormField configElement={getConfig("library.scan.title-match-min-ratio")}/>
@@ -52,7 +52,7 @@ function LibraryManagementLayout({getConfig, formik}: any) {
<Section title="Metadata"/>
<div className="flex flex-row items-baseline">
<ConfigFormField configElement={getConfig("library.metadata.update.enabled")}/>
<ConfigFormField configElement={getConfig("library.metadata.update.enabled")} isDisabled/>
<ConfigFormField configElement={getConfig("library.metadata.update.schedule")}
isDisabled={!formik.values.library.metadata.update.enabled}/>
</div>
@@ -17,7 +17,7 @@ sealed class ConfigProperties<T : Serializable>(
data object AllowPublicAccess : ConfigProperties<Boolean>(
Boolean::class,
"library.allow-public-access",
"Allow access to game libraries without login",
"Allow access to game libraries without login (coming soon™)",
false
)
@@ -25,7 +25,7 @@ sealed class ConfigProperties<T : Serializable>(
data object EnableFilesystemWatcher : ConfigProperties<Boolean>(
Boolean::class,
"library.scan.enable-filesystem-watcher",
"Enable automatic library scanning using file system watchers",
"Enable automatic library scanning using file system watchers (coming soon™)",
true
)
@@ -76,7 +76,7 @@ sealed class ConfigProperties<T : Serializable>(
data object UpdateEnabled : ConfigProperties<Boolean>(
Boolean::class,
"library.metadata.update.enabled",
"Enable periodic refresh of video game metadata",
"Enable periodic refresh of video game metadata (coming soon™)",
true
)