diff --git a/.github/CI_CD_README.md b/.github/CI_CD_README.md index 0373f80..57822da 100644 --- a/.github/CI_CD_README.md +++ b/.github/CI_CD_README.md @@ -130,8 +130,8 @@ git tag v4.8.0 git push origin v4.8.0 # For a patch release -git tag v4.8.1 -git push origin v4.8.1 +git tag v4.8.2 +git push origin v4.8.2 # To delete a tag (if needed) git tag -d v4.8.0 diff --git a/src/__init__.py b/src/__init__.py index ef11444..16ff72f 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.1" +__version__ = "4.8.2" __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 8e39503..b66880e 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.1')}" + f"Version {getattr(self._parent, 'version', '4.8.2')}" ) 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 c80febb..76794fd 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.1" + self.version = "4.8.2" self.check_for_updates() # Check for auto-updates if enabled