Skip to content

Commit

Permalink
chore: set the automatic update check default value in the add-on pre…
Browse files Browse the repository at this point in the history
…ferences to false
  • Loading branch information
tristan-hm committed Mar 22, 2024
1 parent 56b5b6c commit 962d227
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class NDPreferences(AddonPreferences):

enable_update_check: BoolProperty(
name="Enable Update Check",
default=True,
default=False,
)

overlay_pin_x: IntProperty(
Expand Down Expand Up @@ -473,7 +473,7 @@ def draw_general(self, box):
general_boxed_prefs = [
["The default angle to use for bevel and smoothing operations", "default_smoothing_angle", True],
["Set a path for a custom screw heads .blend file", "custom_screw_heads_path", False],
["Automatically check if addon is up to date when Blender starts", "enable_update_check", False],
["Automatically check if ND is up to date when Blender starts", "enable_update_check", False],
["Enable deprecated features for short term backwards compatibility", "enable_deprecated_features", False],
["Enable experimental features. Use at your own risk!", "enable_experimental_features", False]]

Expand Down
2 changes: 1 addition & 1 deletion blender_manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tagline = "Non-Destructive Modeling Toolkit"
maintainer = "HugeMenace <[email protected]>"
type = "add-on"

permissions = ["files", "network"]
permissions = ["files"]

website = "https://docs.nd.hugemenace.co/"

Expand Down

0 comments on commit 962d227

Please sign in to comment.