mirror of
https://github.com/clangen/musikcube.git
synced 2024-12-27 21:14:08 +00:00
Preparing for 0.51.0 release
This commit is contained in:
parent
78f935c59f
commit
0bde25edd3
@ -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:
|
||||
|
@ -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}")
|
||||
|
||||
|
@ -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}
|
||||
|
@ -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.
Loading…
Reference in New Issue
Block a user