CHANGELOG updates and version bumps for upcoming release.

This commit is contained in:
casey langen 2017-08-04 19:23:25 -07:00
parent bae32b6d78
commit 791f923892
5 changed files with 29 additions and 5 deletions

View File

@ -1,3 +1,27 @@
0.23.0
musikcube:
* fixed album artist support for FLAC, OGG, and M4A files. users with existing
libraries that are having problems should re-import their files.
* fixed CDDB lookup for mixed-mode discs in Windows
* fixed a bug in the low-level audio processing that could leak memory until
the playing track completed
* allow M-ENTER to also activate the context menu for album header rows.
(ENTER still works as well)
* fixed the NullOut plugin -- it was not taking channel count into account when
calculating buffer duration
* added support for Manjaro Linux
musikdroid:
* fixed a crash in SystemService::onStartCommand where the Intent's "action"
was not being null-checked.
* suppressed a strange crash related to the Room library not initializing the
database properly
--------------------------------------------------------------------------------
0.22.0
musikcube:

View File

@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.0)
project(musikcube)
set (musikcube_VERSION_MAJOR 0)
set (musikcube_VERSION_MINOR 22)
set (musikcube_VERSION_MINOR 23)
set (musikcube_VERSION_PATCH 0)
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")

View File

@ -1,6 +1,6 @@
#pragma once
#define VERSION_MAJOR 0
#define VERSION_MINOR 22
#define VERSION_MINOR 23
#define VERSION_PATCH 0
#define VERSION "0.22.0"
#define VERSION "0.23.0"

Binary file not shown.

View File

@ -21,8 +21,8 @@ android {
applicationId "io.casey.musikcube.remote"
minSdkVersion 16
targetSdkVersion 26
versionCode 17
versionName "0.12.0"
versionCode 18
versionName "0.13.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}