From 5ece563890f95a971adb4725655a162d4b80f075 Mon Sep 17 00:00:00 2001 From: Beneggy Date: Fri, 29 Nov 2024 10:48:44 +0000 Subject: [PATCH] Updated to work with Godot 4.3 --- addons/GodotVersion/plugin.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/GodotVersion/plugin.gd b/addons/GodotVersion/plugin.gd index fa7d44f..0d6a673 100644 --- a/addons/GodotVersion/plugin.gd +++ b/addons/GodotVersion/plugin.gd @@ -18,7 +18,7 @@ func _build(): func updateVersion(): var version = JSON.parse_string(file.get_as_text())["SemVer"] - ProjectSettings.set_setting("version", version) + ProjectSettings.set_setting("application/config/version", version) ProjectSettings.save() print("version: ", version)