From 28390f0819fd162af2b233594ddaa9acbd6ab292 Mon Sep 17 00:00:00 2001 From: casey langen Date: Tue, 4 Jul 2017 22:51:41 -0700 Subject: [PATCH] version bump --- CHANGELOG.txt | 9 +++++++++ CMakeLists.txt | 2 +- src/musikbox/app/util/Version.h | 4 ++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 471381296..06397ceda 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,12 @@ +0.19.0 + +* fixed a bug where the wrong (or multiple) items may be highlighted in browse + view if they all have the same name +* fixed a bug where seeking while paused wouldn't update the ui properly in + some cases, leaving the paused animation running while audio was playing + +-------------------------------------------------------------------------------- + 0.18.0 user-facing: diff --git a/CMakeLists.txt b/CMakeLists.txt index b78a8fe0a..83440e4ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.0) project(musikbox) set (musikbox_VERSION_MAJOR 0) -set (musikbox_VERSION_MINOR 18) +set (musikbox_VERSION_MINOR 19) set (musikbox_VERSION_PATCH 0) set (musikbox_VERSION "${musikbox_VERSION_MAJOR}.${musikbox_VERSION_MINOR}.${musikbox_VERSION_PATCH}") diff --git a/src/musikbox/app/util/Version.h b/src/musikbox/app/util/Version.h index b4f154cc5..350f55ec6 100644 --- a/src/musikbox/app/util/Version.h +++ b/src/musikbox/app/util/Version.h @@ -1,6 +1,6 @@ #pragma once #define VERSION_MAJOR 0 -#define VERSION_MINOR 18 +#define VERSION_MINOR 19 #define VERSION_PATCH 0 -#define VERSION "0.18.0" +#define VERSION "0.19.0"