CHANGELOG and version updates for upcoming release.

This commit is contained in:
casey langen 2019-02-12 00:08:32 -08:00
parent 2137b2e083
commit e159878713
5 changed files with 27 additions and 6 deletions

View File

@ -1,3 +1,24 @@
0.63.0
musikcube:
* fixed a bug in `pulseout` where we were unable to recover from restarting the
`pulseaudio` daemon without restarting the app (or switching output plugins)
* fixed bug where `opus` files with an `ogg` extension weren't being detected
propertly. added scaffolding for fixing this for other formats in the future.
* fixed a Win32 file permission bug in `gmedecoder`
* fixed FreeBSD user agent when performing update check
* updated ru_RU translation (adem4ik)
* fixed a missing sndio #include (Kistelini)
musikdroid:
* changed general music browse experience to be tab-based with with modern
scrolling behaviors. this results in fewer clicks to find music and more
screen real estate.
* massive cleanup and refactor to old code, making it more modular and easier
to compose.
--------------------------------------------------------------------------------
0.62.2
macOS only release.

View File

@ -7,8 +7,8 @@ cmake_minimum_required(VERSION 3.0)
project(musikcube)
set (musikcube_VERSION_MAJOR 0)
set (musikcube_VERSION_MINOR 62)
set (musikcube_VERSION_PATCH 2)
set (musikcube_VERSION_MINOR 63)
set (musikcube_VERSION_PATCH 0)
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
include(CMakeToolsHelpers OPTIONAL)

View File

@ -1,6 +1,6 @@
%define name musikcube
%define build_timestamp %{lua: print(os.date("%Y%m%d"))}
%define version 0.62.2
%define version 0.63.0
Name: %{name}
Version: %{version}
Release: %{dist}

View File

@ -3,9 +3,9 @@
#include <string>
#define VERSION_MAJOR 0
#define VERSION_MINOR 62
#define VERSION_PATCH 2
#define VERSION "0.62.2"
#define VERSION_MINOR 63
#define VERSION_PATCH 0
#define VERSION "0.63.0"
namespace musik {
namespace cube {

Binary file not shown.