Version bump for 0.35.0. Only thing remaining for release is the FreeBSD scrollbar issue.

This commit is contained in:
Casey Langen 2018-01-07 12:54:15 -08:00
parent c8ff159056
commit d0bd1beabd
4 changed files with 39 additions and 3 deletions

View File

@ -1,3 +1,39 @@
0.35.0
infastructure:
* automated Linux builds via CircleCI! (dvdmuckle)
musikcube:
* added ReplayGain support. settings > replay gain to configure. when support
is active, and ReplayGain is applied, a green "RG" symbol will appear in
the transport view next to the volume slider.
* added initial support for FreeBSD using sndio. big thanks to gregf for the
support and troubleshooting.
* exposed extended metadata -- browse by new fields like year, composer,
language, etc. press `6` in library > browse view.
* fixed a couple bugs in the metadata indexer -- extended metadata properties
were not always getting scanned and stored properly.
* fixed build paths so app can be built against MacPorts. (reynhout)
* fixed a bug where themes were getting clobbered after every reinstall on some
platforms. users can now put their custom themes in `~/.musikcube/themes`.
* made overlay title text alignment consistent across (center horizontal).
musikcore:
* database and query updates to support track, category, and album queries
with multiple predicates. (e.g. all artists with composer=X AND year=Y).
* new `sndio` output plugin. this is the default output for FreeBSD, and is
optional (disabled by default) on Linux.
* new `ffmpeg_decoder` plugin. not enabled by default, but will probably
eventually replace nomad, ogg, mp4, and flac plugins.
server:
* api support for multi-predicate queries.
musikdroid:
* fixed bug where non-transcoded audio would not always play properly.
--------------------------------------------------------------------------------
0.31.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 31)
set (musikcube_VERSION_MINOR 35)
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 31
#define VERSION_MINOR 35
#define VERSION_PATCH 0
#define VERSION "0.31.0"
#define VERSION "0.35.0"

Binary file not shown.