feat: Add main application window with tabbed interface and bump version to 5.4.0.

This commit is contained in:
kiyreload27
2025-12-28 17:41:53 +00:00
parent 031b73310c
commit 32fb35cc66
2 changed files with 2 additions and 2 deletions

View File

@@ -164,7 +164,7 @@ class MainWindow:
# Training Sim Tab # Training Sim Tab
self.sim_frame = TrainingSimFrame(self.notebook) self.sim_frame = TrainingSimFrame(self.notebook)
self.notebook.add(self.sim_frame, text=" 📈 Training Sim ") self.notebook.add(self.sim_frame, text=" 📈 Training Sim (Beta) ")
def create_status_bar(self, parent): def create_status_bar(self, parent):
"""Create status bar at bottom""" """Create status bar at bottom"""

View File

@@ -4,7 +4,7 @@ This file is the single source of truth for the application version.
""" """
# Semantic versioning: MAJOR.MINOR.PATCH # Semantic versioning: MAJOR.MINOR.PATCH
VERSION = "5.3.2" VERSION = "5.4.0"
# Application metadata # Application metadata
APP_NAME = "UmamusumeCardManager" APP_NAME = "UmamusumeCardManager"