forked from moode-player/moode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelnotes.txt
2783 lines (2328 loc) · 97 KB
/
relnotes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
########################################################
#
# RELEASE NOTES
#
# These release notes reflect the content contained in
# the official moOde release from moodeaudio.org.
#
# (C) Tim Curtis 2014 http://moodeaudio.org
#
########################################################
########################################################
//
// 2020-MM-DD TC moOde 7.0.0
//
########################################################
New features
- NEW: Selective resampling and Custom SoX recipes
- NEW: 12-band Parametric EQ for AutoEQ headphone equalizing
- NEW: Radio view with sort/group and metadata
- NEW: Enhanced Folder view with cover art and advanced search
- NEW: Library performance improvements
- NEW: Library advanced filtering engine
- NEW: Library Artist list includes Performers, Conductors, Album Artists
- NEW: Library option for the key used to differentiate albums
- NEW: Library option to include the comment tag
- NEW: Library support for multiple occurrences of certain tags
- NEW: Albums played directly if already in the Queue
- NEW: MPD Config support for SoX 705.6/768 kHz rates
- NEW: MPD Config resource allocation options for buffers, playlist
- NEW: MPD input cache option
- NEW: Auto-shuffle Album mode option
- NEW: Option to display thumbnails in the Queue
- NEW: Option for Renderer backdrop (Cover or Backdrop image)
- NEW: Add next, Play next by inserting after current item
- NEW: Support for up to 384K rate for DDDAC1794 NOS
- NEW: Moodeutl options for Export/Import all settings
Updates
- UPD: Bump to Linux kernel 5.4.77 build #1371
- UPD: Bump to MPD 0.22.3
- UPD: Bump to MPC 0.33
- UPD: Bump to bluez-alsa 3.0.0 w/SBC XQ
- UPD: Bump to librespot-dev-6a4bc83
- UPD: Bump to squeezelite 1.9.7-1270
- UPD: Bump to upmpdcli 1.5.0
- UPD: Bump to Auto-shuffle (ashuffle) 3.10.0
- UPD: Add higher resolutions for thumbnail generator
- UPD: Add "Update Library" to action list for Clock Radio
- UPD: Add place holder height/width for native lazyload
- UPD: Add "Now Playing" EQ style icon to the Queue and Library
- UPD: Add HD badging to Playbar, CoverView amd Playback
- UPD: Add more tags to the Extra metadata Appearance option
- UPD: Remove unused MPD plugins soundcloud, tidal, qobuz
- UPD: Remove Google Play Music service from upmpdcli (discontinued)
- UPD: Remove Ethernet port fix for Pi-3B+ due to ethtool fail
- UPD: Show volume level on the Playbar
- UPD: Option to show mapped dB volume in the knob
- UPD: Generate additional set of small thumbnails for lists
- UPD: Include Add next, Play next in list of "One touch actions"
- UPD: Improve logging for Library update process
- UPD: Report 24 bit if ALAC encoded m4a reports 32 bit
- UPD: Honor "Resume MPD" setting when disconnecting a renderer
- UPD: Only load CoverView Queue HTML when it's opened
- UPD: Auto-configure expanded to include most settings
Audio devices
- NEW: Allo Boss 2 DAC
- NEW: EWCG Discrete R2R DAC
Radio stations
- NEW: Bayern 2
- NEW: BR-Klassik
- NEW: Classic FM
- NEW: FluxFM station group
- NEW: Naim Classical
- NEW: Naim Jazz
- NEW: Scala Radio
- NEW: SWR 2
- NEW: WDR 3
- NEW: WKCR 89.9 FM (Columbia University)
- UPD: Naim Radio playable URL
- UPD: Radio Caroline playable URL
- UPD: Soma FM - DEF CON Radio logo image
- UPD: NME station URL's to 256 kbps MP3
- DEL: Radio X London due to metadata issues
- DEL: Megarock Radio due to failed stream link
Bug fixes
- FIX: Album key and cross-index for Tag and Album views
- FIX: Track list show/hide not preserved when switching views
- FIX: Manual entry of SSID not accepting embedded space
- FIX: Graphic EQ curves are +6 alsaequal units too high
- FIX: Listall.sh script not handling mixed case file extentions
- FIX: Airplay and Spotify renderers started after BlueZ disconnect
- FIX: Disabled volume knob processing scroll/swipe events
- FIX: Regression causing Folder view, Advanced search to fail
- FIX: Item highlight/de-highlight in all views
- FIX: Radio Instant play not obeying the "No Action" option
- FIX: Insufficient bottom padding on Library tracks list
- FIX: Wrong Playlist width (mobile) when CV auto-display enabled
- FIX: Library special year search partially broken
########################################################
//
// 2020-07-22 TC moOde 6.7.1
//
########################################################
Updates
- UPD: Bump to librespot v0.1.2 with gapless support
- UPD: Use aplay names in MPD Audio output dropdown
- UPD: Use new dtoverlay names for pi3-disable-wifi/bt
- UPD: Improve method to change Browser title
- UPD: Change "Reboot" to "Restart" in notifications
Bug fixes
- FIX: Volume knob showing -1 in certain edge case
- FIX: Driver option enable causes IC fail
########################################################
//
// 2020-07-19 TC moOde 6.7.0
//
########################################################
Updates
- UPD: Bump to Linux kernel 5.4.51 build #1325
- UPD: Support new ALSA card assignment scheme
- UPD: Improved HDMI display support
- UPD: Improved USB audio hot plug handling
- UPD: Help text on System Config for 64-bit kernel option
- UPD: Device name for Merus Amp HAT ZW
- UPD: Setup guide to reflect changes
Radio stations
- UPD: Playable url for NME 1 and 2 to 256K streams
- UPD: Playable url for Soho Radio London to 320K stream
Bug fixes
- FIX: Index search position for Tag view Album column on mobile
- FIX: Logo path for BBC 320K stations
- FIX: Missing 'kbps' label for BBC 320K stations
########################################################
//
// 2020-07-09 TC moOde 6.6.0
//
########################################################
New features
- NEW: Radio station batch import/export
- NEW: Option to display sample rate or HD badge in Library
- NEW: Filter Library by sample rate and/or audio format
- NEW: Option to adjust the number of thumbnail columns
- NEW: First use help for Playback/Playbar switch
- NEW: Airplay and Spotify renderers output via Bluetooth
- NEW: Support for Browser native image lazy load
- NEW: Custom scroll bars replace default white scroll bars
- NEW: 64-bit ASIX and CF-912AC drivers for Allo USBridge SIG
Updates
- UPD: Upgrade to RaspiOS Buster Lite 2020-05-27 10.4 (New image only)
- UPD: Bump to Linux kernel 5.4.49 build #1323
- UPD: Bump to PHP-FPM 7.3.14 (New image only)
- UPD: Bump to bluez-alsa 2.1.0-49ad348
- UPD: Bump to MPD 0.21.24 (Default)
- UPD: Bump to MPD 0.22~git-4d88bdd (Test)
- UPD: Bump to upmpdcli 1.4.12-7ea91f5d
- UPD: Use MusicBrainz date tags if present in track
- UPD: Use check mark style on Library menu
- UPD: Add X-Large font size option to Appearance
- UPD: Add album count to Tag view
- UPD: Improve browsing in Tag view
- UPD: Improve renderer active and restart/shutdown overlays
- UPD: Improve fetch for cover image files
- UPD: Improve thumbnail generator
- UPD: Improve software update check
- UPD: Larger top buttons in Radio/Folder views for mobile
Radio stations
- NEW: Hi On Line - Classical
- NEW: Hi On Line - France
- NEW: Hi On Line - Gold
- NEW: Hi On Line - Jazz
- NEW: Hi On Line - Latin
- NEW: Hi On Line - Lounge
- NEW: Hi On Line - Pop (320K)
- NEW: Hi On Line - Pop (FLAC)
- NEW: Hi On Line - World
- NEW: Radio Paradise - Main Mix
- NEW: Radio Paradise - Mellow
- NEW: Radio Paradise - Rock
- NEW: Radio Paradise - World
- NEW: Soma FM - Heavyweight Reggae
- UPD: Playable url for 4ZZZ FM
- UPD: Station logos for Absolut stations
- UPD: Station logos for KUVO stations
- UPD: Station logo for Soma FM - DEF CON
- UPD: Station logo for Maschinengeist Radio
- UPD: Station logo for Morow - Retro Progressive Rock
- UPD: Station logo for Roots Legacy Radio - Dub UK & Roots Reggae
- UPD: Change Koffee to smooth Chill
- DEL: MPR - Minnesota Public Radio (playable URL fail)
- DEL: JB Radio 2 FLAC (stops after song ends)
Bug fixes
- FIX: Bluez-alsa hangs at end of Playlist
- FIX: Unhandled "Database locked" error in vol.sh and rotvol.sh
- FIX: Playlist line 2 left alignment in mobile portrait
- FIX: Wrong cover artist when album header clicked in Tag view
- FIX: Header text for "Recently added" being set incorrectly
- FIX: Empty search filter not resetting lib header
- FIX: No media query for Pi Touch 443 x 799 viewport (Sq Pixels)
- FIX: Knob text and play controls not scaling
- FIX: Tag view tracklist show/hide state when switching to Library
- FIX: Rotary encoder driver (rotenc.py) not checking volume_mpd_max
########################################################
//
// 2020-05-03 TC moOde 6.5.2
//
########################################################
Updates
- UPD: Bump to miniDLNA 1.2.1+0763719 DSD support
- UPD: Add wlan0 check/reset to watchdog
- UPD: Add edge debounce delay to gpio-buttons
Bug fixes
- FIX: Start up logic for auto play and auto-shuffle
- FIX: Librespot not compiled for arm6
- FIX: Renderer active overlays not cleared when on configs
- FIX: Podcast streams not being handled correctly
- FIX: No Artist line when Tagview covers option = No
- FIX: Enter key fail in Library search when alpha
########################################################
//
// 2020-04-27 TC moOde 6.5.1
//
########################################################
Updates
- UPD: Remove Radio and Playlist search result tallies
Bug fixes
- FIX: Playlist not auto-scrolling in certain cases
- FIX: Playlist item line 2 left margin not correct
- FIX: Track info formatting from Folder view
- FIX: Position issue with search reset buttons
- FIX: Incorrect volume level when unmuting
- FIX: Playbar timeline margins for tracks > 60 mins
- FIX: Incorrect knob size on Pi 7" Touch
########################################################
//
// 2020-04-24 TC moOde 6.5.0
//
########################################################
New features
- NEW: Adaptive UI version 6.5 fully asynchronous
- NEW: Library play or instant play existing Playlist item
- NEW: Library Tag and Album views get their own sorts
- NEW: Library custom search by year or year range
- NEW: Library context menu option for Track info
- NEW: MPD DB and Thumb udpate combined into "Library update"
- NEW: CoverView screen saver with Playbar controls
- NEW: Appearance options including Global font size
- NEW: Audio config option for USB volume knob
- NEW: System config option for LED0 and LED1
- NEW: Spotify config option to autoplay similar songs
- NEW: Configurable volume step limit
- NEW: Configurable max MPD volume
Updates
- UPD: Upgrade to Raspbian Buster Lite 10.3 2020-02-13
- UPD: Bump to Linux kernel 4.19.115 build #1305
- UPD: Bump to MPD 0.21.22 (default) plus MPD 0.22~git (test)
- UPD: Bump to shairport-sync 3.3.6
- UPD: Bump to librespot v0.1.1 (armv7l-only)
- UPD: Bump to moodeutl 1.4.0
- UPD: Add DSD rate to extra-metadata
- UPD: Add -D option to moodeutl (delete session var)
- UPD: Add click anywhere off context menu to close
- UPD: Add confirmation modals to Library config
- UPD: Add "No action" option to Library Instant play action
- UPD: Add ability to update station logo while editing station
- UPD: Add Command API section to Setup guide
- UPD: Add -enable-features=OverlayScrollbar to xinitrc
- UPD: Pi 7" Touch prevent display blank while audio playing
- UPD: Sort recently added albums so most recent is on top
- UPD: Disable apt-daily and apt-daily-upgrade timers
- UPD: Deprecate librespot armv6l binary
Bug fixes
- FIX: Wrong DSD encoded-at rates shown on Audio info
- FIX: Audio info Formats showing PHP error message
- FIX: WiFi/BT options missing from System config for Zero W
- FIX: Last track (toggle song) id not persisting
- FIX: Typo in bt.sh help text
- FIX: Checkbox layout in Clock Radio
- FIX: Minor corrections to Setup guide
Audio devices
- NEW: Infineon MERUS Amp HAT ZW
Radio stations
- UPD: BBC Radio 5 live
- UPD: RadioActive FM 88.6
- UPD: Radio Caroline
- UPD: Swedish Classic Radio
- UPD: WBJC Baltimore 91.5 - Classical
- DEL: Amys FM (320K)
- DEL: Amys FM Spirit of Soul (320K)
- DEL: CBC Radio 2
- DEL: JB Radio-2 USA (320K)
- DEL: Radio Monash
- DEL: Radionomy
- DEL: Rinse FM
- DEL: RSD Radio
- DEL: VRT - Sporza
########################################################
//
// 6.4.2 2020-02-12
//
########################################################
Updates
- UPD: Bump to Linux kernel 4.19.97 build #1293
- UPD: Bump to v2.0.0 ASIX USB/Eth driver for USBridge SIG
- UPD: Purge orphaned stations from session during startup
- UPD: Add moodeutl option to dump the session file
- UPD: Add triggerhappy (disabled) plus default media.conf
- UPD: Deprecate TRX test software
- UPD: Reset Auto-shuffle random play to Off during startup
- UPD: Replace alsa-capabilities with alsacap
- UPD: Remove DR P7 Mix station (no longer broadcasting)
- UPD: Edit Setup guide to reflect changes
Bug fixes
- FIX: Session not updated when radio station deleted
########################################################
//
// 6.4.1 2020-01-23
//
########################################################
Updates
- UPD: Improve volume knob step limiter
- UPD: Improve mixer name parsing for USB DAC's
- UPD: Improve message after changing MPD Device type
- UPD: Improve system integrity checking
- UPD: Improve system maintenance task
- UPD: Improve clear-syslogs in util.sh
- UPD: Use mixer name 'Channels' for HiFiBerry Amp(Amp+)
- UPD: Use mixer name 'DSPVolume' for HiFiBerry DAC+ DSP
- UPD: Comment out Info logging from watchdog
- UPD: Add feat availability, free disk space to moodeutl
- UPD: Add back button to Radio view
- UPD: Add revision code for Pi-4B v1.2
- UPD: Remove 64-bit kernel option for USBridge SIG (missing drivers)
- UPD: Edit Setup guide to reflect changes
Bug fixes
- FIX: Partial fix for Autofocus not working on modal popups
- FIX: Logic to parse /etc/resolv.conf for Moode log
- FIX: Minor bugs in various HTML template files
- FIX: Spurious HTML tags in header.php and footer.php
- FIX: Auto-config fails if moodecfg.txt contains CRLF
- FIX: Revision number parsing when 64-bit kernel
- FIX: Minor bugs in certain Audio info variable names
- FIX: Missing -S option in stock squeezelite.conf
- FIX: PHP log file name in util.sh
- FIX: URI not being encoded when adding to Favorites
- FIX: Index search fails when tagViewCovers flag is false
- FIX: Highlight rectangle showing after button press
########################################################
//
// 6.4.0 2019-11-24
//
########################################################
New features
- NEW: Option to wake display when audio starts playing
Updates
- UPD: Bump to Raspbian Buster Lite 10.2
- UPD: Bump to PHP 7.3.11 build 10/26/19
- UPD: Bump to Linux kernel 4.19.83 build #1277
- UPD: Bump to Bluez-alsa 2.0.0
- UPD: Bump to MPD 0.21.16
- UPD: Bump to shairport-sync 3.3.5 w/mqtt support
- UPD: Bump to alsa-capabilities 2.0.1
- UPD: Bump to moodeutl 1.3.1
- UPD: Deprecate MPD 0.20.23 and make 0.21.16 the default
- UPD: Tag View album list gets same grouping as Album View
- UPD: Hide quick jump index if grouping albums by year
- UPD: Quick jump to artist if grouping by Artist
- UPD: Add network interface info to Moode log
- UPD: Add max ALSA volume setting to Audio Config
- UPD: Add HifiBerry DAC/DAC+ Zero to audio device table
- UPD: Add option -F to moodeutl to print sample rates
- UPD: Add eye icon for show/hide password plaintext
- UPD: Add XFS filesystem support to udisks-glue
- UPD: Add hdmi_blanking=1 to /boot/config.txt
- UPD: Add xfsprogs package for xfs file system support
- UPD: Improve Gpio-buttons Python 2/3 compatibility
- UPD: Change a2dp auto-connect rule to avoid UDEV sandboxing
Radio stations
- UPD: Playable URL for Jazz24
Bug fixes
- FIX: Pi-4B / Allo Katana driver load failure
- FIX: JSON encode fail in genLibrary() if bad UTF-8 chars
- FIX: Wrong symbol code used for microseconds in html Sysinfo
- FIX: Swap file not disabled during build
- FIX: PSK not generated when password contains certain chars
- FIX: Date parsing in function genLibraryUTF8Rep()
- FIX: Line wrap in Library Tag and Album views
- FIX: Time knob counter left position and radio badge width
- FIX: Airplay settings section of Sysinfo
- FIX: File system expand test in Sysinfo
########################################################
//
// 6.3.0 2019-10-02
//
########################################################
New features
- NEW: Support for Allo USBridge SIG including enhanced Eth driver
- NEW: Support for Comfast CF-912AC dual-band WiFi adapter
- NEW: Library option for Album grouping by Artist, Album or Year
- NEW: Option for 64-bit Linux kernel (testing)
Updates
- UPD: Bump to Raspbian Buster Lite 10.1 (2019-09-26)
- UPD: Bump to Linux kernel 4.19.75 build #1270
- UPD: Bump to MPD 0.21.15 (testing)
- UPD: Change to Broadcom SoC pin numbering in rotenc.c
- UPD: Include audio formats and platform in Audio info and moode log
- UPD: Shairport-sync config file with additional options
- UPD: Play history item on system menu defaults to hidden
Bug fixes
- FIX: Text color for HUD playlist line 2
- FIX: Broken CSS for Players modal
- FIX: Playqueue cmds not turning off Auto-shuffle properly
- FIX: Position of CUE sheet icon and others
- FIX: Order and case of entries in radio station pls files
- FIX: Edimax EW-7811Un segfault in HostAP mode
########################################################
//
// 6.2.1 2019-09-12
//
########################################################
Bug fixes
- FIX: Slow cmd used in Sysinfo to get RPi.GPIO version
- FIX: System info layout for mobile
- FIX: HUD playlist font size too small in full screen
########################################################
//
// 6.2.0 2019-09-05
//
########################################################
New features
- NEW: Library "Recently Added" filter
- NEW: UPnP folder drill-down in Music Source Config
- NEW: Rotary encoder driver with support for Pi-4B
- NEW: System Config option to select USB auto-mounter
Updates
- UPD: Add Local Display section to System info
- UPD: Add Python3 RPi.GPIO 0.7.0 and musicpd 0.4.4
- UPD: Bump to Linux kernel 4.19.69
- UPD: Larger font size for play buttons
- UPD: ABC Jazz playable url
- UPD: SwissGroove playable url
Bug fixes
- FIX: Wrong aria-label for "Random album" button
- FIX: Moode log not displayed for failed mount
- FIX: System info not listing some Library options
- FIX: Fail to render covers on some old Browsers
- FIX: Setting Audio Scrobbler userid/pwd causes crash
- FIX: Layout issue with search reset icon
- FIX: Search reset not cleared when refresh radio panel
########################################################
//
// 6.1.0 2019-08-18
//
########################################################
Updates
- UPD: Improve performance of UI rendering
- UPD: Add Qobuz format id 27 for FLAC (up to 192K)
- UPD: Add Compilation identifier to Library options
- UPD: Add Pixel aspect ratio to Local UI section in System config
- UPD: Add to header comments for new lib loader
- UPD: Change to "turn off" on Squeezelite Active overlay
- UPD: Bump to librespot-51a634d
- UPD: Bump to Linux kernel 4.19.66
Bug fixes
- FIX: Input field validation for Curve name in the EQ's
- FIX: Cover info in Tag view is sometimes obscured
- FIX: Missing col in mobile portrait / Show Genres = No
- FIX: Artist filter not managing compilation tracks
########################################################
//
// 6.0.0 2019-08-08
//
########################################################
New features
- NEW: Raspbian 10.0 (Buster Lite)
- NEW: Support for Pi-4B 1/2/4GB models
- NEW: UPnP Media Browser
- NEW: Caching Library loader
- NEW: Screen Reader accessibility
Updates
- UPD: Bump to Linux kernel 4.19.64
- UPD: Bump to PHP 7.3.4
- UPD: Bump to NGINX 1.14.2
- UPD: Bump to SQLite 3.27.2
- UPD: Bump to MiniDLNA 1.2.1
- UPD: Bump to Shairport-sync 3.3.2
- UPD: Bump to ALSA 1.1.8
- UPD: Bump to Boost 1.68
- UPD: Add MPD 0.21.13 for testing
- UPD: Add haveged entropy generator
- UPD: Add rev codes for Pi-4B 1/2/4GB models
- UPD: Add clock radio "after stop" Actions
- UPD: Add Spotify clear credential cache
- UPD: Add Instant Play options: Add/Play, Clear/Play
- UPD: Add Show Genres column (Yes/No) to Library options
- UPD: Add buffertime param to BlueZ config
- UPD: Remove restriction on quotes in Wifi password
- UPD: Disable PHP session clean and timer
- UPD: Improve Play/Playall response on slower Pi-Zero
- UPD: Improve Audioinfo layout and content
- UPD: Improve System info layout and content
- UPD: Improve layout of config screens
- UPD: Improve auto-config process
- UPD: Improve in-place update process
- UPD: Improve overall robustness and performance
- UPD: SwissGroove radio url
Security
- UPD: Strengthen input arg parsing in command/index.ph
- UPD: Remove script path input arg in lcdup.sh
- UPD: Convert from plaintext WiFi passwords to PSK's
Bug fixes
- FIX: Lazyload not started after search in Album view
- FIX: Missing href in Bluetooth Active overlay
- FIX: Wrong default fill color for radio buttons
- FIX: JSON parse errors being unnecessarily displayed
########################################################
//
// 5.3.1 2019-06-12
//
########################################################
Radio station updates
- UPD: Jazz24
Updates
- UPD: Bump to Linux kernel 4.19.49
- UPD: Bump to shairport-sync-3.3.1 bugfix release
Bug fixes
- FIX: Lazyload perf issue due to non-unique class names
- FIX: Disable WiFi adapter not working in kernel 4.19.46
- FIX: Parsing for Khadas Tone Board hdwr mixer name
########################################################
//
// 5.3.0 2019-05-30
//
########################################################
New features
- NEW: Preamp mode for Audiophonics 9028/9038 DAC and HiFiberry DAC+ADC
- NEW: Disconnect button added to "Renderer Active" screens
Radio station updates
- NEW: Soma FM - Groove Salad Classic
- UPD: Audiophile Baroque
- UPD: Audiophile Classical
- UPD: Audiophile Jazz
- UPD: Audiophile Lounge
- UPD: Audiophile Rock-Blues
Updates
- UPD: Bump to Linux kernel 4.19.46
- UPD: Bump to shairport-sync-3.3.0-3c4a878
- UPD: Leave MPD random play alone for playqueue cmds
- UPD: Add Name Service Switcher package
- UPD: Improve performance of image lazyloader
Bug fixes
- FIX: Hostapd not starting due to service being masked
- FIX: Show/hide track list between Tag and Album views
- FIX: Artist - Album filter not using exact match
- FIX: Lazyload not activated after search in Tag view
- FIX: Function getYIQ return value not being parsed as int
- FIX: High CPU util for CoverView animated backdrop
########################################################
//
// 5.2.0 2019-05-07
//
########################################################
New features
- NEW: Artist/Station filter (see Quick help)
Radio stations
- UPD: KUVO HD2
Updates
- UPD: Further performance improvements for page loading
- UPD: Performance improvement for Playlilst
- UPD: Bump to MPD 0.20.23 (Default) and 0.21.8 (Testing)
- UPD: Bump to shairport-sync-3.3.0-rc6-0c65236
- UPD: Bump to Linux kernel 4.19.40
- UPD: Revert MPD buffer time/period, ALSA auto-conv to internal defaults
- UPD: Deprecate MPD replay gain handler setting, issue with 'mixer' option
- UPD: Add hardware revision codes for CM3/3+
Bug fixes
- FIX: Remove curve not working in Graphic and Parameteric EQ
- FIX: Input pattern missing from eq-p "Enter new curve name"
- FIX: Playlist on certain mobile devices not scrolling when < 5 items
- FIX: Firefox CORS error caused by getCSSRule() in playerlib
- FIX: Missing member var declarations in Zend application.php
- FIX: Radio station names with single quotes not being escaped
########################################################
//
// 5.1.0 2019-04-22
//
########################################################
Radio station updates
- UPD: Roots Legacy Radio Dub UK & Reggae
Updates
- UPD: Performance improvement for page loading
- UPD: Add "Update this folder" to Folder view context menu
- UPD: Increase size of hit target on cover ellipsis
- UPD: Increase opacity of certain UI elements
- UPD: Display spinner icon when config is processing
- UPD: Revert use of ArtistSort and AlbumSort tags
- UPD: Adjust logic for Instant Play w/Auto-shuffle on
- UPD: Setup guide (setup.txt)
Bug fixes
- FIX: Minor CSS/HTML bugs
########################################################
//
// 5.0.0 2019-04-12
//
########################################################
New features
- NEW: Adaptive UI version 5 with Playbar
- NEW: User added radio station logos
- NEW: Redesigned Graphic and Parametric EQ's
- NEW: EQ support in Airplay and Spotify
- NEW: Bluetooth auto-pairing agent
- NEW: HTTP streaming server for MPD
- NEW: Polarity inversion for MPD output
- NEW: GPIO button handler
- NEW: Alpha index scroll for Library
- NEW: ESS driver for Audiophonics ES9028/9038 DAC
- NEW: Source select for HiFiBerry DAC+ ADC
- NEW: User defined articles for Library sorts
- NEW: Quick help for buttons and active elements
- NEW: Moode utility command (moodeutl)
Audio Devices
- NEW: Audiophonics ES9028/9038 DAC
- NEW: Audiophonics ES9028/9038 DAC (Pre 2019)
- NEW: HiFiBerry Amp2
- NEW: HiFiBerry Beocreate
- NEW: HiFiBerry MiniAmp
- NEW: HiFiBerry DAC Zero
- NEW: HiFiBerry DAC+ ADC
- NEW: HiFiBerry DAC+ DSP
Radio station updates
- NEW: JB Radio 2 USA (320K)
- UPD: Audiophile Baroque
- UPD: Audiophile Classical
- UPD: Audiophile Jaxx
- UPD: Audiophile Lounge
- UPD: Audiophile Rock-Blues
- UPD: Czech Radio Classical 256K
- UPD: Folk Radio UK changed to Radionomy
- UPD: KUVO 89.3 FM Denver
- UPD: KUVO HD2 - Jazz with Bob Parlocha
- UPD: Radio Caroline
- UPD: SUB.FM - Where Bass Matters
- DEL: EuropaRadioJazz - 88.3 Smooth Jazz HD
- DEL: EuropaRadioJazz - The Sound of Jazz
- DEL: The Finest Amsterdam
- DEL: Radio X Brussels
- DEL: Rock Radio 1
- DEL: Somehow Jazz
Updates
- UPD: Include MPD 0.21.6 as a testing option
- UPD: Bump to kernel 4.19.34
- UPD: Bump to shairport-sync 3.3.0 RC2
- UPD: Bump to librespot 2019-02-22 commit: daeeeaa
- UPD: Bump to bluez 5.50
- UPD: Bump to bluez-alsa 1.31 commit: d73282b
- UPD: Bump to hostapd 2.7
- UPD: Bump to wiringPi 2.50
- UPD: Bump to rotenc 1.1
- UPD: Freshen the Config pages
- UPD: Streamline bgimage processing
- UPD: Catch json data errors from engineMpd
- UPD: Reduce debug log clutter
- UPD: Add id3 "comment" tag to adv search
- UPD: Deprecate Airplay auto-volume
- UPD: Add "interpolation" to Airplay config
- UPD: Replace avprobe with mediainfo
- UPD: Remove restriction on NAS config Name
- UPD: Move Save PL and Set Favs to context menu
- UPD: Wrap to first PL item when skip from last
- UPD: Chg wifi country Britain (UK) to United Kingdom (UK)
- UPD: Revert to manual reboot for FS expand
- UPD: Add quotes to cifs userid in mount
- UPD: Add addl timeouts to screen blank for local ui
- UPD: Add librespot to watchdog
- UPD: Manual add/play/clrplay superceeds auto-shuffle
- UPD: Implement versioned css and scripts
- UPD: Deprecate manual "Tab default" setting
- UPD: Deprecate /var/local/www/cssw,jsw,templatesw
- UPD: Deprecate /var/www/themes
Bug fixes
- FIX: Mobile timeline unnecessary updates
- FIX: Corner case for 0 handling in duration
- FIX: Default cover width in Lib (Chrome only)
- FIX: Time knob sometimes not resizing
- FIX: Search reset icons not hiding when empty filter
- FIX: String "Disc tag missing" appears in Library
- FIX: Clock radio shutdown param name
########################################################
//
// 4.4.0 2018-12-19 update
//
########################################################
Bug fixes
- FIX: ALSA vol for MPD software/disabled case
########################################################
//
// 4.4.0 2018-12-18 update
//
########################################################
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
########################################################
//
// 4.4.0 2018-12-09
//
########################################################
New features
- NEW: Adaptive UI version 4
- NEW: Raspbian Stretch Lite 2018-11-13
- NEW: Support for Raspberry Pi 3A+
- NEW: Clock radio days-of-the-week setting
- NEW: Customize settings for compilation rollup and excludes
- NEW: Auto and manual settings for Hi-res thumbnails
- NEW: Library multi-disc breakout for tracks
- NEW: CoverView dynamic background effect
Radio stations
- NEW: CBC Radio 2
Updates
- UPD: Bump to Linux kernel 4.14.84
- UPD: Bump to shairport-sync 3.2.2
- UPD: Add entry for "On-board audio device" to cfg_audiodev
- UPD: Add exception logging to coverart and thumbcache.php
- UPD: Add failsafe loop exit to Zend Flac.php
- UPD: Add RT params to mpd.service and rotenc.service units
- UPD: Disable Spotify audio file cache
- UPD: Use plughw in startSpotify()
- UPD: Change method used to empty the thmcache dir
- UPD: Optimize CSS for large Playlists
- UPD: Only load swipe JS when mobile
- UPD: Use GNU cmd syntax in rotenc and volume scripts
- UPD: Add disk utilization to sysmon.php
- UPD: Add revision code 9020e0 for Pi-3A+
- UPD: Add Close to all rs
- UPD: Improve spacing on Radio and Album cover panels
- UPD: Add 30px blur to list of Cover blur settings
- UPD: Improve performance of Library loader/filter
- UPD: Include moOde version in SSH motd header
- UPD: Deprecate workaround for obsolete Katana 1.0
- UPD: Full screen input source indicator
- UPD: Deprecate vol.php
Bug fixes
- FIX: Blank image thumb on Customize in certain scenarios
- FIX: Modal control spacing when full screen
- FIX: Librespot fail on armv6l (Pi 1B, Zero, Zero W)
- FIX: Thumbnails not generated for mp3 embedded covers
- FIX: Title sometimes out of sync (radio station)
- FIX: Fallback sort for Albums by Artist
- FIX: Extra metadata not showing encodedAt rate
- FIX: Thumbcache fail on paths containing #
- FIX: Library track sort not using disc number
- FIX: Regression bug in Sources Re-mount
- FIX: Bad icon reference in the eq templates
########################################################
//
// 4.3.0 2018-10-19 update
//
########################################################
New features
- NEW: Cover art backdrop for Playback, Music, Radio panels
- NEW: Setting for auto-update DB on USB insert/remove
- NEW: Print moode.log via moodelog [--help, -t, -u]
Updates
- UPD: Bump to Linux kernel 4.14.76
- UPD: Revert to ffmpeg-only compile of MPD
- UPD: Add radio station name to saved playlists
- UPD: Add integrity check for critical files
- UPD: Eliminate unnecessary cover image reloads
- UPD: Revised patch for upmpdcli gmusic plugin
- UPD: Add Ethernet port fix setting for Pi-3B+
Bug fixes
- FIX: BBC 320K station logos not appearing
- FIX: HUD events not working on Firefox
- FIX: Long pnotify messages not word-breaking
- FIX: Wrong vars used in updExtMetaFile()
- FIX: Search reset (x) on Play history
- FIX: Fall-thru bug in thmcache
- FIX: Remove image closes Customize modal
########################################################
//
// 4.3.0 2018-09-27
//
########################################################
New features
- NEW: Spotify Connect renderer
- NEW: Library Album Cover panel
- NEW: Album cover batch thumbnail generator
- NEW: High Res thumbs option for high DPI (Retina) screens
- NEW: Cover art search priority (Embedded or Image File first)
- NEW: CoverView UI controls HUD with next/prev, vol +/- and playlist
- NEW: CoverView backdrop based on cover art
- NEW: Favorites (Add currently playing item to Favorites playlist)
- NEW: Quick search in Browse panel
- NEW: Swipe gesture for Library column headers
- NEW: Auto-update MPD database on USB add/remove
- NEW: Auto-refresh on screen orientation change
- NEW: Support arm64 architecture detection
- NEW: Library UTF8 character filter for Chinese charset
- NEW: Artist zoom in Library panel
- NEW: Allo Katana DAC chip options
Updates
- UPD: Bump to Linux kernel 4.14.72
- UPD: Bump to shairport-sync 3.2.1
- UPD: Add audiofile decoder to MPD compile
- UPD: Improved mobile portrait layout
- UPD: RADIO folder added back to Browse panel