diff --git a/.github/workflows/docker-multi-arch.yml b/.github/workflows/docker-multi-arch.yml index 31e1894..0bfca18 100644 --- a/.github/workflows/docker-multi-arch.yml +++ b/.github/workflows/docker-multi-arch.yml @@ -86,9 +86,9 @@ jobs: special_tags[vanilla-noble]="${image_name}:vanilla-ubuntu-current" declare -A mpd_version_dict - mpd_version_dict[bookworm]=0.24.5 + mpd_version_dict[bookworm]=0.24.6 mpd_version_dict[vanilla-bookworm]=0.23.12 - mpd_version_dict[noble]=0.24.5 + mpd_version_dict[noble]=0.24.6 mpd_version_dict[vanilla-noble]=0.23.14 # select mpd version diff --git a/README.md b/README.md index 2e93ee7..2700ba8 100644 --- a/README.md +++ b/README.md @@ -58,14 +58,14 @@ Keep in mind that the `legacy` branch will not be updated with new features. Onl ## MPD Source code The source code for the patched MPD is in this GitHub [repo](https://github.com/GioF71/MPD). -The `version-0.24.5` tag is in-line with the GitHub [upstream repo](https://github.com/MusicPlayerDaemon/MPD) at version 0.24.5. -The `version-0.24.5-ups` tag contains a patch which is used when `INTEGER_UPSAMPLING` is set to `yes`. Use at your own risk. +The `version-0.24.6` tag is in-line with the GitHub [upstream repo](https://github.com/MusicPlayerDaemon/MPD) at version 0.24.6. +The `version-0.24.6-ups` tag contains a patch which is used when `INTEGER_UPSAMPLING` is set to `yes`. Use at your own risk. Two binaries are available in the container image: - /app/bin/compiled/mpd (upstream version) - /app/bin/compiled/mpd-ups (patched version) -The current mpd version is `v0.24.5` when using [giof71/mpd-compiler-docker](https://github.com/GioF71/mpd-compiler-docker) as the base image (Docker Repo [here](https://hub.docker.com/r/giof71/mpd-compiler)). The repo binary is installed also in this case. +The current mpd version is `v0.24.6` when using [giof71/mpd-compiler-docker](https://github.com/GioF71/mpd-compiler-docker) as the base image (Docker Repo [here](https://hub.docker.com/r/giof71/mpd-compiler)). The repo binary is installed also in this case. Vanilla versions only have the repo binary. The `mpdscribble` version depends on the base image. See the following table: @@ -73,7 +73,7 @@ The `mpdscribble` version depends on the base image. See the following table: Base Image|Tags|Compiled MPD version|Repo MPD version|MPDScribble version :---|:---|:---|:---|:--- -giof71/mpd-compiler:bookworm|**latest**, **stable**, bookworm|0.24.5|[0.23.12](https://packages.debian.org/bookworm/mpd)|[0.24](https://packages.debian.org/bookworm/mpdscribble) +giof71/mpd-compiler:bookworm|**latest**, **stable**, bookworm|0.24.6|[0.23.12](https://packages.debian.org/bookworm/mpd)|[0.24](https://packages.debian.org/bookworm/mpdscribble) debian:bookworm-slim|**vanilla-latest**, **vanilla-stable**, **vanilla**, vanilla-bookworm|-|[0.23.12](https://packages.debian.org/bookworm/mpd)|[0.24](https://packages.debian.org/bookworm/mpdscribble) ## Usage diff --git a/doc/change-history.md b/doc/change-history.md index 9a6d342..7af4596 100644 --- a/doc/change-history.md +++ b/doc/change-history.md @@ -2,6 +2,7 @@ Date|Major Changes :---|:--- +2025-10-23|Bump to version 0.24.6 (see issue [#451](https://github.com/GioF71/mpd-alsa-docker/issues/451)) 2025-08-03|Bump to version 0.24.5 (see issue [#448](https://github.com/GioF71/mpd-alsa-docker/issues/448)) 2025-06-15|Add support for linux/arm/v6 (see issue [#446](https://github.com/GioF71/mpd-alsa-docker/issues/446)) 2025-05-28|Bump to version 0.24.4 (see issue [#439](https://github.com/GioF71/mpd-alsa-docker/issues/439)) diff --git a/local-build-and-push.sh b/local-build-and-push.sh index 4e877c2..b2d9169 100755 --- a/local-build-and-push.sh +++ b/local-build-and-push.sh @@ -1,7 +1,7 @@ #!/bin/bash TODAY=$(date '+%Y-%m-%d') -MPD_VERSION=0.24.5 +MPD_VERSION=0.24.6 echo "TODAY=${TODAY}"