mirror of
https://github.com/hobbesjaap/wellbeingapp.git
synced 2024-11-08 11:42:59 +00:00
19 lines
336 B
GDScript
19 lines
336 B
GDScript
extends Node
|
|
|
|
|
|
# This variable lists the release number.
|
|
# This is "the number of releases".
|
|
|
|
var release_version = 1
|
|
|
|
# The var web_release_version is pulled from GitHub
|
|
# when the update button is checked. A higher value means
|
|
# an update is available
|
|
|
|
var web_release_version = 0
|
|
var current_version = "0.0.8"
|
|
|
|
|
|
func _ready():
|
|
pass
|