diff --git a/CMakeLists.txt b/CMakeLists.txt index e5795ec4f..1242c13f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,7 +72,7 @@ set(APP_AUTHOR "Martin Rotter") set(APP_COPYRIGHT "\\251 2011-${YEAR} ${APP_AUTHOR}") set(APP_REVERSE_NAME "io.github.martinrotter.rssguard") set(APP_DONATE_URL "https://github.com/sponsors/martinrotter") -set(APP_VERSION "4.6.1") +set(APP_VERSION "4.6.2") set(APP_URL "https://github.com/martinrotter/rssguard") set(APP_URL_DOCUMENTATION "https://rssguard.readthedocs.io") diff --git a/resources/scripts/github-actions/build-windows.ps1 b/resources/scripts/github-actions/build-windows.ps1 index b26b5704f..df968db56 100755 --- a/resources/scripts/github-actions/build-windows.ps1 +++ b/resources/scripts/github-actions/build-windows.ps1 @@ -48,7 +48,8 @@ $zlib_version = "1.3" $zlib_link = "https://github.com/madler/zlib/archive/refs/tags/v$zlib_version.zip" $zlib_output = "zlib.zip" -$libmpv_link = "https://deac-fra.dl.sourceforge.net/project/mpv-player-windows/libmpv/mpv-dev-x86_64-v3-20231112-git-7cab30c.7z" +$libmpv_version = "v3-20231203-git-f551a9d" +$libmpv_link = "https://downloads.sourceforge.net/project/mpv-player-windows/libmpv/mpv-dev-x86_64-$libmpv_version.7z" $libmpv_output = "mpv.zip" $ytdlp_version = "2023.11.16" @@ -64,7 +65,8 @@ Invoke-WebRequest -Uri "$cmake_link" -OutFile "$cmake_output" Invoke-WebRequest -Uri "$zlib_link" -OutFile "$zlib_output" & ".\resources\scripts\7za\7za.exe" x "$zlib_output" -Invoke-WebRequest -Uri "$libmpv_link" -OutFile "$libmpv_output" +# User custom UA because SourceForge is very picky. +Invoke-WebRequest -UserAgent "Wget" -Uri "$libmpv_link" -OutFile "$libmpv_output" & ".\resources\scripts\7za\7za.exe" x "$libmpv_output" -ompv Invoke-WebRequest -Uri "$ytdlp_link" -OutFile "$libmpv_output" diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG index 070690372..4734fd6f3 100644 --- a/resources/text/CHANGELOG +++ b/resources/text/CHANGELOG @@ -1,3 +1,12 @@ +4.6.2 +----- + +This release fixes couple of issues found after 4.6.0/4.6.1 releases. + +Fixed: +* Fixed "Browse" button not working in "Media player" tab of settings dialog. (#1245) +* Was crashing on Linux. (#1244) + 4.6.1 -----