From 2bf142bb3c13076b061f0e22b7afbbe2ea821ef6 Mon Sep 17 00:00:00 2001 From: Nick Logozzo Date: Sat, 14 Dec 2024 13:37:27 -0500 Subject: [PATCH] V2024.12.0 --- .github/workflows/windows.yml | 2 +- flatpak/python3-modules.json | 10 +++++----- libparabolic/src/controllers/mainwindowcontroller.cpp | 4 ++-- .../linux/org.nickvision.tubeconverter.metainfo.xml.in | 4 ++-- snap/snapcraft.yaml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bc25fc0e3..97529a6c4 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -47,7 +47,7 @@ jobs: working-directory: ${{github.workspace}}/inno run: | powershell -command "Invoke-WebRequest https://aka.ms/vs/17/release/vc_redist.x64.exe -OutFile vc_redist.x64.exe" - powershell -command "Invoke-WebRequest https://github.com/yt-dlp/yt-dlp/releases/download/2024.12.06/yt-dlp.exe -OutFile yt-dlp.exe" + powershell -command "Invoke-WebRequest https://github.com/yt-dlp/yt-dlp/releases/download/2024.12.13/yt-dlp.exe -OutFile yt-dlp.exe" powershell -command "Invoke-WebRequest https://github.com/aria2/aria2/releases/download/release-1.37.0/aria2-1.37.0-win-64bit-build1.zip -OutFile aria2.zip" powershell -command "Invoke-WebRequest https://github.com/GyanD/codexffmpeg/releases/download/7.1/ffmpeg-7.1-full_build.zip -OutFile ffmpeg.zip" powershell -command "Expand-Archive -Force 'aria2.zip'" diff --git a/flatpak/python3-modules.json b/flatpak/python3-modules.json index bef4e50c0..b65d81827 100644 --- a/flatpak/python3-modules.json +++ b/flatpak/python3-modules.json @@ -2,7 +2,7 @@ "name": "python3-yt-dlp", "buildsystem": "simple", "build-commands": [ - "pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"yt-dlp[default,curl-cffi]\" --no-build-isolation" + "pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"yt-dlp[curl-cffi,default]\" --no-build-isolation" ], "sources": [ { @@ -12,8 +12,8 @@ }, { "type": "file", - "url": "https://files.pythonhosted.org/packages/12/90/3c9ff0512038035f59d279fddeb79f5f1eccd8859f06d6163c58798b9487/certifi-2024.8.30-py3-none-any.whl", - "sha256": "922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8" + "url": "https://files.pythonhosted.org/packages/a5/32/8f6669fc4798494966bf446c8c4a162e0b5d893dff088afddf76414f70e1/certifi-2024.12.14-py3-none-any.whl", + "sha256": "1275f7a45be9464efc1173084eaa30f866fe2e47d389406136d332ed4967ec56" }, { "type": "file", @@ -67,8 +67,8 @@ }, { "type": "file", - "url": "https://files.pythonhosted.org/packages/e8/75/85c878fa4cbc7d0b6965f85af0f6c8f828f1adb567971e7dba099949022c/yt_dlp-2024.12.6-py3-none-any.whl", - "sha256": "a7b8724e58fff4f3204cae4feb936dbd249ca6d22c5f25dec1b3c6f1cb7745a2" + "url": "https://files.pythonhosted.org/packages/42/5b/e39cb315ce5be55cfd1ebef707dc2d8e4f02c6c6f8b61752076c67c8427f/yt_dlp-2024.12.13-py3-none-any.whl", + "sha256": "5a16b7511e8500cbb13ff0babc9c6deb1e049dc1c854a51738aad2529167fcdf" } ] } \ No newline at end of file diff --git a/libparabolic/src/controllers/mainwindowcontroller.cpp b/libparabolic/src/controllers/mainwindowcontroller.cpp index e8e65a355..50438e843 100644 --- a/libparabolic/src/controllers/mainwindowcontroller.cpp +++ b/libparabolic/src/controllers/mainwindowcontroller.cpp @@ -38,10 +38,10 @@ namespace Nickvision::TubeConverter::Shared::Controllers m_keyring{ m_appInfo.getId() }, m_downloadManager{ m_dataFileManager.get("config").getDownloaderOptions(), m_dataFileManager.get("history"), m_dataFileManager.get("recovery"), m_logger } { - m_appInfo.setVersion({ "2024.12.0-next" }); + m_appInfo.setVersion({ "2024.12.0" }); m_appInfo.setShortName(_("Parabolic")); m_appInfo.setDescription(_("Download web video and audio")); - m_appInfo.setChangelog("- Added the ability to toggle the inclusion of a media's id in its title when validated in the app's settings\n- Added the option to export a download's media description to a separate file\n- Restored the ability for Parabolic to accept a URL to validate via command line arguments\n- Fixed an issue where auto-generated subtitles were not being embed in a media file\n- Fixed an issue where downloading media at certain time frames were not respected\n- Fixed an issue where video medias' thumbnails were also cropped when crop audio thumbnails was enabled\n- Fixed an issue where the previously used download quality was not remembered\n- Redesigned the Qt version's user interface with a more modern style\n- Updated yt-dlp to 2024.12.06"); + m_appInfo.setChangelog("- Added the ability to toggle the inclusion of a media's id in its title when validated in the app's settings\n- Added the option to export a download's media description to a separate file\n- Restored the ability for Parabolic to accept a URL to validate via command line arguments\n- Fixed an issue where auto-generated subtitles were not being embed in a media file\n- Fixed an issue where downloading media at certain time frames were not respected\n- Fixed an issue where video medias' thumbnails were also cropped when crop audio thumbnails was enabled\n- Fixed an issue where the previously used download quality was not remembered\n- Redesigned the Qt version's user interface with a more modern style\n- Updated yt-dlp to 2024.12.13"); m_appInfo.setSourceRepo("https://github.com/NickvisionApps/Parabolic"); m_appInfo.setIssueTracker("https://github.com/NickvisionApps/Parabolic/issues/new"); m_appInfo.setSupportUrl("https://github.com/NickvisionApps/Parabolic/discussions"); diff --git a/resources/linux/org.nickvision.tubeconverter.metainfo.xml.in b/resources/linux/org.nickvision.tubeconverter.metainfo.xml.in index 14bb78518..59a95a792 100644 --- a/resources/linux/org.nickvision.tubeconverter.metainfo.xml.in +++ b/resources/linux/org.nickvision.tubeconverter.metainfo.xml.in @@ -55,7 +55,7 @@ @PROJECT_NAME@ - +

- Added the ability to toggle the inclusion of a media's id in its title when validated in the app's settings

- Added the option to export a download's media description to a separate file

@@ -65,7 +65,7 @@

- Fixed an issue where video medias' thumbnails were also cropped when crop audio thumbnails was enabled

- Fixed an issue where the previously used download quality was not remembered

- Redesigned the Qt version's user interface with a more modern style

-

- Updated yt-dlp to 2024.12.06

+

- Updated yt-dlp to 2024.12.13

diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index b61335692..7af907608 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -34,7 +34,7 @@ parts: plugin: python source: . python-packages: - - yt-dlp==2024.12.06 + - yt-dlp==2024.12.13 stage: - -bin/activate* - -bin/Activate.ps1