diff --git a/Changelog b/Changelog index 5b3aedcd7..0f0313d21 100644 --- a/Changelog +++ b/Changelog @@ -2,7 +2,7 @@ Strawberry Music Player ======================= ChangeLog -Unreleased: +Version 0.4.1: * Fixed crash in analyzer * Fixed trying to use systray even if the desktop had no systray @@ -13,8 +13,12 @@ Unreleased: * Moved queue manager into tabbar for easier access * Fixed crash when changing appearance colors * Improved error handling between player and engine - * Added setting to continue to the next song in playlist on error + * Added setting to allow continue to the next song in the playlist based on error * Improved Xine engine code + * Moved some settings + * Updated builtin taglib + * Added AppStream data file + * Fixed compiling with Qt 5 versions of system QtSingleApplication and Qxt library Version 0.3.3: @@ -79,7 +83,7 @@ Version 0.1.4: Version 0.1.3: * Audio file detection by content * Added builtin taglib to 3rdparty to support detecting audio by content instead of just file extension - * Removed unneeded bulitin qsqlite from 3rdparty + * Removed unneeded qsqlite from 3rdparty * Added sqldrivers\qsqlite.dll for windows build * Replaced incorrect DLL libgstdirectsoundsink.dll (from gst 1.12.4) instead of libgstdirectsound.dll (from gst 1.14.0) for windows build * Fixed git versioning diff --git a/cmake/Version.cmake b/cmake/Version.cmake index 422a9710b..dc7bda71e 100644 --- a/cmake/Version.cmake +++ b/cmake/Version.cmake @@ -1,9 +1,9 @@ set(STRAWBERRY_VERSION_MAJOR 0) -set(STRAWBERRY_VERSION_MINOR 3) -set(STRAWBERRY_VERSION_PATCH 3) +set(STRAWBERRY_VERSION_MINOR 4) +set(STRAWBERRY_VERSION_PATCH 1) #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}")