Preparing for 0.51.0 release

This commit is contained in:
casey langen 2018-08-25 17:02:09 -07:00
parent 78f935c59f
commit 0bde25edd3
5 changed files with 31 additions and 4 deletions

View File

@ -1,3 +1,30 @@
0.51.0
musikcube:
* added a new "gruvbox" theme (https://github.com/morhetz/gruvbox)
* added the ability to graphically configure plugin properties via new SDK
`ISchema` interface.
* added the ability to right click entries to display their context menu
* updated the Russian translation (adem4ik)
* fixed a bug where shutdown may be delayed while the indexer is running
* fixed a couple strings that were not properly localized
* fixed a bug that could cause overlays to not always properly disappear
* fixed a bug in the win32 milkdrop distribution where the preferred default
font wasn't getting included
musikdroid:
* updated to compile against Android Studio 3.1.4
server:
* fixed a crash while querying play queue tracks that have been removed from
the library.
sdk:
* added the ability for plugins to provide configuration schemas that can be
configured by the user in the gui. see `sdk/ISchema.h`
--------------------------------------------------------------------------------
0.50.0
musikcube:

View File

@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.0)
project(musikcube)
set (musikcube_VERSION_MAJOR 0)
set (musikcube_VERSION_MINOR 50)
set (musikcube_VERSION_MINOR 51)
set (musikcube_VERSION_PATCH 0)
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")

View File

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

View File

@ -3,9 +3,9 @@
#include <string>
#define VERSION_MAJOR 0
#define VERSION_MINOR 50
#define VERSION_MINOR 51
#define VERSION_PATCH 0
#define VERSION "0.50.0"
#define VERSION "0.51.0"
namespace musik {
namespace cube {

Binary file not shown.