diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 667fac951..268d18395 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,13 @@ +0.96.3 + +* fixed a bug that could cause terminal output to get corrupted when switching + songs (@the-eater) +* fixed a bug that was preventing the update check from displaying a dialog on + completion. +* fixed now playing readout ellipsizing. + +-------------------------------------------------------------------------------- + 0.96.2 * fixed a crash in HttpClient that was only manifesting on some architectures diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b3747353..df3535353 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,8 @@ cmake_minimum_required(VERSION 3.0) project(musikcube) set (musikcube_VERSION_MAJOR 0) -set (musikcube_VERSION_MINOR 96) -set (musikcube_VERSION_PATCH 2) +set (musikcube_VERSION_MINOR 92) +set (musikcube_VERSION_PATCH 3) 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 65cf0a525..99cfb38b2 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.2 +%define version 0.92.3 Name: %{name} Version: %{version} Release: %{dist} diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index c6f26db6e..5ec8c2ded 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: musikcube # you probably want to 'snapcraft register ' -version: 0.96.2 +version: 0.92.3 summary: a terminal-based music player, metadata indexer, and server description: | musikcube is a fully functional terminal-based music player, library, and diff --git a/src/musikcore/version.h b/src/musikcore/version.h index 56e58ab8d..7f371dadb 100644 --- a/src/musikcore/version.h +++ b/src/musikcore/version.h @@ -37,10 +37,10 @@ #include #define VERSION_MAJOR 0 -#define VERSION_MINOR 96 -#define VERSION_PATCH 2 -#define VERSION_COMMIT_HASH "#a0479c5b" -#define VERSION "0.96.2" +#define VERSION_MINOR 92 +#define VERSION_PATCH 3 +#define VERSION_COMMIT_HASH "#0ca5bb4b" +#define VERSION "0.92.3" namespace musik { namespace cube { diff --git a/src/musikcube/musikcube.rc b/src/musikcube/musikcube.rc index de4b0cd7b..d047bf5ed 100644 Binary files a/src/musikcube/musikcube.rc and b/src/musikcube/musikcube.rc differ