From f0232d535dac6fd7b48e41b3e743c37646c6e825 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 9 Sep 2025 12:52:14 +0300 Subject: [PATCH] Bump version to 4.8.1 Update version references from 4.8.0b to 4.8.1 in __init__.py, main app, and About dialog to reflect the new release. --- src/__init__.py | 2 +- src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py | 2 +- src/gui/ytsage_gui_main.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/__init__.py b/src/__init__.py index d9e962d..ef11444 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -4,5 +4,5 @@ YTSage - YouTube Video Downloader A modern, user-friendly YouTube video downloader built with PySide6. """ -__version__ = "4.8.0b" +__version__ = "4.8.1" __author__ = "oop7" diff --git a/src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py b/src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py index c45e39c..8e39503 100644 --- a/src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py +++ b/src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py @@ -155,7 +155,7 @@ class AboutDialog(QDialog): layout.addWidget(title_label) version_label = QLabel( - f"Version {getattr(self._parent, 'version', '4.8.0b')}" + f"Version {getattr(self._parent, 'version', '4.8.1')}" ) version_label.setAlignment(Qt.AlignmentFlag.AlignCenter) layout.addWidget(version_label) diff --git a/src/gui/ytsage_gui_main.py b/src/gui/ytsage_gui_main.py index b0da1ed..c80febb 100644 --- a/src/gui/ytsage_gui_main.py +++ b/src/gui/ytsage_gui_main.py @@ -86,7 +86,7 @@ class YTSageApp(QMainWindow, FormatTableMixin, VideoInfoMixin): # Inherit from else: self.logger.info(f"Using yt-dlp from: {ytdlp_path}") - self.version = "4.8.0b" + self.version = "4.8.1" self.check_for_updates() # Check for auto-updates if enabled