diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e99890192..ddbc50c19 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,11 @@ +3.0.4 + +* add ffmpeg 6.x backwards compatibility (@barracuda156) +* improved LastFM support (@al1-ce) +* fix build on DragonFly BSD (@alexax66) + +-------------------------------------------------------------------------------- + 3.0.3 * target ffmpeg 7.0 api, update encoder and decoder accordingly diff --git a/CMakeLists.txt b/CMakeLists.txt index e991714a5..9081c2f38 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.5) project(musikcube) set (musikcube_VERSION_MAJOR 3) set (musikcube_VERSION_MINOR 0) -set (musikcube_VERSION_PATCH 3) +set (musikcube_VERSION_PATCH 4) set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}") set (LIBRARY_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin/plugins) set (EXECUTABLE_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin) diff --git a/musikcube.spec b/musikcube.spec index c82109d68..a4eb36178 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 3.0.3 +%define version 3.0.4 Name: %{name} Version: %{version} Release: %{dist} diff --git a/src/musikcore/sdk/version.h b/src/musikcore/sdk/version.h index 925a23a4d..ec5887edb 100644 --- a/src/musikcore/sdk/version.h +++ b/src/musikcore/sdk/version.h @@ -38,10 +38,10 @@ #define MUSIKCUBE_VERSION_MAJOR 3 #define MUSIKCUBE_VERSION_MINOR 0 -#define MUSIKCUBE_VERSION_PATCH 3 -#define MUSIKCUBE_VERSION "3.0.3" -#define MUSIKCUBE_VERSION_COMMIT_HASH "#e3976437" -#define MUSIKCUBE_VERSION_WITH_COMMIT_HASH "3.0.3-#e3976437" +#define MUSIKCUBE_VERSION_PATCH 4 +#define MUSIKCUBE_VERSION "3.0.4" +#define MUSIKCUBE_VERSION_COMMIT_HASH "#4815178b" +#define MUSIKCUBE_VERSION_WITH_COMMIT_HASH "3.0.4-#4815178b" namespace musik { namespace cube { diff --git a/src/musikcube/musikcube.rc b/src/musikcube/musikcube.rc index 7efb77d9a..b1768129f 100644 Binary files a/src/musikcube/musikcube.rc and b/src/musikcube/musikcube.rc differ