Bump version to 4.9.0 for release
Updated version references from 4.9.0b to 4.9.0 in __init__.py, main app, and About dialog to reflect stable release.
This commit is contained in:
+1
-1
@@ -4,5 +4,5 @@ YTSage - YouTube Video Downloader
|
|||||||
A modern, user-friendly YouTube video downloader built with PySide6.
|
A modern, user-friendly YouTube video downloader built with PySide6.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "4.9.0b"
|
__version__ = "4.9.0"
|
||||||
__author__ = "oop7"
|
__author__ = "oop7"
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ class AboutDialog(QDialog):
|
|||||||
layout.addWidget(title_label)
|
layout.addWidget(title_label)
|
||||||
|
|
||||||
version_label = QLabel(
|
version_label = QLabel(
|
||||||
f"<span style='color: #cccccc; font-size: 13px; font-weight: normal;'>{_('about.version', version=getattr(self._parent, 'version', '4.9.0b'))}</span>"
|
f"<span style='color: #cccccc; font-size: 13px; font-weight: normal;'>{_('about.version', version=getattr(self._parent, 'version', '4.9.0'))}</span>"
|
||||||
)
|
)
|
||||||
version_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
|
version_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
|
||||||
layout.addWidget(version_label)
|
layout.addWidget(version_label)
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ class YTSageApp(QMainWindow, FormatTableMixin, VideoInfoMixin): # Inherit from
|
|||||||
else:
|
else:
|
||||||
logger.info(f"Using yt-dlp from: {ytdlp_path}")
|
logger.info(f"Using yt-dlp from: {ytdlp_path}")
|
||||||
|
|
||||||
self.version = "4.9.0b"
|
self.version = "4.9.0"
|
||||||
self.check_for_updates()
|
self.check_for_updates()
|
||||||
|
|
||||||
# Check for auto-updates if enabled
|
# Check for auto-updates if enabled
|
||||||
|
|||||||
Reference in New Issue
Block a user