mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
CHANGELOG update and version bump.
This commit is contained in:
parent
10531de4e5
commit
7977e3f603
@ -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
|
||||
|
@ -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)
|
||||
|
@ -1,3 +1,3 @@
|
||||
#pragma once
|
||||
|
||||
#define VERSION "0.10.0"
|
||||
#define VERSION "0.10.1"
|
||||
|
Loading…
Reference in New Issue
Block a user