diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6b39463e4..ed23f97bf 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,9 +1,18 @@ -0.96.10 +0.96.11 * added support for ffmpeg5 libraries. * upgraded to ffmpeg5 for Windows builds. -* fixed race condition in WasapiOut that caused the app to crash. +* fixed WasapiOut to use high-quality, built-in resampler. +* added `allow_decoder_resampling` to WasapiOut to disable the high- + quality, built-in resampler and rely on plugin resampling instead. +* fixed dialog background rendering in certain versions of ncurses. +* fixed duration calculation for float-encoded wav files. +* added additional PipeWire output debugging. + +0.96.10 + * fixed `-rpath` for macOS build. +* fixed race condition in WasapiOut that caused the app to crash. 0.96.9 diff --git a/CMakeLists.txt b/CMakeLists.txt index c7211f525..f6067dd90 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.0) project(musikcube) set (musikcube_VERSION_MAJOR 0) set (musikcube_VERSION_MINOR 96) -set (musikcube_VERSION_PATCH 10) +set (musikcube_VERSION_PATCH 11) set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}") list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/.cmake) diff --git a/musikcube.spec b/musikcube.spec index 91f2b91d2..34c0739f2 100644 --- a/musikcube.spec +++ b/musikcube.spec @@ -1,6 +1,6 @@ %define name musikcube %define build_timestamp %{lua: print(os.date("%Y%m%d"))} -%define version 0.96.10 +%define version 0.96.11 Name: %{name} Version: %{version} Release: %{dist} diff --git a/src/musikcore/version.h b/src/musikcore/version.h index 1fb63536f..dfc4baeca 100644 --- a/src/musikcore/version.h +++ b/src/musikcore/version.h @@ -38,9 +38,9 @@ #define VERSION_MAJOR 0 #define VERSION_MINOR 96 -#define VERSION_PATCH 10 -#define VERSION_COMMIT_HASH "#54eaeb4b" -#define VERSION "0.96.10" +#define VERSION_PATCH 11 +#define VERSION_COMMIT_HASH "#74c964b7" +#define VERSION "0.96.11" namespace musik { namespace cube { diff --git a/src/musikcube/musikcube.rc b/src/musikcube/musikcube.rc index a827c640e..12f88ae6b 100644 Binary files a/src/musikcube/musikcube.rc and b/src/musikcube/musikcube.rc differ