Skip to content

Commit 79d8d22

Browse files
committed
Bump version to 4.8.3
Updated version references from 4.8.2 to 4.8.3 in __init__.py, main app, and About dialog to reflect the new release.
1 parent 2f0b4b9 commit 79d8d22

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
A modern, user-friendly YouTube video downloader built with PySide6.
55
"""
66

7-
__version__ = "4.8.2"
7+
__version__ = "4.8.3"
88
__author__ = "oop7"

src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def _create_app_info_section(self) -> QWidget:
155155
layout.addWidget(title_label)
156156

157157
version_label = QLabel(
158-
f"<span style='color: #cccccc; font-size: 13px; font-weight: normal;'>Version {getattr(self._parent, 'version', '4.8.2')}</span>"
158+
f"<span style='color: #cccccc; font-size: 13px; font-weight: normal;'>Version {getattr(self._parent, 'version', '4.8.3')}</span>"
159159
)
160160
version_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
161161
layout.addWidget(version_label)

src/gui/ytsage_gui_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def __init__(self) -> None:
8686
else:
8787
self.logger.info(f"Using yt-dlp from: {ytdlp_path}")
8888

89-
self.version = "4.8.2"
89+
self.version = "4.8.3"
9090
self.check_for_updates()
9191

9292
# Check for auto-updates if enabled

0 commit comments

Comments
 (0)