Skip to content

Commit

Permalink
Updating version to 1.0000. Tweaked version algorithm.
Browse files Browse the repository at this point in the history
The new algorithm starts at 1.0000 on 2024-10-13 and increases by 0.0001
each day.
  • Loading branch information
Poobslag committed Oct 13, 2024
1 parent f9d8caa commit 4468838
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions generate-export-presets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ else
yy=$(date +%Y)
mmdd=$(date +%m%d)
mmdd=$(echo "$mmdd" | sed 's/^0*//')
version=$(((yy - 2020) * 2000 + mmdd))
version=$(printf 0.%04d $version)
version=$(((yy - 2024) * 2000 + mmdd - 1013))
version=$(printf 1.%04d $version)
fi

echo "version=$version"
Expand Down
2 changes: 1 addition & 1 deletion project/project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -1981,7 +1981,7 @@ run/main_scene="res://src/main/ui/menu/LoadingScreen.tscn"
boot_splash/show_image=false
config/icon="res://assets/main/ui/icon.png"
config/windows_native_icon="res://assets/main/ui/icon.ico"
config/version="0.9013"
config/version="1.0000"

[audio]

Expand Down

0 comments on commit 4468838

Please sign in to comment.