mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
Version bump and CHANGELOG.txt to prep for release
This commit is contained in:
parent
f3d5f0165a
commit
2140a9bc3e
@ -1,3 +1,19 @@
|
||||
0.15.0
|
||||
|
||||
user-facing:
|
||||
* added `server settings` configuration panel to the settings screen
|
||||
* added `minimize to tray` and `start minimized` options to the windows build
|
||||
* a handful of small `musikdroid` bug fixes, mostly related to audio focus
|
||||
and ducking.
|
||||
|
||||
low-level:
|
||||
* added authentication support to the the `websocket_remote` audio server
|
||||
* found and fixed a handful of missing `websocket_remote` metadata responses
|
||||
* added the ability to hot-reload plugins
|
||||
* modified `IPlugin` -- every plugin must now supply a unique `guid`
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
0.14.0
|
||||
|
||||
user-facing:
|
||||
|
@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.0)
|
||||
|
||||
project(musikbox)
|
||||
set (musikbox_VERSION_MAJOR 0)
|
||||
set (musikbox_VERSION_MINOR 14)
|
||||
set (musikbox_VERSION_MINOR 15)
|
||||
set (musikbox_VERSION_PATCH 0)
|
||||
set (musikbox_VERSION "${musikbox_VERSION_MAJOR}.${musikbox_VERSION_MINOR}.${musikbox_VERSION_PATCH}")
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
#pragma once
|
||||
|
||||
#define VERSION "0.14.0"
|
||||
#define VERSION "0.15.0"
|
||||
|
Binary file not shown.
@ -9,8 +9,8 @@ android {
|
||||
applicationId "io.casey.musikcube.remote"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 25
|
||||
versionCode 9
|
||||
versionName "0.7.2"
|
||||
versionCode 10
|
||||
versionName "0.8"
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user