diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4b4066860..13ee6c512 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,15 @@ +0.93.0 + +musikcube: +* added a new decoder based on `libopenmpt` to support playing mod/tracker + files. +* fixed a bug when browsing directories that contain entries from custom + `IndexerSource` plugins +* fixed directory scanning bugs related to NFS (and potentially other + filesystem) volumes. + +-------------------------------------------------------------------------------- + 0.92.1 server: diff --git a/CMakeLists.txt b/CMakeLists.txt index 4580f1e14..dca86609f 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 92) -set (musikcube_VERSION_PATCH 1) +set (musikcube_VERSION_MINOR 93) +set (musikcube_VERSION_PATCH 0) 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 700c59bf9..634aa4687 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.92.1 +%define version 0.93.0 Name: %{name} Version: %{version} Release: %{dist} diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index c7b111c3e..a2d83095b 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: musikcube # you probably want to 'snapcraft register ' -version: 0.92.1 +version: 0.93.0 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/musikcube/app/version.h b/src/musikcube/app/version.h index 82abfef2e..62a7924cb 100644 --- a/src/musikcube/app/version.h +++ b/src/musikcube/app/version.h @@ -37,9 +37,9 @@ #include #define VERSION_MAJOR 0 -#define VERSION_MINOR 92 -#define VERSION_PATCH 1 -#define VERSION "0.92.1" +#define VERSION_MINOR 93 +#define VERSION_PATCH 0 +#define VERSION "0.93.0" namespace musik { namespace cube { static inline std::string userAgent() { diff --git a/src/musikcube/musikcube.rc b/src/musikcube/musikcube.rc index 8245dbdc1..ca5a17732 100644 Binary files a/src/musikcube/musikcube.rc and b/src/musikcube/musikcube.rc differ