diff --git a/CHANGELOG.txt b/CHANGELOG.txt index caafefbb3..5ad3ce5f9 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,14 @@ +0.60.2 + +FreeBSD only release. + +musikcube: +* *finally* fixed the FreeBSD scrollbar crasher. yeesh. +* fixed a bug in the `sndio` output plugin that may cause the first few buffers + of audio data to be discarded when manually changing tracks. + +-------------------------------------------------------------------------------- + 0.60.1 musikcube: diff --git a/CMakeLists.txt b/CMakeLists.txt index 824868570..728ed1bf7 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 60) -set (musikcube_VERSION_PATCH 1) +set (musikcube_VERSION_PATCH 2) set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}") include(CMakeToolsHelpers OPTIONAL) diff --git a/musikcube.spec b/musikcube.spec index 2c9944976..b8dd5a86e 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.60.1 +%define version 0.60.2 Name: %{name} Version: %{version} Release: %{dist} diff --git a/src/musikcube/app/version.h b/src/musikcube/app/version.h index 968225a7c..0def24cfc 100644 --- a/src/musikcube/app/version.h +++ b/src/musikcube/app/version.h @@ -4,8 +4,8 @@ #define VERSION_MAJOR 0 #define VERSION_MINOR 60 -#define VERSION_PATCH 1 -#define VERSION "0.60.1" +#define VERSION_PATCH 2 +#define VERSION "0.60.2" namespace musik { namespace cube { @@ -25,4 +25,4 @@ namespace musik { "(" + PLATFORM + ")"; } } -} \ No newline at end of file +} diff --git a/src/musikcube/musikcube.rc b/src/musikcube/musikcube.rc index 68d8c93ee..06c37bc09 100644 Binary files a/src/musikcube/musikcube.rc and b/src/musikcube/musikcube.rc differ