From c8895ebdd8638d55140294cbb01854fd6b813c82 Mon Sep 17 00:00:00 2001 From: jcorporation Date: Sun, 22 Jul 2018 19:59:42 +0100 Subject: [PATCH 01/24] Bump version to 3.3.0 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a3195e1..360a089 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 2.6) project (mympd C) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake/") set(CPACK_PACKAGE_VERSION_MAJOR "3") -set(CPACK_PACKAGE_VERSION_MINOR "2") -set(CPACK_PACKAGE_VERSION_PATCH "1") +set(CPACK_PACKAGE_VERSION_MINOR "3") +set(CPACK_PACKAGE_VERSION_PATCH "0") if(CMAKE_BUILD_TYPE MATCHES RELEASE) set(ASSETS_PATH "${CMAKE_INSTALL_PREFIX}/share/${PROJECT_NAME}/htdocs") From c403202c7d96f962db3ed7f148b53cd18a595c83 Mon Sep 17 00:00:00 2001 From: jcorporation Date: Sun, 22 Jul 2018 20:00:26 +0100 Subject: [PATCH 02/24] Feat: Add playlist actions --- htdocs/css/mpd.css | 9 +- htdocs/index.html | 101 +++++++++++++++-- htdocs/js/mpd.js | 277 +++++++++++++++++++++++++++++++++------------ src/mpd_client.c | 111 ++++++++++++++++-- src/mpd_client.h | 6 + 5 files changed, 414 insertions(+), 90 deletions(-) diff --git a/htdocs/css/mpd.css b/htdocs/css/mpd.css index de7201a..fa90b18 100644 --- a/htdocs/css/mpd.css +++ b/htdocs/css/mpd.css @@ -212,4 +212,11 @@ div.alertBoxActive { .opacity05 { opacity:0.5; -} \ No newline at end of file +} + +caption { + caption-side: top; + font-size: 120%; + font-weight: bold; + color: black; +} diff --git a/htdocs/index.html b/htdocs/index.html index 49e87d2..12b7937 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -195,6 +195,14 @@