Version bump and CHANGELOG.txt to prep for release

This commit is contained in:
casey langen 2017-05-28 23:27:49 -07:00
parent f3d5f0165a
commit 2140a9bc3e
5 changed files with 20 additions and 4 deletions

View File

@ -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 0.14.0
user-facing: user-facing:

View File

@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.0)
project(musikbox) project(musikbox)
set (musikbox_VERSION_MAJOR 0) set (musikbox_VERSION_MAJOR 0)
set (musikbox_VERSION_MINOR 14) set (musikbox_VERSION_MINOR 15)
set (musikbox_VERSION_PATCH 0) set (musikbox_VERSION_PATCH 0)
set (musikbox_VERSION "${musikbox_VERSION_MAJOR}.${musikbox_VERSION_MINOR}.${musikbox_VERSION_PATCH}") set (musikbox_VERSION "${musikbox_VERSION_MAJOR}.${musikbox_VERSION_MINOR}.${musikbox_VERSION_PATCH}")

View File

@ -1,3 +1,3 @@
#pragma once #pragma once
#define VERSION "0.14.0" #define VERSION "0.15.0"

Binary file not shown.

View File

@ -9,8 +9,8 @@ android {
applicationId "io.casey.musikcube.remote" applicationId "io.casey.musikcube.remote"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 25 targetSdkVersion 25
versionCode 9 versionCode 10
versionName "0.7.2" versionName "0.8"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
} }