Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker-multi-arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,22 +58,22 @@ 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:

### Image tags

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
Expand Down
1 change: 1 addition & 0 deletions doc/change-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion local-build-and-push.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

TODAY=$(date '+%Y-%m-%d')
MPD_VERSION=0.24.5
MPD_VERSION=0.24.6

echo "TODAY=${TODAY}"

Expand Down