diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-03-09 11:25:13 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-09 01:25:13 +0100 |
commit | 03685fb1bafc46a9f893b2cc92043e11cccdad5d (patch) | |
tree | 12f5aebdd791dfee3ef68c8e3c255f48e3b9f431 /src/main/java/at | |
parent | 95f3cdeef0521692e188c7c2f991110c482dac47 (diff) | |
download | skyhanni-03685fb1bafc46a9f893b2cc92043e11cccdad5d.tar.gz skyhanni-03685fb1bafc46a9f893b2cc92043e11cccdad5d.tar.bz2 skyhanni-03685fb1bafc46a9f893b2cc92043e11cccdad5d.zip |
add feature toggle to full auto update (#1124)
Diffstat (limited to 'src/main/java/at')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/About.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/About.java b/src/main/java/at/hannibal2/skyhanni/config/features/About.java index a561a9246..8949bf36f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/About.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/About.java @@ -1,5 +1,6 @@ package at.hannibal2.skyhanni.config.features; +import at.hannibal2.skyhanni.config.FeatureToggle; import at.hannibal2.skyhanni.features.misc.update.ConfigVersionDisplay; import at.hannibal2.skyhanni.utils.OSUtils; import com.google.gson.annotations.Expose; @@ -23,6 +24,7 @@ public class About { @ConfigOption(name = "Full Auto Updates", desc = "Automatically downloads new version on each startup.") @Expose + @FeatureToggle @ConfigEditorBoolean public boolean fullAutoUpdates = false; |