Skip to content

Commit

Permalink
Merge branch 'devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Jun 7, 2022
2 parents e9f53f2 + 9d1bd0e commit 68e9626
Show file tree
Hide file tree
Showing 14 changed files with 2,257 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ project (mympd C)
#the source files
set(CPACK_PACKAGE_VERSION_MAJOR "9")
set(CPACK_PACKAGE_VERSION_MINOR "3")
set(CPACK_PACKAGE_VERSION_PATCH "3")
set(CPACK_PACKAGE_VERSION_PATCH "4")

#minimal cmake version needed for correct GNUInstallDirs
cmake_minimum_required(VERSION 3.4)
Expand Down
2 changes: 1 addition & 1 deletion contrib/man/mympd-script.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for mympd-script.
.\" Contact <[email protected]> to correct errors or typos.
.TH man 1 "23 May 2022" "9.3.3" "mympd-script man page"
.TH man 1 "07 Jun 2022" "9.3.4" "mympd-script man page"
.SH NAME
mympd-script \- execute lua scripts through myMPD
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion contrib/man/mympd.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for mympd.
.\" Contact <[email protected]> to correct errors or typos.
.TH man 1 "23 May 2022" "9.3.3" "mympd man page"
.TH man 1 "07 Jun 2022" "9.3.4" "mympd man page"

.SH NAME
myMPD \- standalone and mobile friendly web mpd client
Expand Down
2 changes: 1 addition & 1 deletion contrib/packaging/alpine/APKBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Maintainer: Juergen Mang <[email protected]>
#
pkgname=mympd
pkgver=9.3.3
pkgver=9.3.4
pkgrel=0
pkgdesc="myMPD is a standalone and mobile friendly web-based MPD client."
url="https://jcorporation.github.io/myMPD/"
Expand Down
2 changes: 1 addition & 1 deletion contrib/packaging/arch/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

pkgname=mympd
_pkgname=myMPD
pkgver=9.3.3
pkgver=9.3.4
pkgrel=1
pkgdesc="A standalone and mobile friendly web-based MPD client."
arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
Expand Down
4 changes: 2 additions & 2 deletions contrib/packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mympd (9.3.3-1) unstable; urgency=medium
mympd (9.3.4-1) unstable; urgency=medium

* Release from master

-- Juergen Mang <[email protected]> Mon, 23 May 2022 21:05:37 +0200
-- Juergen Mang <[email protected]> Tue, 07 Jun 2022 20:06:17 +0200
2 changes: 1 addition & 1 deletion contrib/packaging/openwrt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME := mympd
PKG_VERSION := 9.3.3
PKG_VERSION := 9.3.4
PKG_RELEASE := 1

PKG_SOURCE := $(PKG_NAME)-$(PKG_VERSION).tar.gz
Expand Down
4 changes: 2 additions & 2 deletions contrib/packaging/rpm/mympd.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# (c) 2018-2022 Juergen Mang <[email protected]>

Name: mympd
Version: 9.3.3
Version: 9.3.4
Release: 0
License: GPL-3.0-or-later
Group: Productivity/Multimedia/Sound/Players
Expand Down Expand Up @@ -68,5 +68,5 @@ fi
%license LICENSE.md

%changelog
* Mon May 23 2022 Juergen Mang <[email protected]> 9.3.3-0
* Tue Jun 07 2022 Juergen Mang <[email protected]> 9.3.4-0
- Version from master
2 changes: 1 addition & 1 deletion docs/_includes/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.3.3
9.3.4
2 changes: 1 addition & 1 deletion htdocs/js/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const myMPDversion = '9.3.3';
const myMPDversion = '9.3.4';
4 changes: 2 additions & 2 deletions htdocs/js/webradio.js
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,8 @@ function getWebradiodb() {
filterWebradiodbFilter('filterWebradiodbCodec', 'webradioCodecs', 'Codec', '');
filterWebradiodbFilter('filterWebradiodbBitrate', 'webradioBitrates', 'Bitrate', '');
const result = searchWebradiodb(app.current.search, app.current.filter.genre,
app.current.filter.country, app.current.filter.language, app.current.sort,
app.current.offset, app.current.limit);
app.current.filter.country, app.current.filter.language, app.current.filter.codec,
app.current.filter.bitrate, app.current.sort, app.current.offset, app.current.limit);
parseSearchWebradiodb(result);
}, false);
}
Expand Down
2 changes: 1 addition & 1 deletion htdocs/sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// myMPD (c) 2018-2022 Juergen Mang <[email protected]>
// https://github.com/jcorporation/mympd

const CACHE = 'myMPD-cache-v9.3.3';
const CACHE = 'myMPD-cache-v9.3.4';
const subdir = self.location.pathname.replace('/sw.js', '').replace(/\/$/, '');
const urlsToCache = [
subdir + '/',
Expand Down
Loading

0 comments on commit 68e9626

Please sign in to comment.