Version bump for release.

This commit is contained in:
casey langen 2017-05-19 19:57:53 -07:00
parent 3f36c8e61b
commit 519b1defa6
6 changed files with 32 additions and 5 deletions

View File

@ -1,3 +1,30 @@
0.14.0
user-facing:
* `musikdroid` enhancements:
- `pause` when headphones are disconnected
- `double tap` headset button to go to next track
- `triple tap` headset button to go to prev track
- added album art to lock screen controls
- added the ability to control streaming disk cache size
* `websocket_remote` plugin:
- added Cache-Control headers to responses
-
* `core`:
- found a really bad bug in the way we handle tracks in playlists. the fix
requires a rebuild of the tracks metadata, which will clear playlists, but
ensures this will never happen again in the future.
low-level:
* cleaned up more SDK interfaces, removed support for uint64 and uint32 types,
only support int64 and int32.
* fixed bugs in playlist track handling; playlist contents can now survive track
table rebuilds!
--------------------------------------------------------------------------------
0.13.0
user-facing:

View File

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

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.5.0"; }
virtual const char* Version() { return "0.6.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.13.0"
#define VERSION "0.14.0"

Binary file not shown.

View File

@ -9,8 +9,8 @@ android {
applicationId "io.casey.musikcube.remote"
minSdkVersion 16
targetSdkVersion 25
versionCode 6
versionName "0.6.0"
versionCode 7
versionName "0.7.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}