Version bump to 0.13.0.

This commit is contained in:
Casey Langen 2017-05-07 22:36:28 -07:00
parent 83f09fad62
commit 83e7ab880f
6 changed files with 25 additions and 6 deletions

View File

@ -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:

View File

@ -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)

View File

@ -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;

View File

@ -1,3 +1,3 @@
#pragma once
#define VERSION "0.12.0"
#define VERSION "0.13.0"

Binary file not shown.

View File

@ -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"
}