From 5f46ad85918fd552529270504ad0941cc6a7a153 Mon Sep 17 00:00:00 2001 From: Adolf Belka Date: Fri, 12 Sep 2025 22:08:12 +0200 Subject: [PATCH] mympd: Update to version 22.0.4 - Update from version 21.0.1 to 22.0.4 - Update of rootfile not required - Changelog 22.0.4 - Upd: Restrict sticker names (forbid equal sign) - Fix: Really shuffle the playlist #1455 - Fix: Relax search expression validation #1455 - Fix: Alpine packaging - Fix: Detection of local playback features #1452 22.0.3 - Upd: Create cache und workdir in init script - Upd: Feature detection for local playback output selection #1452 22.0.2 - Fix: MYMPD_API_JUKEBOX_RESTART requires MPD connection #1448 22.0.1 - Fix: Respect backgroundImage setting #1446 - Fix: Alpine packaging 22.0.0 Notes - This release enables certificate checking for outgoing https connections. The system CA cert store should be autodetected, open an issue if it fails. - The startup process of myMPD was reworked. myMPD no longer drops privileges, the included startup scripts are using now the init system to do this. - The default listening ports are now 8080 for HTTP and 8443 for HTTPS. API changes - MYMPD_API_SCRIPT_VERIFY_SIG: new - MYMPD_API_HOME_WIDGET_IFRAME_SAVE: new - MYMPD_API_HOME_WIDGET_SCRIPT_SAVE: new - MYMPD_API_HOME_WIDGET_SAVE: removed Scripting changes - Feat: `mympd.tblvalue_in_list()` - Checks a Lua table of tags against a comma separated list. - Upd: Executing external scripts is now disabled by default. Changelog - Feat: iFrames for home screen #1429 - Feat: Feat: Add custom css and js #1428 - Feat: Use system provided ca store for ssl certificate checking #1427 - Feat: Sign and verify scripts from mympd-scripts repository #1426 - Feat: Add trigger `mympd_playlistart`, `mympd_folderart` - Feat: Sort list of timers and triggers #1425 - Feat: Allow changing output device with local playback #1434 - Upd: Improve "Edit Script"-Layout - Upd: Bootstrap v5.3.7 - Upd: Mongoose 7.18 - Upd: libmympdclient 1.0.34 (libmpdclient 2.24.0) - Upd: Incbin - Upd: Replaced mjson with mongoose implementation - Fix: Improve MPD search expression validation #1435 Signed-off-by: Adolf Belka Signed-off-by: Michael Tremer --- lfs/mympd | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lfs/mympd b/lfs/mympd index 6d9d08bc9..a05cacf50 100644 --- a/lfs/mympd +++ b/lfs/mympd @@ -26,7 +26,7 @@ include Config SUMMARY = Webfrontend for Music Player Daemon -VER = 21.0.1 +VER = 22.0.4 THISAPP = myMPD-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = mympd -PAK_VER = 13 +PAK_VER = 14 DEPS = mpd libmpdclient @@ -48,7 +48,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 4470f239933f3f540741439a1fc7e6f3de1c839371d77893160f19d0b80c793943b456a56f36df1c426a36c352b18a0bdd5d3073926644f12d8c2881af317b2d +$(DL_FILE)_BLAKE2 = d59eba43d083adb2bc58bf31ec03bea1105143d681e409c92e60303b9ede75285aec04d0f70a6dcc52ca62f3eb27a8287840d3fcc3ff9489a4dc9d53e61e9a89 install : $(TARGET) @@ -87,7 +87,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && mkdir -p build cd $(DIR_APP)/build && cmake -Wno-dev \ - -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .. + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release .. cd $(DIR_APP)/build && make $(MAKETUNING) cd $(DIR_APP)/build && make install -- 2.47.3