mirror of
https://github.com/clangen/musikcube.git
synced 2025-03-14 13:21:13 +00:00
Version bump to 0.93.0 for next release.
This commit is contained in:
parent
48a15ed1f1
commit
19634e67ca
@ -1,3 +1,15 @@
|
||||
0.93.0
|
||||
|
||||
musikcube:
|
||||
* added a new decoder based on `libopenmpt` to support playing mod/tracker
|
||||
files.
|
||||
* fixed a bug when browsing directories that contain entries from custom
|
||||
`IndexerSource` plugins
|
||||
* fixed directory scanning bugs related to NFS (and potentially other
|
||||
filesystem) volumes.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
0.92.1
|
||||
|
||||
server:
|
||||
|
@ -7,8 +7,8 @@ cmake_minimum_required(VERSION 3.0)
|
||||
|
||||
project(musikcube)
|
||||
set (musikcube_VERSION_MAJOR 0)
|
||||
set (musikcube_VERSION_MINOR 92)
|
||||
set (musikcube_VERSION_PATCH 1)
|
||||
set (musikcube_VERSION_MINOR 93)
|
||||
set (musikcube_VERSION_PATCH 0)
|
||||
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/.cmake)
|
||||
|
@ -1,6 +1,6 @@
|
||||
%define name musikcube
|
||||
%define build_timestamp %{lua: print(os.date("%Y%m%d"))}
|
||||
%define version 0.92.1
|
||||
%define version 0.93.0
|
||||
Name: %{name}
|
||||
Version: %{version}
|
||||
Release: %{dist}
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: musikcube # you probably want to 'snapcraft register <name>'
|
||||
version: 0.92.1
|
||||
version: 0.93.0
|
||||
summary: a terminal-based music player, metadata indexer, and server
|
||||
description: |
|
||||
musikcube is a fully functional terminal-based music player, library, and
|
||||
|
@ -37,9 +37,9 @@
|
||||
#include <string>
|
||||
|
||||
#define VERSION_MAJOR 0
|
||||
#define VERSION_MINOR 92
|
||||
#define VERSION_PATCH 1
|
||||
#define VERSION "0.92.1"
|
||||
#define VERSION_MINOR 93
|
||||
#define VERSION_PATCH 0
|
||||
#define VERSION "0.93.0"
|
||||
namespace musik {
|
||||
namespace cube {
|
||||
static inline std::string userAgent() {
|
||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user