moode 4.4 đã có bản update 2018-12-18:
http://moodeaudio.org/forum/showthread.php?tid=793
Mã:
Package content
This package updates moOde 4.4 and includes important bug fixes, improvements and new features. Install time is typically under 1 minute. Be sure to BACKUP your system before applying this update.
Progress can be monitored via SSH using the commands below.
• moodelog -u
• moodelog -t
Reboot when the completion message appears then do the following:
• Clear/refresh Browser cache to load the updated UI
• Change to your preferred Accent color
• Explore the new features and updates
-- New features
NEW: CoverView backdrop styles
NEW: Pure Black theme
NEW: Auto-shuffle Crossfade support
NEW: Auto-shuffle tag filter
-- Radio stations
UPD: Amys FM Spirit of Soul (320K)
UPD: Buddha Radio
-- Updates
UPD: Add Raspbian version to ssh header
UPD: Add icon for upmpdcli
UPD: Zero out ALSA volume at top of worker
UPD: Improve help text on System config
UPD: Bump auto-shuffle to v1.1.0
-- Bug fixes
FIX: Duplicate symlink for Zend opcache
FIX: Cover not changing for mp3 format files
FIX: Extra metadata somtimes not updating
FIX: Adv search results add whole collection
FIX: Saved pl display incomplete
FIX: ALSA vol for MPD software/disabled case
Fix lỗi cover art MPD client:
http://moodeaudio.org/forum/showthread.php?tid=787
In /var/www/command/worker.php, at or around line 242, you should find this section:
Mã:
// ensure certain files exist
if (!file_exists('/var/local/www/currentsong.txt')) {sysCmd('touch /var/local/www/currentsong.txt');}
...
Insert a new line so that this section begins:
Mã:
// ensure certain files exist
if (!file_exists('/var/www/covers')) {SysCmd('ln -s /var/lib/mpd/music /var/www/covers');}
if (!file_exists('/var/local/www/currentsong.txt')) {sysCmd('touch /var/local/www/currentsong.txt');}
...
[All the if-tests above are single lines of code. In my browser, at least, each is displayed folded into two lines.]
A disadvantage of this solution is that worker.php may get overwritten in a moOde update and you have to edit the new version. An advantage is that it overcomes the deletion of the symlink which occurs when the utility script /home/pi/srestart.sh is executed (the last line of which starts worker.php).