diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d3594604e..75978091f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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: diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b6eb1bd4..df8e61111 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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}") diff --git a/src/musikbox/app/util/Version.h b/src/musikbox/app/util/Version.h index 410127156..8cca1fc25 100644 --- a/src/musikbox/app/util/Version.h +++ b/src/musikbox/app/util/Version.h @@ -1,3 +1,3 @@ #pragma once -#define VERSION "0.14.0" +#define VERSION "0.15.0" diff --git a/src/musikbox/musikbox.rc b/src/musikbox/musikbox.rc index 13d6aeeff..e15adda89 100644 Binary files a/src/musikbox/musikbox.rc and b/src/musikbox/musikbox.rc differ diff --git a/src/musikdroid/app/build.gradle b/src/musikdroid/app/build.gradle index 599ac0d1f..2253411f3 100644 --- a/src/musikdroid/app/build.gradle +++ b/src/musikdroid/app/build.gradle @@ -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" }