Bump version to v9.2.1

This commit is contained in:
Travis Abendshien
2024-05-15 15:30:33 -07:00
parent e814d09c60
commit 6e56f13eda
2 changed files with 3 additions and 3 deletions

View File

@@ -9,8 +9,8 @@ import os
from src.core.library import Entry, Library
VERSION: str = "9.2.0" # Major.Minor.Patch
VERSION_BRANCH: str = "Alpha" # 'Alpha', 'Beta', or '' for Full Release
VERSION: str = "9.2.1" # Major.Minor.Patch
VERSION_BRANCH: str = "Pre-Release" # 'Alpha', 'Beta', or '' for Full Release
# The folder & file names where TagStudio keeps its data relative to a library.
TS_FOLDER_NAME: str = ".TagStudio"

View File

@@ -175,7 +175,7 @@ class QtDriver(QObject):
# self.main_window = Ui_MainWindow()
self.branch: str = (" (" + VERSION_BRANCH + ")") if VERSION_BRANCH else ""
self.base_title: str = f"TagStudio {VERSION}{self.branch}"
self.base_title: str = f"TagStudio Alpha {VERSION}{self.branch}"
# self.title_text: str = self.base_title
# self.buffer = {}
self.thumb_job_queue: Queue = Queue()