CHANGELOG and version bump.

This commit is contained in:
casey langen 2021-09-05 14:55:37 -07:00
parent f91bee6a1c
commit 440a34b549
5 changed files with 22 additions and 5 deletions

View File

@ -1,3 +1,20 @@
0.96.8
* ensure TrackSearchLayout refreshes during metadata indexing (@ravensiris)
* fixed album duration calculation fencepost error (@PythonTryHard)
* added Spanish (es_ES) translation (@orestescm76)
* added support for Android Studio 4.2
* updated CMake scripts to be compatible with Homebrew installations that
are rooted outside of /usr/local
* ensure static libraries are only resolved with necessary (@t123yh)
* fixed OpenBSD build
* fixed a PipeWire bug where volume may not get set properly.
* updated Scrobble logic to only post if at least 25% of the active track
has been played.
* fixed a bug where user may be unable to nativate to the lyrics view
* fixed a low-level bug that could prevent layout update events from
propagating up the view hierarchy.
0.96.7
* re-compile for Windows; Windows Defender was unhappy with the original

View File

@ -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 7)
set (musikcube_VERSION_PATCH 8)
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/.cmake)

View File

@ -1,6 +1,6 @@
%define name musikcube
%define build_timestamp %{lua: print(os.date("%Y%m%d"))}
%define version 0.96.7
%define version 0.96.8
Name: %{name}
Version: %{version}
Release: %{dist}

View File

@ -38,9 +38,9 @@
#define VERSION_MAJOR 0
#define VERSION_MINOR 96
#define VERSION_PATCH 7
#define VERSION_COMMIT_HASH "#fea06d96"
#define VERSION "0.96.7"
#define VERSION_PATCH 8
#define VERSION_COMMIT_HASH "#f91bee6a"
#define VERSION "0.96.8"
namespace musik {
namespace cube {

Binary file not shown.