Skip to content

Commit

Permalink
V2024.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Dec 14, 2024
1 parent afbb1b2 commit 2bf142b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'"
Expand Down
10 changes: 5 additions & 5 deletions flatpak/python3-modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
{
Expand All @@ -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",
Expand Down Expand Up @@ -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"
}
]
}
4 changes: 2 additions & 2 deletions libparabolic/src/controllers/mainwindowcontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ namespace Nickvision::TubeConverter::Shared::Controllers
m_keyring{ m_appInfo.getId() },
m_downloadManager{ m_dataFileManager.get<Configuration>("config").getDownloaderOptions(), m_dataFileManager.get<DownloadHistory>("history"), m_dataFileManager.get<DownloadRecoveryQueue>("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");
Expand Down
4 changes: 2 additions & 2 deletions resources/linux/org.nickvision.tubeconverter.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<binary>@PROJECT_NAME@</binary>
</provides>
<releases>
<release version="2024.12.0-next" date="2024-12-01">
<release version="2024.12.0" date="2024-12-14">
<description translate="no">
<p>- Added the ability to toggle the inclusion of a media's id in its title when validated in the app's settings</p>
<p>- Added the option to export a download's media description to a separate file</p>
Expand All @@ -65,7 +65,7 @@
<p>- Fixed an issue where video medias' thumbnails were also cropped when crop audio thumbnails was enabled</p>
<p>- Fixed an issue where the previously used download quality was not remembered</p>
<p>- Redesigned the Qt version's user interface with a more modern style</p>
<p>- Updated yt-dlp to 2024.12.06</p>
<p>- Updated yt-dlp to 2024.12.13</p>
</description>
</release>
</releases>
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2bf142b

Please sign in to comment.