diff options
author | Linnea Gräf <nea@nea.moe> | 2025-01-08 19:25:29 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-01-08 19:25:29 +0100 |
commit | d1e16a47819509ed645bb93e1a173e0a97025cef (patch) | |
tree | efbe886d9ac1ab4ea01788cb4842812fd0af9079 /src/main/kotlin/moe/nea/ledger/config/MainOptions.kt | |
parent | f694daf322bbb4ff530a9332547c5c8337c3e0c0 (diff) | |
download | LocalTransactionLedger-d1e16a47819509ed645bb93e1a173e0a97025cef.tar.gz LocalTransactionLedger-d1e16a47819509ed645bb93e1a173e0a97025cef.tar.bz2 LocalTransactionLedger-d1e16a47819509ed645bb93e1a173e0a97025cef.zip |
build: Move mod to subproject
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/config/MainOptions.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/ledger/config/MainOptions.kt | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/config/MainOptions.kt b/src/main/kotlin/moe/nea/ledger/config/MainOptions.kt deleted file mode 100644 index 1efa970..0000000 --- a/src/main/kotlin/moe/nea/ledger/config/MainOptions.kt +++ /dev/null @@ -1,27 +0,0 @@ -package moe.nea.ledger.config - -import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorDropdown -import io.github.notenoughupdates.moulconfig.annotations.ConfigOption - -class MainOptions { - @ConfigOption(name = "Marker for Update UI", desc = "_") - @JvmField - @UpdateUiMarker - @Transient - var testOption = Unit - - @ConfigOption(name = "Check for Updates", desc = "Automatically check for updates on startup") - @ConfigEditorDropdown - @JvmField - var updateCheck = UpdateCheckBehaviour.SEMI - - enum class UpdateCheckBehaviour(val label: String) { - SEMI("Semi-Automatic"), - FULL("Full-Automatic"), - NONE("Don't check"); - - override fun toString(): String { - return label - } - } -} |