diff --git a/project.godot b/project.godot index 26734f8..93bcba3 100644 --- a/project.godot +++ b/project.godot @@ -11,7 +11,7 @@ config_version=5 [application] config/name="Glitch" -config/version="2" +config/version="v3" run/main_scene="res://scenes/main.tscn" config/features=PackedStringArray("4.2", "Mobile") run/low_processor_mode=true diff --git a/src/UIAppVersion.gd b/src/UIAppVersion.gd index 1741c76..60fe35a 100644 --- a/src/UIAppVersion.gd +++ b/src/UIAppVersion.gd @@ -1,4 +1,4 @@ extends Label func _ready(): - text = "v" + ProjectSettings.get_setting("application/config/version") + text = ProjectSettings.get_setting("application/config/version")