forked from moode-player/moode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
relnotes.txt
3156 lines (2629 loc) · 110 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 release of
# moOde audio player from http:#moodeaudio.org
#
# (C) Tim Curtis 2014 http:#moodeaudio.org
#
################################################################################
################################################################################
#
# 2021-MM-DD TC moOde 7.6.1
#
################################################################################
Updates
- UPD: Add otg_mode=1 option for CM4 to /boot/config.txt
- UPD: Add ALSA volume input field to Receiver Config
Radio stations
- NEW: CDNX
- NEW: Dandelion Radio
- NEW: KCSM
Bug fixes
- FIX: Extra div in indextpl.html
- FIX: Event filtering in librespot event script
- FIX: Multiroom ALSA config for librespot
- FIX: System info not reporting WiFi/Bt adapters for Zero 2 W
################################################################################
#
# 2021-11-20 TC moOde 7.6.0
#
################################################################################
Updates
- UPD: Bump to MPD 0.23.4
- UPD: Bump to pycamilladsp-plot 0.6.2
- UPD: Add MPD Config option for Thesycon DSD workaround
- UPD: Add Pref option to set Tag view Genres to Genres or Composers
- UPD: Show Audio info decode/output rates for Multiroom Sender
- UPD: Remove MPD versions option on Audio Config (not used anymore)
- UPD: Add test for volume type "null" to Audio info
- UPD: Add mixer name exception for hifiberry dac2hd
Radio stations
- NEW: P1 (News, Culture)
- NEW: P2 (Classical, Jazz)
- NEW: P3 (Pop, Culture)
- NEW: Radio 357
- NEW: Radio Nowy Swiat
- NEW: RCO Live
Bug fixes
- FIX: URL encoding for radio station logos
- FIX: LCD updater exiting after one iteration
- FIX: Help text margin on System config
################################################################################
#
# 2021-11-09 TC moOde 7.5.0
#
################################################################################
New features
- NEW: Toggle CoverView on/off from System Config
Updates
- UPD: Bump to MPD 0.23.3
- UPD: Bump to librespot 0.3.1
- UPD: Bump to Meson 0.59.2
- UPD: Add MPD Config option to play silence before stopping DSD/DoP
- UPD: Add "Disabled" option to Multiroom Receiver config
- UPD: Add ALSA output mode to Multiroom Receiver config
- UPD: Add query timeout to Multiroom Sender config
- UPD: Add IP addr timeout to System config
- UPD: Add Pi Zero 2 W in revision code parsing
- UPD: Improve Spotify Config
- UPD: Improve help text on System Config
- UPD: Improve validation for Receiver volume config
- UPD: Trim strings when creating/updating radio station
Radio stations
- NEW: PRM - Prog Rock & Metal
- UPD: Bayern 2
- UPD: BR-Klassik
- UPD: Jazz FM
- UPD: JB Radio 2
- UPD: Linn Classical
- UPD: Linn Jazz
- UPD: Linn Radio
- UPD: Soma FM - Metal Detector
- UPD: Zen FM
Bug fixes
- FIX: Item "Add favorites" visible on context menu
- FIX: Advanced options toggle broken on Multiroom Config
################################################################################
#
# 2021-10-02 TC moOde 7.4.1
#
################################################################################
Updates
- UPD: Improve some workerLog messages
- UPD: Add message regarding djmount unmaintained
- UPD: Add MPD httpd and CoverView settings to Backup/Restore
Bug fixes
- FIX: BlueZ Config crashes connecting to Bluetooth speaker
- FIX: UPnP Browser restart set to wrong modal link
################################################################################
#
# 2021-09-24 TC moOde 7.4.0
#
################################################################################
New features
- NEW: Multiroom audio
- NEW: CamillaDSP Quick Select
- NEW: Backup/restore manager
Updates
- UPD: Bump to MPD 0.22.11
- UPD: Bump to CamillaDSP 0.6.3
- UPD: Bump to upmpdcli 1.5.11
- UPD: Add "okto research dac8 Stereo" to device table
- UPD: Improve memory reporting in System info
- UPD: Add option for Null mixer to MPD Config
- UPD: Add Show tracks option to One touch album
- UPD: Add Album header context menu in tracks list
- UPD: Separate One touch options for Album and Radio
Radio stations
- NEW: Organ Experience
- NEW: SmoothLounge Global
- UPD: 4ZZZ FM 102.1 - Alternative
- UPD: SmoothJazz Global
- UPD: OrganLive.com
- UPD: Positively Baroque
- UPD: Maschinengeist Radio (OFFLINE)
Bug fixes
- FIX: Typo in MPD Config message regarding disconnected device
- FIX: Fallback to encoded_at rate from MPD db if mediainfo reports blank rate
- FIX: CoverView Playbar show/hide not working when launched from Library
- FIX: Typo in cdsp 32b float format (FLOATLE should be FLOAT32LE)
- FIX: BlueZ audioout being set to Bluetooth on Disconnect
- FIX: Web socket get_mute() not working in pycamilladsp.py
- FIX: Various auto-config bugs
- FIX: Console error from Menu, Refresh
- FIX: Margin issue on Clock Radio text and controls
- FIX: Testing for old MPD mixer_type "disabled" in several modules
- FIX: Parsing issue with mixer names containing embedded parenthesis
- FIX: Selective_resample_mode param present in mpd.conf when SoX is off
################################################################################
#
# 2021-06-25 TC moOde 7.3.0
#
################################################################################
New features
- NEW: ALSA output modes including Default (plughw) and Direct (hw)
- NEW: Volume normalization and format options for librespot
Updates
- UPD: Bump to MPD 0.22.8
- UPD: Bump to librespot 0.2.0
- UPD: Bump to CamillaDSP 0.5.2, GUI 0.4.1, Backend 0.7.1, Plot 0.5.3
- UPD: Simplify ALSA framework
- UPD: Add verbose debug option to CamillaDSP
- UPD: Run updMpdConf() after in-place update
- UPD: Improve method for updating currentsong.txt
- UPD: Option to turn off Now-playing (EQ bars) icon
- UPD: Option to turn off CoverView Playbar
- UPD: Enable rpi-cirrus-wm5102.dtbo to show in DT overlay list
- UPD: Route Bluetooth through ALSA framework
- UPD: Load i2c-dev at boot time via /etc/modules
- UPD: Set theme-color meta element in header to Theme color
- UPD: Add Output chain and Loopback state to Audio info
- UPD: Improve how MPD Config changes are processed
- UPD: Drop Max USB current (not applicable anymore)
- UPD: BlueZ Config when change to Local, disconnect device
Bug fixes
- FIX: Missing "Roonbridge Active" in currentsong.txt
- FIX: Currentsong.txt truncated at startup
- FIX: Airplay, Spotify renderers crash when ALSA Loopback On
- FIX: DSP confs break when audioout set to Bluetooth
- FIX: Station Home page field not in Audio info
- FIX: Wlan0 power save not disabled during startup for Pi-Zero W
- FIX: Instability in libcurl3 shipped with RaspiOS Buster
- FIX: Permissions on shairport-sync debug log
- FIX: Missing -u option in shairport-sync logging
- FIX: CamillaDSP and 64-bit kernel showing for 32-bit only Pi's
- FIX: WiFi/BT options missing from System config for Zero W
- FIX: Display wakes when USB DAC disconnected if Wake on play ON
- FIX: CamillaDSP Config back link handling
################################################################################
#
# 2021-05-06 TC moOde 7.2.1
#
################################################################################
Updates
- UPD: Use ALSA auto bit depth conversion if needed
- UPD: Improve help text on Audio Config
- UPD: Bump to shairport-sync 3.3.8
Bug fixes
- FIX: Input source volknob_mpd not being reset
- FIX: Typo in .xinitrc param enable-features
- FIX: Album tag not processed for HTML entities
- FIX: Paths > 256 chars not handled by thmcache
- FIX: Wrong rate shown in Audioinfo for DSD256 and higher
################################################################################
#
# 2021-04-24 TC moOde 7.2.0
#
################################################################################
New features
- NEW: ALSA routing and loopback option
- NEW: ALSA loopback driver 384K support
Radio stations
- NEW: ByteFM
- UPD: Ancient FM - Mediaeval and Renaissance Music
- UPD: BBC 128K stations
- UPD: WKCR 89.9 FM
Updates
- UPD: Show Quick Convolution filter friendly name in Audio info
- UPD: Revert the "Artist +" library option (not useful)
- UPD: Allo Boss2 OLED display script and startup
- UPD: Enhance I2S configuration to support more devices
- UPD: CamillaDSP: Show encoding of wave file
- UPD: CamillaDSP: Improved wave file converter
- UPD: Drop UAC2 fix (not applicable anymore)
- UPD: Drop UPnP Tidal/Qobuz from Config (doesn't work anymore)
Bug fixes
- FIX: Wlan_country param missing from auto-config export
- FIX: Wrong squeezelite compile in release image
- FIX: Genre data for several radio stations
- FIX: Capitalization and terminology in Audio info
- FIX: CamillaDSP: Save not disabled when other DSP active
- FIX: CamillaDSP: Config dropdown not disabled when other DSP active
- FIX: CamillaDSP: Relative paths on first use of config
- FIX: CamillaDSP: Wave file converter doesn't support floats
- FIX: CamillaDSP: Work around bug in yaml parser
- FIX: Typo in sysinfo output for throttled state
- FIX: Several issues with UPnP config and cover art
################################################################################
#
# 2021-03-15 TC moOde 7.1.0
#
################################################################################
New features
- NEW: CamillaDSP including Pipeline Editor
- NEW: RoonBridge renderer mgt (requires user install)
- NEW: Radio station utility for import/export/manage
- NEW: Automatic support for new Pi models
Audio devices
- NEW: Allo Boss 2 w/OLED display and chip options
Radio stations
- UPD: Radio FM4
- UPD: Resonance Radio 104.4 FM
- UPD: The Jazz Groove
- UPD: WEMU Ypsilanti FM 89.1 - Jazz
- UPD: WQED Pittsburgh 89.3 - Classical
- DEL: JB Radio2 (320K)
- DEL: RadioActive FM 88.6
- DEL: smooth Chill
- DEL: UCFM 87.8 - Canberra's Alternative
Updates
- UPD: Bump to MPD 0.22.6
- UPD: Bump to CamillaDSP 0.5.0-beta4
- UPD: Bump to CamillaGUI 0.6.0
- UPD: Bump to ALSA cdsp (commit e941420)
- UPD: Bump to upmpdcli 1.5.8 w/updated coverart util
- UPD: Bump to miniDLNA 1.3.0
- UPD: Bump to librespot 0.1.6
- UPD: Bump to ashuffle 3.11.1
- UPD: Bump to moodeutl 1.5.2
- UPD: Add Clear/Add to Library context menus
- UPD: Add Track info to Queue context menu
- UPD: Add Comment tag to Track info dialog
- UPD: Add Cover/logo to Track/Station info
- UPD: Add Throttled state to System info
- UPD: Disable power save for integrated WiFi
- UPD: Set correct 0dB level for HDMI
- UPD: Open station home page for "Streaming source"
- UPD: Automatically detect SMB protocol version
- UPD: Improve Crossfeed settings and a Linkwitz setting
- UPD: Selectively add/remove dtoverlay audio lines
- UPD: Change MPD volume terminology from "Disabled" to "Fixed"
- UPD: Allow changing betw HDMI, Headphone and USB w/o reboot
- UPD: Persist configured USB device in MPD Config
- UPD: Show msg in MPD Config if USB device off or disconnected
- UPD: Library Config option to ignore CUE files
- UPD: Decode Pi revision from bitmask instead of from table
- UPD: Allow negative pregain for Spotify renderer
- UPD: Add option fo include Composers in Tag view Artist list
Bug fixes
- FIX: Wrong PHP version in localui.service and build recipe
- FIX: Squeezelite binary crashes on ARM6
- FIX: Librespot volume curve option
- FIX: Order of excution for starting watchdog
- FIX: Airplay, Spotify not able to output to Crossfeed DSP
- FIX: Back link not working in CamillaDSP Config screen
- FIX: Wrong cardnum being used in moodeutl to get hw_params
- FIX: SoX resampling quality always set to High
- FIX: LED control for P-Zero
- FIX: Auto-play receives empty songid during startup
- FIX: Fields too wide in new/edit station and adv search modals
- FIX: Fix spaces not handled in Squeezelite $PLAYERNAME var
- FIX: Auto-shuffle reverts to track mode after library update
################################################################################
#
# 2020-12-23 TC moOde 7.0.1
#
################################################################################
Bug fixes
- FIX: Missing MPD auto-config params
- FIX: Wrong install location for ALSA cdsp plugin
- FIX: Leading space in playable URL for KCMP station
- FIX: SSID input field validation too strict
- FIX: Tabs showing on Audio info when launched from Configs
- FIX: Add revision code for Pi-4B 4GB 1.4
- FIX: 32-bit ASIX driver for Allo USBridge SIG
################################################################################
#
# 2020-12-15 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, input cache
- NEW: Option for Auto-shuffle album mode
- NEW: Option to display thumbnails in the Queue
- NEW: Option for Renderer backdrop (Cover or Backdrop image)
- NEW: Option to choose the search site used for Artist, Album lookup
- NEW: Context menu items for Add next, Play next
- NEW: Support for up to 384K rate for DDDAC1794 NOS
- NEW: CamillaDSP and ALSA cdsp plugin for testing
- NEW: Moodeutl options for Export/Import all settings
Updates
- UPD: Bump to RaspiOS 10.6
- 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.1
- 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: Remove MPDAS unmaintained and fail with new Last.FM proocol
- 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: Kanal K
- 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: RadioActive FM 88.6 playable URL
- UPD: Radio Caroline playable URL
- UPD: WWOZ 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