From 0af0af24158ab384a7a6269630858e1e6761da64 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Wed, 2 May 2018 00:18:54 +0200 Subject: [PATCH] Release 0.1.2 --- CMakeLists.txt | 2 +- Changelog | 13 +++++++++++++ cmake/Version.cmake | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c6ee8fa85..31cc61d22 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -188,7 +188,7 @@ add_definitions(-DQT_NO_CAST_TO_ASCII -DQT_STRICT_ITERATORS) # Optional bits if(WIN32) - option(ENABLE_WIN32_CONSOLE "Show the windows console even outside Debug mode" ON) + option(ENABLE_WIN32_CONSOLE "Show the windows console even outside Debug mode" OFF) endif(WIN32) optional_component(GSTREAMER ON "Engine: GStreamer backend" diff --git a/Changelog b/Changelog index 39c0d5948..d3438b939 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,16 @@ Strawberry Music Player ======================= ChangeLog + +Version 0.1.2: + * Fixed playback of WavPack files + * Fixed musicbrainz tagfetcher + * Use common regex (Song::kCoverRemoveDisc) for removing Disc/CD from album + * Remove Disc/CD from album when creating hash for album cover filename + * Fixed imobiledevice support compilation + * Fixed output device selection on windows + * Fixed problems with windows build missing some DLL's, only supplying required gstreamer-plugins now + * Removed redundant code + +Version 0.1.1: + * Initial release diff --git a/cmake/Version.cmake b/cmake/Version.cmake index 1a8c615a3..3d75d0184 100644 --- a/cmake/Version.cmake +++ b/cmake/Version.cmake @@ -3,7 +3,7 @@ set(STRAWBERRY_VERSION_MINOR 1) set(STRAWBERRY_VERSION_PATCH 2) #set(STRAWBERRY_VERSION_PRERELEASE rc1) -set(INCLUDE_GIT_REVISION ON) +set(INCLUDE_GIT_REVISION OFF) set(majorminorpatch "${STRAWBERRY_VERSION_MAJOR}.${STRAWBERRY_VERSION_MINOR}.${STRAWBERRY_VERSION_PATCH}")