forked from LMS-Community/slimserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog7.html
2315 lines (2165 loc) · 177 KB
/
Changelog7.html
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
<h2><a name="v7.9.3" id="v7.9.3"></a>Version 7.9.3</h2>
<ul>
<li><a href="#v7.7.7">Upstream fixes from Logitech Media Server 7.7.7</a></li>
<br />
<li>New Features:</li>
<ul>
<li></li>
</ul>
<br />
<li>Server Changes:</li>
<ul>
<li></li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li>Async TLS handshake would crash on Windows under certain circumstances.</li>
<li>Fix parsing of M3U files with a BOM at the beginning of the file.</li>
<li>Fix Opus detection by parsing actual data (thanks philippe44!)</li>
<li>Allow fade-in for squeezeplay client that don't handle it locally when < 1s (thanks philippe44!)</li>
<li><a href="https://github.com/ralph-irving/squeezelite/issues/94">#94</a> - Fix playback of small streams when using HTTPS (thanks philippe44!)</li>
</ul>
<br />
</ul>
<h2><a name="v7.9.2" id="v7.9.2"></a>Version 7.9.2 - 2020-01-14 (25af5bf32)</h2>
<ul>
<li><a href="#v7.7.7">Upstream fixes from Logitech Media Server 7.7.7</a></li>
<br />
<li>New Features:</li>
<ul>
<li>Keep shuffled playlist order when Don't Stop The Music kicks in.</li>
<li>Don't overwrite RandomPlay genre selection when using RandomPlay with Don't Stop The Music</li>
<li><a href="https://github.com/Logitech/slimserver/issues/133">#133</a> - Add support for Opus codec (thanks andygrundmann, paul-1, ralph-irving, Roland0!)</li>
<li>Improved Advanced Search: you can now exclude text matches on eg. the file path.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16568">#16568</a> - Provide web UI to edit presets.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18118">#18118</a> - Start a RandomPlay mix with genres from a URL.</li>
<li><a href="https://github.com/Logitech/slimserver/pull/249">#249</a> - Support playback restore after player power loss (thanks a lot maniac103!)</li>
<li><a href="https://github.com/Logitech/slimserver/pull/255">#255</a> - Add Socks proxy (thanks a lot philippe_44!)</li>
</ul>
<br />
<li>Server Changes:</li>
<ul>
<li>When scanning a single folder, only update artwork for music found in this folder.</li>
<li>CORS support: you can now define a list of hosts which are allowed to access your LMS in a web browser.</li>
<li>Add support for updated DBD::SQLite module. This updated version should come with performance improvements and more options for the fulltext search.</li>
<li>Add a separate fade-in option when playback is started/resumed or track is repositioned. Use crossfade only when automatically advancing in playlist. - thanks philippe44!</li>
<li>Give the templating system some more slack (higher limiations) to improve behaviour with really large collections.</li>
<li>Improved OGF stream information, show more accurate bitrate etc. - thanks Kimmo!</li>
<li>Improved HTTP 1.1 support - thanks philippe44!</li>
</ul>
<br />
<li>Platform Support:</li>
<ul>
<li>New flac and sox binaries for most platforms with improved performance (lower CPU load) - thanks ralphy and paul1!</li>
<li>Perl 5.30 modules for Linux x86_64 have been added</li>
<li>Perl 5.28 modules for Linux aarch64 have been added</li>
<li>Perl 5.28 modules for Linux on armhf systems have been added - thanks paul-1!</li>
<li>Some tweaks to the Synology configuration to hide more system folders.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18168">#18168</a> - SYS V start script in RPM distribution does not work for openSUSE 15.0</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="https://github.com/Logitech/slimserver/pull/270">#270</a> - Fix playing MPEG-4 files with leading mdat.</li>
<li><a href="https://github.com/Logitech/slimserver/pull/275">#275</a> - Fix encodingin readdirectory query.</li>
<li>Fix a scanner crash (out of memory) with large collections when high memory usage was enabled.</li>
<li><a href="https://github.com/Logitech/slimserver/issues/261">#261</a> - add non-blocking https client.</li>
<li>Search for a term including an asterisk ("*example*") could lead to all tracks/albums being returned.</li>
<li><a href="https://github.com/Logitech/slimserver/pull/234">Improve XML parsing for images in podcasts</a> (thanks mw9!)</li>
</ul>
<br />
</ul>
<h2><a name="v7.9.1" id="v7.9.1"></a>Version 7.9.1 - 2018-04-02 (69b4f9f8a)</h2>
<ul>
<li><a href="#v7.7.6">Upstream fixes from Logitech Media Server 7.7.6</a></li>
<br />
<li>New Features:</li>
<ul>
<li>Allow plugins to add JavaScript to the main web UI.</li>
<li>Allow plugins to support seek within a transcoded stream.</li>
<li>Allow genres or artists to be excluded from last.fm scrobbling.</li>
<li>Show hi-res images on high density displays.</li>
<li>Allow scanning of sub-trees of the stored media folder</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=9741">#9741</a> - Allow genres or artists to be excluded from last.fm scrobbling.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16319">#16319</a> - faad: some files won't play -- depends on name of file.</li>
<li>MS Edge 15 would not let us click links in the Default web UI.</li>
<li>Fix localization of strings if Controller is requesting another language than the server's.</li>
</ul>
<br />
<li>Platform Support:</li>
<ul>
<li>Update IO::Socket::SSL on Windows to improve compatibility with newer SSL standards.</li>
<li>Perl 5.26 modules for Linux on x86_64 systems have been added - thanks fsbruva for the build script update!</li>
<li>Perl 5.24 modules for Linux on ARM and i386 systems have been added.</li>
<li>Support AARCH64 has been added.</li>
<li>Re-enable server restart on Debian based systems to allow for automated updates.</li>
</ul>
<br />
<li>Other:</li>
<ul>
<li>Make Playlists menu available to the SB Classic/Boom/Transporter's Home menu</li>
<li>Updated faad2 to latest code. Includes patches to increase maximum path length and fix some transcoding issues on Windows. Thanks <a href="https://github.com/ralph-irving/faad2">ralphy</a> and utgg.</li>
<li>Limit growth of the write-ahead log files for caches.</li>
</ul>
<br />
</ul>
<h2><a name="v7.9.0" id="v7.9.0"></a>Version 7.9.0 - 2017-03-07</h2>
<ul>
<li>New Features:</li>
<ul>
<li>Library Browsing improvements:
<ul>
<li>Add option to use two browse modes for Album Artists and All Artists instead of one single, configurable list.</li>
<li>Add "Random Album" browse mode, to give access to a random selection of albums.</li>
<li>Add a "Browse Filesystem" mode to access files outside the music folder, without storing them in the database.</li>
<li>Add possibility to browse music managed by an other Logitech Media Server instance and play music from it without the need to switch server.</li>
<li>Browse favorite Artists/Genres/Albums instead of just playing them when selected.</li>
<li>Add Extended Browse Modes plugin to further configure the library browsing experience.</li>
<li>Add support for "Virtual Libraries" or custom library views, to limit the browsing to a sub-set of your overall music collection.</li>
<li>Restore ability to play playlists from Browse Music Folder</li>
<li>Improved Browse Music Folder performance.</li>
</ul>
</li>
<li>UI improvements:
<ul>
<li>Add new, fast live search to the web UI.</li>
<li>Add Fulltext Search: when searching music the results are no longer limited to a simple title or name search. Fulltext search
includes a lot more data like artist names, lyrics (if available), file type etc. in the evaluation of the search term.</li>
<li>Improve "Advanced Search": allow searching for ratings, ranges of years, save results, use results as virtual library etc.</li>
<li>Give (limited) control over other players connected to your server from the web UI: power them on/off or start/pause
playback without the need to switch the currently controlled player</li>
<li>Add Drag'n'Drop support to the web UI: drag and drop audio files from your desktop's file manager (Finder, Explorer etc.) to the
Logitech Media Server web interface to play them back.</li>
<li>Allow the web UI's right hand side panel with player control and current playlist to be hidden.</li>
<li>Allow the web UI to be opened with a given navigation for the left hand navigation panel (eg. start with Album Artists).</li>
<li>Speed up library browsing in the web UI by caching rendered pages</li>
</ul>
</li>
<li>Scanner behaviour improvements:
<ul>
<li>Allow browsing your music folder while the scanner is running.</li>
<li>Don't stop the music when running a full wipe & rescan.</li>
<li>Add an option to disable automatic rescans on certain preference changes.</li>
<li>Increased scanning performance.</li>
</ul>
</li>
<li>Add "Don't Stop The Music" plugin, allowing you to automatically continue the music listening when your playlist comes to an end.</li>
<li>Add support for DSD/DSF files on some platforms.</li>
<li>Add new way to read player specific transcoding settings from helper files (eg. for room correction). Thanks LMS0815!</li>
<li>Add update auto-download and/or notification for Linux distributions</li>
<li>Allow streaming of https sources by proxying them through LMS (if possible - requires IO::Socket::SSL to be installed on platforms other than Windows)</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=596">#596</a> - Display total duration of a playlist in the web UI.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=709">#709</a> - Add support for "Browse Composers".</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=2333">#2333</a> - Play music outside the music folder without storing it in the database.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4105">#4105</a> - Don't clear the current playlist when a scan is triggered.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=5108">#5108</a> - Track artist roles become artist roles when COMPILATION=0.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=5507">#5507</a> - Need ability to rescan music library from SqueezePlay based user interfaces.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=5715">#5715</a> - Advanced search doesn't limit results, can freeze the server.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=7491">#7491</a> - Startup parameters are missing when server is run as a Windows service</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=8113">#8113</a> - UPnP servers do not appear on controller.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=9671">#9671</a> - Enable browsing from favorites.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=9687">#9687</a> - Add option to opt out of automatically triggered library scans.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=11556">#11556</a> - Resizing of left/right pane doesn't work in IE8.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=12158">#12158</a> - Allow Inclusion of Tracks from other servers in current playlist.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15604">#15604</a> - Provide a Browse Compilations browse mode.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16506">#16506</a> - Honor read access given by ACLs (thanks htgoebel!).</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17081">#17081</a> - "Various Artists" setting should not be blank, but show the default value.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17454">#17454</a> - Unable to delete playlists with playlist rescan.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17474">#17474</a> - Can't browse music folder during scan.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17404">#17404</a> - Cue-sheet problems when navigated to via Music Folder.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17526">#17526</a> - Push any firmware found in cache/updates to players, even if "Check for Updates" is disabled.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17770">#17770</a> - DISC and DISCC TAGS in cue sheets are not recognized (thanks mrthreeplates!).</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17795">#17795</a> - Missing cover blocks real artwork from being found.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17863">#17863</a> - No display of "Comment" Tag when special characters are used.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17953">#17953</a> - Wrong transcoding settings to MP3 in default install.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18107">#18107</a> - Various Artists not include among Album Artists when separate Album Artists and Artists lists are enabled.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18112">#18112</a> - Tracks with double DATE tags get the wrong year assigned by the scanner.</li>
<li>Fix support for multi-disc sets in cue files - thanks msrthreeplates!</li>
<li>Fix the band "The The". Don't strip articles from search terms.</li>
<li>Improve parsing of Atom podcast feeds</li>
</ul>
<br />
<li>Other:</li>
<ul>
<li>Restore the ability to run a single folder scan even if the external scanner needs to run</li>
<li>Use VACUUM to reorganize library files when appropriate. This should help performance with larger collections and
libraries which have been updated a lot. Cache files use auto_vacuum, as they change a lot more often.</li>
<li>On Windows and x86 CPU based systems we're going to use more memory for buffers etc. to improve performance.</li>
<li>Tweak the web UI to use less graphics and simpler HTML structure. Please note that MSIE users will require version 9
or later, or one of the alternative browsers.</li>
<li>Remove SlimService specific code. 7.9 will never be run on mysqueezebox.com.</li>
<li>Re-factor preference migration code. Only load migration handlers if needed.</li>
<li>Complete re-write of the CUE sheet parsing. Thanks marcoc1712!</li>
<li>Add ALBUMARTIST tag support for Cue files (thanks mrthreeplates!).</li>
<li>Disable cross-fading between tracks with different sample rates (thanks hickinbottoms!)</li>
<li>Enhance string substitution to improve 3rd party transcoding support (thanks LMS0815!)</li>
<li>The "mediafolder" query for music files optionally returns coverid (if available). Use the new 'c' tag.</li>
<li>Updated player icons in settings pages, now gracefully falling back to generic squeezeplay symbol if unknown
player is connected. Thanks LMS0815!</li>
<li>Add helper application binaries for i86pc-solaris (thanks chincheta0815!) and ARM hard float systems</li>
<li>Add --nomysqueezebox startup parameter to disable all interaction with mysqueezebox.com</li>
<li>Move UPnP client code to Remote Library plugin. Remove now unnecessary --noupnp startup parameter.</li>
<li>Try to automatically recover from database corruption</li>
<li>Updated translations: Dutch (thanks pinkdot!), French (thanks minscof!), Norwegian (thanks Moffedille!), Polish (thanks matka & Maciej (mh_)!)</li>
</ul>
<br />
</ul>
<h2><a name="v7.8.1" id="v7.8.1"></a>Version 7.8.1</h2>
<ul>
<li>New Features:</li>
<ul>
<li>Show which plugin(s) is updated and need a restart in the web UI's footer.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18092">#18092</a> - albums command with sort:new included returns no entries</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18097">#18097</a> - web issues using Perl 5.20: dropdowns/file browsers not populating due to Compress::Raw::Zlib incompatibility</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18139">#18139</a> - BBC Podcast OPML listing fails to parse</li>
<li>Use a favourite's icon as the station artwork if available.</li>
</ul>
<br />
<li>Other:</li>
<ul>
<li>Allow firmware updater to pick up player firmware from the installation's Firmware folder</li>
<li>Correctly deal albums of same name and with disc number when "Treat multi-disc sets as multiple album." is set.</li>
<li>The special /music/current/cover URL now returns artwork for remote streams, too (if possible).</li>
</ul>
<br />
</ul>
<h2><a name="v7.8.0" id="v7.8.0"></a>Version 7.8.0 - 2014-03-27</h2>
<ul>
<li>New Features:</li>
<ul>
<li>Re-implement Podcast plugin to support all players. Allow resuming a podcast you partially
listened to before.</li>
<li>Modify Internet Radio integration to work independently from mysb.com if needed.</li>
<li>Add new scanner step to discover new/changed/removed standalone artwork for album covers.</li>
<li>A new generic image resizing proxy is now built in to LMS. It can be used instead of the
image proxy hosted on mysqueezebox.com, or independently by plugins to eg. resize artwork
local to your network (and therefore not reachable by the remote proxy).</li>
<li>The default behaviour on power-on is changed to resume what was playing before power-off.
This change will only apply to new players attached to the server;
the behaviour for existing players can be changed with Settings / Player / Audio.</li>
<li>Support for Ogg FLAC in the server and Squeezeplay-based players</li>
<li>Added support for setting alarm playlist shuffle mode (thanks hickinbottoms!)</li>
<li>Volume adjustment for Internet Radio (feature request <a href="http://bugs.slimdevices.com/show_bug.cgi?id=2431">#2431</a>)
<li>Allow clients to register artwork resizing specifications to be pre-cached during the media scan.</li>
<li>Add Triode LocalFile 'loc' ProtocolHandler support for squeezelite.</li>
</ul>
<br />
<li>Platform Support:</li>
<ul>
<li>Perl 5.18 modules for Linux x86_64 systems have been added.</li>
<li>Improved compatibility with latest Perl 5.18 changes.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=8180">#8180</a> - Squeezecenter prevents user logout after restart </li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17174">#17174</a> - Title info doesn't update correctly when multiple SBs are playing same station</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17634">#17634</a> - Random art represents an album as cover art, if there is track art available</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17729">#17729</a> - On Linux SBS 7.4.1 and above: service cannot be stopped or restarted after an 'internal' restart</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17758">#17758</a> - Pop up symbols linger too long on the screen</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17920">#17920</a> - TuneIn Radio Options Context Menu - Results returned are unnecessarily limited and frequently 'not available'</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17933">#17933</a> - Failure to parse m3u playlists with relative paths</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17937">#17937</a> - Now Playing information can alternate between station and current-track titles at track skip</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17950">#17950</a> - %w macros (stream seconds duration) returns negative value</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18000">#18000</a> - MusicBrainz Track IDs in .m4a files when tagged with Jaikoz, Picard, Foobar2000, MP3Tag etc.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18076">#18076</a> - MusicBrainz Track not scanned in wma files</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18077">#18077</a> - Musicbrainz tags not stored for album artists</li>
<li>Don't submit disc number with album names when scrobbling to last.fm</li>
</ul>
<br />
<li>Other:</li>
<ul>
<li>Recognise Fedora as being a Red Hat system.</li>
<li>Improve Perl 5.16 compatibility to silence some warnings.</li>
<li>Don't enforce PNG when showing full size artwork, but only when resizing is requested. Converting a large JPG would result in a huge PNG</li>
<li>Don't deal with photo and/or video folders if the UPnP plugin has been disabled.</li>
</ul>
<br />
</ul>
<h2><a name="v7.7.7" id="v7.7.7"></a>Version 7.7.7</h2>
<ul>
<li>Server Changes:</li>
<ul>
<li>Don't hard-code the Pandora bitrate.</li>
<li>Remove defunct Live365 and Flickr plugins.</li>
</ul>
<br />
<li>Platform Support:</li>
<ul>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="https://github.com/Logitech/slimserver/pull/278">#278</a> - Correctly encode password before sending it to mysb.com for authentication. Characters like the Pound sign (£) would fail.</li>
<li>Flush all URL to content type caches when a stream turns out to be of a different content type than initially assumed. This should work around playback issues with some mis-configured radio stations.</li>
</ul>
<br />
</ul>
<h2><a name="v7.7.6" id="v7.7.6"></a>Version 7.7.6 - 2018-04-02</h2>
<ul>
<li>Server Changes:</li>
<ul>
<li>Block access to settings pages from outside the local network.</li>
<li>Migrate our WiMP implementation to the TIDAL branding and service.</li>
<li>Change Napster implementation to use AAC instead of MP3.</li>
<li>Improve compatibility with latest iTunes 12 updates.</li>
<li>Limit the number of items to be added in RandomPlay. Large numbers would cause database errors.</li>
<li>Remove defunct Spotify, Last.fm, SiriusXM and RadioIO plugins.</li>
<li>Rename Rhapsody to Napster.</li>
<li>Improve support for SSL protected communication. Use https to connect to mysqueezebox.com if possible.</li>
<li>Allow streaming of https sources by proxying them through LMS (if possible - requires IO::Socket::SSL to be installed on platforms other than Windows)</li>
</ul>
<br />
<li>Platform Support:</li>
<ul>
<li>Improve support for Mac OSX 10.11 and later, and Windows 10.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li>Fix synced playback with Spotify (SB Radio and Touch only)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17068">#17068</a> - Lost Artwork playing radio stations</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17727">#17727</a> - Playback stops with mp3 + cue sheets combination</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17901">#17901</a> - "Some settings were changed. Do you want to save them?" doesn't honor button clicked.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18078">#18078</a> - All files seen as changed after Daylight Saving time change (Windows only)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18151">#18151</a> - some server don't accept port definition in header when it's a default port.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18152">#18152</a>, <a href="https://github.com/Logitech/slimserver/issues/143">#143</a> - HTTPS download fails: Connect times out lack of certain headers.</li>
<li>Fix several XSS vulnerabilities in the web UI.</li>
</ul>
<br />
</ul>
<h2><a name="v7.7.5" id="v7.7.5"></a>Version 7.7.5 - 2014-11-28</h2>
<ul>
<li>Bug Fixes:</li>
<ul>
<li>Installing plugins on OSX 10.10 (Yosemite) fails. Add missing Compress::Raw::Zlib.</li>
<li>Can no longer use https resources, due to failure to load support for IO::Socket::SSL.</li>
<li>Various music services: don't hammer mysqueezebox.com requesting metadata for an empty track ID.</li>
</ul>
<br />
</ul>
<h2><a name="v7.7.4" id="v7.7.4"></a>Version 7.7.4 - 2014-11-12</h2>
<ul>
<li>Server Changes:</li>
<ul>
<li>Improve artwork handling when streaming online radio stations.</li>
<li>Remove defunct Facebook and Mediafly plugins.</li>
<li>Minor changes to the EN skin to improve usability on mobile devices.</li>
</ul>
<br />
<li>Platform Support:</li>
<ul>
<li>Add support for Mac OSX 10.10 Yosemite (Perl 5.18).</li>
<li>Replace OSX StartupItem with a LaunchDaemon configuragion.</li>
<li>Fix compatibility with MS Internet Explorer 11</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=6040">#6040</a> - Need different description for Title Format in Players settings</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17571">#17571</a> - SBS loses connection to MySB whenever the internet connection is temporarily lost</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17901">#17901</a> - "Some settings were changed. Do you want to save them?" doesn't honor button clicked.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17930">#17930</a> - New artists missing on new and changed scan</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17998">#17998</a> - Plugin display glitch in description</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18045">#18045</a> - Additional Playlist Buttons not shown in search results</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18046">#18046</a> - Perl 5.18 breaks functionality in Info.pm</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18050">#18050</a> - Duration is not shown correctly</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18052">#18052</a> - Setting the Rescan Timer is broken in ip3k interface</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18053">#18053</a> - Server does not sleep even if SB is turned off</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18084">#18084</a> - Live 365 pause function don’t stop meta data update</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18089">#18089</a> - "View Tags" for the file without any tags breaks the web UI</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18102">#18102</a> - Album named "+" saved in playlist makes playlist unviewable</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18111">#18111</a> - Problem with "Various Artists" play controls in certain menus</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18113">#18113</a> - "Remove from playlist" does not clear/update the playlist panel if the playlist comes empty</li>
<li>Under certain circumstances the scanner wouldn't pick up new artwork, even if music file was changed.</li>
<li>PreventStandby plugin: use caffeinate instead of pmset on OSX versions which support it (10.8+)</li>
<li>Folders can't be played in Browse Music Folder mode if there are sub-folders and the Classic skin is being used</li>
<li>Players without digital out (Boom, Radio) could have ended up with the volume fixed to 100% and no way to change it.</li>
<li>Title format "CT" is now "CONTENT_TYPE". Create an alias to make "CT" available again.</li>
<li>Don't crash SQL queries if we lack a valid locale.</li>
</ul>
<br />
</ul>
<h2><a name="v7.7.3" id="v7.7.3"></a>Version 7.7.3 - 2013-08-21</h2>
<ul>
<li>New Features:</li>
<ul>
<li>Replace custom OSX installer with a standard installation package (.pkg file). Please note that
the OSX build now requires OSX 10.5 as a minimum.</li>
<li>Make the OSX PrefPane 64-bit compatible.</li>
</ul>
<br />
<li>Server Changes:</li>
<ul>
<li>Improved support for radio station artwork. Improved radio station browsing.</li>
<li>Remove legacy Napster plugin. Napster now is a Rhapsody company.</li>
</ul>
<br />
<li>Platform Support:</li>
<ul>
<li>Mac OSX 10.9 Mavericks, which has Perl 5.16, is now supported.</li>
<li>Perl 5.16 modules for Linux systems have been added.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=8141">#8141</a> - Macintosh: Prevent Sleep While Playing</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15896">#15896</a> - Missing metadata information due to cr/lf in title information</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16409">#16409</a> - Playlists menu should show album/artist</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17542">#17542</a> - Albums not credited to Album Artist</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17635">#17635</a> - Search results have album art instead of track art</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17894">#17894</a> - urlmd5 column in tracks table aren't set correctly for FLAC + CUE images</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18036">#18036</a> - Cometd client manager fails to purge dead clients causing memory leakage</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=18043">#18043</a> - urlmd5 column in tracks table not set properly for new playlists</li>
<li>Fix "cannot request non-http url" issue when bringing up the context menu on a remote stream</li>
<li>Artwork cache would grow forever</li>
<li>Fix default expiry duration in cache code - it would expire immediately if not overwritten in the caller.</li>
<li>Improve recovery from corrupted cache files</li>
</ul>
<br />
</ul>
<h2><a name="v7.7.2" id="v7.7.2"></a>Version 7.7.2 - 2012-03-27</h2>
<ul>
<li>New Features:</li>
<ul>
<li>New packages for the ReadyNAS family of storage systems to support their ARM processor based devices.</li>
</ul>
<br />
<li>Scanner Changes:</li>
<ul>
<li>The command-line scanner no longer supports scanning a path passed on the command-line. All paths to be scanned must be listed in the prefs file.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15001">#15001</a> - Save playlist plugin locks ip3k UI</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17422">#17422</a> - Artist, Album and Genre Favorites with non-latin characters don't work from Player UI</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17680">#17680</a> - General install issue of LMS on ReadyNAS Pro (ends up with an install error)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17777">#17777</a> - New & changed scan does not scan playlists</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17807">#17807</a> - Windows installer is showing German messages if no localization is available</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17818">#17818</a> - logitechmediaserver breaks apparmor in Ubuntu</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17819">#17819</a> - Squeezebox folder is breaking ReadyNAS Samba configuration</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17835">#17835</a> - playlistcontrol cmd:load ... play_index:yyyy doesn't work with folders</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17837">#17837</a> - Browse Music Folder fails if a file of unwanted/invalid type is in a folder</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17843">#17843</a> - renaming /c/squeezeboxserver/ to /c/.squeezeboxserver/ causes repeated crashes</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17841">#17841</a> - directory traversal vulnerability in the web UI code</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17848">#17848</a> - LMS service does NOT install on Windows 7</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17852">#17852</a> - Support for new ReadyNAS Duo and NV+ V2 devices</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17855">#17855</a> - Only enable single output channel mode if actively synced</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17858">#17858</a> - Web UI shows red X instead of artwork for absolute URL in private network</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17876">#17876</a> - Unnecessary items in context menu for current-playlist tracks</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17877">#17877</a> - Resume after underrun broken for synchronized (ip3k) players</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17881">#17881</a> - BMF scan corrupts dB replacing title with file name</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17882">#17882</a> - Fixed wrong MP4 MIME type for DLNA (audio/m4a was used instead of audio/mp4)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17885">#17885</a> - DLNA 7.3.28.2: GetProtocolInfo needs all DLNA profiles listed first</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17893">#17893</a> - Unnecessary push into current playlist when stopping playback</li>
</ul>
<br />
</ul>
<h2><a name="v7.7.1" id="v7.7.1"></a>Version 7.7.1 - 2011-12-14</h2>
<ul>
<li>New Features:</li>
<ul>
<li>Improved MOG support to allow dynamic control of artist radio stations.</li>
</ul>
<br />
<li>MySQL note:</li>
<ul>
<li>DBD::mysql binaries are no longer included. If you wish to run against a MySQL server you will need to install this manually for your version of Perl.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17140">#17140</a> - Non-square cover art thumbnails displayed with black borders</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17283">#17283</a> - Scanner can crash when renaming files and performing a rescan</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17348">#17348</a> - Some mp3/cue files would not scan and/or play correctly</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17441">#17441</a> - mp2/cue files no longer play</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17459">#17459</a> - Rhapsody channels and radio are not scrobbled</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17623">#17623</a> - Wrong directory in postinst script (Debian)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17639">#17639</a> - Rescan buttons scans the wrong folder</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17643">#17643</a> - Displayed playlist not refreshed on repeat with reshuffle</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17644">#17644</a> - Squeezebox database and logfiles fill up OS-partition</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17647">#17647</a> - "Generic OPML Browser" plugin needs to be forced enabled</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17650">#17650</a> - MOG track duration is lost when skipping back and forth</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17656">#17656</a> - Include missing DLNA content-types for TS, M2TS, etc.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17674">#17674</a> - Crash during rescan of music folder but only if you have images or video enabled</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17718">#17718</a> - Searching genres using "browselibrary items mode:genres" does not work</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17719">#17719</a> - Now Playing playlist in the web UI doesn't show correct metadata for remote music services</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17726">#17726</a> - Windows Control Panel can't authenticate to password protected server</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17728">#17728</a> - Web GUI Jumps to Track More Info on Playlist Play</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17731">#17731</a> - Playlist only scanning does not work</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17734">#17734</a> - Install stalls on Windows due to huge FileCache folder</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17736">#17736</a> - When running the update from the tray icon, MS VC libraries are not installed</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17737">#17737</a> - Album screensaver option creates huge menu</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17739">#17739</a> - require Windows XP or more recent for the installation to proceed</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17742">#17742</a> - Buffering status wrong for players that decode while buffering</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17749">#17749</a> - Database upgrade scripts missing for MySQL</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17752">#17752</a> - OSX PrefPane is missing localizations</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17762">#17762</a> - Control Panel Doesn't Open after Entering Credentials</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17764">#17764</a> - Embedded LMS fails to switch between sources</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17781">#17781</a> - Full wipecache is run when adding new folder with media type exclusion</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17800">#17800</a> - Invalid artwork regex leads to scan failure</li>
</ul>
<br />
</ul>
<h2><a name="v7.7.0" id="v7.7.0"></a>Version 7.7.0 aka Logitech Media Server - 2011-11-01</h2>
<ul>
<li>New Features:</li>
<ul>
<li>DLNA/UPnP support:</li>
<ul>
<li>Media library is exposed as a Media Server.</li>
<li>All connected players are exposed as Media Renderers (experimental).</li>
</ul>
<li>Image and video file scanning support has been added and is exposed via the DLNA media server.</li>
<ul>
<li>Supported video file types: asf, avi, divx, flv, hdmov, m1v, m2p, m2t, m2ts, m2v, m4v, mkv, mov, mpg, mpeg, mpe, mp2p, mp2t, mp4, mts, pes, ps, ts, vob, webm, wmv, xvid, 3gp, 3g2, 3gp2, 3gpp, mjpg</li>
<li>Supported image file types: JPEG, PNG, GIF, BMP</li>
</ul>
<li>Multiple media directories can now be specified. Each directory can be configured for audio, images, and/or video.</li>
<li>Support for MOG music service.</li>
</ul>
<br />
<li>Platform Support:</li>
<ul>
<li>Perl 5.14 modules for Linux systems have been added.</li>
<li>Win32 now uses ActivePerl 5.14.1.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4803">#4803</a> - Scanner does not validate RATING tags</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=5091">#5091</a> - DLNA (UPnP) Server Support</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=11289">#11289</a> - Scanner ignores first line of cue sheet if it has a UTF-8 BOM</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17090">#17090</a> - WMA seeking fails if file does not contain an ASF_Index object</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17213">#17213</a> - Error message installing SBS 32398 on Ubuntu 11.04</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17242">#17242</a> - Perl 5.12 modules in CPAN/arch not compatible with Debian Wheezy</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17358">#17358</a> - Importers (MusicIP, iTunes) are not run during a rescan</li>
</ul>
<br />
</ul>
<h2><a name="v7.6.2" id="v7.6.2"></a>Version 7.6.2 - unreleased</h2>
<ul>
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=13814">#13814</a> - Implement synchronized unpause</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15723">#15723</a> - wrong Icons showing up for my Apps and Apps gallery and more</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16343">#16343</a> - restart server can't work with --user/--group</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17228">#17228</a> - Missing favorites button (heart) in album view</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17164">#17164</a> - Clock runs slow using internal SB touch server</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17369">#17369</a> - No direct link to album on albuminfo page</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17370">#17370</a> - Songs with no album tag do not appear within "No Album" any more</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17373">#17373</a> - playing or adding "All Songs" after searching with a search term including a period is broken</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17378">#17378</a> - With Additional Playlist Buttons enabled there is no Play Next button in track view</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17442">#17442</a> - Use Text only/Small Artwork/Large Artwork setting only for album lists</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17452">#17452</a> - Rescan can go into an endless loop when a cue sheet has been removed</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17464">#17464</a> - Basic search fails with search string containing single quotes</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17465">#17465</a> - Double quotes aren't being escaped in text fields</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17472">#17472</a> - Erratic playing of AAC stream on IP3K players.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17479">#17479</a> - Aborting a wipe scan doesn't kill the external scanner process</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17482">#17482</a> - CLI: "info total tracks/albums/artists" counts are not coherent with actual music database</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17489">#17489</a> - Artists containing ')' characters break a few things</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17493">#17493</a> - cannot access playlist information when using stream.mp3 client</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17524">#17524</a> - Large blank album icon above artist search results</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17529">#17529</a> - Now Playing screen is displayed at various "odd" times</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17530">#17530</a> - iTunes Plugin on Linux can fail to find files with Unicode paths</li>
</ul>
<br />
</ul>
<h2><a name="v7.6.1" id="v7.6.1"></a>Version 7.6.1 - 2011-08-22</h2>
<ul>
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=9725">#9725</a> - Split MusicBrainz artist tag with user-defined separator</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16037">#16037</a> - Music isn't found if playlist folder is the same as the music folder</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16060">#16060</a> - New & changed scan doesn't clean up unused genres</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16554">#16554</a> - of multiple artists in tag 'artist' only one shown on controller nowplaying screen</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16901">#16901</a> - SBS fails to generate MusicIP mixes</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17068">#17068</a> - Lost Artwork playing radio stations</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17255">#17255</a> - Screensaver term(s) are being used in Now Playing?</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17298">#17298</a> - Filtering by artist is broken when playing an album</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17322">#17322</a> - Leading and trailing spaces in names should be trimmed</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17340">#17340</a> - Display track artists per song, not in album info</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17342">#17342</a> - A lot of deprecated warnings in log when saving playlist</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17343">#17343</a> - %FILE artwork format not working</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17352">#17352</a> - Null item contained in empty playlist</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17360">#17360</a> - Scan hangs with 7.6</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17361">#17361</a> - Server side artwork scaling with one dimension omitted does not work</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17362">#17362</a> - Sometimes 404 Not found is returned instead of default artwork for unknown track id's</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17363">#17363</a> - Alarm-Clock link is not working</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17364">#17364</a> - Songs without album tags don't properly appear under "No Album"</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17365">#17365</a> - Won't show some artwork</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17372">#17372</a> - TuneIn Radio app - Error when using the "TuneIn Radio Options" </li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17374">#17374</a> - Can't play tracks in multiple sub-folders using Browse Music Folder</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17379">#17379</a> - Scanner progress not reported correctly for shortcuts or links</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17387">#17387</a> - Broken image in playlist when displaying album cover</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17382">#17382</a> - Artwork size incorrect when browsing into a playlist</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17395">#17395</a> - Support for /music/current/cover.jpg lost</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17397">#17397</a> - Scanner crashes with mp2/cue files</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17409">#17409</a> - Third party menus ordered incorrectly</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17410">#17410</a> - The MusicIP Mood Mix menu is sorted incorrectly in web interface</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17430">#17430</a> - On initial start after a clean installation, Music Browse menus would not be initialized</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17415">#17415</a> - Interface; not possible to shift back to default (MSIE9)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17449">#17449</a> - Pressing Play on "empty" links in the web-UI causes server to use 100% for several minutes</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17450">#17450</a> - MusicIP import fails due to upper/lower case differences in the file path (Windows)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17457">#17457</a> - Import actions failing on case insensitive filesystems (Windows)</li>
</ul>
<br />
</ul>
<h2><a name="v7.6.0" id="v7.6.0"></a>Version 7.6.0 - 2011-07-25</h2>
<ul>
<li>Firmware updates:</li>
<ul>
<li>Boom - Version 57<br />
Squeezebox 2/3 - Version 137<br />
Transporter - Version 87<br />
Receiver - Version 77
</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3932">#3932</a> - (Transporter) Discrete IR codes for power_on, power_off and digital_inputs</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4682">#4682</a> - Send WOL while in connecting state and receiving discrete power_on IR code</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=12319">#12319</a> - (Boom) Change RTC alarm time to 1 hour (was 1 minute)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15693">#15693</a> - (Transporter) Fix for spurious AC voltage readings</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16442">#16442</a> - (Transporter) audr command to change the AK4396 rolloff filter</li>
<li>(Boom) Discrete IR codes for power_on, power_off and line_in</li>
<li>Support for output_channels flags, to output only left or right channel, useful with synced Booms.</li>
<li>Fixed DNS client handling when server returns multiple A records for MySB.</li>
<li>Fixed a bug with text scrolling in scroll-once mode.</li>
<li>Added support for new Rhapsody SSL certificate.</li>
</ul>
</ul>
<br />
<li>New Services:</li>
<ul>
<li>Support for Orange Liveradio (all countries).</li>
</ul>
<br />
<li>New Features:</li>
<ul>
<li>Transcoding is now supported when requesting an HTTP download (/music/[id]/download[.extension]).</li>
<li>The default database is now SQLite. MySQL can still be used using ones own installation.</li>
<li>Native decoding for WMA Pro (<a href="http://bugs.slimdevices.com/show_bug.cgi?id=13324">#13324</a>)
and WMA Lossless (<a href="http://bugs.slimdevices.com/show_bug.cgi?id=13323">#13323</a>) has been added to Radio and Touch.</li>
<li>Cue sheet support has been improved. The following formats will currently work with cue sheets, including seeking:</li>
<ul>
<li>FLAC (native)</li>
<li>Ogg Vorbis (native)</li>
<li>MP3 (native)</li>
<li>MPEG-4 AAC (native and transcoded)</li>
<li>MPEG-4 ALAC (native and transcoded)</li>
<li>WAV/AIFF (native and transcoded)</li>
<li>WMA (native)</li>
<li>WavPack (transcoded)</li>
</ul>
<li>MP3 cue sheet tracks are now played without gaps. A full rescan is required and scan time will be slower for these tracks.</li>
<li>Harmony remote integration: Discrete IR codes to play presets 1-6.</li>
<li>Transporter: DAC roll-off filter can now be toggled between sharp and slow.</li>
<li>A database memory option has been added to the Advanced -> Performance settings page to allow the database to use more memory.</li>
<li>Add original track filename to download url on trackinfo page (<a href="http://bugs.slimdevices.com/show_bug.cgi?id=16424">#16424</a>)</li>
</ul>
<br />
<li>Other Major Changes:</li>
<ul>
<li>Major Rewrite of Library Browser</li>
<ul>
<li>A single core implementation supports WebUI, ip3k Player-UI (Boom, Transporter, Classic, SliMP3), SqueezePlay UI (Touch, Radio, Controller).</li>
<li>Features generally much more consistent across the different user interfaces.</li>
<li>Access to some features changed and some other features may behave differently or be unavailable:</li>
<ul>
<li>Playlist tracks listing includes artwork in Web and SqueezePlay UIs.</li>
<li>Add-as-favorite and Delete-playlist items from SqueezePlay playlist tracks listing moved to playlist context menu (More).</li>
<li><code>VBR_SCALE</code>, <code>BITRATE</code>, <code>TAGSIZE</code>, <code>VOLUME</code> (volume name), <code>PATH</code>, <code>FILE</code> and <code>EXT</code>
substitution items no longer available for title format configuration
(see Settings/Interface/Title Format and Settings/Player/<i>player</i>/Basic Settings/Title Format in the Web UI).</li>
<li>XML Web-UI skin removed. Use CLI or JSON/RPC instead.</li>
<li>Fishbone, Handheld, Nokia770, ScreenReader and Touch skins removed. Only Default and Classic remain supported.</li>
<li>When used in the context of browse music folder, the cli command `playlistcontrol cmd:load folder_id:<id> will only load the audio files that are contained in that directory, and will not load audio files from subdirectories within that directory. This was for support of fixing <a href='http://bugs.slimdevices.com/show_bug.cgi?id=17199'>bug 17199</a>. This represents a change in behavior with this command from previous versions of SBS.</li>
</ul>
<li>API for plugin developers to modify browsing experience (see <code>BrowseLibrary.pm</code> for documentation).</li>
</ul>
<li>The CLI serverstatus lastscan field has been changed to more correctly report the timestamp of the last time the database was changed by the scanner.</li>
<li>The CLI charset tagged parameter has been removed from all commands that supported it. All input and output is now in UTF-8 (<a href="http://bugs.slimdevices.com/show_bug.cgi?id=16834">#16834</a>).</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=2735">#2735</a> - Add pagebar functionality to the CLI</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3161">#3161</a> - Need more aggressive auto-retry for internet radio</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=5207">#5207</a> - I18n: Corrupt chars in Favorites</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=6754">#6754</a> - Umlauts/accented characters don't show on player when browsing music folder</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=7836">#7836</a> - Can't browse all albums by a following a track artist link</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=8388">#8388</a> - Bug 8388 - Controller showing different input than what appears on SC</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=8808">#8808</a> - Support transcoding on download URLs</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=8877">#8877</a> - MP3 cue sheets are not gapless</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=9947">#9947</a> - home.html is loaded several times when web UI is opened</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=9897">#9897</a> - Directory Scan misses out on Files and Folders containing accented Characters</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=10199">#10199</a> - Most transcoding doesn't work with non-ascii-characters in filename</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=10324">#10324</a> - No longer merge artists or genres that differ only in accents, for example Bjork and Björk</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=10805">#10805</a> - FF/REW (scanning) broken within .cue files (not FLAC)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=11950">#11950</a> - Support FLAC CUE sheets without transcoding</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=13153">#13153</a> - Both web interface and squeezebox "hang" when one browses folders containing non-ascii chars</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=13284">#13284</a> - Composer in artist list, while not chosen in SC</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=14117">#14117</a> - Sync streaming can consume lots of memory when one player connection slow</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=14825">#14825</a> - Allow multiple stream.mp3 streams from the same IP address by specifying ?player=id_string</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=14641">#14641</a> - Cannot playback doublebyte files from Favourites</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=14662">#14662</a> - Playing a specific track while track shuffle is enabled will play another track</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=14723">#14723</a> - Genre>Various Artists>Play All. Creates the same playlist whatever genre is chosen.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=14832">#14823</a> - variousArtistsString & libraryname prefs don't handle non-latin characters correctly</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=14951">#14951</a> - Unicode search in Web UI broken</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=14971">#14971</a> - Default My Music browse menus can no longer be overridden/removed</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15053">#15053</a> - #slim:noscan=1 makes a stream not playable</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15068">#15068</a> - Tracks without ALBUM tags not in browse menus</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15180">#15180</a> - Genres with only VA artist are 'Empty'</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15304">#15304</a> - "Play Other Songs In Album" doesn't work for "All Songs" of an artist</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15460">#15460</a> - Track with Extended ASCII in directory name fails to appear in Browse Music Folder</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15553">#15553</a> - Album missing on Squeezebox Radio (album artist or composer but no artist)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15799">#15799</a> - When M3U playlists are written unicode characters in filenames are mangled</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15821">#15821</a> - Network interruption would leave "sticky" "File not found" message</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15826">#15826</a> - Need volume up / down events to be sent to SC even if at min or max</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15882">#15882</a> - Non-ASCII character in device name incorrectly displays in TinySC library name</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15868">#15868</a> - While playing songs from the USB if I switch between the songs the old song title re-appears for several seconds</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15887">#15887</a> - Mac: Account tab shows NULL in email field, w/ password</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15949">#15949</a> - Adding >100 tracks from remote source (OMPL) makes blank entries in NP on SP and WebUI</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16138">#16138</a> - Query error </li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16154">#16154</a> - If an internet radio stream fails, you can't replay the stream without first playing another stream.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16191">#16191</a> - ALAC Songs being cutoff before they end</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16233">#16233</a> - mp3 stream with Xing header is handled wrong when proxied</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16275">#16275</a> - SB Touch: Rebuffering on 1st track</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16280">#16280</a> - SB Touch: Fix ambient light calculation.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16308">#16308</a> - All MySqueezebox apps ignore Shuffle setting.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16332">#16332</a> - SB Touch: Disable proximity LEDs after startup.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16337">#16337</a> - Album Sort Method is not applied when browsing artists.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16365">#16365</a> - SB Touch / Radio: Reduce ambient light sensor polling.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16442">#16442</a> - Choice of Transporter roll-off filter</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16443">#16443</a> - URL to repositories page has changed</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16459">#16459</a> - Scan progress time display showing negative seconds</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16466">#16466</a> - Can't browse via composer in 7.6.0 on Touch</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16495">#16495</a> - Now Playing 'expand' function is broken</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16620">#16620</a> - Added 'F' option to new artwork resizing</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16662">#16662</a> - Incorrect UTF8 encoding returned by CLI</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16683">#16683</a> - Non-ASCII characters in file and directory names</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16686">#16686</a> - Alarm Time timeControl has 0 width on webUI when adding alarms</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16690">#16690</a> - Inconsistent capitalization of 'Now Playing'</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16708">#16708</a> - Internet Radio Search doesn't work in non-Default skins</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16814">#16814</a> - No artwork when using UNC audio path</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16922">#16992</a> - AudioScrobbler plugin repeatedly writes prefs file preventing disk spindown</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16791">#16791</a> - No tracks listed on compilation albums with an 'Album Artist' tag, but without a 'Compilation' tag, when browsing the artists menu using SB Controller (or iPeng)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17073">#17073</a> - Playlist edit drag-and-drop only works for first page</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17173">#17173</a> - Random scanner crashes, especially on Windows.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17199">#17199</a> - Add support for a cli command to play an entire album worth of tracks, beginning at track X</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17205">#17205</a> - Accented characters not correctly sorted in pagebar</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17309">#17309</a> - Fedora 14/OpenSUSE 11.4 and other newer Linux distros are broken</li>
<li>SB Radio: Fixed hostname</li>
<li>SB Controller, Radio, Touch: Updated busybox to 1.16.2</li>
</ul>
<br />
</ul>
<h2><a name="v7.5.6" id="v7.5.6"></a>Version 7.5.6</h2>
<ul>
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=17173">#17173</a> - Music Scan Terminated Unexpectedly (Directory Scan)</li>
</ul>
<br />
</ul>
<h2><a name="v7.5.5" id="v7.5.5"></a>Version 7.5.5 - 2011-07-11</h2>
<ul>
<li>Firmware updates:</li>
<ul>
<li>Boom - Version 54<br />
Squeezebox 2/3 - Version 134<br />
Transporter - Version 84<br />
Receiver - Version 69
</li>
<ul>
<li>Added support for new Rhapsody SSL certificate.</li>
</ul>
</ul>
<br />
<li>Platform Support:</li>
<ul>
<li>Mac OSX 10.7 Lion, which has Perl 5.12.3, is now supported.</li>
<li>Perl 5.12 modules for Linux systems have been rebuilt with version 5.12.3 for improved compatibility.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15010">#15010</a> - player menus showing entries in wrong language</li>
</ul>
<br />
</ul>
<h2><a name="v7.5.4" id="v7.5.4"></a>Version 7.5.4 - 2011-04-25</h2>
<ul>
<li>Firmware updates:</li>
<ul>
<li>Boom - Version 53<br />
Squeezebox 2/3 - Version 133<br />
Transporter - Version 83<br />
Receiver - Version 68
</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16898">#16898</a> - Increased firmware idle disconnection timeout to 50 seconds.</li>
</ul>
</ul>
<br />
<li>New Features:</li>
<ul>
<li>Support for using the Comet API in long-polling mode.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16874">#16874</a> - 100% CPU lockup could occur while streaming AAC radio streams</li>
</ul>
<br />
</ul>
<h2><a name="v7.5.3" id="v7.5.3"></a>Version 7.5.3 - 2011-01-24</h2>
<ul>
<li>Firmware updates:</li>
<ul>
<li>Boom - Version 52<br />
Squeezebox 2/3 - Version 132<br />
Transporter - Version 82<br />
Receiver - Version 67
</li>
<ul>
<li>Reduced network traffic while connected to a server, especially MySB.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16760">#16760</a> - 24/96 files on Transporter can cause popping during scrolling/visualizer</li>
</ul>
</ul>
<br />
<li>New Services:</li>
<ul>
<li>Support for Spotify (Radio and Touch players only).</li>
<li>Support for WiMP.</li>
</ul>
<br />
<li>Platform Support:</li>
<ul>
<li>Perl 5.12 is now supported on Linux, enabling the newest distributions to work out of the box.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li>Fixed a bug where connecting to MySB from the player UI would always incorrectly use a DNS lookup, leaving the player stuck on MySB.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16183">#16183</a> - Pandora genre stations can cause blank screen</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16379">#16379</a> - aac->pcm using faad is wrong at non-44.1 samplerates</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16331">#16331</a> - SB Radio: Fix for random battery charging sound.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16452">#16452</a> - forward slashes in artist and track names after import</li>
</ul>
<br />
</ul>
<h2><a name="v7.5.2" id="v7.5.2"></a>Version 7.5.2 - 2010-12-20</h2>
<ul>
<li>Firmware updates:</li>
<ul>
<li>Boom - Version 51<br />
Squeezebox 2/3 - Version 131<br />
Transporter - Version 81<br />
Receiver - Version 66
</li>
<ul>
<li>Boom: Discrete IR codes for power_on, power_off and line_in</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3932">#3932</a> - Transporter: Discrete IR codes for power_on, power_off and digital_inputs</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4622">#4622</a> - Client-side smooth text scrolling</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4682">#4682</a> - Send WOL while in connecting state and receiving discrete power_on IR code</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=12319">#12319</a> - Boom: Change RTC alarm time to 1 hour (was 1 minute)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16667">#16667</a> - Rhapsody stream failures</li>
</ul>
</ul>
<br />
</ul>
<h2><a name="v7.5.1" id="v7.5.1"></a>Version 7.5.1 - 2010-06-10</h2>
<ul>
<li>New Features:</li>
<ul>
<li>Seeking within MPEG-4 files (AAC/ALAC) is now supported for players with native playback (Radio, Touch).</li>
<li>Switched to optimized build of faad for AAC/ALAC decoding on ReadyNAS Sparc.</li>
</ul>
<br />
<li>Bug Fixes:</li>
<ul>
<li>ALAC playback was broken on PowerPC Macs.</li>
<li>Fixed corrupted Rhapsody icon.</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=12173">#12173</a> - Player selected in Settings becomes target in browse window</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15662">#15662</a> - Alarm-Volume-Level with synchronised Booms</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15847">#15847</a> - Add tag mapping for WM/AlbumSortOrder => ALBUMSORT</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15910">#15910</a> - Alarm screensaver setting does not work</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15914">#15914</a> - Add tag mapping for WM/Conductor => CONDUCTOR</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15968">#15968</a> - SbS give up too quickly with a couple of bad tracks in playlist</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15992">#15992</a> - APE tags are not read if a Lyrics tag is also present</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=15995">#15995</a> - Default skin's panel width resets after 7 days</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16006">#16006</a> - Ogg & some MMS streams metadata not updated on SqueezePlay UIs</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16021">#16021</a> - Improve track info menu for RadioTime streams</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16025">#16025</a> - Apple Lossless tracks could cause a crash in faad</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16039">#16039</a> - My Apps shows all apps in web UI</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16052">#16052</a> - Some stations fail to play in 7.5, but play fine in 7.4 (bad stream headers)</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16056">#16056</a> - APE files with invalid tags can cause scanner to crash</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16074">#16074</a> - Virtual tracks within a cue sheet don't inherit parent content-type</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16096">#16096</a> - Alarm fade-in does not work in 7.5</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16140">#16140</a> - Library stats reporting fails for album within Genre > Various Artists</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16186">#16186</a> - ALAC transcoding support broken for ReadyNAS Sparc</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16238">#16238</a> - iTunes plugin incorrectly scans ALAC files as "Quicktime Movie" files</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16243">#16243</a> - AIFC (AIFF little-endian) files no longer play correctly</li>
<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=16582">#16582</a> - Playback may stop at end of first track when one synced player is off</li>
</ul>
<br />
</ul>
<h2><a name="v7.5.0" id="v7.5.0"></a>Version 7.5.0 - 2010-04-06</h2>
<ul>
<li>New Features:</li>
<ul>
<li>RadioTime: Use RadioTime's own track info menu which allows you to report stream problems, see related streams, etc.</li>