Skip to content

Commit

Permalink
RELEASE v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
halfburnttoast committed Sep 15, 2022
1 parent 46e0c09 commit a8bc622
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dungeon_cross.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
from save_game import SaveFile
from debug_timer import debug_timer

VERSION = "v0.23.2-RC2"
VERSION = "v1.0.0"
G_LOG_LEVEL = logging.DEBUG
TILE_SIZE = 90
G_RESOLUTION = (TILE_SIZE * 9, TILE_SIZE * 9)
Expand Down Expand Up @@ -223,7 +223,7 @@ def open_puzzle(self, num: int = 0) -> None:
self._menu.get_widget("PUZZLE_ID").set_value(f"{num:05d}")
self._menu_pid = num
logging.debug(f"Map hash: {self._map_hash}")
pygame.display.set_caption(f"Dungeon Cross - {VERSION} - PID #{num:05d} - Wins: {self._player_wins}")
pygame.display.set_caption(f"Dungeon Cross - {VERSION} - Puzzle #{num:05d} - Wins: {self._player_wins}")
self.needs_display_update = True

def open_random_puzzle(self):
Expand Down

0 comments on commit a8bc622

Please sign in to comment.