Skip to content

Commit

Permalink
update - v0.24-alpha transition (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
OcelotWalrus committed May 1, 2024
1 parent ee5eafe commit d3aa4b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version.BOW
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.23-alpha
0.24-alpha
2 changes: 1 addition & 1 deletion credits.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Welcome to Bane Of Wargs!
version 0.23-alpha
version 0.24-alpha

The player's manual and other
resources are available at:
Expand Down
4 changes: 2 additions & 2 deletions source/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
program_dir = str(appdirs.user_config_dir(appname='Bane-Of-Wargs'))
first_start = False
if not os.path.exists(program_dir):
GAME_DATA_VERSION = 0.23
GAME_DATA_VERSION = 0.24
os.mkdir(program_dir)
# Open default config file and store the text into
# a variable to write it into the user config file
Expand Down Expand Up @@ -126,7 +126,7 @@
logger_sys.log_message("INFO: Checking if game source code is up to date")
global latest_version
latest_version = None # placeholder
SOURCE_CODE_VERSION = 0.23
SOURCE_CODE_VERSION = 0.24
latest_main_class = io.StringIO(data_handling.temporary_git_file_download(
'source/main.py', 'https://github.com/Dungeons-of-Kathallion/Bane-Of-Wargs.git'
)).readlines()
Expand Down

0 comments on commit d3aa4b0

Please sign in to comment.