CHANGELOG update and version bump.

This commit is contained in:
casey langen 2017-03-22 17:08:21 -07:00
parent 10531de4e5
commit 7977e3f603
3 changed files with 28 additions and 2 deletions

View File

@ -1,3 +1,29 @@
0.10.1
user-facing:
* added the ability to select album name headers in track lists. doing so will
bring up a context menu with the ability to jump to the album or enqueue the
album's tracks for playback. this also had a nice side effect of making
scrolling more fluid!
* fixed a really old bug that could cause lists to automatically scroll to weird
places if the window or view is resized
* added localization support for "dimensions". this allows for per-locale sizing
of ui components
* added a "list_header_highlighted_background" and
"list_header_highlighted_foreground" color theme variables
low-level:
* added "broadcast" message support to IMessageQueue and implementers. allows
for pub/sub like functionality
* added some new SDK interface methods to ITrack and IMetadataMap for retrieving
values other than strings (uint64, int64, uint32, int32, double)
* fixed some old bugs in Window.cpp that could cause visibility changed
notifications to be raised unnecessarily
--------------------------------------------------------------------------------
0.10.0
* added GeekShadow's fr_FR locale

View File

@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.0)
project(musikbox)
set (musikbox_VERSION_MAJOR 0)
set (musikbox_VERSION_MINOR 10)
set (musikbox_VERSION_PATCH 0)
set (musikbox_VERSION_PATCH 1)
set (musikbox_VERSION "${musikbox_VERSION_MAJOR}.${musikbox_VERSION_MINOR}.${musikbox_VERSION_PATCH}")
include(ExternalProject)

View File

@ -1,3 +1,3 @@
#pragma once
#define VERSION "0.10.0"
#define VERSION "0.10.1"