Skip to content

Commit ca1ccaf

Browse files
authored
#460 bump to version 1.9.2 (#461)
1 parent d82d045 commit ca1ccaf

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ ENV SUBSONIC_USER=""
156156
ENV SUBSONIC_PASSWORD=""
157157
ENV SUBSONIC_LEGACYAUTH=""
158158
ENV SUBSONIC_ITEMS_PER_PAGE=""
159-
ENV SUBSONIC_APPEND_YEAR_TO_ALBUM=""
159+
ENV SUBSONIC_APPEND_YEAR_TO_ALBUM_CONTAINER=""
160160
ENV SUBSONIC_APPEND_CODECS_TO_ALBUM=""
161161
ENV SUBSONIC_PREPEND_NUMBER_IN_ALBUM_LIST=""
162162
ENV SUBSONIC_WHITELIST_CODECS=""

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Please note that support goal is limited to cover running costs for subscription
1919
First and foremost, the reference to the awesome project:
2020

2121
[An UPnP Audio Media Renderer based on MPD](https://www.lesbonscomptes.com/upmpdcli/).
22-
Current version is `1.9.1`.
22+
Current version is `1.9.2`.
2323

2424
## News (newest first)
2525

@@ -233,7 +233,7 @@ SUBSONIC_PASSWORD|Subsonic password
233233
SUBSONIC_LEGACYAUTH|Subsonic legacy authentication, set to `yes` when using Lightweight Media Server (LMS) (requires subsonic-connector >= 0.2.6)
234234
SUBSONIC_SERVER_SIDE_SCROBBLING|Subsonic server side scrobbling, set to `yes` if you want to enable
235235
SUBSONIC_ITEMS_PER_PAGE|Number of items per page, defaults to `100`
236-
SUBSONIC_APPEND_YEAR_TO_ALBUM|If set to `yes` (default), the album year is appended to the album
236+
SUBSONIC_APPEND_YEAR_TO_ALBUM_CONTAINER|If set to `yes` (default), the album year is appended to the album
237237
SUBSONIC_APPEND_CODECS_TO_ALBUM|If set to `yes` (default), the codecs for the album are appended to the album unless all codecs are in the white list
238238
SUBSONIC_PREPEND_NUMBER_IN_ALBUM_LIST|If set to `yes`, the album in albums list will be numbered, mostly for Kodi, defaults to `no`
239239
SUBSONIC_WHITELIST_CODECS|List of comma-separated whitelist (ideally lossless) codecs. Defaults to `alac,wav,flac,dsf`

app/bin/run-upmpdcli.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -488,15 +488,15 @@ if [[ "${SUBSONIC_ENABLE^^}" == "YES" ]]; then
488488
if [[ -n "${SUBSONIC_ITEMS_PER_PAGE}" ]]; then
489489
echo "subsonicitemsperpage = $SUBSONIC_ITEMS_PER_PAGE" >> $CONFIG_FILE
490490
fi
491-
if [[ -n "${SUBSONIC_APPEND_YEAR_TO_ALBUM}" ]]; then
491+
if [[ -n "${SUBSONIC_APPEND_YEAR_TO_ALBUM_CONTAINER}" ]]; then
492492
append_year=1
493-
if [[ "${SUBSONIC_APPEND_YEAR_TO_ALBUM^^}" == "NO" ]]; then
493+
if [[ "${SUBSONIC_APPEND_YEAR_TO_ALBUM_CONTAINER^^}" == "NO" ]]; then
494494
append_year=0
495-
elif [[ ! "${SUBSONIC_APPEND_YEAR_TO_ALBUM^^}" == "YES" ]]; then
496-
echo "Invalid SUBSONIC_APPEND_YEAR_TO_ALBUM [${SUBSONIC_APPEND_YEAR_TO_ALBUM}]"
495+
elif [[ ! "${SUBSONIC_APPEND_YEAR_TO_ALBUM_CONTAINER^^}" == "YES" ]]; then
496+
echo "Invalid SUBSONIC_APPEND_YEAR_TO_ALBUM_CONTAINER [${SUBSONIC_APPEND_YEAR_TO_ALBUM_CONTAINER}]"
497497
exit 2
498498
fi
499-
echo "subsonicappendyeartoalbum = $append_year" >> $CONFIG_FILE
499+
echo "subsonicappendyeartoalbumcontainer = $append_year" >> $CONFIG_FILE
500500
fi
501501
if [[ -n "${SUBSONIC_APPEND_CODECS_TO_ALBUM}" ]]; then
502502
append_codecs=1

doc/change-history.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
Change Date|Major Changes
44
---|---
5+
2025-03-10|Build with version 1.9.2 (see issue [#460](https://github.com/GioF71/upmpdcli-docker/issues/460))
56
2025-02-08|Build with version 1.9.1, adapt documentation (see issue [#456](https://github.com/GioF71/upmpdcli-docker/issues/456))
67
2025-02-08|Bump to [subsonic-connector 0.3.7](https://pypi.org/project/subsonic-connector/0.3.7)
78
2025-02-08|Bump to [tidalapi 0.8.3](https://github.com/tamland/python-tidal/releases/tag/v0.8.3)

0 commit comments

Comments
 (0)