diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 0e9147e14..1729c0f47 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,13 +1,30 @@ 0.8.0 -* added official support for Raspberry Pi running Raspbian! -* added better color fallback for non-mutable 256 termianl color palettes -* added the ability to enqueue selected tracks, albums, artists, or other - resources to the play queue by pressing ALT+ENTER. +user-facing: + +* added support for Raspberry Pi running Raspbian! +* added preliminary support for playlist editing. all editing is currently + in the play queue view. + - `ALT+s`: save the current play queue to a named playlist + - `ALT+l`: load a previously saved playlist + - `ALT+x`: delete a playlist + - `ALT+r`: rename a playlist * added the ability to delete (BACKSPACE on mac, DEL on win32/linux) and reorder (ALT+UP/ALT+DOWN win32/mac, CTRL+UP/CTRL+DOWN linux ) selected items in the play queue. +* added better color fallback for non-mutable 256 termianl color palettes +* added the ability to enqueue selected tracks, albums, artists, or other + resources to the play queue by pressing ALT+ENTER. +* fixed a crash when trying to play a track that has been removed from the + database +* removed "esc focuses shortcut bar" setting. no longer useful. + +low-level: + * fixed cursespp child view coordinates to be relative to their parents +* cleaned up global focus model in cursespp +* added IPlaybackService::GetPlayingTrack() to get an IRetainedTrack pointer + to the currently playing track; bumped SdkVersion to 2. -------------------------------------------------------------------------------- diff --git a/src/musikbox/app/util/Version.h b/src/musikbox/app/util/Version.h index 1936d875a..7ccf204da 100644 --- a/src/musikbox/app/util/Version.h +++ b/src/musikbox/app/util/Version.h @@ -1,3 +1,3 @@ #pragma once -#define VERSION "0.7.3" +#define VERSION "0.8.0"