Bump version to 4.9.1

Update version references from 4.9.0 to 4.9.1 in documentation, __init__.py, AboutDialog, and main application window to prepare for new release.
This commit is contained in:
oop7
2025-10-25 19:50:50 +03:00
parent 41d35060c1
commit fe5638393a
4 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -5,7 +5,7 @@ This repository uses GitHub Actions to automatically build and release YTSage fo
## How It Works ## How It Works
### Trigger ### Trigger
The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.9.0`, `v4.9.1`). The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.9.1`, `v4.9.1`).
### Build Process ### Build Process
1. **Setup**: Uses Python 3.13.6 on all platforms 1. **Setup**: Uses Python 3.13.6 on all platforms
@@ -21,13 +21,13 @@ The workflow is triggered when you push a git tag that starts with `v` (e.g., `v
2. **Commit your changes**: 2. **Commit your changes**:
```bash ```bash
git add . git add .
git commit -m "Release v4.9.0" git commit -m "Release v4.9.1"
``` ```
3. **Create and push a tag**: 3. **Create and push a tag**:
```bash ```bash
git tag v4.9.0 git tag v4.9.1
git push origin v4.9.0 git push origin v4.9.1
``` ```
4. **Watch the action**: Go to Actions tab in GitHub to monitor progress 4. **Watch the action**: Go to Actions tab in GitHub to monitor progress
+1 -1
View File
@@ -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.0" __version__ = "4.9.1"
__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.0'))}</span>" f"<span style='color: #cccccc; font-size: 13px; font-weight: normal;'>{_('about.version', version=getattr(self._parent, 'version', '4.9.1'))}</span>"
) )
version_label.setAlignment(Qt.AlignmentFlag.AlignCenter) version_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
layout.addWidget(version_label) layout.addWidget(version_label)
+1 -1
View File
@@ -78,7 +78,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.0" self.version = "4.9.1"
self.check_for_updates() self.check_for_updates()
# Check for auto-updates if enabled # Check for auto-updates if enabled