Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lah7 committed Aug 25, 2024
1 parent d964759 commit 8c0ab9f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="sims2_4k_ui_patcher",
version="0.1.0",
version="0.2.0",
description="4K UI Patcher for The Sims 2",
options={"build_exe": build_exe_options},
executables=[Executable("sims2_4k_ui_patcher.py", base="gui", icon="assets/icon")],
Expand Down
8 changes: 4 additions & 4 deletions sims2_4k_ui_patcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
from sims2patcher.gamefile import GameFile
from sims2patcher.widgets import Widgets, get_resource

MAJOR = 0 # For new patches
MINOR = 1 # For fixed patches
PATCH = 0 # For trivial or UI fixes
VERSION = "v0.2.0"
MAJOR = 0
MINOR = 2
PATCH = 0

VERSION = f"v{MAJOR}.{MINOR}.{PATCH}" # User-facing text
gamefile.FILE_PATCH_VERSION = float(f"{MAJOR}.{MINOR}") # Stored in file describing patch status

DEFAULT_PATHS = [
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.2.0

0 comments on commit 8c0ab9f

Please sign in to comment.