Upgrade version number to version 0.3

This commit is contained in:
antimundo 2025-04-27 16:47:49 +02:00
parent 38f1bab847
commit ba3067317e
3 changed files with 5 additions and 4 deletions

View file

@ -11,10 +11,11 @@ config_version=5
[application]
config/name="LibreAim"
config/version="v0.2.0-alpha"
config/version="0.3"
run/main_scene="res://scenes/main_menu/main_menu.tscn"
config/features=PackedStringArray("4.4", "Forward Plus")
config/icon="res://icon.svg"
config/convert_text_resources_to_binary=false
[autoload]

View file

@ -1,6 +1,6 @@
![LibreAim](https://img.itch.zone/aW1nLzE3MTA3NTQzLnBuZw==/original/8acskw.png)
Free and open source FPS aim trainer made with Godot 4.3.
Free and open source FPS aim trainer made with Godot 4.4.
- **✏️ Customizable**: Libre Aim is open source, and offers a lot of customization settings.
- **🕊️ Lightweight**: This is a training tool, it doesn't need fancy graphics, but it needs to run on low-end machines, give a high ammount of fps, and have minimal input lag.
@ -19,6 +19,6 @@ Free and open source FPS aim trainer made with Godot 4.3.
## Free, open source
Libre Aim is open source. Feel free to do whatever you want with it: Fork it, modify it, use the code for other projects...
You can also contribute to the project, we have a [Discord community](discord.gg/u2Hm8sMagF)!
You can also contribute to the project, we have a [Discord community](https://discord.com/invite/u2Hm8sMagF)!
![Screenshot](https://img.itch.zone/aW1nLzE3MTA3NjMyLmpwZw==/original/OJpGqx.jpg)

View file

@ -5,7 +5,7 @@ func _ready() -> void:
set_text_to_current_version()
func set_text_to_current_version() -> void:
text = get_current_version()
text = "Version " + get_current_version() + " alpha"
func get_current_version() -> String:
return ProjectSettings.get_setting("application/config/version")