-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathextensions.xml
1211 lines (1211 loc) · 173 KB
/
extensions.xml
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
<extensions>
<applets>
<applet name="EnhancedDigitalOutput" creator="Triode" email="[email protected]" link="" maxTarget="8.6" minTarget="7.7" sha="83ab262ea6c5af6f72ef01ec6d8ea911cf662a92" target="fab4" url="http://ralph.irving.sdf.org/edo/EnhancedDigitalOutput-v0.10.zip" version="0.10">
<desc lang="EN">Support for external USB Dacs and up to 192kHz sampling rates with the digital output. Note: this app will install a custom linux kernel. It will also disable analog when using usb/digital out.</desc>
<title lang="EN">Enhanced Digital Output</title>
</applet>
<applet name="SetupKernelUpdater" creator="Triode" email="[email protected]" link="" maxTarget="8.6" minTarget="7.7" sha="65056836c7ed2a2c6c72c5f79505583f48e437b8" target="fab4" url="http://ralph.irving.sdf.org/edo/SetupKernelUpdater-v0.3.zip" version="0.3">
<desc lang="EN">Experienced users only. Applet to install trial kernel versions to test USB audio support. Kernels are installed at your own risk</desc>
<title lang="EN">Kernel Updater</title>
</applet>
<applet name="AlbumFlow" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4" sha="5dee58ece394484b013d5e7e1f744f19d838528d" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-albumflow&filename=AlbumFlow-1.2.24.zip" version="1.2.24">
<changes lang="EN">- Available for free, no longer requires a license
</changes>
<desc lang="EN">Browse your albums with a scrolling cover art view similar to the Cover Flow view on Mac and iPod. It can also act as a screensaver scrolling through all albums in your library.
</desc>
<title lang="EN">Album Flow</title>
</applet>
<applet name="InformationScreen" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4" sha="d2203b10ed8e02fdffb4fad96a37f951f5e9df91" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-informationscreen&filename=InformationScreenApplet-1.0.zip" version="1.0">
<changes lang="EN">- Added support for non resized images (not used yet)
</changes>
<desc lang="EN">Configurable screen saver that makes it possible to switch between different kind of information. Please note that you will also have to install the Information Screen plugin into your Squeezebox Server before this applet works</desc>
<title lang="EN">Information Screen</title>
</applet>
<applet name="DaylightClock" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4" sha="e5d27db8cd6ffb3407d68aed7997a39b22c3287d" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-daylightclock&filename=DaylightClock-1.1.3802.zip" version="1.1.3802">
<changes lang="EN">- Corrected so it doesn't crash Squeezebox when mysqueezebox.com returns text instead of image
</changes>
<desc lang="EN">A screensaver for Squeezebox Controller/Touch/Radio devices that shows a clock with a daylight map of the earth in the background. It's possible to configure what kind of date/time information you like to show and you can select background among a number of different perspectives.</desc>
<title lang="EN">Daylight Clock</title>
</applet>
<applet name="CustomClock" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4" sha="226becb58ed993c358e971395e1e9a14c4056041" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-customclock&filename=CustomClock-2.12.140.zip" version="2.12.140">
<changes lang="EN">- Available for free, no longer requires a license
</changes>
<desc lang="EN">A screensaver for Squeezebox Controller/Touch/Radio devices that shows a clock. It is possible to select among a number of different styles and you can configure what kind of date/time information you like to show.</desc>
<title lang="EN">Custom Clock</title>
</applet>
<applet name="PatchInstaller" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.5" sha="7fd692b41fc201e92aba0e8e58f8c7c5752edf78" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-patchinstaller&filename=PatchInstaller-1.2.36.zip" version="1.2.36">
<changes lang="EN">- Changed due to Google shutting down Google Code service
</changes>
<desc lang="EN">Easy installation of third party patches on Radio/Touch/Controller firmware.</desc>
<title lang="EN">Patch Installer</title>
</applet>
<applet name="ScreenSwitcher" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4" sha="95693db01bcc9030151c8d15b42b97cb790f7328" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-screenswitcher&filename=ScreenSwitcher-1.2.13.zip" version="1.2.13">
<changes lang="EN">- Available for free, no longer requires a license
</changes>
<desc lang="EN">Switch continuously between different screen savers.
</desc>
<title lang="EN">Screen Switcher</title>
</applet>
<applet name="SettingsRemover" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4" sha="3c6393b0082e543eed5416a53a99a926ff9839e2" target="jive|fab4|baby" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-settingsremover&filename=SettingsRemover-1.0.30.zip" version="1.0.30">
<changes lang="EN">No changes since latest beta</changes>
<desc lang="EN">Make it possible to reset settings from a individual applet insteaed of doing a complete factory reset</desc>
<title lang="EN">Settings Remover</title>
</applet>
<applet name="TextClock" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4" sha="e741cd9687bcf0610edc3d966b037302223133b8" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-textclock&filename=TextClock-1.0.60.zip" version="1.0.60">
<changes lang="EN">- Corrected for all non english languages
</changes>
<desc lang="EN">Screen saver that displays time with words, like "quarter past four" instead of 16:15
</desc>
<title lang="EN">Text Clock</title>
</applet>
<applet name="LicenseManager" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4" sha="5779593f514241d8794102a3400c9876967ccf90" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-licensemanager&filename=LicenseManager-1.1.67.zip" version="1.1.67">
<changes lang="EN">- Improved account id detection on standalone Squeezebox Touch
</changes>
<desc lang="EN">License Manager applet, this is required for licensed applets to work and it will give you and overview of installed licensed applets and their licensing status.
</desc>
<title lang="EN">License Manager</title>
</applet>
<applet name="DarkFlatSkinInstaller" creator="AF" link="https://github.com/AF-1" maxTarget="*" sha="3190608a1e10d71f60e4091d8ad768bae50689ae" target="squeezeplay" url="http://af1.userspace.sosou.eu/lms_applets/download.php?filename=DarkFlatSkinInstaller-squeezeplay-1.2.5.zip" version="1.2.5">
<desc lang="EN">This applet installs the Dark Flat Skin for Squeezeplay (800 x 480 resolution). *** More information, screenshots and FAQ on https://github.com/AF-1 *** Windows and Linux users: please read the FAQ BEFORE installing.</desc>
<title lang="EN">Dark Flat Skin Installer</title>
</applet>
<applet name="DarkFlatSkinInstaller" creator="AF" link="https://github.com/AF-1" maxTarget="*" sha="430446954646bc63f39d54b45c05dce7aa7a603c" target="jivelite" url="http://af1.userspace.sosou.eu/lms_applets/download.php?filename=DarkFlatSkinInstaller-pcp-1.2.5.zip" version="1.2.5">
<desc lang="EN">This applet installs the Dark Flat Skin on your piCorePlayer (800 x 480 resolution). *** More information, screenshots and FAQ on https://github.com/AF-1</desc>
<title lang="EN">Dark Flat Skin Installer</title>
</applet>
<applet name="DarkFlatSkinInstaller" creator="AF" link="https://github.com/AF-1" maxTarget="*" sha="7eccd63b7d4e699b724b6dce06c3ff9e7c74bad2" target="fab4" url="http://af1.userspace.sosou.eu/lms_applets/download.php?filename=DarkFlatSkinInstaller-fab4-1.2.4.zip" version="1.2.4">
<desc lang="EN">This applet installs the Dark Flat Skin on your SB Touch. *** More information, screenshots and FAQ on https://github.com/AF-1. *** See FAQ for information on known SB Touch issue.</desc>
<title lang="EN">Dark Flat Skin Installer</title>
</applet>
<applet name="NPInfoPlusInstaller" creator="AF" link="https://github.com/AF-1" maxTarget="*" sha="7e00f01bf1f06e549e36942aa8a65010b8ab4b77" target="baby" url="http://af1.userspace.sosou.eu/lms_applets/download.php?filename=NPInfoPlusInstaller-baby-1.1.0.zip" version="1.1.0">
<desc lang="EN">Display additional information on the Now Playing screen (rating, year, audio metadata, status icons). *** More information, screenshots and FAQ on https://github.com/AF-1</desc>
<title lang="EN">NowPlaying Info Plus</title>
</applet>
<applet name="DisplayOff" creator="Triode" email="[email protected]" link="" maxTarget="8.*" minTarget="7.7" sha="c709e3d24b287132f62b3207ee7d1e9751f1bab6" target="fab4" url="http://ralph.irving.sdf.org/edo/DisplayOff-v0.1.zip" version="0.1">
<desc lang="EN">Replacement for Screen Off screensaver which disables screen processing when off. Intended to be used as a when playing or when off screensaver.</desc>
<title lang="EN">Display Off</title>
</applet>
<applet name="FontReplacer" email="[email protected]" link="" maxTarget="8.*" minTarget="7.3" sha="46fcd68dbd04c44468349fda3e27e230cc532b37" url="http://downloads.nixda.ch/FontReplacer-1.4a.zip" version="1.4">
<desc lang="EN">Replaces the default FreeSans Font with a merged FreeSans + DroidSansFallback font to provide a fuller character set, including Chinese/Japanese/Korean characters</desc>
<title lang="EN">Font Replacer</title>
</applet>
<applet name="CustomClock" creator="erland, tcutting" link="" maxTarget="*" minTarget="0.1" sha="c4f6d3d143bc4876e843d3c1604ca469275b1cc7" target="jivelite" url="http://superdatetimewu.sourceforge.net/CustomClock_JL_1.01.004.zip" version="1.01.004">
<changes lang="EN">Initial Release.</changes>
<desc lang="EN">Modified Custom Clock for Jivelite</desc>
<title lang="EN">CustomClock</title>
</applet>
<applet name="LicenseManager" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="*" minTarget="0.1" sha="5779593f514241d8794102a3400c9876967ccf90" target="jivelite" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-licensemanager&filename=LicenseManager-1.1.67.zip" version="1.1.67">
<changes lang="EN">- Improved account id detection on standalone Squeezebox Touch
</changes>
<desc lang="EN">License Manager applet, this is required for licensed applets to work and it will give you and overview of installed licensed applets and their licensing status.
</desc>
<title lang="EN">License Manager</title>
</applet>
<applet name="Headphones" creator="bluegaspode / Stefan Hansel" link="" maxTarget="8.*" minTarget="7.0" sha="d5903e7cf0ec0abdced8c338871c0880a0c2aa8a" target="jive" url="http://www.stagessound.de/squeeze/Headphones.zip" version="1.0">
<desc lang="EN">This applet allows to switch headphones manually for the controller. After installing you will find a new menu under 'Extras'</desc>
<title lang="EN">Headphone Switcher</title>
</applet>
<applet name="Weather" creator="bluegaspode / Stefan Hansel" link="" maxTarget="7.*" minTarget="7.0" url="http://www.stagessound.de/squeeze/Weather.zip" version="1.4">
<desc lang="EN">This applet installs a new screensaver which allows to show current Weather condition and a forecast of the next 3 days. With the 'Extras'-menu you can also start the Forecast manually. Be sure to configure your location after installation !</desc>
<title lang="EN">Weather Forecast</title>
</applet>
<applet name="SqueezeIR" creator="Indifference_Engine" link="http://www.koukalaka.me.uk/squeezebox/squeezeir" maxTarget="*" minTarget="7.4" sha="abd03e5d1c31dc5cdc661e72750f65ac820187b5" target="jive|squeezeplay" url="http://www2.koukalaka.me.uk/squeezebox/repo/applets/SqueezeIR.zip" version="2.03">
<changes lang="EN">See the change log (http://www.koukalaka.me.uk/squeezebox/squeezeir/change-log).</changes>
<desc lang="EN">Use your Duet Controller's infra-red emitter to control other devices such as your amplifier.</desc>
<title lang="EN">Squeeze IR</title>
</applet>
<applet name="LineInButton" creator="Indifference_Engine" link="http://www.koukalaka.me.uk/squeezebox/line-in-button" maxTarget="*" minTarget="7.4" sha="bb28c392eea7cc8b58c344d7ab6233949e344847" target="baby" url="http://www2.koukalaka.me.uk/squeezebox/repo/applets/LineInButton.zip" version="1.01">
<changes lang="EN">See the change log (http://www.koukalaka.me.uk/squeezebox/line-in-button/change-log).</changes>
<desc lang="EN">Enables the radio's line input to be selected by holding the Home or Sleep buttons on the device or remote.</desc>
<title lang="EN">Line-In Button</title>
</applet>
</applets>
<details>
<title lang="CS">Jiné pluginy třetích stran</title>
<title lang="DA">Udvidelsesmoduler fra tredjepart</title>
<title lang="DE">Plugins von Drittanbietern</title>
<title lang="EN">3rd party plugins</title>
<title lang="ES">Complementos de terceros</title>
<title lang="FI">Valmistajien laajennukset</title>
<title lang="FR">Plugins tiers</title>
<title lang="IT">Plugin di terzi</title>
<title lang="NL">Plug-ins van derden</title>
<title lang="NO">Tredjeparts plugin-moduler</title>
<title lang="PL">Pozostałe dodatki innych firm</title>
<title lang="RU">Другие подключаемые модули сторонних изготовителей</title>
<title lang="SV">Tillägg från tredje part</title>
</details>
<patches>
<patch name="60a51265-1938-4fd7-b703-12d3725870da" creator="Erland Isaksson" email="[email protected]" link="http://wiki.lyrion.org/index.php/Patch_Installer_applet" maxTarget="7.5" minTarget="7.5" sha="36f4342b81fcafdce691a55d85810d1d10465156" url="http://erland.github.io/squeezebox-patchinstaller/patches/CustomAlarmWindow/CustomAlarmWindow-1.0.patch" version="1.0">
<desc lang="EN">Makes it possible open a third party applet when an alarm is triggered instead of the standard alarm snooze popup, this patch doesn't add any user visible features it just adds an API which other plugins can use</desc>
<title lang="EN">Custom alarm window</title>
</patch>
<patch name="LowerFallbackAlarm" creator="gerko" link="" maxTarget="7.5" minTarget="7.5" sha="a68d50e73483637c5a61430318a2a58b8a85c06b" url="http://erland.github.io/squeezebox-patchinstaller/patches/LowerFallbackAlarm/LowerFallbackAlarm-1.0.patch" version="1.0">
<desc lang="EN">Decreases the volume on the fallback alarm used when the server doesn't trigger an alarm correctly</desc>
<title lang="EN">Low Volume Fallback Alarm</title>
</patch>
<patch name="LowerFallbackAlarm" creator="gerko" link="" maxTarget="7.7" minTarget="7.6" sha="b678ce8e26fb738f90b586d2b0d6ea4875341ef6" url="http://erland.github.io/squeezebox-patchinstaller/patches/LowerFallbackAlarm/LowerFallbackAlarm-2.0.patch" version="2.0">
<desc lang="EN">Decreases the volume on the fallback alarm used when the server doesn't trigger an alarm correctly</desc>
<title lang="EN">Low Volume Fallback Alarm</title>
</patch>
<patch name="ControllerGreenHighlight" creator="iisfaq" link="" maxTarget="7.7" minTarget="7.5" sha="b8692cda2029a919a3d1bc80c87227d05ec115ac" target="jive|baby" url="http://erland.github.io/squeezebox-patchinstaller/patches/ControllerGreenHighlight/ControllerGreenHighlight-1.0.zip" version="1.0">
<desc lang="EN">Makes the highlight of selected menu items green</desc>
<title lang="EN">Green highlight</title>
</patch>
<patch name="ControllerYellowHighlight" creator="iisfaq" link="" maxTarget="7.7" minTarget="7.5" sha="6b9718cdc63b4837a40872934ab876c4a437b994" target="jive|baby" url="http://erland.github.io/squeezebox-patchinstaller/patches/ControllerYellowHighlight/ControllerYellowHighlight-1.0.zip" version="1.0">
<desc lang="EN">Makes the highlight of selected menu items yellow</desc>
<title lang="EN">Yellow highlight</title>
</patch>
<patch name="ControllerOrangeHighlight" creator="iisfaq" link="" maxTarget="7.7" minTarget="7.5" sha="c309387d4589ce28add88d3c1165d052d49e7402" target="jive|baby" url="http://erland.github.io/squeezebox-patchinstaller/patches/ControllerOrangeHighlight/ControllerOrangeHighlight-1.0.zip" version="1.0">
<desc lang="EN">Makes the highlight of selected menu items orange</desc>
<title lang="EN">Orange highlight</title>
</patch>
<patch name="ControllerMagentaHighlight" creator="iisfaq" link="" maxTarget="7.7" minTarget="7.5" sha="8a079df2d38b2066ea62e3fc081bbd922f158f55" target="jive|baby" url="http://erland.github.io/squeezebox-patchinstaller/patches/ControllerMagentaHighlight/ControllerMagentaHighlight-1.0.zip" version="1.0">
<desc lang="EN">Makes the highlight of selected menu items Magenta</desc>
<title lang="EN">Magenta highlight</title>
</patch>
<patch name="RadioBiggerFont" creator="Aslak3" link="" maxTarget="7.7" minTarget="7.5" sha="bf59a44819e54647eb0cd8d8dfcea16a409f7c81" target="baby" url="http://erland.github.io/squeezebox-patchinstaller/patches/RadioBiggerFont/bigger-text-1.0.patch" version="1.0">
<desc lang="EN">Makes the font larger on some user interface items</desc>
<title lang="EN">Bigger font</title>
</patch>
<patch name="NoIR" creator="Erland Isaksson" link="" maxTarget="7.7" minTarget="7.5" sha="1ae36f19aa839c6f5aa4a48cf8572255a019e099" target="baby|fab4" url="http://erland.github.io/squeezebox-patchinstaller/patches/NoIR/NoIR-1.0.zip" version="1.0">
<desc lang="EN">Disables all the standard Squeezebox IR codes</desc>
<title lang="EN">Disable IR remote</title>
</patch>
<patch name="dBVolume" creator="Erland Isaksson" link="" maxTarget="7.7" minTarget="7.5" sha="23f6e45bc3509ea88357c85dcddbdc3793cbfb49" target="fab4" url="http://erland.github.io/squeezebox-patchinstaller/patches/dBVolume/dBVolume-1.0.patch" version="1.0">
<desc lang="EN">Display volume as dB</desc>
<title lang="EN">dB Volume</title>
</patch>
<patch name="VolumeSpeed" creator="plympton" link="" maxTarget="7.7" minTarget="7.5" sha="91b04b43b61bf9bbe8c8dee506a1a298831765f9" target="fab4" url="http://erland.github.io/squeezebox-patchinstaller/patches/VolumeSpeed/VolumeSpeed-1.0.patch" version="1.0">
<desc lang="EN">Increase the speed while changing volume using a IR remote</desc>
<title lang="EN">Volume Speed</title>
</patch>
<patch name="FatFingerSkin" creator="plympton" link="" maxTarget="7.7" minTarget="7.5" sha="bb467ecae82a226efb363275a35d92fd1f26c0b8" target="fab4" url="http://erland.github.io/squeezebox-patchinstaller/patches/FatFingerSkin/FatFingerSkin-1.0.zip" version="1.0">
<desc lang="EN">Larger buttons in touch skin with Shuffle and Repeat buttons removed</desc>
<title lang="EN">FatFinger Skin</title>
</patch>
<patch name="DarkBlueGlowVUMeter" creator="jstraw, Gazjam" link="" maxTarget="7.7" minTarget="7.5" sha="db7340fa88922619e3fdd5233a1ab8f9d133332b" target="fab4" url="http://erland.github.io/squeezebox-patchinstaller/patches/DarkBlueGlowVUMeter/DarkBlueGlowVUMeter-1.0.zip" version="1.0">
<desc lang="EN">Replacement VU meter for the standard analog VU meter with a dark blue glow style</desc>
<title lang="EN">Dark Blue Glow VU Meter</title>
</patch>
<patch name="LightBlueGlowVUMeter" creator="jstraw, Gazjam" link="" maxTarget="7.7" minTarget="7.5" sha="d61a7f835a03efd0855a604d43b2724e46e2780c" target="fab4" url="http://erland.github.io/squeezebox-patchinstaller/patches/LightBlueGlowVUMeter/LightBlueGlowVUMeter-1.0.zip" version="1.0">
<desc lang="EN">Replacement VU meter for the standard analog VU meter with a light blue glow style</desc>
<title lang="EN">Light Blue Glow VU Meter</title>
</patch>
<patch name="VintageDarkerGoldVUMeter" creator="jstraw, Gazjam" link="" maxTarget="7.7" minTarget="7.5" sha="6470a912788e8bc85a3467932dfab577413c6109" target="fab4" url="http://erland.github.io/squeezebox-patchinstaller/patches/VintageDarkerGoldVUMeter/VintageDarkerGoldVUMeter-1.0.zip" version="1.0">
<desc lang="EN">Replacement VU meter for the standard analog VU meter with vintage darker gold style</desc>
<title lang="EN">Vintage Darker Gold VU Meter</title>
</patch>
<patch name="AppletInstallerUpgradeAll" creator="Triode" link="" maxTarget="7.5" minTarget="7.5" sha="04c44f0bc1c5070dc905f313e87b254838a70b34" url="http://erland.github.io/squeezebox-patchinstaller/patches/AppletInstallerUpgradeAll/AppletInstallerUpgradeAll-1.0.patch" version="1.0">
<desc lang="EN">Add upgrade all applets option to make it posible to upgrade multiple applets at the same time</desc>
<title lang="EN">Upgrade all applets</title>
</patch>
<patch name="NoAutoRescan" creator="Erland Isaksson" link="" maxTarget="7.6" minTarget="7.6" sha="ba3f8ccbfb46aaef9ecc520c06cf132058372b86" target="fab4" url="http://erland.github.io/squeezebox-patchinstaller/patches/NoAutoRescan/NoAutoRescan-1.0.patch" version="1.0">
<desc lang="EN">Disable automatic rescan of mounted USB drives/SD cards</desc>
<title lang="EN">Disable auto rescan</title>
</patch>
<patch name="NoAutoRescan" creator="Erland Isaksson" link="" maxTarget="7.7" minTarget="7.7" sha="9797aff38e83e3a2d315a8e5b394725e08fd92ec" target="fab4" url="http://erland.github.io/squeezebox-patchinstaller/patches/NoAutoRescan/NoAutoRescan-2.0.patch" version="1.0">
<desc lang="EN">Disable automatic rescan of mounted USB drives/SD cards</desc>
<title lang="EN">Disable auto rescan</title>
</patch>
<patch name="ReduceBrightness" creator="Daniel Vijge" link="" maxTarget="*" minTarget="7.5" sha="0d48a72a5ae95f92f9851b09b35e2d493103cc20" target="fab4" url="http://server.vijge.net/static/squeezebox/ReduceBrightness-fab4-1.3.patch" version="1.3">
<desc lang="EN">Reduce brightness when the screensaver is active</desc>
<title lang="EN">Reduce Screensaver Brightness</title>
</patch>
<patch name="FixedVolume" creator="Watkins, Peter" link="" maxTarget="7.5+" minTarget="7.5" sha="6d6c4daea0a27023645533f1417e5b203e0a7da7" target="fab4" url="http://www.tux.org/~peterw/slim/jive/Patches/FixedVolume-1.0.patch" version="1.0">
<desc lang="EN">Fixes the analog, digital, and headphone output at 100% regardless of the apparent Squeezebox volume setting.</desc>
<title lang="EN">Volume Fixed at 100%</title>
</patch>
<patch name="VersionComparisonFix" creator="Michael Herger" email="[email protected]" link="" maxTarget="7.7" minTarget="7.7" sha="502f20ed043ca48682add2016f48af927b9a369d" target="baby" url="https://www.herger.net/_data/SlimServer-0.3.lua.patch" version="0.3">
<desc lang="EN">Fixes the version comparison which is broken in Radio firmware 7.7.x. This issue leads to the Radio refusing to connect to LMS 8.</desc>
<title lang="EN">Version Comparison Fix</title>
</patch>
<patch name="MoreRadioPresets" creator="Indifference_Engine" link="http://www.koukalaka.me.uk/squeezebox/more-radio-presets" maxTarget="*" minTarget="7.4" sha="4dcc2ff0886795fcb788ddaa3e74cd585e24e04a" target="baby" url="http://www2.koukalaka.me.uk/squeezebox/repo/patches/MoreRadioPresets.patch" version="1.00">
<desc lang="EN">Adds options for Presets 6-10 to the Shortcuts applet.</desc>
<title lang="EN">More Radio Presets</title>
</patch>
</patches>
<plugins>
<plugin name="BookmarkHistory" category="tools" creator="Martin Johnen" email="[email protected]" installations="502" link="http://forums.lyrion.org/showthread.php?102859-New-plugin-for-audio-bookmarks/" maxTarget="9.*" minTarget="7.6" sha="d434f73d51f750d0770a841bc556ad2cfa0f000d" url="http://mjohnen.bplaced.net/repo/bookmarkhistory-1.2.22.zip" version="1.2.22">
<desc lang="EN">Bookmark Plugin - Adds the possibility to bookmark audio files. Useful for radio dramas and audio books. Please define the genres for which you want bookmarks in the settings, otherwise the plugin will create bookmarks also for music albums (which you probably don't want)</desc>
<desc lang="DE">Lesezeichen f�r k�rzlich geh�rte Alben. N�tzlich f�r H�rspiele und H�rb�cher. Bitte geben Sie in den Einstellungen die Genres an, f�r die Lesezeichen angelegt werden sollen, sonst werden auch z. B. f�r Musikalben Lesezeichen angelegt (was sie vermutlich nicht wollen)</desc>
<title lang="EN">Bookmarks</title>
</plugin>
<plugin name="DisableShuffle" category="playlists" creator="Martin Johnen" email="[email protected]" installations="125" link="http://forums.lyrion.org/showthread.php?102851-Plugin-to-suppress-quot-Shuffle-quot-quot-Repeat-quot-and-quot-Add-to-Playlist-quot-Modes" maxTarget="9.*" minTarget="7.6" sha="4913d1a55fcafab0b8cf2c0b3b3c720ea8c31bf6" url="http://mjohnen.bplaced.net/repo/disableshuffle-1.0.1.zip" version="1.0.1">
<desc lang="EN">Allows to disable shuffle, repeat and "add to playlist" mode for all clients. You can allow or disable each of these modes in the plugin settings.</desc>
<desc lang="DE">Erm�glicht es die Shuffle, Repeat und "an Playliste anh�ngen"-Modi f�r alle Clients zu sperren. Sie k�nnen jeden dieser Modi in den Einstellungen des Plugins getrennt zulassen oder sperren.</desc>
<title lang="EN">Disable Shuffle</title>
</plugin>
<plugin name="iPeng" category="skin" creator="Joerg Schwieder" email="[email protected]" link="http://penguinlovesmusic.com" maxTarget="7.5+" minTarget="7.0a" sha="295a4d8e324a664fe5abd766e66ec85d371477b6" url="http://penguinlovesmusic.de/wp-content/uploads/2009/08/iPeng054.zip" version="0.5.4">
<desc lang="EN">A Skin optimized for iPhone and iPod touch. Not intended to replace any main skin for PC/MAC. See manual at http://penguinlovesmusic.com</desc>
<title lang="EN">iPeng</title>
</plugin>
<plugin name="PlaylistMan" category="playlists" creator="Philip Meyer" email="[email protected]" installations="1858" link="http://penguinlovesmusic.de/wp-content/uploads/beta/pmplugins/PlaylistManPlugin.htm" maxTarget="*" minTarget="7.4" sha="115b579739089deff915e7e77898ec235e88b180" url="http://penguinlovesmusic.de/wp-content/uploads/beta/pmplugins/PlaylistMan6.1.zip" version="6.1">
<desc lang="EN">Provides functionality to add songs or albums to any chosen playlist.</desc>
<title lang="EN">Playlist Manager</title>
</plugin>
<plugin name="DynamicMix" category="playlists" creator="Philip Meyer" email="[email protected]" installations="515" link="http://penguinlovesmusic.de/wp-content/uploads/beta/pmplugins/DynamicMixPlugin.htm" maxTarget="*" minTarget="7.4" sha="bf6aae9ee1824b5c0106afa64a0be205efb9759c" url="http://penguinlovesmusic.de/wp-content/uploads/beta/pmplugins/DynamicMix1.3.zip" version="1.3">
<desc lang="EN">Extension for Dynamic Playlist, using MusicIP to produce mixes.</desc>
<title lang="EN">Dynamic Mix</title>
</plugin>
<plugin name="FilesViewer" category="information" creator="Philip Meyer" email="[email protected]" installations="254" link="http://penguinlovesmusic.de/wp-content/uploads/beta/pmplugins/FilesViewerPlugin.htm" maxTarget="*" minTarget="7.0a" sha="e9e54f2726cc7690ac4cd7eb214da55783fe1285" url="http://penguinlovesmusic.de/wp-content/uploads/beta/pmplugins/FilesViewer1.1.zip" version="1.1">
<desc lang="EN">Provides capability to view text files on a SqueezeBox Classic player.</desc>
<title lang="EN">Files Viewer</title>
</plugin>
<plugin name="SongFileViewer" category="information" creator="Philip Meyer" email="[email protected]" installations="200" link="http://penguinlovesmusic.de/wp-content/uploads/beta/pmplugins/SongFileViewerPlugin.htm" maxTarget="*" minTarget="7.0a" sha="fac351ddf1d90b2c438589a6dd58d5a1bd138c5f" url="http://penguinlovesmusic.de/wp-content/uploads/beta/pmplugins/SongFileViewer1.3.zip" version="1.3">
<title lang="EN">Files Viewer</title>
</plugin>
<plugin name="PhilsLibraries" category="scanning" creator="Philip Meyer" email="[email protected]" installations="105" link="" maxTarget="*" minTarget="7.9.0" sha="6b0bf3fb5c9c89b50f62c6bac650326aea427eb5" url="http://penguinlovesmusic.de/wp-content/uploads/beta/pmplugins/PhilsLibraries0.1.zip" version="0.1">
<desc lang="EN">Creates new libraries for "Not Rated" and "Rated High", dependent on Erlands TrackStat plugin</desc>
<title lang="EN">Phil's Libraries</title>
</plugin>
<plugin name="RadioFrance" category="radio" creator="Paul Webster" icon="http://dabdig.co.uk/slimserver-rep/images/radiofrance_svg.png" installations="1627" link="https://forums.lyrion.org/forum/user-forums/fran-ais/103535-annonce-plugin-pour-radio-france-fip-france-musique-et-mouv?p=1287025#post1287025" maxTarget="*" minTarget="7.5" sha="2b0089fb265d21f6a07b03e8f4fa41036f706acb" url="http://www.dabdig.co.uk/slimserver-rep/RadioFrance-0.4.17.zip" version="0.4.17">
<changes lang="EN">
- For "ici" stations show programme specific icon
- For "ici" stations try to show song information
- For La Musique d'Inter - song metadata URL changed
</changes>
<changes lang="FR">
- Pour les stations "ici", afficher l'icône spécifique au programme
- Pour les stations "ici", essayez d'afficher les informations sur la chanson
- Pour La Musique d'Inter - URL des métadonnées de la chanson modifiée
</changes>
<desc lang="EN">Radio France programme and track information plus on demand replay</desc>
<desc lang="FR">Radio France - info sur le programme et morceau de musique, ainsi que la lecture à la demande</desc>
<title lang="EN">Radio France</title>
</plugin>
<plugin name="CBCCanadaFrancais" category="radio" creator="Paul Webster" installations="261" link="https://forums.lyrion.org/forum/user-forums/3rd-party-software/108893-announce-song-info-plugin-for-cbc-radio-canada-english-and-french-services#post108893" maxTarget="*" minTarget="7.5" sha="96837c17b8b5f3f5f9ac1572b648e096335e1088" url="http://www.dabdig.co.uk/slimserver-rep/CBCCanadaFrancais-0.0.5.zip" version="0.0.5">
<changes lang="EN">
- Match the HLS stream URLs
</changes>
<changes lang="FR">
- Faire correspondre les URL de flux HLS
</changes>
<desc lang="EN">CBC Radio-Canada Français programme and track information
</desc>
<desc lang="FR">CBC Radio-Canada Français - info sur le programme et morceau de musique</desc>
<title lang="EN">CBC Radio-Canada Français</title>
</plugin>
<plugin name="PlanetRadio" category="radio" creator="Paul Webster" icon="http://dabdig.co.uk/slimserver-rep/images/planetradio_svg.png" installations="603" link="https://forums.lyrion.org/forum/user-forums/3rd-party-software/111006-announce-planet-radio-bauer-media-plugin-planetrock-absolute-kiss-scala#post111006" maxTarget="*" minTarget="7.5" sha="c2177451f1d42871f39118c0c181a69ecea1d34a" url="http://www.dabdig.co.uk/slimserver-rep/PlanetRadio-0.0.26.zip" version="0.0.26">
<changes lang="EN">
- Change URL to get song metadata as previous has become unreliable from broadcaster
- Try to use additional source for metadata but can lead to data confusion
</changes>
<desc lang="EN">Programme, track and podcast information for Planet Radio / Rayo / Bauer Media</desc>
<title lang="EN">Planet Radio</title>
</plugin>
<plugin name="RadioNowPlaying" category="radio" creator="Paul Webster" icon="http://dabdig.co.uk/slimserver-rep/images/RadioNowPlaying_svg.png" installations="4473" link="https://forums.lyrion.org/forum/user-forums/3rd-party-software/111952-announce-radio-now-playing-plugin?view=thread" maxTarget="*" minTarget="7.5" sha="b9e6d7372d731504319e9e16cfb1a7cbdc5be4fb" url="http://www.dabdig.co.uk/slimserver-rep/RadioNowPlaying-0.0.47.zip" version="0.0.47">
<changes lang="EN">
- Add 4EverFloyd - artist and title already present, augment with CoverSearch
- Add ALR Jazz Radio - artist and title already present, augment with CoverSearch
- Add CKUA - Alberta (ca) - artist, title, album and CoverSearch - programme title (sometimes) - their track changes were about 40 seconds ahead of the audio while testing (same on their web site)
- Add Celtic Radio - artist and title already present, augment with CoverSearch - 8 stations
- Add Christmas FM - artist and title already present, augment with CoverSearch - 3 stations
- Add Frisk Radio (uk) - artist, title, duration and CoverSearch - 5 stations
- Add MPB (ie) - artist, title and CoverSearch - programme name for Radio 1 (unless "nonstop") - 5 stations.
- Add Mix 95.1 - Chambersburg, PA - artist, title and CoverSearch - appears to be geolocked to USA
- Add Nordic Lodge Radio - artist and title already present (but reversed so fixes that), augment with CoverSearch
- Add Ostseewelle HIT-RADIO (de) - artist, title and cover art - 22 stations
- Add Planet Ambi - artist and title already present, augment with CoverSearch - 2 stations
- Add Polskie Radio (pl) - programme name, description, duration and sometimes icon - might occasionally see artist and title with CoverSearch - EXPERIMENTAL - 9 stations for now and only HLS streams
- Add Radio G! - programme name, synopsis, icon and sometimes artst, title and CoverSearch - includes flac - convoluted parsing of their web page so could break easily
- Add Radio Pulsar (fr) - artist, title plus CoverSearch (because their art URL is speculative), plus sometimes, album, year, duration - sometimes programme name and icon
- Add Radio Vaticana - artist, title, duration, CoverSearch - programme (service) - different language streams, added 4 for now de,en,fr,it
- Add Radyo Modyan (tr) - artist and title already present, augment with CoverSearch - programme title and duration
- Add Rastapuls - artist and title already present, augment with CoverSearch
- Add Secret Rooftop Sessions - artist and title already present, augment with CoverSearch
- Add Sunshine Live (de) - artist, title, duration and CoverSearch - 27 stations
- Add The Christmas Station - artist, title cover art
- Add Virgin Radio (fr) - artist and title already present, add their cover art - 15 stations
- For 2MBS Fine Music Sydney (au) - add composer
- For Açık Radyo (tr) ... change to Apaçık Radyo (tr)
- For BRPR - Ashville, NC - slight change to matching of stream URLs
- For Dandelion Radio - background stream URL changed
- For Dhectar (fr) - added Dhectar Pop (flac) - but no song info available
- For KCRW - Santa Monica, CA - add higher resolution streams - thanks @stig-nygaard
- For La Urban (es) - some stream URLs changed and also metadata source
- For Ouest-France Groupe (fr) - streaming provider changed (including for Clazz)
- For RTL (be) - add Contact - Ostbelgien NOW - artist, title and CoverSearch
- For Radiomeuh - metadata URL changed
- For Regenbogen (de) - Update station list - now 36 was 27
- For Regenbogen 2 - becomes Rock FM (de) - now with 16 stations - their timings for tracks are still variable
- For SWR (de) - SWR Kultur is new name for SWR2
- For Somehow Jazz - metadata source changed
- For SuperStereo Chile - format of track details changed and now includes duration so use it - Added station SuperStereo Four+ and can see from their data that a Three+ is on the way so added that as well but will not work until they launch
- For Ultimix (fr) - now has 7 stations
- For VRT (be) - broadcaster metadata prerequisites changed - also added programme subtitle (presenter name) and changed broadcaster name to "VRT (be)" from "vrt.be"
- For Virginia Music - logo location changed
- For W Radio (co) - metadata (only programme info) API changed again
- For WFMT - Chicago, IL - use different metadata URL to avoid occasional 403/Forbidden - include local logo because remote one not always displayed properly - modify metadata fields so that more programme information is available
- For YLE (fi) - Metadata API key changed - Puha station closed down
- For YourClassical - metadata source changed
- For Zappa Stream - looks like track duration is now optional in their song metadata so adapt regex
- For beeRadio (nl) - flac is back on the main channel and there is a new Xmas stream
- Stations off-air - Chante Zouk
- Logo changed - PulsRadio (fr), Sky Legend (fr), TrancePulse (ie)
- Add ability for RNP to act as track details provider for WiiM streaming into LMS - thanks to @d6jg for testing
- Add translations - Danish tak @cfuttrup, German thanks Google Translate
- Use a different timezone lookup API - timeapi.io
- Provide additional logging when CloudFlare is blocking access to metadata source
- Try to force insecure HTTPS if trying to get metadata from IP address rather than hostname (needs LMS 9.0 to have an effect)
</changes>
<desc lang="EN">Programme and track information including cover art for over 5800 radio stations</desc>
<desc lang="FR">Titre, pochette et, occasionnellement, informations sur le programme pour plus de 5800 stations de radio</desc>
<desc lang="DE">Titel, Cover und gelegentlich Programm-Informationen für mehr als 5800 Radiosender</desc>
<desc lang="DA">Titler, forsider og lejlighedsvis programinformation for mere end 5800 radiostationer</desc>
<title lang="EN">Radio Now Playing</title>
</plugin>
<plugin name="Spottyi86pcsolarisBin" category="misc" creator="Reiner Paulus" email="[email protected]" link="" maxTarget="*" minTarget="7.7" sha="3bfe33fd9c347a3146a0aa586d70fcf05904925b" target="unix" url="http://www.hashsum.org/LMS/Spottyi86pcsolarisBin-1.3.0.zip" version="1.3.0">
<desc lang="EN">Spotty Helper Application for Solaris/Illumos. This plug-in requires the Spotty plugin.</desc>
<title lang="EN">Spotty Helper Application for Solaris/Illumos</title>
</plugin>
<plugin name="RadioFeedsSBS" category="radio" creator="The AlienBBC Team and Vincent Lo" installations="849" link="http://www.radiofeeds.co.uk/squeeze/" maxTarget="*" minTarget="7.3" sha="fc5974e3ac3f77c388393772ce6440d6dbd8c83a" url="http://www.radiofeeds.co.uk/mypicks/RadioFeedsSBS_1_0_3.zip" version="1.03">
<changes lang="EN">Plugin icon now shows for more smartphone control apps</changes>
<desc lang="EN">Access RadioFeeds UK and Ireland on your Squeezebox including AAC+ and HLS streams (requires PlayHLS). We are the internet's most up-to-date directory of live streams for UK and Irish radio stations. Please register for a username before using at http://www.radiofeeds.co.uk/squeeze</desc>
<title lang="EN">RadioFeeds UK and Ireland</title>
</plugin>
<plugin name="SimpleLibraryViews" category="scanning" creator="Andy Hawkins" email="[email protected]" installations="312" link="https://github.com/adhawkins/SimpleLibraryViews" maxTarget="*" minTarget="7.9.0" sha="c25d28d00d38bc9490664d80198c367b2d04d5f6" url="http://adhawkins.github.io/SimpleLibraryViews/SimpleLibraryViews-1.1.0.zip" version="1.1.0">
<desc lang="EN">Plugin to easily generate library views.</desc>
<title lang="EN">Simple Library Views</title>
</plugin>
<plugin name="Wefunk" category="radio" creator="Christian Herzog" email="[email protected]" installations="468" link="http://daduke.org/linux/lmswefunk.html" maxTarget="*" minTarget="7.6" sha="150843f6ec3414d9d7fab27c6a2764ef0f4016e6" url="http://daduke.org/dl/lms-wefunk/wefunk-0.3.3.zip" version="0.3.3">
<changes lang="EN">fix playback for shows > 999</changes>
<desc lang="EN">Browse and play shows from wefunkradio.com</desc>
<title lang="EN">Wefunk Radio</title>
</plugin>
<plugin name="SqueezeCloud" category="musicservices" creator="Robert Siebert, Daniel Vijge, Robert Gibbon, David Blackman, KwarkLabs" icon="https://raw.githubusercontent.com/danielvijge/SqueezeCloud/master/HTML/EN/plugins/SqueezeCloud/html/images/icon.png" installations="1865" link="https://github.com/danielvijge/SqueezeCloud" maxTarget="*" minTarget="7.5" sha="587b2383a90706ad08ba2bfa5767d73696d0e718" url="https://github.com/danielvijge/SqueezeCloud/releases/download/0.16/SqueezeCloud-0.16.zip" version="0.16">
<desc lang="EN">Play music from SoundCloud</desc>
<title lang="EN">SoundCloud</title>
</plugin>
<plugin name="SomaFM" category="radio" creator="Daniel Vijge" icon="https://raw.githubusercontent.com/danielvijge/lms-somafm/main/HTML/EN/plugins/SomaFM/SomaFM_svg.png" installations="992" link="https://github.com/danielvijge/lms-somafm" maxTarget="*" minTarget="7.9" sha="23f956d587cfba0dd653427d3391529c54773ffa" url="https://github.com/danielvijge/lms-somafm/releases/download/0.3/somafm-0.3.zip" version="0.3">
<desc lang="EN">Play radio channels from SomaFM</desc>
<title lang="EN">SomaFM</title>
</plugin>
<plugin name="MixCloud" category="musicservices" creator="Christian Mueller, Daniel Vijge, KwarkLabs" icon="https://raw.githubusercontent.com/danielvijge/lms_mixcloud/master/HTML/EN/plugins/MixCloud/html/images/icon.png" installations="928" link="https://github.com/danielvijge/lms_mixcloud" maxTarget="*" minTarget="8.2" sha="60888cedfc906a4273531902a8e103c69167e0eb" target="unix" url="https://github.com/danielvijge/lms_mixcloud/releases/download/0.11/lms_mixcloud-0.11-linux.zip" version="0.11">
<desc lang="EN">Play music from Mixcloud</desc>
<title lang="EN">Mixcloud</title>
</plugin>
<plugin name="MixCloud" category="musicservices" creator="Christian Mueller, Daniel Vijge, KwarkLabs" icon="https://raw.githubusercontent.com/danielvijge/lms_mixcloud/master/HTML/EN/plugins/MixCloud/html/images/icon.png" installations="928" link="https://github.com/danielvijge/lms_mixcloud" maxTarget="*" minTarget="8.2" sha="0056c1725e14f98c16cbd9b069f8a11819e344e1" target="mac" url="https://github.com/danielvijge/lms_mixcloud/releases/download/0.11/lms_mixcloud-0.11-windows.zip" version="0.11">
<desc lang="EN">Play music from Mixcloud</desc>
<title lang="EN">Mixcloud</title>
</plugin>
<plugin name="MixCloud" category="musicservices" creator="Christian Mueller, Daniel Vijge, KwarkLabs" icon="https://raw.githubusercontent.com/danielvijge/lms_mixcloud/master/HTML/EN/plugins/MixCloud/html/images/icon.png" installations="928" link="https://github.com/danielvijge/lms_mixcloud" maxTarget="*" minTarget="8.2" sha="b225787042e239e42cdc83da6e300b77e1829834" target="win" url="https://github.com/danielvijge/lms_mixcloud/releases/download/0.11/lms_mixcloud-0.11-macos.zip" version="0.11">
<desc lang="EN">Play music from Mixcloud</desc>
<title lang="EN">Mixcloud</title>
</plugin>
<plugin name="InformationScreen" category="information" creator="Erland Isaksson" email="[email protected]" link="http://erland.isaksson.info" maxTarget="7.*" minTarget="7.4.0" sha="38529cd0d3675a0faf97b31cbd16052ecfd2df36" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-informationscreen&filename=InformationScreen-1.1.3735.zip" version="1.1.3735">
<changes lang="EN">- Corrected compatibility with 7.7.1 cache handling
</changes>
<desc lang="EN">Configurable support plugin for Information Screen screen saver that makes it possible to switch between different kind of information. (Controller, Radio, Touch, SqueezePlay)</desc>
<title lang="EN">Information Screen</title>
</plugin>
<plugin name="AutoRepo" category="tools" creator="Erland Isaksson" email="[email protected]" link="http://wiki.lyrion.org/index.php/Auto_Repositories_plugin" maxTarget="7.3.*" minTarget="7.3.0" sha="365ce0aed62bd73f6f6dc5a717fd30338c292311" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-autorepo&filename=AutoRepo-1.0.1.zip" version="1.0.1">
<desc lang="EN">Automatically makes all third party plugin repositories that are listed on the Logitech wiki site available through Extension Downloader. The plugin doesn't actually read the wiki page directly since that would open up a security hole, instead it reads the repositories from a list available on the lms-autorepo GitHub project. New repostories added to the wiki page will be added after they have been checked so they provide serious plugins and not spam urls. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Auto Repositories</title>
</plugin>
<plugin name="TrackStat" category="information" creator="Erland Isaksson" email="[email protected]" installations="240" link="http://wiki.lyrion.org/index.php/TrackStat_plugin" maxTarget="7.3.*" minTarget="7.1.0" sha="d1330f4c5747ed65bc2c1e86d97431d7fe2165ab" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-trackstat&filename=TrackStat-2.8.zip" version="2.8">
<changes lang="EN">- Added support for SqueezeCenter 7.4
- Corrected so internet meta data is shown correctly on Now Playing screen if one of the TRACKSTAT title formats is used
- Added possibility to request parameters from top rated albums and most played album playlist templates for SQL Playlist
- Added predefiend SQL Playlist playlists for playing top rated or most played albums in a genre, artist or year
- Improved logic releated to finding moved tracks on multi disk albums when a TrackStat backup is restored</changes>
<desc lang="EN">Store statistics such as rating, last played time and play counts so it survives a rescan and allows to to browse your library based on the statistic information. You can set the ratings via the Squeezebox player, CLI, Squeezebox Controller or web interface, ratings and statistic data can also be imported/exported from/to iTunes, Amarok and MusicIP Mixer. It also supports Dynamic Playlist plugin by adding dynamic playlists for all its statistics. Please note that TrackStat needs a bit more resources than small plugins and might also slow down startup of SqueezeCenter a bit, so you might get problems if you are running SqueezeCenter on slow hardware. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">TrackStat</title>
</plugin>
<plugin name="TrackStat" category="information" creator="Erland Isaksson" email="[email protected]" installations="240" link="http://wiki.lyrion.org/index.php/TrackStat_plugin" maxTarget="7.5.*" minTarget="7.4.0" sha="436fcda65d80ce98c3234978b07cc9c24b429aaa" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-trackstat&filename=TrackStat-2.11.3760.zip" version="2.11.3760">
<changes lang="EN">- Corrected issue where playlist templates that requested a parameter didn't show alpha bar properly on SqueezePlay devices.
</changes>
<desc lang="EN">Store statistics such as rating, last played time and play counts so it survives a rescan and allows to to browse your library based on the statistic information. You can set the ratings via the Squeezebox player, CLI, Squeezebox Controller or web interface, ratings and statistic data can also be imported/exported from/to iTunes, Amarok and MusicIP Mixer. It also supports Dynamic Playlist plugin by adding dynamic playlists for all its statistics. Please note that TrackStat needs a bit more resources than small plugins and might also slow down startup of SqueezeCenter a bit, so you might get problems if you are running SqueezeCenter on slow hardware. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">TrackStat</title>
</plugin>
<plugin name="TrackStat" category="information" creator="Erland Isaksson" email="[email protected]" installations="240" link="http://wiki.lyrion.org/index.php/TrackStat_plugin" maxTarget="7.*" minTarget="7.6.0" sha="4ea036c7853d540c01589be8de7755b515ab42e9" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-trackstat&filename=TrackStat-3.3.602.zip" version="3.3.602">
<changes lang="EN">- Available for free, no longer requires a license
</changes>
<desc lang="EN">Store statistics such as rating, last played time and play counts so it survives a rescan and allows to to browse your library based on the statistic information. You can set the ratings via the Squeezebox player, CLI, Squeezebox Controller or web interface, ratings and statistic data can also be imported/exported from/to iTunes, Amarok and MusicIP Mixer. It also supports Dynamic Playlist plugin by adding dynamic playlists for all its statistics. Please note that TrackStat needs a bit more resources than small plugins and might also slow down startup of SqueezeCenter a bit, so you might get problems if you are running SqueezeCenter on slow hardware. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">TrackStat</title>
</plugin>
<plugin name="CustomBrowse" category="scanning" creator="Erland Isaksson" email="[email protected]" installations="183" link="http://wiki.lyrion.org/index.php/Custom_Browse_plugin" maxTarget="7.3.*" minTarget="7.1.0" sha="7c67dc318c68d4b925d4d4fb5457297edc9d9e75" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-custombrowse&filename=CustomBrowse-2.8.zip" version="2.8">
<changes lang="EN">- Added support for filtering "Random Albums" menu by genre
- Corrected so accelerated scrolling works in Tags menu on the Controller
- Corrected so track details menu works on the Controller if latest SqueezeCenter 7.4 is used
- Added support for showing duplicate text rows in album lists on the Controller (for example showing artists for an album)
- Corrected so "Play all" items isn't repeated and doesn't overwrite real items in long lists on Controller
- Added support for showing album arts in Tags menu
- Corrected some small bugs</changes>
<desc lang="EN">Makes it possible to customize the structure, contents and sorting of the browse menus on the Squeezebox. A new browse menu is configured as a xml file containing the structure and SQL-statements. Please note that Custom Browse needs a bit more resources than small plugins and might also slow down startup of SqueezeCenter a bit, so you might get problems if you are running SqueezeCenter on slow hardware. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Custom Browse</title>
</plugin>
<plugin name="CustomBrowse" category="scanning" creator="Erland Isaksson" email="[email protected]" installations="183" link="http://wiki.lyrion.org/index.php/Custom_Browse_plugin" maxTarget="7.*" minTarget="7.4.0" sha="209f65c1fac52a5abac98bd17b04c54c3132f4dc" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-custombrowse&filename=CustomBrowse-2.15.676.zip" version="2.15.676">
<changes lang="EN">- Available for free, no longer requires a license
- Compatible with LMS 7.9
</changes>
<desc lang="EN">Makes it possible to customize the structure, contents and sorting of the browse menus on the Squeezebox. A new browse menu is configured as a xml file containing the structure and SQL-statements. Please note that Custom Browse needs a bit more resources than small plugins and might also slow down startup of SqueezeCenter a bit, so you might get problems if you are running SqueezeCenter on slow hardware. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Custom Browse</title>
</plugin>
<plugin name="CustomScan" category="scanning" creator="Erland Isaksson" email="[email protected]" installations="112" link="http://wiki.lyrion.org/index.php/Custom_Scan_plugin" maxTarget="7.3.*" minTarget="7.1.0" sha="60e51583f832ebe6515f5481363b97cb51153785" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-customscan&filename=CustomScan-2.6.zip" version="2.6">
<changes lang="EN">- Added support for numeric sorted tags in Dynamic Tags menu
- Added support for completely disable scanning modules to avoid refresh operation if only import/export modules are used
- Added support for virtual tags using regular expressions in Custom Tag scanning module (Tag mapping parameter)
- Added support for selecting to sort by number instead alphabetically in some custom tag menus
- Added support for showing duplicate text lines in album lists on Controller (for examples showing the artist for an album), requires Custom Browse 2.8 or later.
- Added support for showing album arts in Dyanmic Tags menu, requires Custom Browse 2.8 or later</changes>
<desc lang="EN">Make it easier to develop modules that retreive additional information about artist, album, tracks from somehere. If used together with Custom Browse plugin, the included scanning modules for LastFM and custom tags makes it possible to browse music by LastFM tags or by a custom tag. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Custom Scan</title>
</plugin>
<plugin name="CustomScan" category="scanning" creator="Erland Isaksson" email="[email protected]" installations="112" link="http://wiki.lyrion.org/index.php/Custom_Scan_plugin" maxTarget="7.*" minTarget="7.4.0" sha="9eaca05d640f42d5843f54a8280c8e1a5e85eac6" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-customscan&filename=CustomScan-2.10.51.zip" version="2.10.51">
<changes lang="EN">- Available for free, no longer requires a license
- Compatible with LMS 7.9
</changes>
<desc lang="EN">Make it easier to develop modules that retreive additional information about artist, album, tracks from somehere. If used together with Custom Browse plugin, the included scanning modules for LastFM and custom tags makes it possible to browse music by LastFM tags or by a custom tag. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Custom Scan</title>
</plugin>
<plugin name="CustomSkip" category="playlists" creator="Erland Isaksson" email="[email protected]" installations="65" link="http://wiki.lyrion.org/index.php/Custom_Skip_plugin" maxTarget="7.3.*" minTarget="7.1.0" sha="bebd6cad35a0e74ece1c3c9bf4040800bcad75e8" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-customskip&filename=CustomSkip-2.3.5.zip" version="2.3.5">
<changes lang="EN">- Corrected so only local tracks can be skipped</changes>
<desc lang="EN">Makes it possible to skip tracks automatically in dynamic playlists. Makes it possible to skip tracks with low ratings, zapped tracks, short tracks and much more. (Boom, Transporter, Classic, Receiver, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Custom Skip</title>
</plugin>
<plugin name="CustomSkip" category="playlists" creator="Erland Isaksson" email="[email protected]" installations="65" link="http://wiki.lyrion.org/index.php/Custom_Skip_plugin" maxTarget="7.*" minTarget="7.4.0" sha="d78f922da552d56e7a0f04ae603de01b76e68d18" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-customskip&filename=CustomSkip-2.5.83.zip" version="2.5.83">
<changes lang="EN">- Available for free, no longer requires a license
</changes>
<desc lang="EN">Makes it possible to skip tracks automatically in dynamic playlists. Makes it possible to skip tracks with low ratings, zapped tracks, short tracks and much more. (Boom, Transporter, Classic, Receiver, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Custom Skip</title>
</plugin>
<plugin name="DynamicPlayList" category="playlists" creator="Erland Isaksson" email="[email protected]" installations="229" link="http://wiki.lyrion.org/index.php/Dynamic_Playlist_plugin" maxTarget="7.3.*" minTarget="7.2.0" sha="087471a37a44bfe6b2542b00ec4929581f8679ff" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-dynamicplaylist&filename=DynamicPlayList-2.7.zip" version="2.7">
<changes lang="EN">- Added support for SqueezeCenter 7.4
- Added support for custom tag based Dynamic Playlist mixers</changes>
<desc lang="EN">Make it easy to create dynamic playlists for your own plugin. You simply need to implement two methods in your own plugin which returns the playlists and the next tracks. Currently at least supported by SQL Playlist plugin, TrackStat plugin, SugarCube plugin, iTunes Party Shuffle plugins and builtin support for saved static playlists. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Dynamic Playlist</title>
</plugin>
<plugin name="DynamicPlayList" category="playlists" creator="Erland Isaksson" email="[email protected]" installations="229" link="http://wiki.lyrion.org/index.php/Dynamic_Playlist_plugin" maxTarget="7.*" minTarget="7.4.0" sha="0c8b9a0728a09dca35efe51e87a5a8f773236545" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-dynamicplaylist&filename=DynamicPlayList-2.10.247.zip" version="2.10.247">
<changes lang="EN">- Available for free, no longer requires a license
</changes>
<desc lang="EN">Make it easy to create dynamic playlists for your own plugin. You simply need to implement two methods in your own plugin which returns the playlists and the next tracks. Currently at least supported by SQL Playlist plugin, TrackStat plugin, SugarCube plugin, iTunes Party Shuffle plugins and builtin support for saved static playlists. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Dynamic Playlist</title>
</plugin>
<plugin name="DatabaseQuery" category="information" creator="Erland Isaksson" email="[email protected]" installations="233" link="http://wiki.lyrion.org/index.php/Database_Query_plugin" maxTarget="7.3.*" minTarget="7.1.0" sha="ef05d5f00298cf4c1a1e1426f9176567e12034f9" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-databasequery&filename=DatabaseQuery-2.1.2.zip" version="2.1.2">
<changes lang="EN">- Added support for SqueezeCenter 7.4
- Corrected some small bugs</changes>
<desc lang="EN">Makes it possible to define and execute custom SQL statements towards SqueezeCenter database. The result can be displayed in the browser or exported as CSV or XML files. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Database Query</title>
</plugin>
<plugin name="DatabaseQuery" category="information" creator="Erland Isaksson" email="[email protected]" installations="233" link="http://wiki.lyrion.org/index.php/Database_Query_plugin" maxTarget="7.*" minTarget="7.4.0" sha="0e7848f3a6e25dc41e1ab38e17fdb5837641afad" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-databasequery&filename=DatabaseQuery-2.4.3923.zip" version="2.4.3923">
<changes lang="EN">- Corrected so path function is re-created in SQLite after a full rescan
</changes>
<desc lang="EN">Makes it possible to define and execute custom SQL statements towards SqueezeCenter database. The result can be displayed in the browser or exported as CSV or XML files. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Database Query</title>
</plugin>
<plugin name="MultiLibrary" category="scanning" creator="Erland Isaksson" email="[email protected]" installations="113" link="http://wiki.lyrion.org/index.php/Multi_Library_plugin" maxTarget="7.3.*" minTarget="7.1.0" sha="4c18394463689af4a2ac9c68f77eb471274dc7ae" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-multilibrary&filename=MultiLibrary-2.3.1.zip" version="2.3.1">
<changes lang="EN">- Added support for SqueezeCenter 7.4
- Corrected so internet meta data is shown correctly on Now Playing screen if MULTILIBRARIES title format is used
- Corrected some small bugs</changes>
<desc lang="EN">Makes it possible to divide your SqueezeCenter library into different sub libraries, requires Custom Browse plugin to be able to browse the sub libraries. Please note that Multi Library needs a bit more resources than small plugins and might also slow down startup of SqueezeCenter a bit, so you might get problems if you are running SqueezeCenter on slow hardware. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Multi Library</title>
</plugin>
<plugin name="MultiLibrary" category="scanning" creator="Erland Isaksson" email="[email protected]" installations="113" link="http://wiki.lyrion.org/index.php/Multi_Library_plugin" maxTarget="7.*" minTarget="7.4.0" sha="d3ba9b0c40ca7893719939a3703425736759ab2d" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-multilibrary&filename=MultiLibrary-2.8.168.zip" version="2.8.168">
<changes lang="EN">- Available for free, no longer requires a license
</changes>
<desc lang="EN">Makes it possible to divide your SqueezeCenter library into different sub libraries, requires Custom Browse plugin to be able to browse the sub libraries. Please note that Multi Library needs a bit more resources than small plugins and might also slow down startup of SqueezeCenter a bit, so you might get problems if you are running SqueezeCenter on slow hardware. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Multi Library</title>
</plugin>
<plugin name="SQLPlayList" category="playlists" creator="Erland Isaksson" email="[email protected]" installations="126" link="http://wiki.lyrion.org/index.php/SQL_Playlist_plugin" maxTarget="7.3.*" minTarget="7.1.0" sha="78736678bb157d1d8b15a2c080173e845f2f2a55" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-sqlplaylist&filename=SQLPlayList-2.4.zip" version="2.4">
<changes lang="EN">- Added support for SqueezeCenter 7.4
- Added support for requesting parameters from random albums playlist templates
- Added predefined playlists for playing a random album in a genre, decade, artist, playlist or year
- Corrected some small bugs</changes>
<desc lang="EN">Creates smart playlists based on SQL queries, its possible to create playlists similar to iTunes smart playlists if used together with ratings set with the TrackStat plugin. It requires Dynamic Playlist plugin. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">SQL Playlist</title>
</plugin>
<plugin name="SQLPlayList" category="playlists" creator="Erland Isaksson" email="[email protected]" installations="126" link="http://wiki.lyrion.org/index.php/SQL_Playlist_plugin" maxTarget="7.*" minTarget="7.4.0" sha="33b402200260f4111d37235484e5d54fdbec7ae8" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-sqlplaylist&filename=SQLPlayList-2.6.272.zip" version="2.6.272">
<changes lang="EN">- Available for free, no longer requires a license
- Compatible with LMS 7.9
</changes>
<desc lang="EN">Creates smart playlists based on SQL queries, its possible to create playlists similar to iTunes smart playlists if used together with ratings set with the TrackStat plugin. It requires Dynamic Playlist plugin. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">SQL Playlist</title>
</plugin>
<plugin name="TitleSwitcher" category="information" creator="Erland Isaksson" email="[email protected]" installations="146" link="http://wiki.lyrion.org/index.php/Title_Switcher_plugin" maxTarget="7.3.*" minTarget="7.1.0" sha="d25140b9bf9038bea7c6e4728e84f6d81f5c0b59" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-titleswitcher&filename=TitleSwitcher-1.1.3.zip" version="1.1.3">
<changes lang="EN">- Corrected handling on SB1 devices with long texts</changes>
<desc lang="EN">Makes it possible to get text information on the player screen that switches between different kind of information, for example showing artist 5 seconds and album name 5 seconds. The plugin requires that the Music Information Screen(MusicInfoSCR) plugin is installed. (Boom, Transporter, Classic, SoftSqueeze)</desc>
<title lang="EN">Title Switcher</title>
</plugin>
<plugin name="TitleSwitcher" category="information" creator="Erland Isaksson" email="[email protected]" installations="146" link="http://wiki.lyrion.org/index.php/Title_Switcher_plugin" maxTarget="*" minTarget="7.4.0" sha="b593f6fec7c033762eec50381361f7369c96ac35" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-titleswitcher&filename=TitleSwitcher-1.3.23.zip" version="1.3.23">
<changes lang="EN">- Available for free, no longer requires a license
</changes>
<desc lang="EN">Makes it possible to get text information on the player screen that switches between different kind of information, for example showing artist 5 seconds and album name 5 seconds. The plugin requires that the Music Information Screen(MusicInfoSCR) plugin is installed. (Boom, Transporter, Classic, SoftSqueeze)</desc>
<title lang="EN">Title Switcher</title>
</plugin>
<plugin name="TrackStatPlaylist" category="playlists" creator="Erland Isaksson" email="[email protected]" installations="27" link="http://wiki.lyrion.org/index.php/TrackStat_Playlist_plugin" maxTarget="7.3.*" minTarget="7.1.0" sha="d23167c3c3eb0388428e0484f4ecdfaeb3b13918" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-trackstatplaylist&filename=TrackStatPlaylist-1.0.1.zip" version="1.0.1">
<changes lang="EN">- Added support for SqueezeCenter 7.4</changes>
<desc lang="EN">Makes it possible to export the TrackStat statistics such as ratings and played tracks to static playlists. This is useful when you like to manually update ratings in for example J River Media Center based on a playlist that contains all 4 rated tracks. Please note that this plugin requires you to install both TrackStat and Custom Scan plugin. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">TrackStat Playlist</title>
</plugin>
<plugin name="TrackStatPlaylist" category="playlists" creator="Erland Isaksson" email="[email protected]" installations="27" link="http://wiki.lyrion.org/index.php/TrackStat_Playlist_plugin" maxTarget="7.*" minTarget="7.4.0" sha="752663c7fbf465b286c86d69e30b33ea340596e5" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-trackstatplaylist&filename=TrackStatPlaylist-1.1.zip" version="1.1">
<changes lang="EN">- Same version as 1.1pre1</changes>
<desc lang="EN">Makes it possible to export the TrackStat statistics such as ratings and played tracks to static playlists. This is useful when you like to manually update ratings in for example J River Media Center based on a playlist that contains all 4 rated tracks. Please note that this plugin requires you to install both TrackStat and Custom Scan plugin. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">TrackStat Playlist</title>
</plugin>
<plugin name="PlaylistGenerator" category="playlists" creator="Erland Isaksson" email="[email protected]" installations="48" link="http://wiki.lyrion.org/index.php/Playlist_Generator_plugin" maxTarget="7.3.*" minTarget="7.1.0" sha="7ec594c94709065f0adbf9bdf5cf4513519911db" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-playlistgenerator&filename=PlaylistGenerator-1.0.1.zip" version="1.0.1">
<changes lang="EN">- Added support for SqueezeCenter 7.4</changes>
<desc lang="EN">Makes it possible to generate static playlists based on information in SqueezeCenter database, such as ratings and played tracks. This is useful when you like to have a playlist as a .m3u file which you can export to other tools. This plugin works by itself but if you also install Custom Scan you will be able to re-generate all playlists automatically when you perform a rescan in SqueezeCenter. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Playlist Generator</title>
</plugin>
<plugin name="PlaylistGenerator" category="playlists" creator="Erland Isaksson" email="[email protected]" installations="48" link="http://wiki.lyrion.org/index.php/Playlist_Generator_plugin" maxTarget="7.*" minTarget="7.4.0" sha="26d0aeb1f77bf5e893ec7a535832eee0791db70b" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-playlistgenerator&filename=PlaylistGenerator-1.2.3739.zip" version="1.2.3739">
<changes lang="EN">- Corrected compatibility with 7.7.1 cache handling
- Corrected deprecated warnings at server startup
</changes>
<desc lang="EN">Makes it possible to generate static playlists based on information in SqueezeCenter database, such as ratings and played tracks. This is useful when you like to have a playlist as a .m3u file which you can export to other tools. This plugin works by itself but if you also install Custom Scan you will be able to re-generate all playlists automatically when you perform a rescan in SqueezeCenter. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Playlist Generator</title>
</plugin>
<plugin name="CustomClockHelper" category="tools" creator="Erland Isaksson" email="[email protected]" installations="320" link="http://wiki.lyrion.org/index.php/Custom_Clock_applet" maxTarget="7.*" minTarget="7.4.0" sha="3f0d6ea666b5d37e85899411ea65784f94b0021c" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-customclockhelper&filename=CustomClockHelper-2.11.94.zip" version="2.11.94">
<changes lang="EN">- Available for free, no longer requires a license
</changes>
<desc lang="EN">This is a helper plugin for the Custom Clock screen saver applet, it makes it possible to create your own clock styles and modify the existing styles (Controller, Radio, Touch, SqueezePlay)</desc>
<title lang="EN">Custom Clock Helper</title>
</plugin>
<plugin name="SongInfo" category="information" creator="Erland Isaksson" email="[email protected]" installations="2806" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4.0" sha="2afec7be743af76d8ecb49184ba6b5c92895a015" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-songinfo&filename=SongInfo-1.1.3883.zip" version="1.1.3883">
<changes lang="EN">- Adjusted due to LastFM API change, only a single artist image is now supported
</changes>
<desc lang="EN">A plugin to make it possible to get various information about a song, can for example be used to get artist images from LastFM (Boom, Transporter, Classic, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Song Info</title>
</plugin>
<plugin name="SongLyrics" category="information" creator="Erland Isaksson" email="[email protected]" installations="2800" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4.0" sha="e95b571c9d4cdcbb93c0d3caddc395df4ec925b0" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-songlyrics&filename=SongLyrics-1.1.3856.zip" version="1.1.3856">
<changes lang="EN">- Musixmatch.com no longer supported due to license changes on their end
</changes>
<desc lang="EN">A plugin that shows lyrics from chartlyrics.com and musixmatch.com through the Song Info plugin. This plugin requires that the Song Info plugin also is installed. (Boom, Transporter, Classic, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Song Lyrics</title>
</plugin>
<plugin name="LicenseManagerPlugin" category="misc" creator="Erland Isaksson" email="[email protected]" installations="606" link="http://erland.isaksson.info" maxTarget="*" minTarget="7.4.0" sha="565bbd11d6f72fc0990b234c7e3f37d73a129eb5" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-licensemanagerplugin&filename=LicenseManagerPlugin-1.1.40.zip" version="1.1.40">
<changes lang="EN">- Changed due to Google shutting down Google Code
</changes>
<desc lang="EN">A plugin that's required for licensed plugins to work, it will give you an overview of licensed plugins available and their current licensing status and links to pay for them. (Boom, Transporter, Classic, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">License Manager</title>
</plugin>
<plugin name="HideMenus" category="tools" creator="Erland Isaksson" email="[email protected]" installations="48" link="http://wiki.lyrion.org/index.php/Hide_Menus_plugin" maxTarget="7.*" minTarget="7.6.0" sha="f665532d67476ce16455891bf62747ccb7fe4ffc" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-hidemenus&filename=HideMenus-1.0.3604.zip" version="1.0.3604">
<changes lang="EN">- Initial release
</changes>
<desc lang="EN">Makes it possible to hide standard browse menus, typically used together with Custom Browse to replace them with a customized version (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Hide Menus</title>
</plugin>
<plugin name="BBCSounds" category="radio" creator="ExpectingToFly" email="[email protected]" icon="https://expectingtofly.github.io/ExpectingToFly_LMS_Plugins_IO/BBCSoundsIcon_svg.png" installations="3151" link="https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin/wiki" maxTarget="*" minTarget="7.9" sha="13edbbe06a3f8d9bb8e22f32a4a4a064f00e47d1" url="https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin/releases/download/2.40.5/BBCSoundsPlugin_2_40_5.zip" version="2.40.5">
<changes lang="EN">NEW 2.40.5 Fix for 'collections' menu </changes>
<desc lang="EN">Complete BBC Sounds implementation as an LMS Plugin. BBC live radio, catch-up, music mixes and podcasts.</desc>
<title lang="EN">BBC Sounds</title>
</plugin>
<plugin name="VirginRadio" category="radio" creator="ExpectingToFly" email="[email protected]" installations="812" link="https://github.com/expectingtofly/LMS_Virgin_Radio_Plugin" maxTarget="*" minTarget="7.9" sha="5e0e14043087e081d0ea0d262e22e949dd6233ea" url="https://github.com/expectingtofly/LMS_Virgin_Radio_Plugin/releases/download/2.2.3/VirginRadioPlugin_2_2_3.zip" version="2.2.3">
<changes lang="EN">NEW 2.2.3 Increased Catch-Up days available to 7</changes>
<desc lang="EN">Virgin Radio (UK) Plugin. Access to live Virgin Radio stations and 7 day catch up listening.</desc>
<title lang="EN">Virgin Radio (UK)</title>
</plugin>
<plugin name="TimesRadio" category="radio" creator="ExpectingToFly" email="[email protected]" icon="https://expectingtofly.github.io/ExpectingToFly_LMS_Plugins_IO/TimesRadio_svg.png" installations="503" link="https://github.com/expectingtofly/LMS_TIMES_RADIO_PLUGIN" maxTarget="*" minTarget="7.9" sha="cbd0defe07ca988ad994ecac58fab2403d45cc9c" url="https://github.com/expectingtofly/LMS_TIMES_RADIO_PLUGIN/releases/download/2.3.0/TimesRadioPlugin_2_3_0.zip" version="2.3.0">
<changes lang="EN">NEW 2.3.0 FIX : Restore functionality after API changes</changes>
<desc lang="EN">Times Radio (UK) Live and 7 Day Catch Up with on air data and images.</desc>
<title lang="EN">Times Radio</title>
</plugin>
<plugin name="GlobalPlayerUK" category="radio" creator="ExpectingToFly" email="[email protected]" icon="https://expectingtofly.github.io/ExpectingToFly_LMS_Plugins_IO/GlobalPlayerUK_Plugin_svg.png" installations="1165" link="https://github.com/expectingtofly/LMS_GlobalPlayer_Plugin" maxTarget="*" minTarget="7.9" sha="89fe2ddd0ea85534a0c20c7979541d596646fd0b" url="https://github.com/expectingtofly/LMS_GlobalPlayer_Plugin/releases/download/2.7.1/GlobalPlayerUKPlugin_2_7_1.zip" version="2.7.1">
<changes lang="EN">NEW 2.7.1 Fixed programme transion pauses and corruption (At last !)</changes>
<desc lang="EN">Global Radio's UK Stations (Classic FM, Capital, Heart, LBC, Radio X etc) Live Radio (with pause and rewind), Catch-up, Live Playlists, Podcasts.</desc>
<title lang="EN">Global Player (UK)</title>
</plugin>
<plugin name="RadioFavourites" category="radio" creator="ExpectingToFly" icon="https://expectingtofly.github.io/ExpectingToFly_LMS_Plugins_IO/RadioFavourites_svg.png" installations="1100" link="https://github.com/expectingtofly/LMS_Radio_Favourites_Plugin" maxTarget="*" minTarget="7.9" sha="b60c8c2ea22123554c67a7d317ad87562eb2e479" url="https://github.com/expectingtofly/LMS_Radio_Favourites_Plugin/releases/download/1.2.0/RadioFavouritesPlugin_1_2_0.zip" version="1.2.0">
<changes lang="EN">New 1.2.0 Radio Favourites Editor in preferences; Folders as standard Favourites</changes>
<desc lang="EN">Radio Favourites - Manage your favourite radios stations. Select your station according to the current live programme.</desc>
<title lang="EN">Radio Favourites</title>
</plugin>
<plugin name="BMPFonts" category="hardware" creator="Daniel Frein" email="[email protected]" installations="159" link="https://forums.lyrion.org/forum/user-forums/general-discussion/111149-new-bitmap-fonts-for-transporter-and-sb2-sb3/" maxTarget="*" minTarget="7.0" sha="d3fa0bd48b4d014d88745bf62451887036a7e088" url="https://github.com/dfrein/lms-plugin-repository/raw/main/BMPFonts-1.0.zip" version="1.0">
<desc lang="EN">BMPFonts provides additional bitmap fonts for squeezeboxes with a VCD or OLED display (Transporter, SB2/3, Boom, squeezelite-esp32). The plugin consists of the fonts DINo, Neep, Spleen and Terminus. After installation of the plugin, the new fonts can be selected via the server settings for the specific device, in the display section.</desc>
<title lang="EN">BMPFonts Plugin</title>
</plugin>
<plugin name="ARDAudiothek" category="radio" creator="Max Zimmermann" email="[email protected]" installations="1520" link="https://github.com/mzedd/LMS-ARD-Audiothek-Plugin/" maxTarget="*" sha="7a1190b80d1aaf9eb908b1a8cccac59bd2400664" url="https://github.com/mzedd/LMS-ARD-Audiothek-Plugin/releases/download/latest/ARDAudiothek-1.3.2.zip" version="1.3.2">
<changes lang="EN">v1.3.2: Bugfixes and increased image resolution.</changes>
<desc lang="EN">Browse and listen to content of the ARD Audiothek.</desc>
<title lang="EN">ARD Audiothek</title>
</plugin>
<plugin name="Pyrrha" category="musicservices" creator="sspiff" installations="703" link="" maxTarget="*" minTarget="8.3.0" sha="2d2a0dea28735b0da984df9d9a2b472ed72e9c7c" url="https://github.com/sspiff/lms-plugin-pyrrha/releases/download/0.6.0/lms-plugin-Pyrrha-0.6.0.zip" version="0.6.0">
<desc lang="EN">Daughter of Pandora</desc>
<title lang="EN">Pyrrha</title>
</plugin>
<plugin name="PowerSave" category="tools" creator="Jason Holtzapple" email="[email protected]" installations="906" link="" maxTarget="*" minTarget="7.4" sha="4cf01f941dea1f79914ae1251ae0f9df6230a43c" url="http://jasonholtzapple.github.io/slimdevices/plugins/powersave/7.4.1/PowerSave-7.4.1.zip" version="7.4.1">
<desc lang="EN">Power off your squeezebox after a certain amount of time (idle or otherwise)</desc>
<title lang="EN">PowerSave</title>
</plugin>
<plugin name="DirectPlay" category="misc" creator="Jason Holtzapple" email="[email protected]" installations="375" link="" maxTarget="*" minTarget="7.0" sha="b3b27559c72d514729914189a99df78ffebd28e3" url="http://jasonholtzapple.github.io/slimdevices/plugins/DirectPlay/7.0a2/DirectPlay.zip" version="7.0a2">
<desc lang="EN">Play albums, artists or songs directly by database ID</desc>
<title lang="EN">DirectPlay</title>
</plugin>
<plugin name="QuickAccess" category="misc" creator="Jason Holtzapple" email="[email protected]" installations="192" link="" maxTarget="*" minTarget="7.0" sha="d2b80a4f9cb717115ee2413dae4a46d18e924a00" url="http://jasonholtzapple.github.io/slimdevices/plugins/quickaccess/7.3/QuickAccess_7_3.zip" version="7.3">
<desc lang="EN">QuickAccess provides similar functionality as Favorites plus the possibility to pass a playlist from player to player. Just press and hold a number button and the assigned playlist starts playing. You may select playlists from each player or your server's web interface. You will also need to place the custom.map file (http://jasonholtzapple.github.io/slimdevices/plugins/quickaccess/7.3/custom.map) in your Squeezecenter/IR directory by hand.</desc>
<title lang="EN">QuickAccess</title>
</plugin>
<plugin name="C3PO" category="tools" creator="marcoc1712" email="[email protected]" installations="582" link="" maxTarget="*" minTarget="7.8.0" sha="3a4b64b122e1bcb6e223b67d16d7f8a3df57c3f8" url="http://marcoc1712.it/downloads/C3PO-v2.03.02.zip" version="2.03.02">
<desc lang="EN">Automate transcoding and resampling</desc>
<title lang="EN">C-3PO Transcoding Helper</title>
</plugin>
<plugin name="ArchiveOrg" category="musicservices" creator="bpa" installations="363" link="" maxTarget="*" minTarget="8.3" sha="d17abcb7e0c77eebea75d0bced7ee339e9e0897e" url="https://bpa-code.github.io/bpaplugins/ArchiveOrg-V0_6.ZIP" version="0.6">
<desc lang="EN">ArchiveOrg - a plugin that enables access to files on Archive.org</desc>
<title lang="EN">ArchiveOrg V0.6 </title>
</plugin>
<plugin name="SharkPlay" category="hardware" creator="bpa" email="[email protected]" installations="26" link="http://forums.lyrion.org/showthread.php?t=54926" maxTarget="*" minTarget="7.4" sha="007ab351a55cd9e7e31cc9d2a4a647108d442111" target="unix" url="http://downloads.sourceforge.net/project/bpaplugins/OtherPlugins/sharkplay-linux-102.ZIP" version="1.2">
<desc lang="EN">A Plugin to enable a Griffin RadioShark2 USB FM/AM tuner to be tuned and played through LogitechMediaServer</desc>
<title lang="EN">SharkPlay</title>
</plugin>
<plugin name="SharkPlay" category="hardware" creator="bpa" email="[email protected]" installations="26" link="http://forums.lyrion.org/showthread.php?t=54926" maxTarget="*" minTarget="7.4" sha="cd98ba0de84200a6118c338e8c725a2feda23130" target="win" url="http://downloads.sourceforge.net/project/bpaplugins/OtherPlugins/sharkplay-win-102.ZIP" version="1.2">
<desc lang="EN">A Plugin to enable a Griffin RadioShark2 USB FM/AM tuner to be tuned and played through LogitechMediaServer</desc>
<title lang="EN">SharkPlay</title>
</plugin>
<plugin name="CDplayer" category="hardware" changes="-1.11 Update: fix to play whole CD on Squeezeplay, CDDB move to gnudb. Not tested on OSX " creator="bpa" email="[email protected]" installations="1554" link="http://forums.lyrion.org/showthread.php?t=47288" maxTarget="*" minTarget="7.6" sha="6fc70e8d6f7f0ae51bcc0dae610cf9f2e3dfe0d8" target="mac" url="https://bpa-code.github.io/bpaplugins/CDplayer-osx-v111.ZIP" version="1.11">
<desc lang="EN">A Plugin to enable an audio CD in the PC CD drive to be played through LogitechMediaServer. Requires CDDA2WAV to be installed.</desc>
<title lang="EN">CDplayer</title>
</plugin>
<plugin name="CDplayer" category="hardware" changes="-1.11 Update: fix to play whole CD on Squeezeplay, CDDB move to gnudb " creator="bpa" email="[email protected]" installations="1554" link="http://forums.lyrion.org/showthread.php?t=47288" maxTarget="*" minTarget="7.6" sha="d6685b38ecc30ba5dac05b5bfcc06079a7fcba1e" target="win" url="https://bpa-code.github.io/bpaplugins/CDplayer-windows-v111.ZIP" version="1.11">
<desc lang="EN">A Plugin to enable an audio CD in the PC CD drive to be played through LogitechMediaServer. Includes CDDA2WAV and associated DLLs.</desc>
<title lang="EN">CDplayer</title>
</plugin>
<plugin name="CDplayer" category="hardware" changes="-1.11 Update: fix to play whole CD on Squeezeplay, CDDB move to gnudb " creator="bpa" email="[email protected]" installations="1554" link="http://forums.lyrion.org/showthread.php?t=47288" maxTarget="*" minTarget="7.6" sha="b2bbfec5e1ec9012a3ecc198661b030efcbc84e4" target="unix" url="https://bpa-code.github.io/bpaplugins/CDplayer-linux-v111.ZIP" version="1.11">
<desc lang="EN">A Plugin to enable an audio CD in the PC CD drive to be played through LogitechMediaServer. Requires CDDA2WAV to be installed. Use icedax for Ubuntu.</desc>
<title lang="EN">CDplayer</title>
</plugin>
<plugin name="WaveInput" category="hardware" creator="Joe Bryan updated by bpa" email="[email protected]" installations="622" link="http://forums.lyrion.org/showthread.php?t=35718" maxTarget="*" minTarget="7.4" sha="17ef1a564e97c439ed09956127aa1eccf9f57613" target="win" url="http://downloads.sourceforge.net/project/bpaplugins/OtherPlugins/WaveInputWin-v105.ZIP" version="1.05">
<desc lang="EN">A Plugin to enable Windows PC audio to be captured and played through LogitechMediaServer</desc>
<title lang="EN">WaveInput</title>
</plugin>
<plugin name="WaveInput" category="hardware" creator="bpa" email="[email protected]" installations="622" link="http://forums.lyrion.org/showthread.php?t=49584" maxTarget="*" minTarget="7.4" sha="5b12cffa13f955baa16266f2609eebad2ebec265" target="unix" url="http://downloads.sourceforge.net/project/bpaplugins/OtherPlugins/WaveInputLinux-v104_7.6.ZIP" version="1.04">
<desc lang="EN">A Plugin to enable Linux PC audio to be captured and played through LogitechMediaServer. Default setup uses ALSA but OSS also works.</desc>
<title lang="EN">WaveInput</title>
</plugin>
<plugin name="PlayWMA" category="tools" creator="bpa" email="[email protected]" installations="1269" link="" maxTarget="*" minTarget="7.7" sha="901799c31a98e726e8b3db495d817e358173b8e5" target="unix" url="http://downloads.sourceforge.net/project/bpaplugins/OtherPlugins/PlayWMA-v101.ZIP" version="1.1">
<desc lang="EN">This plugin provides support on Linux and OSX for playing Windows Media (WMA, WMA lossless, WMA Pro) streams and files using ffmpeg. It is mainly used for player which do not support WMA nativelysuch as SliMP3, SqueezeBox1, Softsqueeze, Squeezeslave and Squeezeplay</desc>
<title lang="EN">PlayWMA</title>
</plugin>
<plugin name="PlayWMA" category="tools" creator="bpa" email="[email protected]" installations="1269" link="" maxTarget="*" minTarget="7.7" sha="901799c31a98e726e8b3db495d817e358173b8e5" target="mac" url="http://downloads.sourceforge.net/project/bpaplugins/OtherPlugins/PlayWMA-v101.ZIP" version="1.1">
<desc lang="EN">This plugin provides support on Linux and OSX for playing Windows Media (WMA, WMA lossless, WMA Pro) streams and files using ffmpeg. It is mainly used for player which do not support WMA nativelysuch as SliMP3, SqueezeBox1, Softsqueeze, Squeezeslave and Squeezeplay</desc>
<title lang="EN">PlayWMA</title>
</plugin>
<plugin name="PlayHLS" category="tools" creator="bpa" installations="1133" link="" maxTarget="*" minTarget="7.3" sha="beb7982842ccc67c464c85d75c6be7f6bdd22294" target="mac|unix" url="http://downloads.sourceforge.net/project/bpaplugins/OtherPlugins/PlayHLSLinux-v101.ZIP" version="1.01">
<desc lang="EN">PlayHLS - a minimal plugin that sets ups LMS conf file to play HLS URL using a media player application - ffmpeg by default</desc>
<title lang="EN">PlayHLS</title>
</plugin>
<plugin name="PlayHLS" category="tools" creator="bpa" installations="1133" link="" maxTarget="*" minTarget="7.3" sha="ebd592bb819fb0c7463995eb998295ca68527888" target="win" url="http://downloads.sourceforge.net/project/bpaplugins/OtherPlugins/PlayHLSWin-v101.ZIP" version="1.01">
<desc lang="EN">PlayHLS - a minimal plugin that sets ups LMS conf file to play HLS URL using a media player application - ffmpeg by default</desc>
<title lang="EN">PlayHLS</title>
</plugin>
<plugin name="iHeartRadio" category="radio" creator="bpa" email="[email protected]" installations="1135" link="" maxTarget="*" minTarget="7.7" sha="50865b3b4367ce7d975e3d850ba646c6bab2e1f6" url="http://downloads.sourceforge.net/project/bpaplugins/iHeartRadio-v102.ZIP" version="1.2.0">
<desc lang="EN">Listen to iHeart Radio Live US,CA,AU,NZ and MX stations</desc>
<title lang="EN">iHeart Radio - v1.2</title>
</plugin>
<plugin name="RadioNet" category="radio" creator="bpa" installations="4976" link="" maxTarget="*" minTarget="7.9" sha="07cf62e4ee42979be18ee59bf866e994fd39f66f" url="https://bpa-code.github.io/bpaplugins/RadioNet-V3_3.ZIP" version="3.3">
<desc lang="EN">RadioNet - provides access to Radio.net internet radio directory</desc>
<title lang="EN">RadioNet</title>
</plugin>
<plugin name="Accuradio" category="radio" creator="bpa" installations="618" link="" maxTarget="*" minTarget="8.3" sha="4059f87bdc867f858963433ccf3341ae87ba821c" url="https://bpa-code.github.io/bpaplugins/Accuradio-V1_0.ZIP" version="1.0">
<desc lang="EN">Accuradio - provides access to Accuradio streams</desc>
<title lang="EN">Accuradio V1.*</title>
</plugin>
<plugin name="Live365" category="radio" creator="bpa" installations="506" link="" maxTarget="*" minTarget="8.0" sha="f196a45807dc537ec061426a803008ddfde4e200" url="https://bpa-code.github.io/bpaplugins/Live365-V1_02.ZIP" version="1.02">
<desc lang="EN">Live365 - provides access to Live365 directory of internet stations</desc>
<title lang="EN">Live365 V1.*</title>
</plugin>
<plugin name="PodcastExt" category="musicservices" creator="Philippe" email="[email protected]" installations="1109" link="http://github.com/philippe44/LMS-PodcastExt" maxTarget="*" minTarget="8.2" sha="79d03f1b559316190efef8e418b669d5156403a8" url="https://github.com/philippe44/LMS-PodcastExt/raw/main/PodcastExt-0.23.1.zip" version="0.23.1">
<desc lang="EN">Add providers to podcast</desc>
<title lang="EN">Podcast Extensions</title>
</plugin>
<plugin name="Groups" category="tools" creator="Philippe" email="[email protected]" installations="1240" link="http://github.com/philippe44/LMS-Groups" maxTarget="*" minTarget="7.5" sha="6f21791387e63c332f275308ae50732d13ed4527" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/Groups-0.17.2.zip" version="0.17.2">
<desc lang="EN">on-the-fly group creation</desc>
<title lang="EN">Group Players</title>
</plugin>
<plugin name="SwitchGroupPlayer" category="playlists" creator="Philippe" email="[email protected]" installations="519" link="http://github.com/philippe44/SwitchGroupPlayer" maxTarget="*" minTarget="7.5" sha="a80c3acfbab212ad68b96251658214bf2c9d5e59" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/SwitchGroupPlayer-0.4.zip" version="0.4">
<desc lang="EN">Switch Playlist between players (Triode plugin compatible with Group Player plugin)</desc>
<title lang="EN">Switch Player (Groups compatible)</title>
</plugin>
<plugin name="CPlus" category="radio" creator="Philippe" email="[email protected]" installations="39" link="http://github.com/philippe44/LMS-CPlus" maxTarget="*" minTarget="8.0" sha="29690be6300ec6ff777548ef8387dae6a374f01c" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/CPlus-0.20.6.zip" version="0.20.6">
<desc lang="EN">Play Canal+ video</desc>
<title lang="EN">CPlus</title>
</plugin>
<plugin name="FranceTV" category="radio" creator="Philippe" email="[email protected]" installations="33" link="http://github.com/philippe44/LMS-Pluzz" maxTarget="*" minTarget="7.5" sha="b7322ecfe158c17b6da4257c5bb9ab1ac8f73f18" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/FranceTV-0.82.3.zip" version="0.82.3">
<desc lang="EN">Play FranceTelevisions video</desc>
<title lang="EN">FranceTV</title>
</plugin>
<plugin name="LCI" category="radio" creator="Philippe" email="[email protected]" installations="73" link="http://github.com/philippe44/LMS-LCI" maxTarget="*" minTarget="7.5" sha="b26a6ca88f2c55227c223aa9ede5c6854a2ba9c7" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/LCI-0.10.1.zip" version="0.10.1">
<desc lang="EN">Play LCI/TF1 video</desc>
<title lang="EN">LCI</title>
</plugin>
<plugin name="UPnPBridge" category="hardware" creator="Philippe" email="[email protected]" installations="5628" link="http://github.com/philippe44/LMS-to-upnp" maxTarget="*" minTarget="8.0" sha="ddd8ebece156583c2692f68a031808a2bcc6cf24" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/UPnPBridge-3.3.9.zip" version="3.3.9">
<desc lang="EN">Use UPnP/DLNA players in LMS</desc>
<title lang="EN">UPnP/DLNA bridge</title>
</plugin>
<plugin name="YouTube" category="musicservices" creator="Philippe" email="[email protected]" installations="4840" link="http://github.com/philippe44/LMS-youtube" maxTarget="*" minTarget="7.5" sha="54b9695de10b621a1c3ec7163ec57cffb2bf2a6b" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/YouTube-0.300.zip" version="0.300">
<desc lang="EN">Play YouTube video</desc>
<title lang="EN">YouTube</title>
</plugin>
<plugin name="RaopBridge" category="hardware" creator="Philippe" email="[email protected]" installations="4538" link="http://github.com/philippe44/LMS-to-raop" maxTarget="*" minTarget="8.0" sha="85bda2ca914c0911f8d028bd3c0860859d5bdd09" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/RaopBridge-1.7.7.zip" version="1.7.7">
<desc lang="EN">Use AirPlay devices in LMS</desc>
<title lang="EN">AirPlay bridge</title>
</plugin>
<plugin name="CastBridge" category="hardware" creator="Philippe" email="[email protected]" installations="2968" link="http://github.com/philippe44/LMS-to-cast" maxTarget="*" minTarget="8.0" sha="0802d3008852709d2dc91be04cd1fdfd001699b0" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/CastBridge-3.3.9.zip" version="3.3.9">
<desc lang="EN">Use Chromecast devices in LMS</desc>
<title lang="EN">Chromecast bridge</title>
</plugin>
<plugin name="ShairTunes2W" category="hardware" creator="Philippe" email="[email protected]" installations="3324" link="http://github.com/philippe44/ShairTunes2" maxTarget="*" minTarget="8.0" sha="578c834567937986f54c61ddf287a79b3aecad6e" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/ShairTunes2W-1.7.2.zip" version="1.7.2">
<desc lang="EN">Airtunes for LMS (with Windows)</desc>
<title lang="EN">ShairTunes2 (fork)</title>
</plugin>
<plugin name="Reliable" category="misc" creator="Philippe" email="[email protected]" installations="160" link="https://github.com/philippe44/LMS-reliable" maxTarget="*" minTarget="7.7" sha="2bc58ca164d0d7589e0c34a1da25beeeba32b54a" url="http://downloads.sourceforge.net/project/lms-plugins-philippe44/Reliable-0.18.2.zip" version="0.18.2">
<desc lang="EN">Reliable HTTP connection for LMS</desc>
<title lang="EN">Reliable HTTP</title>
</plugin>
<plugin name="SuperDateTime" category="information" creator="G Brown, D Grossman" icon="https://downloads.sourceforge.net/project/sdt-weather-com/30.png" installations="842" link="https://sourceforge.net/projects/sdt-weather-com/" maxTarget="9.*" minTarget="7.4" sha="0740fe01263e57d8d654e35a6e0873cfcade37a4" url="https://downloads.sourceforge.net/project/sdt-weather-com/SuperDateTime5-11-44.zip" version="5.11.44">
<changes lang="EN">(5.11.44) Add Seattle Kraken and remove Arizona Coyotes from NHL Hockey Teams. Thanks @tedfroop.
Improve error handling for stocks.</changes>
<desc lang="EN">Displays local time, date, weather, sports, and stock information.</desc>
<title lang="EN">SuperDateTime</title>
</plugin>
<plugin name="DatabaseQuery" category="information" creator="Mike Spertus, Erland Isaksson" email="[email protected]" installations="233" link="http://wiki.lyrion.org/index.php/Database_Query_plugin" maxTarget="8.*" minTarget="8.0.0" sha="0e7848f3a6e25dc41e1ab38e17fdb5837641afad" url="http://downloads.isaksson.info/download/do/downloadapplication?name=slimserver-databasequery&filename=DatabaseQuery-2.4.3923.zip" version="2.4.3923">
<changes lang="EN">Mike taking over maintenance from Erland (Thanks, Erland!)</changes>
<desc lang="EN">Makes it possible to define and execute custom SQL statements towards SqueezeCenter database. The result can be displayed in the browser or exported as CSV or XML files. (Boom, Transporter, Classic, Receiver, Controller, Radio, Touch, SoftSqueeze, SqueezePlay)</desc>
<title lang="EN">Database Query</title>
</plugin>
<plugin name="AlternativePlayCount" category="information" creator="AF" icon="https://raw.githubusercontent.com/AF-1/lms-alternativeplaycount/main/screenshots/apc_icon.png" installations="280" link="https://github.com/AF-1/#-alternative-play-count" maxTarget="*" minTarget="8.2" sha="f37271136595a4bb1e74976933c430817c2c3305" url="https://github.com/AF-1/lms-alternativeplaycount/releases/download/1.6.0/lms-alternativeplaycount-1.6.0.zip" version="1.6.0">
<desc lang="EN">Provides alternative play counts and skip counts that aim to reflect your true listening history. You set a time after which a song counts as played. If you skip the song before, it counts as skipped, not played. Use the data with other plugins to create/play smart playlists (dynamic playlists), create virtual libraries or skip tracks.</desc>
<desc lang="FR">Fournit un nombre de lectures et de sauts alternatif qui vise à refléter votre vrai historique de lecture. Définissez une durée après laquelle un morceau est considéré comme joué.</desc>
<title lang="EN">Alternative Play Count</title>
</plugin>
<plugin name="ContextStats" category="playlists" creator="AF" icon="https://raw.githubusercontent.com/AF-1/lms-contextstats/main/ContextStats/HTML/EN/plugins/ContextStats/html/images/contextstats_icon_svg.png" installations="144" link="https://github.com/AF-1/#-context-stats" maxTarget="*" minTarget="8.4" sha="12f01087cdadf6564f91485d1943d40101768511" url="https://github.com/AF-1/lms-contextstats/releases/download/1.0.1/lms-contextstats-1.0.1.zip" version="1.0.1">
<desc lang="EN">Display lists of tracks, albums or artists sorted by statistics from the context menus of artists, albums, genres, years and playlists.</desc>
<title lang="EN">Context Stats</title>
</plugin>
<plugin name="CustomSkip3" category="playlists" creator="AF" icon="https://raw.githubusercontent.com/AF-1/lms-customskip/main/CustomSkip3/HTML/EN/plugins/CustomSkip3/html/images/cs_icon_svg.png" installations="154" link="https://github.com/AF-1/#-custom-skip" maxTarget="*" minTarget="8.2" sha="7e6bf7c916baeb08e691240d87518587de3c789d" url="https://github.com/AF-1/lms-customskip/releases/download/3.6.7/lms-customskip-3.6.7.zip" version="3.6.7">
<desc lang="EN">Set rules for when the current track or upcoming tracks in your player's playlist should be skipped and removed from the playlist automatically.</desc>
<title lang="EN">Custom Skip</title>
</plugin>
<plugin name="CustomStartStopTimes" category="playlists" creator="AF" installations="93" link="https://github.com/AF-1/#-custom-start-stop-times" maxTarget="*" minTarget="8.2" sha="70936cec244ece803cfe2e86c9baebc7677c4b33" url="https://github.com/AF-1/lms-customstartstoptimes/releases/download/1.1.9/lms-customstartstoptimes-1.1.9.zip" version="1.1.9">
<desc lang="EN">Skip unwanted parts of a song (e.g. annoying intros, silence at the end or in the middle).</desc>
<title lang="EN">Custom Start Stop Times</title>
</plugin>
<plugin name="CustomTagImporter" category="scanning" creator="AF" installations="275" link="https://github.com/AF-1/#-custom-tag-importer" maxTarget="*" minTarget="7.9" sha="6c7be0030c20843cde022dca60bc5dc9e6318f5d" url="https://github.com/AF-1/lms-customtagimporter/releases/download/1.2.4/lms-customtagimporter-1.2.4.zip" version="1.2.4">
<desc lang="EN">Scans track information from custom tags in your music files (incl. rating tags).</desc>
<title lang="EN">Custom Tag Importer</title>
</plugin>
<plugin name="DarkDefaultSkin" category="skin" creator="AF" installations="488" link="https://github.com/AF-1/#%EF%B8%8F-dark-default-skin" maxTarget="8.*" minTarget="7.9" sha="975daac01a02a865d81f3b0f6b18648cdf55c9c3" url="https://github.com/AF-1/lms-darkdefaultskin/releases/download/1.0.8/lms-darkdefaultskin-1.0.8.zip" version="1.0.8">
<desc lang="EN">Dark-themed version of the LMS Default skin</desc>
<title lang="EN">Dark Default Skin</title>
</plugin>
<plugin name="DarkLogicSkin" category="skin" creator="AF" installations="197" link="https://github.com/AF-1/#-dark-logic-skin" maxTarget="*" minTarget="9.0" sha="ca192a8ae23f65f8055ddea925ba91239c432fe3" url="https://github.com/AF-1/lms-darklogicskin/releases/download/1.0.1/lms-darklogicskin-1.0.1.zip" version="1.0.1">
<desc lang="EN">Dark-themed version of the LMS Logic Teal skin</desc>
<title lang="EN">Dark Logic Skin</title>
</plugin>
<plugin name="DynamicPlaylists4" category="playlists" creator="AF" icon="https://raw.githubusercontent.com/AF-1/lms-dynamicplaylists/main/DynamicPlaylists4/HTML/EN/plugins/DynamicPlaylists4/html/images/dpl_icon_svg.png" installations="862" link="https://github.com/AF-1/#-dynamic-playlists" maxTarget="*" minTarget="8.0" sha="09826752dbe061d038d7da422695772a1f8b7240" url="https://github.com/AF-1/lms-dynamicplaylists/releases/download/4.5.1/lms-dynamicplaylists-4.5.1.zip" version="4.5.1">
<desc lang="EN">Use smart playlists (dynamic playlists) to play continuous music mixes based on your selection criteria.</desc>
<desc lang="FR">Jouez des mix continus de musique basés sur des critères de sélection définis dans les listes de lecture dynamiques.</desc>
<desc lang="DE">Nutze intelligente/dynamische Wiedergabelisten, um kontinuierliche Wiedergabelisten basierend auf deinen Selektionskriterien zu erstellen.</desc>
<title lang="EN">Dynamic Playlists</title>
</plugin>
<plugin name="DynamicPlaylistCreator" category="playlists" creator="AF" icon="https://raw.githubusercontent.com/AF-1/lms-dynamicplaylistcreator/main/DynamicPlaylistCreator/HTML/EN/plugins/DynamicPlaylistCreator/html/images/dplc_icon_svg.png" installations="677" link="https://github.com/AF-1/#-dynamic-playlist-creator" maxTarget="*" minTarget="8.4" sha="b5bd561af09ecf83bbe09c3409fa5ec5b0b8c4ae" url="https://github.com/AF-1/lms-dynamicplaylistcreator/releases/download/1.6.8/lms-dynamicplaylistcreator-1.6.8.zip" version="1.6.8">
<desc lang="EN">Helps you create custom smart playlists (dynamic playlists) for the Dynamic Playlists plugin.</desc>
<title lang="EN">Dynamic Playlist Creator</title>
</plugin>
<plugin name="PotPourri" category="tools" creator="AF" icon="https://raw.githubusercontent.com/AF-1/lms-potpourri/main/PotPourri/HTML/EN/plugins/PotPourri/html/images/ppt_icon_svg.png" installations="135" link="https://github.com/AF-1/#-potpourri" maxTarget="*" minTarget="8.4" sha="7d7895d50da7377f1c9a3310a2f69abfc9b77bea" url="https://github.com/AF-1/lms-potpourri/releases/download/1.0.3/lms-potpourri-1.0.3.zip" version="1.0.3">
<desc lang="EN">A collection of small features. Examples: change track order of saved/client playlists, set power-on volume level for players or time to turn off all players each day, export saved playlists to playlist files with custom file paths/extensions… Complete feature list, screenshots and more information on the GitHub page.</desc>
<title lang="EN">PotPourri</title>
</plugin>
<plugin name="RatingsLight" category="information" creator="AF" icon="https://raw.githubusercontent.com/AF-1/lms-ratingslight/main/screenshots/rl_icon.png" installations="350" link="https://github.com/AF-1/#-ratings-light" maxTarget="*" minTarget="8.2" sha="c53f291900142156e275b4a20d15a769c4df82c1" url="https://github.com/AF-1/lms-ratingslight/releases/download/2.8.4/lms-ratingslight-2.8.4.zip" version="2.8.4">
<desc lang="EN">Set, import, export, log, backup and restore track ratings. Create virtual libraries/library views for rated tracks with LMS browse menus.</desc>
<title lang="EN">Ratings Light</title>
</plugin>
<plugin name="VirtualLibraryCreator" category="scanning" creator="AF" icon="https://raw.githubusercontent.com/AF-1/lms-virtuallibrarycreator/main/VirtualLibraryCreator/HTML/EN/plugins/VirtualLibraryCreator/html/images/vlc_icon_svg.png" installations="301" link="https://github.com/AF-1/#-virtual-library-creator" maxTarget="*" minTarget="8.4" sha="c17317875685c0c96e2e2c4ae76f2cd018ce6d87" url="https://github.com/AF-1/lms-virtuallibrarycreator/releases/download/1.3.9/lms-virtuallibrarycreator-1.3.9.zip" version="1.3.9">
<desc lang="EN">A quick and easy way to create and manage your own virtual libraries/library views.</desc>
<title lang="EN">Virtual Library Creator</title>
</plugin>
<plugin name="VisualStatistics" category="information" creator="AF" icon="https://raw.githubusercontent.com/AF-1/lms-visualstatistics/main/VisualStatistics/HTML/EN/plugins/VisualStatistics/html/images/visualstatistics_svg.png" installations="653" link="https://github.com/AF-1/#-ratings-light" maxTarget="*" minTarget="8.4" sha="a2de9e2005629f1b2f5250359956bf5a78c90379" url="https://github.com/AF-1/lms-visualstatistics/releases/download/1.7.8/lms-visualstatistics-1.7.8.zip" version="1.7.8">
<desc lang="EN">Have a look at your library statistics with charts.</desc>
<desc lang="FR">Explorez les statistiques de votre librairie avec des graphiques.</desc>
<desc lang="NL">Bekijk jouw mediabibliotheek statistieken door middel van grafieken.</desc>
<title lang="EN">Visual Statistics</title>
</plugin>
<plugin name="MaterialSkin" category="skin" creator="Craig Drummond" installations="15399" link="" maxTarget="*" minTarget="7.9.0" sha="5525e26595591004edaaed9be793369ceda3c30c" url="https://github.com/CDrummond/lms-material/releases/download/5.7.5/lms-material-5.7.5.zip" version="5.7.5">
<desc lang="EN">Material themed skin, suitable for mobile use.</desc>
<title lang="EN">Material Skin</title>
</plugin>
<plugin name="SqueezeDSP" category="tools" changes="Spotty fix for casting, mp3, aif change too" creator="Jonathan Fox" info="https://github.com/Foxenfurter/SqueezeDSP/blob/main/README.md" installations="619" link="" maxTarget="*" minTarget="7.8.0" sha="d51a59c69f9c8a65800442529459f9a8599da56b" sha1-tool="https://emn178.github.io/online-tools/sha1_checksum.html" url="https://github.com/Foxenfurter/SqueezeDSP/raw/main/SqueezeDSP-0.1.08d.zip" version="0.1.08d">
<desc lang="EN">DSP for Squeezebox server version 0.1.08d) - provides EQ and DSP. Fixes to custom-conv.conf </desc>
<title lang="EN">SqueezeDSP</title>
</plugin>
<plugin name="InguzEQ" category="tools" changes="Split templates for config into separate file, and plugin now detects when the template has changed and re-writes config based off this. Amended template for flac and added in wmal setting for 24 bit." creator="Jonathan Fox" installations="863" link="" maxTarget="*" minTarget="7.3.0" sha="aa7addf843707b2bb40cde3e4eefde75f52da1a1" sha1-tool="https://emn178.github.io/online-tools/sha1_checksum.html" url="https://github.com/Foxenfurter/SqueezeBoxEQ/raw/main/SqueezeboxEQ-0.9.39.zip" version="0.9.39">
<desc lang="EN">DSP and EQ for Squeezebox server based off InguzDSP</desc>
<title lang="EN">SqueezeboxEQ</title>
</plugin>
<plugin name="DSDPlayer" category="hardware" creator="Kimmo, Triode, Ralphy" email="[email protected]" installations="2598" link="" maxTarget="9.*" minTarget="7.9" sha="06d9f19f9a04b754d82e1beae4184e4249940a2a" url="https://github.com/LMS-Community/plugin-DSDPlayer/releases/download/1.12/plugin-DSDPlayer-1.12.zip" version="1.12">
<desc lang="EN">Playback of DSD files (.dsf and .dff) via your Squeezebox. Supports conversion to PCM or playback as DSD-over-PCM (DoP) for DACs supporting DoP.</desc>
<title lang="EN">DSDPlayer</title>
</plugin>
<plugin name="LocalPlayer" category="hardware" creator="Triode" email="[email protected]" installations="1130" link="" maxTarget="*" minTarget="8.5" sha="dc2a40fc303b08f4be8d9a186baaaf22b5451bf6" url="https://github.com/LMS-Community/plugin-LocalPlayer/releases/download/1.7.3/LocalPlayer.zip" version="1.7.3">
<desc lang="EN">Local playback from your server computer using the Squeezelite software emulator. This plugin uses Squeezelite to playback through the audio output of your server computer. The player can be controlled from the server's web interface or other Squeezebox controller applications. Note: the plugin will only support servers or NAS devices with Intel or ARM processors.</desc>
<title lang="EN">Local Player</title>
</plugin>
<plugin name="Qobuz" category="musicservices" creator="Pierre Beck / Michael Herger / darrell / SamY / sveninndh" icon="https://raw.githubusercontent.com/LMS-Community/plugin-Qobuz/master/HTML/EN/plugins/Qobuz/html/images/icon.png" installations="4456" link="https://github.com/LMS-Community/plugin-Qobuz" maxTarget="*" minTarget="7.9" sha="1a332b2945b234bb1da9ba420e1d3b20dbcd9778" url="https://github.com/LMS-Community/plugin-Qobuz/releases/download/3.5.6/Qobuz.zip" version="3.5.6">
<desc lang="EN">Stream Qobuz to your Squeezebox.</desc>
<title lang="EN">Qobuz</title>
</plugin>
<plugin name="SigGen" category="tools" creator="Triode" email="[email protected]" installations="374" link="" maxTarget="8.*" minTarget="7.3" sha="e6867a6ff30fc021e5fd2beea856913a49bae320" url="https://github.com/LMS-Community/plugin-SigGen/releases/download/1.2/SigGen-1.2.zip" version="1.2">
<desc lang="EN">Signal Generator plugin. Now supports Squeezeplay as well as SB2/3/Transporter.</desc>
<title lang="EN">Signal Generator</title>
</plugin>
<plugin name="DenonAvpControl" category="hardware" creator="Chris Couper, Sam Yahres" email="[email protected]" installations="646" link="https://github.com/aesculus/denonavpcontrol" maxTarget="*" minTarget="7.7" sha="3a596f5c5f75be73f6adadd8e6f16c4bc1f15eae" url="https://github.com/aesculus/denonavpcontrol/raw/master/DenonAvpControl_5_3_2.zip" version="5.3.2">
<desc lang="EN">This plugin allows a network-ready Denon or Marantz AVR connected to an LMS player to be controlled from any Lyrion client app via telnet. In addition to automatically turning the AVR on and off and changing/muting the volume, other AVR settings can be adjusted using a set of client menus.</desc>
<title lang="EN">Denon/Marantz AVR Control</title>
</plugin>
<plugin name="XSqueezeDisplay" category="information" creator="bossanova808" email="[email protected]" installations="244" link="" maxTarget="*" minTarget="7.7" sha="d8610a90537699b489c8451804bd6db455cdc410" url="https://github.com/bossanova808/repository.squeeze.bossanova808/raw/main/downloads/XSqueezeDisplay/XSqueezeDisplay-0.9.9.zip" version="0.9.9">
<desc lang="EN">Display Kodi (XBMC) Now Playing info on a Squeezebox SB2/3/Classic display.</desc>
<title lang="EN">XSqueezeDisplay</title>
</plugin>
<plugin name="AutoRescan" category="scanning" creator="James Marsh; Stuart Hickinbottom" installations="1785" link="" maxTarget="*" minTarget="7.7" sha="fed9cb93d2e667228ee53fd4e142d56c464c5437" target="windows|unix" url="https://github.com/doctorjames/AutoRescan/raw/master/releases/AutoRescan-1.4.2.zip" version="1.4.2">
<desc lang="EN">AutoRescan detects changes to your music folder and automatically triggers a rescan of that directory if any files have been added, removed or changed.</desc>
<title lang="EN">AutoRescan</title>
</plugin>
<plugin name="TIDAL" category="musicservices" creator="Michael Herger, philippe_44" icon="https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/main/HTML/EN/plugins/TIDAL/html/tidal_MTL_svg_tidal.png" installations="4274" link="https://github.com/michaelherger/lms-plugin-tidal" maxTarget="*" minTarget="8.3" sha="800193697c714ba85f8c56cffbf8a9f3b28d137d" url="https://github.com/michaelherger/lms-plugin-tidal/releases/download/1.5.3/TIDAL.zip" version="1.5.3">
<desc lang="EN">TIDAL for local LMS use</desc>
<title lang="EN">TIDAL local</title>
</plugin>
<plugin name="Deezer" category="musicservices" creator="philippe_44, Michael Herger" installations="1998" link="https://github.com/philippe44/lms-deezer" maxTarget="*" minTarget="8.3" sha="8ef59f1f2852db6239eb5cc631bcf6976d246d4d" url="https://github.com/philippe44/lms-deezer/releases/download/3.1.4/Deezer.zip" version="3.1.4">
<desc lang="EN">Deezer for local LMS use</desc>
<title lang="EN">Deezer local</title>
</plugin>
<plugin name="RatingButtons" category="information" creator="flipflip" installations="151" link="https://github.com/phkehl/lms-plugins" maxTarget="*" minTarget="8.1.0" sha="8f1086f4db980b90ea47c997a4cb4f27882df9ca" url="https://raw.githubusercontent.com/phkehl/lms-plugins/main/RatingButtons-0.9.zip" version="0.9">
<desc lang="EN">Use remote buttons and the default web interace to rate songs on Squeezebox Classic, Boom and Transporter</desc>
<title lang="EN">Rating Buttons</title>
</plugin>
<plugin name="CommunityFirmware" category="misc" creator="Michael Herger, Ralph Irving" email="[email protected]" installations="4706" link="" maxTarget="*" minTarget="8.4" sha="a1bcfa915edf32fac3627c857ae4b07757f3d25d" url="https://github.com/ralph-irving/plugin-CommunityFirmware/releases/download/0.0.9/plugin-CommunityFirmware-0.0.9.zip" version="0.0.9">
<desc lang="EN">Community Firmware for SqueezeBox Touch/Radio/Controller</desc>
<title lang="EN">Community Firmware</title>
</plugin>
<plugin name="SqueezeESP32" category="hardware" creator="Philippe" email="[email protected]" installations="853" link="https://github.com/sle118/squeezelite-esp32" maxTarget="*" minTarget="7.9" sha="439637e01db7410157a333446cd284509f877849" url="http://raw.githubusercontent.com/sle118/squeezelite-esp32/master-v4.3/plugin/SqueezeESP32.zip" version="0.601">
<desc lang="EN">SqueezeESP32 additional player id (100/101)</desc>
<title lang="EN">SqueezeESP32</title>
</plugin>
<plugin name="MyQobuz" category="musicservices" creator="Ulrich Pickartz" email="[email protected]" installations="606" link="https://github.com/upickartz/plugin-MyQobuz" maxTarget="*" minTarget="7.8" sha="633abcb6520ae7432a1ce82397f1715d2c7e3639" url="https://raw.githubusercontent.com/upickartz/plugin-MyQobuz/main/repo/release/1.1.0/MyQobuz.zip" version="1.1.0">
<desc lang="EN">MyQobuz view to Qobuz</desc>
<title lang="EN">MyQobuz Extensions</title>
</plugin>
<plugin name="SqueezeScrobbler" category="misc" creator="SqueezeScrobbler Team" email="[email protected]" link="http://slimscrobbler.sourceforge.net/" maxTarget="7+" minTarget="7.4" sha="23db3ffbcca3e97af943eaaaa14eccd415fc5cec" url="http://mesh.dl.sourceforge.net/sourceforge/slimscrobbler/SqueezeScrobbler-1.2.8.zip" version="1.2.8">
<changes lang="EN" />
<desc lang="EN">LastFM radio playback and scrobbling of played music. Works for regions not covered by the SlimDevices included plugin</desc>
<title lang="EN">SqueezeScrobbler</title>
</plugin>
<plugin name="AllQuiet" category="misc" creator="Watkins, Peter" email="[email protected]" installations="141" link="https://tuxreborn.netlify.app/slim/AllQuiet.html" maxTarget="8.*" minTarget="7.0" sha="9e27094ff2ee80e17123681ec6e3ae350afc36d2" url="https://tuxreborn.netlify.app/slim/slim7/AllQuiet/AllQuiet-2.1.14.zip" version="2.1.14">
<changes lang="EN">2.1.14: allow use in LMS 8.* (untested); 2.1.13: new repository URL; 2.1.12: display message on Radio & Touch screens if paused by AllQuiet; 2.1.10: squelch deprecation warnings in 7.4, support --noweb; 2.1.9: change to new numbering scheme; 7a9: fix pause API call bug</changes>
<desc lang="EN">Silence all players simply by holding the Sleep button; all players will display the name of the player that asked for silence, in case you need help. Also provides a CLI command to silence/pause all players and display a custom message. (Boom, Transporter, Classic, Squeezebox1, Slimp3, SoftSqueeze)</desc>
<title lang="EN">AllQuiet</title>
</plugin>
<plugin name="AutoDisplay" category="tools" creator="Watkins, Peter" email="[email protected]" installations="249" link="https://tuxreborn.netlify.app/slim/AutoDisplay.html" maxTarget="7.*" minTarget="7.0" sha="32673b4236087a814aa2eb4be0fd4f98f0b11b8b" url="https://tuxreborn.netlify.app/slim/slim7/AutoDisplay/AutoDisplay-2.1.7.zip" version="2.1.7">
<changes lang="EN">91p7: fix obscure restore bug; 91p6: fix for SC 7.4; 91p5: fix bug introduced in 91p4 w/ web UI; 91p4: update web settings template to use preferred "pref_" prefix</changes>
<desc lang="EN">Set automatic display dimming, as for making the display go dark at bedtime and become visible again in the morning. (modified version of code from Eric Koldinger, koldware.com). Will use FuzzyTime "displayed time" if FuzzyTime is installed (optional).</desc>
<title lang="EN">Auto Dim Display</title>
</plugin>
<plugin name="AutoDisplay" category="tools" creator="Watkins, Peter" email="[email protected]" installations="249" link="https://tuxreborn.netlify.app/slim/AutoDisplay.html" maxTarget="7.*" minTarget="7.3" sha="f183f006e7fa820bf8ae752e3581806c6f61162f" url="https://tuxreborn.netlify.app/slim/slim7/AutoDisplay/AutoDisplay-2.1.10.zip" version="2.1.10">
<changes lang="EN">2.1.9: squelch deprecation warnings in 7.4, work with --noweb; 2.1.8: respond to on/off time changes set by CLI; 91p7: fix obscure restore bug; 91p6: fix for SC 7.4; 91p5: fix bug introduced in 91p4 w/ web UI; 91p4: update web settings template to use preferred "pref_" prefix</changes>
<desc lang="EN">Set automatic display dimming, as for making the display go dark at bedtime and become visible again in the morning. (modified version of code from Eric Koldinger, koldware.com). Will use FuzzyTime "displayed time" if FuzzyTime is installed (optional). (Boom, Transporter, Classic, Squeezebox1, Slimp3, SoftSqueeze)</desc>
<title lang="EN">Auto Dim Display</title>
</plugin>
<plugin name="AutoDisplay" category="tools" creator="Watkins, Peter" email="[email protected]" installations="249" link="https://tuxreborn.netlify.app/slim/AutoDisplay.html" maxTarget="8.*" minTarget="7.4" sha="14263491dcb0b35fe8ff621dbd9ecd2bf79db84c" url="https://tuxreborn.netlify.app/slim/slim7/AutoDisplay/AutoDisplay-2.1.14.zip" version="2.1.14">
<changes lang="EN">2.1.13: allow running in LMS 8.0; 2.1.12: new repository URL; 2.1.9: squelch deprecation warnings in 7.4, work with --noweb; 2.1.8: respond to on/off time changes set by CLI;</changes>
<desc lang="EN">Set automatic display dimming, as for making the display go dark at bedtime and become visible again in the morning. (modified version of code from Eric Koldinger, koldware.com). Will use FuzzyTime "displayed time" if FuzzyTime is installed (optional). (Boom, Transporter, Classic, Squeezebox1, Slimp3, SoftSqueeze)</desc>
<title lang="EN">Auto Dim Display</title>
</plugin>
<plugin name="BlankSaver" category="misc" creator="Watkins, Peter" email="[email protected]" installations="140" link="https://tuxreborn.netlify.app/slim/BlankSaver.html" maxTarget="8.*" minTarget="7.0" sha="e498919962547ea162dd34542628e2eb3c4a7850" url="https://tuxreborn.netlify.app/slim/slim7/BlankSaver/BlankSaver-2.1.7.zip" version="2.1.7">
<desc lang="EN">Screensaver that simply makes the screen go dark -- most useful with SaverSwitcher, providing an easy way to make the display go dark without having to cycle through all brightness options. (Boom, Classic, Squeezebox1, Slimp3, SoftSqueeze)</desc>
<title lang="EN">BlankSaver</title>
</plugin>
<plugin name="ContextMenu" category="misc" creator="Watkins, Peter" email="[email protected]" installations="204" link="https://tuxreborn.netlify.app/slim/ContextMenu.html" maxTarget="7.*" minTarget="7.0" sha="c182627dd4e334b38677a68c34ed94b5a606e3ff" url="https://tuxreborn.netlify.app/slim/slim7/ContextMenu/ContextMenu-2.1.25.zip" version="2.1.25">
<changes lang="EN">2.1.25: more 7.4 fixes; 2.1.23: squelch deprecation warnings in 7.4, support --noweb; 2.1.22: remove CGI.pm dependency for newer releases; 7a21: better ensure mapping of hold-right key even in plugin modes registered after SC starts</changes>
<desc lang="EN">ContextMenu provides a mechanism for context menus much like the right-click context menus provided by computer operating system desktop environments. Provides a way to use any regular Squeezebox remote control button, even on the Boom. Other plugins that provide ContextMenu options include AllQuiet, KitchenTimer, PlayLog, and SaverSwitcher. (Boom, Transporter, Classic, Squeezebox1, Slimp3, SoftSqueeze)</desc>
<title lang="EN">ContextMenu</title>
</plugin>
<plugin name="ContextMenu" category="misc" creator="Watkins, Peter" email="[email protected]" installations="204" link="https://tuxreborn.netlify.app/slim/ContextMenu.html" maxTarget="8.*" minTarget="7.4" sha="faf4ae4d57f3d06af661891d1ac4023da5732565" url="https://tuxreborn.netlify.app/slim/slim7/ContextMenu/ContextMenu-2.1.27.zip" version="2.1.27">
<changes lang="EN">2.1.27:: allow use in LMS 8.* (untested); 2.1.25: more 7.4 fixes; 2.1.23: squelch deprecation warnings in 7.4, support --noweb; 2.1.22: remove CGI.pm dependency for newer releases; 7a21: better ensure mapping of hold-right key even in plugin modes registered after SC starts</changes>
<desc lang="EN">ContextMenu provides a mechanism for context menus much like the right-click context menus provided by computer operating system desktop environments. Provides a way to use any regular Squeezebox remote control button, even on the Boom. Other plugins that provide ContextMenu options include AllQuiet, KitchenTimer, PlayLog, and SaverSwitcher. (Boom, Transporter, Classic, Squeezebox1, Slimp3, SoftSqueeze)</desc>
<title lang="EN">ContextMenu</title>
</plugin>
<plugin name="DenonSerial" category="hardware" creator="Watkins, Peter" email="[email protected]" installations="123" link="https://tuxreborn.netlify.app/slim/DenonSerial.html" maxTarget="8.*" minTarget="7.2" sha="77c39600bd68ecc247d9e35bde695aeed3515199" url="https://tuxreborn.netlify.app/slim/slim7/DenonSerial/DenonSerial-0.1.44.zip" version="0.1.44">
<changes lang="EN">0.1.44: recognize when volume changed on Denon side; 0.1.43: allow use in LMS 8.* (untested); 0.1.42: amp polling now optional; 0.1.40: fix for findOurDir in newer server versions; 0.1.39: remove WOL code, more conservative about noting when responses seen; 0.1.38: full dB steps for zones 2+, filter garbage from amp response, try to clear queue if hung</changes>
<desc lang="EN">For Squeezeboxes connected to Denon receivers with RS232 or Ethernet interfaces, use your Squeezebox Controller, Squeezebox IR remote control, Web interface, etc. to control your Denon volume. (Transporter, Classic, Receiver)</desc>
<title lang="EN">DenonSerial</title>
</plugin>
<plugin name="FuzzyTime" category="information" creator="Watkins, Peter" email="[email protected]" installations="84" link="https://tuxreborn.netlify.app/slim/FuzzyTime.html" maxTarget="7.*" minTarget="7.0" sha="5855c597b3443b00a5a362c8129e92721c89b575" url="https://tuxreborn.netlify.app/slim/slim7/FuzzyTime/FuzzyTime-2.1.11.zip" version="2.1.11">
<changes lang="EN">2.1.10: squelch deprecation warnings in 7.4; support --noweb</changes>
<desc lang="EN">Provides a "date and time" screensaver that can act like a clock set "ahead" of the real time, and allows other plugins to display such "fast" times and set timers based on such displayed time. (Boom, Transporter, Classic, Squeezebox1, Slimp3, SoftSqueeze)</desc>
<title lang="EN">FuzzyTime</title>
</plugin>
<plugin name="FuzzyTime" category="information" creator="Watkins, Peter" email="[email protected]" installations="84" link="https://tuxreborn.netlify.app/slim/FuzzyTime.html" maxTarget="8.*" minTarget="7.4" sha="2f2f36f9ff9e84b57bac60378f72287bde7d0a1a" url="https://tuxreborn.netlify.app/slim/slim7/FuzzyTime/FuzzyTime-2.1.14.zip" version="2.1.14">
<changes lang="EN">2.1.14: allow use in LMS 8.* (untested); 2.1.13: remove clientGet call to work better in LMS 7.9; 2.1.10: squelch deprecation warnings in 7.4; support --noweb</changes>
<desc lang="EN">Provides a "date and time" screensaver that can act like a clock set "ahead" of the real time, and allows other plugins to display such "fast" times and set timers based on such displayed time. (Boom, Transporter, Classic, Squeezebox1, Slimp3, SoftSqueeze)</desc>
<title lang="EN">FuzzyTime</title>
</plugin>
<plugin name="KidsPlay" category="tools" creator="Watkins, Peter" email="[email protected]" installations="130" link="https://tuxreborn.netlify.app/slim/KidsPlay.html" maxTarget="7.*" minTarget="7.0" sha="d0c9a0c7ef59202aa3e5ecbf6066549c3591db14" url="https://tuxreborn.netlify.app/slim/slim7/KidsPlay/KidsPlay-2.6.2.zip" version="2.6.2">
<changes lang="EN">2.6.2: fixes for Boom with SBS 7.5.2; 2.6.1: kidsplayexec: allow commands without additional arguments; 2.6.0: kidsplayexec CLI command; 2.5.0: variables for better TrackStat integration, other uses; 2.4.0: per-player macros that override global defaults possible, better UI for setting macros; 2.3.0: support for remapping Radio buttons; 2.2.0: can specify a specific player to run a command on, or all players, or every *other* player</changes>
<desc lang="EN">Have SqueezeCenter execute specific sets of commands for certain buttons, so you can give a child a remote control with limited function, or redefine Boom or Radio 1-6 preset buttons or the button on a Squeezebox Receiver. (Boom, Classic, Radio, Receiver, Slimp3, Squeezebox1, Transporter)</desc>
<title lang="EN">KidsPlay</title>
</plugin>
<plugin name="KidsPlay" category="tools" creator="Watkins, Peter" email="[email protected]" installations="130" link="https://tuxreborn.netlify.app/slim/KidsPlay.html" maxTarget="7.*" minTarget="7.4" sha="8073652b7bfa4ce4587bd042fc1412ce6ce5c430" url="https://tuxreborn.netlify.app/slim/slim7/KidsPlay/KidsPlay-2.6.4.zip" version="2.6.4">
<changes lang="EN">2.6.3: remove code that logged harmless Perl warnings; 2.6.2: fixes for Boom with SBS 7.5.2; 2.6.1: kidsplayexec: allow commands without additional arguments; 2.6.0: kidsplayexec CLI command; 2.5.0: variables for better TrackStat integration, other uses; 2.4.0: per-player macros that override global defaults possible, better UI for setting macros</changes>
<desc lang="EN">Have SqueezeCenter execute specific sets of commands for certain buttons, so you can give a child a remote control with limited function, or redefine Boom or Radio 1-6 preset buttons or the button on a Squeezebox Receiver. (Boom, Classic, Radio, Receiver, Slimp3, Squeezebox1, Transporter)</desc>
<title lang="EN">KidsPlay</title>
</plugin>
<plugin name="KidsPlay" category="tools" creator="Watkins, Peter" email="[email protected]" installations="130" link="https://tuxreborn.netlify.app/slim/KidsPlay.html" maxTarget="8.*" minTarget="7.9" sha="5729e086da07777e4698cae8505f8318a6d29374" url="https://tuxreborn.netlify.app/slim/slim7/KidsPlay/KidsPlay-2.6.6.zip" version="2.6.6">
<changes lang="EN">2.6.6: allow use in LMS 8.* (untested); 2.6.5: song title reference bug that likely affected few users; 2.6.3: remove code that logged harmless Perl warnings; 2.6.2: fixes for Boom with SBS 7.5.2; 2.6.1: kidsplayexec: allow commands without additional arguments; 2.6.0: kidsplayexec CLI command; 2.5.0: variables for better TrackStat integration, other uses; 2.4.0: per-player macros that override global defaults possible, better UI for setting macros</changes>
<desc lang="EN">Have SqueezeCenter execute specific sets of commands for certain buttons, so you can give a child a remote control with limited function, or redefine Boom or Radio 1-6 preset buttons or the button on a Squeezebox Receiver. (Boom, Classic, Radio, Receiver, Slimp3, Squeezebox1, Transporter)</desc>
<title lang="EN">KidsPlay</title>
</plugin>
<plugin name="KitchenTimer" category="tools" creator="Watkins, Peter" email="[email protected]" installations="185" link="https://tuxreborn.netlify.app/slim/KitchenTimer.html" maxTarget="8.*" minTarget="7.0" sha="44a06698d0250fba3c420624dabaf2b9bea10405" url="https://tuxreborn.netlify.app/slim/slim7/KitchenTimer/KitchenTimer-2.1.28.zip" version="2.1.28">
<changes lang="EN">2.1.28: allow use in LMS 8.* (untested); 2.1.27: fix minor UI glitches, minimum increment now 15 seconds; 2.1.25: squelch deprecation warnings in 7.4; support --noweb; 2.1.24: *really* remove CGI.pm dependency for newer SqueezeCenter releases; 7a21: fix some API calls, make it possible to start with ContextMeu when player is off; 7a18: can now be used as When Playing or When Stopped screensaver</changes>
<desc lang="EN">This plugin allows you to set simple countdown timers. Timers can be given names and saved for later re-use. Timers can be shortened or extended if needed. Includes a countdown screensaver designed for use with SaverSwitcher (only displayed if there's an active timer). (Boom, Transporter, Classic, Squeezebox1, Slimp3, SoftSqueeze)</desc>
<title lang="EN">KitchenTimer</title>
</plugin>
<plugin name="PlayLog" category="information" creator="Watkins, Peter" email="[email protected]" installations="203" link="https://tuxreborn.netlify.app/slim/PlayLog.html" maxTarget="7.*" minTarget="7.0" sha="1b9cc0d39f5cce344a418e266219e0cc59606897" url="https://tuxreborn.netlify.app/slim/slim7/PlayLog/PlayLog-2.1.44.zip" version="2.1.44">
<changes lang="EN">2.1.42: address deprecation warnings in newer Perl versions; 2.1.41: fix "&apos;" display bug in IE8; 2.1.40: tested in 7.4; 2.1.38: fix gross logging errors in 7.4; 2.1.37: squelch deprecation warnings in 7.4, support --noweb; 2.1.34: attempt to fix ReadyNAS file I/O problems; 2.1.33: remove CGI.pm dependency for newer releases; 0.7a30: better detection of song changes, especially on Slacker stations</changes>
<desc lang="EN">This plugin allows you you to log the tracks you listen to, either automatically or by pressing a few remote control buttons. It provides a web interface for viewing its log, linking to the web for more information about what you've listened to, and downloading XML and M3U playlists of played songs. (Boom, Classic, Slimp3, SoftSqueeze, Squeezebox1, Transporter; limited support for Radio, Receiver, and Touch)</desc>
<title lang="EN">PlayLog</title>
</plugin>
<plugin name="PlayLog" category="information" creator="Watkins, Peter" email="[email protected]" installations="203" link="https://tuxreborn.netlify.app/slim/PlayLog.html" maxTarget="7.*" minTarget="7.4" sha="ef66268b73c7aede8d1e44b3583bef2694257b8f" url="https://tuxreborn.netlify.app/slim/slim7/PlayLog/PlayLog-2.1.45.zip" version="2.1.45">
<changes lang="EN">2.1.45: fix URL truncation in list, update search URLs; 2.1.42: address deprecation warnings in newer Perl versions; 2.1.41: fix "&apos;" display bug in IE8; 2.1.40: tested in 7.4; 2.1.38: fix gross logging errors in 7.4; 2.1.37: squelch deprecation warnings in 7.4, support --noweb; 2.1.34: attempt to fix ReadyNAS file I/O problems; 2.1.33: remove CGI.pm dependency for newer releases; 0.7a30: better detection of song changes, especially on Slacker stations</changes>
<desc lang="EN">This plugin allows you you to log the tracks you listen to, either automatically or by pressing a few remote control buttons. It provides a web interface for viewing its log, linking to the web for more information about what you've listened to, and downloading XML and M3U playlists of played songs. (Boom, Classic, Slimp3, SoftSqueeze, Squeezebox1, Transporter; limited support for Radio, Receiver, and Touch)</desc>
<title lang="EN">PlayLog</title>
</plugin>
<plugin name="PlayLog" category="information" creator="Watkins, Peter" email="[email protected]" installations="203" link="https://tuxreborn.netlify.app/slim/PlayLog.html" maxTarget="8.*" minTarget="7.9" sha="739726295f7b3fd8e81d33191803c071bf565c06" url="https://tuxreborn.netlify.app/slim/slim7/PlayLog/PlayLog-2.1.47.zip" version="2.1.47">
<changes lang="EN">2.1.47: allow use in LMS 8.* (untested); 2.1.46: fix bug detected with logging Don't Stop The Music; 2.1.45: fix URL truncation in list, update search URLs; 2.1.42: address deprecation warnings in newer Perl versions; 2.1.41: fix "&apos;" display bug in IE8; 2.1.40: tested in 7.4; 2.1.38: fix gross logging errors in 7.4; 2.1.37: squelch deprecation warnings in 7.4, support --noweb; 2.1.34: attempt to fix ReadyNAS file I/O problems; 2.1.33: remove CGI.pm dependency for newer releases; 0.7a30: better detection of song changes, especially on Slacker stations</changes>
<desc lang="EN">This plugin allows you you to log the tracks you listen to, either automatically or by pressing a few remote control buttons. It provides a web interface for viewing its log, linking to the web for more information about what you've listened to, and downloading XML and M3U playlists of played songs. (Boom, Classic, Slimp3, SoftSqueeze, Squeezebox1, Transporter; limited support for Radio, Receiver, and Touch)</desc>
<title lang="EN">PlayLog</title>
</plugin>
<plugin name="PowerCenter" category="tools" creator="Watkins, Peter" email="[email protected]" installations="88" link="https://tuxreborn.netlify.app/slim/PowerCenter.html" maxTarget="8.*" minTarget="7.0" sha="1e5a8b168136d9293c095d913adbf23f0d83c1c1" url="https://tuxreborn.netlify.app/slim/slim7/PowerCenter/PowerCenter-2.2.2.zip" version="2.2.2">
<changes lang="EN">2.2.2: declare OK for LMS 8.*; 2.2.1: fix clientGet call for LMS 7.9; 2.2.0: multizone support (multiple players with the same X-10/Insteon codes); 2.1.13: squelch 7.4 deprecation warnings, support --noweb</changes>
<desc lang="EN">Control X-10 and Insteon modules with a Squeezebox Controller, Radio, Touch, old-style infrared remote, or Boom or Transporter buttons. Use Insteon or X-10 to have a device turn on and off when a specific player is turned on or off. Turn a coffee pot on when an alarm sounds. (Boom, Classic, Controller, Radio, Receiver, Slimp3, SoftSqueeze, Squeezebox1, Touch, Transporter)</desc>
<title lang="EN">PowerCenter</title>
</plugin>
<plugin name="SaverSwitcher" category="information" creator="Watkins, Peter" email="[email protected]" installations="123" link="https://tuxreborn.netlify.app/slim/SaverSwitcher.html" maxTarget="8.*" minTarget="7.0" sha="eb706dd3e6e23a31cbb8562715493484672d3bd5" url="https://tuxreborn.netlify.app/slim/slim7/SaverSwitcher/SaverSwitcher-2.1.31.zip" version="2.1.31">
<changes lang="EN">2.1.31: allow use in LMS 8.* (untested); 2.1.30: work in 7.4, and be less aggressive about trimming mode stack; 2.1.28: remove CGI.pm dependency for newer releases; 7a27: performance/efficiency change suggested by andyg; 7a26: more aggressive Activate Screensaver for ContextMenu; 7a23: ContextMenu fixes; 7a21: fix bug that kicked users back into screensaver mode; more quickly and accurately notice saver pref changes; don't mess with animations if the screensaver isn't changing; 7a19: try to keep client mode stack trim so switching modes (off/active/idle/playing) doesn't result in long delays</changes>
<desc lang="EN">Configure multiple screensavers for the When Off, When Playing, and When Idle modes, either having SqueezeCenter cycle through a number of plugins or allowing you to change screensavers with a single button press. Easily change screensavers, or immediately jump to the When Playing screensaver, if used with ContextMenu. Can display "conditional" screensavers, as with KitchenTimer (set a screensaver to display onlly if it has something to report). (Boom, Transporter, Classic, Squeezebox1, Slimp3, SoftSqueeze)</desc>
<title lang="EN">SaverSwitcher</title>
</plugin>
<plugin name="SettingsManager" category="tools" creator="Watkins, Peter" email="[email protected]" installations="518" link="https://tuxreborn.netlify.app/slim/SettingsManager.html" maxTarget="8.*" minTarget="7.0" sha="3820eef472d4674f4b0f80b8a33f2014a2150477" url="https://tuxreborn.netlify.app/slim/slim7/SettingsManager/SettingsManager-2.1.17.zip" version="2.1.17">
<changes lang="EN">2.1.17: allow use in LMS 8.* (untested); 2.1.16: regex fix in web UI code; 2.1.15: tested with 7.4 (some strings still not labeled); 2.1.13: squelch missing string startup error messages (but some settings not labeled in newest 7.4 builds)</changes>
<desc lang="EN">Provides a Web interface for copying settings from one player to another, permanently "linking" settings on multiple Squeezeboxes, setting defaults for newly connected Squeezeboxes or remote /stream.mp3 clients, and importing/exporting client settings, to make it easier to manage multiple Squeezebox players. (Boom, Classic, Receiver, Slimp3, SoftSqueeze, Squeezebox1, Transporter)</desc>
<title lang="EN">SettingsManager</title>
</plugin>
<plugin name="SleepFade" category="misc" creator="Watkins, Peter" email="[email protected]" installations="163" link="https://tuxreborn.netlify.app/slim/SleepFade.html" maxTarget="7.*" minTarget="7.0" sha="4ec8a4455d87b2ec3c3b07088cda539d44fffc06" url="https://tuxreborn.netlify.app/slim/slim7/SleepFade/SleepFade-2.2.1.zip" version="2.2.1">
<changes lang="EN">2.2.0: web settings page so it's now usable for Radio, Receiver, and Touch; 2.1.7: works in 7.4, but needs web settings page for Radio, Receiver, and Touch; 7a5: resolve failure to power off when decreasing volume bug</changes>
<desc lang="EN">Allows the "sleep" mode for any given player to fade the music out over the entire sleep period, rather than playing at a constant volume until the last minute. (Boom, Classic, Radio, Receiver, Slimp3, SoftSqueeze, Squeezebox1, Touch, Transporter)</desc>
<title lang="EN">SleepFade</title>
</plugin>
<plugin name="SleepFade" category="misc" creator="Watkins, Peter" email="[email protected]" installations="163" link="https://tuxreborn.netlify.app/slim/SleepFade.html" maxTarget="8.*" minTarget="7.4" sha="d5e95afce7e58a41459173a6958a00896b92b0c4" url="https://tuxreborn.netlify.app/slim/slim7/SleepFade/SleepFade-2.2.7.zip" version="2.2.7">
<changes lang="EN">2.2.7: allow use in LMS 8.* (untested); 2.2.0: web settings page so it's now usable for Radio, Receiver, and Touch; 2.1.7: works in 7.4, but needs web settings page for Radio, Receiver, and Touch; 7a5: resolve failure to power off when decreasing volume bug</changes>
<desc lang="EN">Allows the "sleep" mode for any given player to fade the music out over the entire sleep period, rather than playing at a constant volume until the last minute. (Boom, Classic, Radio, Receiver, Slimp3, SoftSqueeze, Squeezebox1, Touch, Transporter)</desc>
<title lang="EN">SleepFade</title>
</plugin>
<plugin name="SqueezeCLIHandler" category="misc" creator="Watkins, Peter" email="[email protected]" installations="229" link="" maxTarget="8.*" minTarget="7.5" sha="940917f3b672bca1c02d24594859284b257097a0" url="https://tuxreborn.netlify.app/slim/slim7/SqueezeCLIHandler/SqueezeCLIHandler-0.6.zip" version="0.6">