diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 2bc31c2c6..90ba542ea 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,22 @@ +0.13.0 + +user-facing: + +* added on-demand audio transcoding (downsampling) to the http server. users + can configure transcoding in the `musikdroid` client. +* fixed a bug in album id handling to properly support multiple albums with the + same name by different artists (this was only half working before). +* added ssl support to the `musikdroid` client, and instructions on the wiki + for enabling ssl on the server-side. +* added `buffering` indicators to `musikdroid`. + +low-level: + +* added missing IBuffer::Destroy method, and added IEnvironment::GetBuffer so + plugins can decode audio data. + +-------------------------------------------------------------------------------- + 0.12.1 user-facing: diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bfdc6faa..c8ec6b19f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,8 @@ cmake_minimum_required(VERSION 3.0) project(musikbox) set (musikbox_VERSION_MAJOR 0) -set (musikbox_VERSION_MINOR 12) -set (musikbox_VERSION_PATCH 1) +set (musikbox_VERSION_MINOR 13) +set (musikbox_VERSION_PATCH 0) set (musikbox_VERSION "${musikbox_VERSION_MAJOR}.${musikbox_VERSION_MINOR}.${musikbox_VERSION_PATCH}") include(ExternalProject) diff --git a/src/contrib/websocket_remote/main.cpp b/src/contrib/websocket_remote/main.cpp index 892e40c7c..a4fb6e14e 100644 --- a/src/contrib/websocket_remote/main.cpp +++ b/src/contrib/websocket_remote/main.cpp @@ -57,7 +57,7 @@ static class Plugin : public IPlugin { public: virtual void Destroy() { } virtual const char* Name() { return "WebSockets IPlaybackRemote"; } - virtual const char* Version() { return "0.2.0"; } + virtual const char* Version() { return "0.5.0"; } virtual const char* Author() { return "clangen"; } virtual int SdkVersion() { return musik::core::sdk::SdkVersion; } } plugin; diff --git a/src/musikbox/app/util/Version.h b/src/musikbox/app/util/Version.h index 8603e1cf1..3db6d6e04 100644 --- a/src/musikbox/app/util/Version.h +++ b/src/musikbox/app/util/Version.h @@ -1,3 +1,3 @@ #pragma once -#define VERSION "0.12.0" +#define VERSION "0.13.0" diff --git a/src/musikbox/musikbox.rc b/src/musikbox/musikbox.rc index fde4b2be4..4e0617d60 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 db7e95004..165ed09c6 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 5 - versionName "0.5.1" + versionCode 6 + versionName "0.6.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" }