mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
Version and CHANGELOG bump.
This commit is contained in:
parent
0199dba00e
commit
6700bb03ef
@ -1,3 +1,11 @@
|
|||||||
|
0.97.1
|
||||||
|
|
||||||
|
* added the ability to use `libelogind` or `basu` instead of `libsystemd` for
|
||||||
|
the `mpris` plugin (@robertgzr)
|
||||||
|
* some warning cleanups when using wsprintw (@trofi)
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
0.97.0
|
0.97.0
|
||||||
|
|
||||||
* no functional changes to the app
|
* no functional changes to the app
|
||||||
@ -7,10 +15,14 @@
|
|||||||
distribution that are more universally compatible across different
|
distribution that are more universally compatible across different
|
||||||
versions of macOS and Linux distributions.
|
versions of macOS and Linux distributions.
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
0.96.13
|
0.96.13
|
||||||
|
|
||||||
* macOS and Linux only release that fixes standalone binaries.
|
* macOS and Linux only release that fixes standalone binaries.
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
0.96.11
|
0.96.11
|
||||||
|
|
||||||
* added support for ffmpeg5 libraries.
|
* added support for ffmpeg5 libraries.
|
||||||
@ -23,15 +35,21 @@
|
|||||||
* added additional PipeWire output debugging.
|
* added additional PipeWire output debugging.
|
||||||
* rewrote build system and packaging scripts.
|
* rewrote build system and packaging scripts.
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
0.96.10
|
0.96.10
|
||||||
|
|
||||||
* fixed `-rpath` for macOS build.
|
* fixed `-rpath` for macOS build.
|
||||||
* fixed race condition in WasapiOut that caused the app to crash.
|
* fixed race condition in WasapiOut that caused the app to crash.
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
0.96.9
|
0.96.9
|
||||||
|
|
||||||
* fixed `-rpath` to use `$ORIGIN` instead of `./` to appease `Feodra 35`.
|
* fixed `-rpath` to use `$ORIGIN` instead of `./` to appease `Feodra 35`.
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
0.96.8
|
0.96.8
|
||||||
|
|
||||||
* updated `FfmpegDecoder` to perform resampling internally when `WasapiOutput`
|
* updated `FfmpegDecoder` to perform resampling internally when `WasapiOutput`
|
||||||
@ -58,11 +76,15 @@
|
|||||||
|
|
||||||
0.96.7
|
0.96.7
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
* re-compile for Windows; Windows Defender was unhappy with the original
|
* re-compile for Windows; Windows Defender was unhappy with the original
|
||||||
binaries.
|
binaries.
|
||||||
|
|
||||||
0.96.6
|
0.96.6
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
* fixed some drawing issues with overlays/dialogs with certain versions of
|
* fixed some drawing issues with overlays/dialogs with certain versions of
|
||||||
ncurses.
|
ncurses.
|
||||||
* added category-level (e.g. album, artist, etc) durations in browse and
|
* added category-level (e.g. album, artist, etc) durations in browse and
|
||||||
|
@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.0)
|
|||||||
project(musikcube)
|
project(musikcube)
|
||||||
set (musikcube_VERSION_MAJOR 0)
|
set (musikcube_VERSION_MAJOR 0)
|
||||||
set (musikcube_VERSION_MINOR 97)
|
set (musikcube_VERSION_MINOR 97)
|
||||||
set (musikcube_VERSION_PATCH 0)
|
set (musikcube_VERSION_PATCH 1)
|
||||||
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
|
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
|
||||||
set (LIBRARY_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin/plugins)
|
set (LIBRARY_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin/plugins)
|
||||||
set (EXECUTABLE_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin)
|
set (EXECUTABLE_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%define name musikcube
|
%define name musikcube
|
||||||
%define build_timestamp %{lua: print(os.date("%Y%m%d"))}
|
%define build_timestamp %{lua: print(os.date("%Y%m%d"))}
|
||||||
%define version 0.97.0
|
%define version 0.97.1
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
Version: %{version}
|
Version: %{version}
|
||||||
Release: %{dist}
|
Release: %{dist}
|
||||||
|
@ -38,9 +38,9 @@
|
|||||||
|
|
||||||
#define VERSION_MAJOR 0
|
#define VERSION_MAJOR 0
|
||||||
#define VERSION_MINOR 97
|
#define VERSION_MINOR 97
|
||||||
#define VERSION_PATCH 0
|
#define VERSION_PATCH 1
|
||||||
#define VERSION_COMMIT_HASH "#5496aba9"
|
#define VERSION_COMMIT_HASH "#0199dba0"
|
||||||
#define VERSION "0.97.0"
|
#define VERSION "0.97.1"
|
||||||
|
|
||||||
namespace musik {
|
namespace musik {
|
||||||
namespace cube {
|
namespace cube {
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user