6 Commits
0.0.1 ... 0.1.0

Author SHA1 Message Date
df6c970112 Update
All checks were successful
Build and Upload Release (Windows EXE) / Build Windows EXE (release) Successful in -14h59m18s
2026-01-24 15:39:53 -05:00
411ff15ea5 responsive layout and new background 2026-01-24 15:16:46 -05:00
269950cf4a Fix escaping
All checks were successful
Build and Upload Release (Windows EXE) / Build Windows EXE (release) Successful in 41s
2026-01-24 02:32:22 -05:00
f1cd7eadb9 Autoupdates
All checks were successful
Build and Upload Release (Windows EXE) / Build Windows EXE (release) Successful in 42s
2026-01-24 01:55:54 -05:00
49ba0a4602 Update blocking 2026-01-24 01:47:38 -05:00
958fe26cad Testing Auto Updates
All checks were successful
Build and Upload Release (Windows EXE) / Build Windows EXE (release) Successful in 34s
2026-01-24 01:15:53 -05:00
5 changed files with 1730 additions and 531 deletions

View File

@@ -12,3 +12,7 @@ to bump the version
python version_manager.py 1.0.1 python version_manager.py 1.0.1
build
pyinstaller --clean --onefile --windowed --icon=art/Progression.ico --add-data "art;art" --name ProgressionLoader steam_workshop_gui.py

BIN
art/Desolation.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 591 KiB

BIN
art/georgia.ttf Normal file

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -5,7 +5,7 @@ Configuration settings for the update checker
# Update checker configuration # Update checker configuration
UPDATE_CONFIG = { UPDATE_CONFIG = {
# Current version of the application # Current version of the application
"current_version": "0.0.1", "current_version": "0.1.0",
# Repository information # Repository information
"repo_owner": "HRiggs", "repo_owner": "HRiggs",
@@ -18,8 +18,11 @@ UPDATE_CONFIG = {
# Whether to check for updates on startup # Whether to check for updates on startup
"check_on_startup": True, "check_on_startup": True,
# Delay before checking for updates on startup (in milliseconds) # Whether updates are required (blocks app if true)
"startup_check_delay": 5000, "updates_required": True,
# Whether to auto-restart after successful update
"auto_restart_after_update": True,
# Whether to include pre-releases in update checks # Whether to include pre-releases in update checks
"include_prereleases": True, "include_prereleases": True,