Skip to content

Commit

Permalink
Merge pull request #68 from Thisal-D/version3.2.0
Browse files Browse the repository at this point in the history
Version3.2.0
  • Loading branch information
Thisal-D authored Dec 26, 2024
2 parents 5d95eb2 + e5a15a3 commit 1ffcc00
Show file tree
Hide file tree
Showing 12 changed files with 374 additions and 21 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/.idea/
/assets/profile images
/assets/profile images/*.png
*.pyc
ffmpeg/ffmpeg.exe
temp/thumbnails/*.png
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

   [![Download PyTube Downloader](https://img.shields.io/sourceforge/dm/pytube-downloader.svg)](https://sourceforge.net/projects/pytube-downloader/files/latest/download) [![Download PyTube Downloader](https://img.shields.io/sourceforge/dw/pytube-downloader.svg)](https://sourceforge.net/projects/pytube-downloader/files/latest/download) [![Download PyTube Downloader](https://img.shields.io/sourceforge/dt/pytube-downloader.svg)](https://sourceforge.net/projects/pytube-downloader/files/latest/download)

   `v3.1.1` [Visit to Download .exe for Windows](https://sourceforge.net/p/pytube-downloader)
   `v3.2.0` [Visit to Download .exe for Windows](https://sourceforge.net/p/pytube-downloader)

---

Expand Down
2 changes: 1 addition & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

   [![Download PyTube Downloader](https://img.shields.io/sourceforge/dm/pytube-downloader.svg)](https://sourceforge.net/projects/pytube-downloader/files/latest/download) [![Download PyTube Downloader](https://img.shields.io/sourceforge/dw/pytube-downloader.svg)](https://sourceforge.net/projects/pytube-downloader/files/latest/download) [![Download PyTube Downloader](https://img.shields.io/sourceforge/dt/pytube-downloader.svg)](https://sourceforge.net/projects/pytube-downloader/files/latest/download)

   `v3.1.1` [下载适用于 Windows 的 .exe](https://sourceforge.net/p/pytube-downloader)
   `v3.2.0` [下载适用于 Windows 的 .exe](https://sourceforge.net/p/pytube-downloader)

---

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '3.1.1'
VERSION = '3.2.0'
5 changes: 3 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,7 @@ def downloaded_video(self, video: DownloadingVideo) -> None:
file_size=video.file_size,
length=video.length,

download_path=video.download_file_name,
downloaded_file_name=video.download_file_name,
download_quality=video.download_quality,
download_type=video.download_type
).pack(fill="x", pady=2)
Expand Down Expand Up @@ -1566,12 +1566,13 @@ def check_for_updates(self) -> None:
master=self,
original_configure_callback=self.run_geometry_changes_tracker,
alert_msg="update_alert",
more_details=f"v{current_version} ➝ v{latest_version}",
ok_button_display=True,
ok_button_callback=self.open_update_download_page,
cancel_button_display=True,
wait_for_previous=True,
width=int(450 * scale),
height=int(130 * scale)
height=int(150 * scale)
)

def run_update_check(self):
Expand Down
3 changes: 3 additions & 0 deletions data/appearance.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"alert_window": {
"msg_color": {
"normal": "#ee0000"
},
"details": {
"normal": "#00ee00"
}
},
"context_menu": {
Expand Down
2 changes: 1 addition & 1 deletion data/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"contributors": {},
"name": "PyTube Downloader",
"site": "https://github.com/Thisal-D/PyTube-Downloader",
"version": "3.1.1"
"version": "3.2.0"
}
3 changes: 3 additions & 0 deletions dependencies_updater.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import os

os.system("pip install -r requirements.txt --upgrade")
Loading

0 comments on commit 1ffcc00

Please sign in to comment.