-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathchangelog.txt
2260 lines (1993 loc) · 98.5 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
------------------------
[B]13.0.14 (27-April-23)[/B]
------------------------
- Minor fixes.
- Replace script.cinemavision with script.preshowexperience.
------------------------
[B]13.0.13 (16-October-22)[/B]
------------------------
- Fix album and song information window play button.
------------------------
[B]13.0.12 (16-October-22)[/B]
------------------------
- Add Favourites browser support.
------------------------
[B]13.0.11 (6-October-22)[/B]
------------------------
- Add support for RetroPlayer savestate manager.
- Update fullscreen video and music OSD buttons.
------------------------
[B]13.0.10 (19-July-22)[/B]
------------------------
- Update DialogPVRChannelManager.xml dialog.
------------------------
[B]13.0.9 (23-January-22)[/B]
------------------------
- Add skin setting to auto close video and music OSD.
------------------------
[B]13.0.8 (23-January-22)[/B]
------------------------
- Updated Kodi 20 changes for screen calibration window.
------------------------
[B]13.0.7 (21-January-22)[/B]
------------------------
- Add support for Dolby Vision, HDR10 and HLG mediaflags.
------------------------
[B]13.0.6 (18-January-22)[/B]
------------------------
- Move widget fanart to Home.xml screen to fix animations.
- Add checks for plugin.video.youtube in music information window Music Videos button.
- Fix backgrounds in music information window.
------------------------
[B]13.0.5 (18-January-22)[/B]
------------------------
- Fix and cleanup home screen info dialog backgrounds.
------------------------
[B]13.0.4 (7-January-22)[/B]
------------------------
- Added Player.Cuts and Player.SceneMarkers controls to fullscreen video OSD.
------------------------
[B]13.0.3 (2-January-22)[/B]
------------------------
- Updated fullscreen video technical info dialog.
------------------------
[B]13.0.2 (19-December-21)[/B]
------------------------
- Fixes for script.extendedinfo.
------------------------
[B]13.0.1 (9-December-21)[/B]
------------------------
- Add game controllers port dialog.
------------------------
[B]13.0.0 (7-November-21)[/B]
------------------------
- Add show/hide password button in keyboard dialog.
- Add view option to hide PVR guide colours.
- Replace script.skin.helper.service with script.embuary.helper in Skin settings: Reorder categories.
- Subtitle and audio language media flags are now built directly into the skin.
- Added support for color picker dialog and subtitle colors.
- Fixes for labels and icons in tv shows and seasons List Info 2 / 3 views.
- Changes for PVR search dialog to save searches.
------------------------
[B]12.3.1 (1-July-21)[/B]
------------------------
- Bugfixes and cleanup.
------------------------
[B]12.3.0 (23-June-21)[/B]
------------------------
- Remove script.extendedinfo
- Remove script.youtube.browser
- Remove script.tv.show.next.aired
- Replace removed addons using plugin.video.youtube, plugin.video.themoviedb.helper, script.embuary.info and script.embuary.helper.
- Media flag support for Ultra-HD Blu-ray (using ".bdxl" / ".hdr" / "bd66" / "bd100" in the filename).
- Skin Settings > General > Enable Splash Screen is now built into the skin.
- Improvements for PVR channel manager dialog.
------------------------
[B]12.2.35 (31-May-21)[/B]
------------------------
- Remove weather.weatherbit.io from supported add-ons section.
------------------------
[B]12.2.34 (18-May-21)[/B]
------------------------
- Add support for AV1 video codec.
------------------------
[B]12.2.33 (4-May-21)[/B]
------------------------
- All add-on shortcuts can choose from all add-ons.
------------------------
[B]12.2.32 (29-April-21)[/B]
------------------------
- If skin setting "Show CD art and info in fullscreen music" is enabled the window will not open with info dialog diaplayed.
------------------------
[B]12.2.31 (16-April-21)[/B]
------------------------
- Add audio track and subtitle language media flags to fullscreen video window.
------------------------
[B]12.2.30 (27-March-21)[/B]
------------------------
- Reintroduced improved fanart view.
------------------------
[B]12.2.29 (6-March-21)[/B]
------------------------
- Extended List 2 view for artists: albums are now sorted by year.
- Removed support for script.artwork.beef.
------------------------
[B]12.2.28 (25-February-21)[/B]
------------------------
- Improvements for picture information dialog.
- PVR view option "Channel icons" will show both channel icon and channel name.
------------------------
[B]12.2.27 (18-February-21)[/B]
------------------------
- Add up to 6 add-on shortcuts for all custom categories.
------------------------
[B]12.2.26 (18-January-21)[/B]
------------------------
- Added "Versions" button to add-on information window.
- Added "Origin" information to add-on information window.
------------------------
[B]12.2.25 (11-November-20)[/B]
------------------------
- Cleanup views.
------------------------
[B]12.2.24 (3-October-20)[/B]
------------------------
- Add skin settings to create custom widgets from favourites.
------------------------
[B]12.2.23 (1-October-20)[/B]
------------------------
- Add station name in fullscreen music window when streaming music.
- Add record size label to PVR recordings window and information window.
------------------------
[B]12.2.22 (29-September-20)[/B]
------------------------
- Fix movie set information button in context menu.
------------------------
[B]12.2.21 (22-September-20)[/B]
------------------------
- Add multidisc info in fullscreen music window.
------------------------
[B]12.2.20 (13-September-20)[/B]
------------------------
- Fix buttons for randomizing playlist content.
- Add new add-on infolabels.
------------------------
[B]12.2.19 (8-September-20)[/B]
------------------------
- Add Extended List View for tv shows, containing seasons and episodes.
- Add Extended List View for artists, containing albums and songs.
------------------------
[B]12.2.18 (29-August-20)[/B]
------------------------
- Sort methods are now a drop down dialog instead of select dialog.
- Added List Info View for movie and tv show actors.
- Added Wrap List Info View for movie and tv show actors.
------------------------
[B]12.2.17 (22-August-20)[/B]
------------------------
- Add new infolabels to music information window.
- Added duration to music album views.
------------------------
[B]12.2.16 (18-August-20)[/B]
------------------------
- Added image overlay if add-on is marked broken.
- Added Raleway font to better support Russian language.
- Add new feature to grey out missing movies in a set or episodes (tag filename with "Missingvideo" or "missingvideo").
- Skin Settings: clicking custom category icons button will reset the path.
- Adding "bdremux" to a filename will display a blu-ray media flag.
------------------------
[B]12.2.15 (7-August-20)[/B]
------------------------
- Added button id=8 to select dialog.
------------------------
[B]12.2.14 (2-August-20)[/B]
------------------------
- Bugfixing of movie and tv show backgrounds in libraries.
------------------------
[B]12.2.13 (30-July-20)[/B]
------------------------
- Replaced home screen Movies category submenu "Studios" with "Sets".
- Bugfixing (thanks to Karellen).
------------------------
[B]12.2.12 (29-July-20)[/B]
------------------------
- Added Australian certification ratings media flags.
- Added rating media flags for tv shows and seasons.
------------------------
[B]12.2.11 (29-July-20)[/B]
------------------------
- Added fullscreen video OSD dialog to control player tempo (when play button is focused).
------------------------
[B]12.2.10 (28-July-20)[/B]
------------------------
- Removed Skin setting to enable/disable weather. If a weather add-on is installed, weather features are enabled.
- Added Weather Add-on Settings button to Skin Settings > Weather.
------------------------
[B]12.2.9 (28-July-20)[/B]
------------------------
- Bugfixing of views (thanks to Karellen).
------------------------
[B]12.2.8 (26-July-20)[/B]
------------------------
- Completely remove script.artwork.downloader.
- Completely removed script.imdbupdate.
- Removed Skin Settings category: Add-ons.
- Moved all lyrics settings to Skin Settings > Media > Fullscreen Music.
------------------------
[B]12.2.7 (28-June-20)[/B]
------------------------
- Added Information drop down dialog to the menubar in add-on information window.
- Added Changelog button in the new drop down dialog in add-on information window.
- Added button for audio settings in fullscreen music OSD.
------------------------
[B]12.2.6 (14-June-20)[/B]
------------------------
- Updated version code details in system information window.
- Selected Skin Settings are now available in a dialog in fullscreen music / video windows.
------------------------
[B]12.2.5 (8-May-20)[/B]
------------------------
- Bugfixing.
- Add support for Multi Weather add-on (weather.multi).
- Updated translations from Transifex.
------------------------
[B]12.2.4 (2-May-20)[/B]
------------------------
- Better handling of installed and enabled/disabled add-ons.
- Greatly improved info for movie sets.
------------------------
[B]12.2.3 (25-April-20)[/B]
------------------------
- Add "Premiere" / "Finale" / "Live" tags to PVR information window.
- TV Show Today widget and Upcoming TV Shows widget now use script.embuary.info.
------------------------
[B]12.2.2 (18-April-20)[/B]
------------------------
- Add support for music album boxsets.
- Added album compilations and boxsets to presets dialog.
- Added album boxsets to library options dialog.
------------------------
[B]12.2.1 (16-April-20)[/B]
------------------------
- Bump xbmc.gui
- Removed dependency on script.skin.helper.widgets.
- Added dependency on script.embuary.helper.
- Favourites widget no longer requires script.skin.helper.widgets.
- In Progress Episodes widget and quick jump alphabet feature now use script.embuary.helper.
------------------------
[B]12.2.0 (9-April-20)[/B]
------------------------
- Removed script.skin.helper.backgrounds and coded features directly into the skin.
- Removed skin setting for custom time for fanart backgrounds. Default for all images is now 10 seconds.
- Bugfixing for playlist background images for custom categories.
- Added fanart backgrounds for home screen Add-ons category and windows.
------------------------
[B]12.1.19 (5-April-20)[/B]
------------------------
- Removed script.randomandlastitems and coded features directly into the skin.
------------------------
[B]12.1.18 (29-March-20)[/B]
------------------------
- Fix for formatted short duration.
- Cosmetic improvements for Now Playing widget.
- Cosmetic improvements for Player Controls dialog.
- Added info on next video title in Now Playing widget.
- Added info on next video title in Player Controls dialog.
- Added info on next video title in fullscreen video if no chapter info is available.
- Better support for Next Aired TV Show add-on (script.tv.show.next.aired).
------------------------
[B]12.1.17 (12-March-20)[/B]
------------------------
- Add skin clearlogo and banner images.
- Add new info labels to music information window: release date, original date, BPM.
------------------------
[B]12.1.16 (25-February-20)[/B]
------------------------
- Changed Skin Settings > Add more categories to only one button and more user friendly.
------------------------
[B]12.1.15 (9-February-20)[/B]
------------------------
- Remove skin setting to switch to visualization when playing music (go to "Settings/Media/Music/Switch to visualization on playback" instead).
------------------------
[B]12.1.14 (14-February-20)[/B]
------------------------
- Add info on playing media to fullscreen seekbar dialog (after 5 seconds).
------------------------
[B]12.1.13 (7-February-20)[/B]
------------------------
- Add better mouse support to home screen categories (thanks to olympus).
- Fix label for tv shows in custom widgets (thanks to olympus).
------------------------
[B]12.1.12 (2-February-20)[/B]
------------------------
- Switch to custom window for display of path using text viewer dialog (instead of script.skin.helper.service).
------------------------
[B]12.1.11 (9-January-20)[/B]
------------------------
- Support for actor info in Extended List View (plugin.video.themoviedb.helper).
- Added plugin.video.themoviedb.helper and script.embuary.info to Skin Settings > Supported Add-ons.
- Fixed scrollbar in Skin Settings > Supported Add-ons.
------------------------
[B]12.1.10 (21-December-19)[/B]
------------------------
- Fix service.upnext errors.
------------------------
[B]12.1.9 (17-December-19)[/B]
------------------------
- Support for Embuary Info script (script.embuary.info).
------------------------
[B]12.1.8 (17-December-19)[/B]
------------------------
- Label 2 for tv shows will now show rating.
- Fixes for List View.
------------------------
[B]12.1.7 (9-December-19)[/B]
------------------------
- Add check if library nodes exist.
------------------------
[B]12.1.6 (30-November-19)[/B]
------------------------
- It's now possible to switch to Playlist View in all windows, when more than one music or video track is playing.
- CPU info is now hidden if it's not supported by the system.
------------------------
[B]12.1.5 (22-November-19)[/B]
------------------------
- Added oninfo action in programs windows to open programs information window.
------------------------
[B]12.1.4 (21-November-19)[/B]
------------------------
- Support for Artist Slideshow 2.x / 3.x.
------------------------
[B]12.1.3 (21-November-19)[/B]
------------------------
- Major bugfixing (huge thanks to olympus).
------------------------
[B]12.1.2 (10-November-19)[/B]
------------------------
- Changed Arial font for home screen categories to better support different languages.
------------------------
[B]12.1.1 (10-October-19)[/B]
------------------------
- Adjustments to subtitle dialog.
------------------------
[B]12.1.0 (08-October-19)[/B]
------------------------
- Major code cleanup and rewrite of views.
- Refactor of Skin Settings: Views.
- Thumbs Info view for clear art is now available for movies and sets.
- Actors in video information window will always display images.
- Removed support for script.cdartmanager (cdart.png images can still be used). Use Artwork Beef instead.
- Fix for album covers when playing music.
- Added "(New!)" label in PVR information window for new premieres.
- Added feature to enable add-ons used by the skin, if disabled.
- Skin settings -> Supported add-ons will now show if an add-on is disabled.
- Added Extended List View for music artists.
- Added guide controls to PVR guide window.
- Added label to numeric dialog.
------------------------
[B]12.0.12 (10-August-19)[/B]
------------------------
- Disabling clear logos is now a global setting either for the video, music or PVR libraries.
------------------------
[B]12.0.11 (8-August-19)[/B]
------------------------
- Added support for CoreELEC.
------------------------
[B]12.0.10 (12-July-19)[/B]
------------------------
- Removed fanart view to improve performance.
- Cleanup Home window code.
- Updated PVR group manager dialog to support latest features.
------------------------
[B]12.0.9 (6-July-19)[/B]
------------------------
- Added PVR.IsPlayingActiveRecording bool.
------------------------
[B]12.0.8 (20-June-19)[/B]
------------------------
- Cleanup using expressions.
- Fixed navigation from home button in PVR information window.
------------------------
[B]12.0.7 (18-June-19)[/B]
------------------------
- Rewrite and code cleanup of programs windows.
- Added "Information" button to context menu when running programs.
------------------------
[B]12.0.6 (18-June-19)[/B]
------------------------
- Code cleanup on certain view types and animations.
------------------------
[B]12.0.5 (9-June-19)[/B]
------------------------
- Bugfixing.
------------------------
[B]12.0.4 (30-May-19)[/B]
------------------------
- Added skin setting to disable scrollbar trailer playback.
------------------------
[B]12.0.3 (25-May-19)[/B]
------------------------
- Added DefaultBluray.png icon.
- Fixed no background in PVR information window when accessed from home window.
------------------------
[B]12.0.2 (17-May-19)[/B]
------------------------
- Added icons for playable and archive PVR items.
------------------------
[B]12.0.1 (5-May-19)[/B]
------------------------
- Added video info window for movie sets.
------------------------
[B]12.0.0 (2-May-19)[/B]
------------------------
- Added "Find similar" button to PVR recordings information window.
- Added settings level button in add-on settings dialog.
- Added EDL and chapter marks to progress bar in fullscreen video window.
- Added "Set reminder" button to PVR guide information window.
- Added full support for PVR reminders.
- Updated PVR timers window with more info and better design.
- Added View Option setting for channel icons in PVR timers window.
------------------------
[B]11.2.35 (30-March-19)[/B]
------------------------
- Fixes for fullscreen video labels.
------------------------
[B]11.2.34 (27-March-19)[/B]
------------------------
- Updated addon settings dialog with help text.
- Fix for player process info dialog CPU usage label.
------------------------
[B]11.2.33 (20-March-19)[/B]
------------------------
- Updated language files from Transifex.
- Fix for home screen add-on widgets.
- Fix for PVR recordings episode name.
------------------------
[B]11.2.32 (24-February-19)[/B]
------------------------
- Added sort letter notification for PVR guide window.
- Added more info labels for PVR recordings window.
------------------------
[B]11.2.31 (11-February-19)[/B]
------------------------
- Added support for Netflix add-on.
------------------------
[B]11.2.30 (2-February-19)[/B]
------------------------
- Increased the size of album cover and disc art in fullscreen music window.
- Added missing key to keyboard dialog.
------------------------
[B]11.2.29 (26-January-19)[/B]
------------------------
- Clicking the top bar CD icon will open up a new disc dialog.
- Added "Go to movie set" button to movie information window.
- Music library image improvements.
------------------------
[B]11.2.28 (24-January-19)[/B]
------------------------
- Use music cd art in home screen and player controls dialog.
------------------------
[B]11.2.27 (20-January-19)[/B]
------------------------
- Added skin setting to show information when fullscreen video is paused.
------------------------
[B]11.2.26 (13-January-19)[/B]
------------------------
- Improved audio CD support.
- Added more presets to the presets dialog (when creating custom categories and submenus).
- Prefer Artwork Beef add-on over Artwork Downloader add-on.
------------------------
[B]11.2.25 (10-January-19)[/B]
------------------------
- Added new OSD menu with resolution settings.
------------------------
[B]11.2.24 (3-January-19)[/B]
------------------------
- Fixes for star rating transparency.
------------------------
[B]11.2.23 (3-January-19)[/B]
------------------------
- Bugfixes.
------------------------
[B]11.2.22 (3-January-19)[/B]
------------------------
- Added skin setting for full user rating support.
------------------------
[B]11.2.21 (23-December-18)[/B]
------------------------
- Added support for DTS-ES audio.
------------------------
[B]11.2.20 (15-December-18)[/B]
------------------------
- Added icon for spoilers.
- Removed support of service.nextup.notification
- Added support for service.upnext
------------------------
[B]11.2.19 (2-December-18)[/B]
------------------------
- Fix poster and thumb scaling throughout the skin.
- Added more OSD buttons to fullscreen live music.
- Updated RDS Info support.
------------------------
[B]11.2.18 (19-November-18)[/B]
------------------------
- Bump xbmc.gui
------------------------
[B]11.2.17 (14-November-18)[/B]
------------------------
- Music OSD RDS information button is moved to OSD Information dialog.
- Fixes in confirm dialog.
- Added true support for music library clear logos.
------------------------
[B]11.2.16 (11-November-18)[/B]
------------------------
- All home screen widget images will now scale or keep aspect ratio.
------------------------
[B]11.2.15 (1-November-18)[/B]
------------------------
- Added support for 8K content.
------------------------
[B]11.2.14 (25-October-18)[/B]
------------------------
- Fixed scrollbars.
------------------------
[B]11.2.13 (25-October-18)[/B]
------------------------
- Added custom playlist support for custom home screen categories.
------------------------
[B]11.2.12 (20-October-18)[/B]
------------------------
- Live video and music backgrounds are now displayed throughout the skin.
------------------------
[B]11.2.11 (6-October-18)[/B]
------------------------
- Replaced OpenWeatherMap Extended weather add-on with Weatherbit IO.
------------------------
[B]11.2.10 (4-October-18)[/B]
------------------------
- Some OSD buttons are hidden if not active.
- Episode specials are now displayed as "Special E01" instead of "S0E01" (thank to sualfred).
- Replaced the custom widgets "New DVD's" and "Upcoming DVD's" with "Top rated movies" and "Top rated tv shows".
- Added Game OSD help dialog.
- Updated Game Controllers dialog.
------------------------
[B]11.2.9 (18-June-18)[/B]
------------------------
- Hide bookmarks button for fullscreen live tv.
- Latest game changes.
------------------------
[B]11.2.8 (6-June-18)[/B]
------------------------
- Fixes for fullscreen video OSD.
------------------------
[B]11.2.7 (2-June-18)[/B]
------------------------
- Issues fixed related to skin strings.
------------------------
[B]11.2.6 (31-May-18)[/B]
------------------------
- More OSD buttons are now available for PVR recordings and other content.
------------------------
[B]11.2.5 (19-April-18)[/B]
------------------------
- Updated layout of PVR Search, Timers and Timer Rules windows.
------------------------
[B]11.2.4 (17-April-18)[/B]
------------------------
- Added support for the Special Features add-on (plugin.video.specialfeatures).
- Cleanup using new time formats.
------------------------
[B]11.2.3 (12-April-18)[/B]
------------------------
- Use new PVR time labels.
------------------------
[B]11.2.2 (6-April-18)[/B]
------------------------
- Added 4K watched and unwatched library overlays.
------------------------
[B]11.2.1 (3-April-18)[/B]
------------------------
- Removed audio DSP.
------------------------
[B]11.2.0 (28-March-18)[/B]
------------------------
- When playing music in party mode, Random and Repeat buttons are hidden or disabled.
- New default icons.
- Removed support for script.videoextras (use script.extras instead).
- Removed support for script.tvtunes.
- OSD subtitle changes for Kodi 18.
- Added skin setting in Backgrounds to hide all home screen widget backgrounds.
- Code cleanup after https://github.com/xbmc/xbmc/pull/13651
- Updated keyboard dialog with latest changes.
- Updated script.globalsearch for Kodi 18.
------------------------
[B]11.1.15 (29-November-17)[/B]
------------------------
- Removed view option: "Title on top bar".
- Changed PVR channel number label according to https://github.com/xbmc/xbmc/pull/13069.
- Added new functions to the presets dialog: clean library for movies, tv shows and music videos.
- Added LibreELEC and OpenELEC power button to "Reboot from internal".
- Added LibreELEC and OpenELEC power button "Reboot from internal" to presets dialog.
------------------------
[B]11.1.14 (16-November-17)[/B]
------------------------
- Fanart view option setting now follows library type (movies, tv shows, music, add-ons etc.)
------------------------
[B]11.1.13 (7-October-17)[/B]
------------------------
- Latest game changes.
------------------------
[B]11.1.12 (19-September-17)[/B]
------------------------
- Added DTS:X media flag.
------------------------
[B]11.1.11 (18-September-17)[/B]
------------------------
- Added technical information dialog during fullscreen music playback ("Information" button).
- Fixed paths for Android and added home screen Add-on category "Android Apps" submenu.
- Added "Android Apps" menu item to Add-ons window.
- Latest game changes.
- Added EXIF ImageDescription / EXIF User Comment / IPTC Caption tags to Slideshow window.
- Added media flag for Dolby Atmos.
------------------------
[B]11.1.10 (28-August-17)[/B]
------------------------
- Audio information during picture slideshow will now animate out after 5 seconds of idle time.
- Fix for wrong displayed label for tv shows in files section.
------------------------
[B]11.1.9 (26-August-17)[/B]
------------------------
- Fix for missing artist slideshow images during music playback.
- Update of game OSD dialogs + added additional features.
- Support for latest PVR features.
------------------------
[B]11.1.8 (22-August-17)[/B]
------------------------
- Added watched / unwatched overlay to season list in tv show information window.
------------------------
[B]11.1.7 (22-August-17)[/B]
------------------------
- Fixed cast list in Wrap List Info Views.
- Added "Next Up Episodes" list to tv show information window (Extra Info menu) (big thanks to jurialmunkey).
- Minor change of tv show information window for banner style.
- Added "Seasons" list to tv show and season information window (Extra Info menu).
------------------------
[B]11.1.6 (11-July-17)[/B]
------------------------
- Added expiration date and time to PVR information window.
- Fixes for weather window.
- Added "Dependencies" button to add-on information window.
------------------------
[B]11.1.5 (6-July-17)[/B]
------------------------
- Fonts cleanup.
- Added scroll animation for list in subtitles dialog.
- Updated login screen.
- Added game OSD.
- Updated language files from Transifex.
------------------------
[B]11.1.4 (11-June-17)[/B]
------------------------
- Removed resource.uisounds.rapier (Rapier UI Sounds) dependency.
- Added end time to video information dialog.
- Added Extended List View for seasons.
------------------------
[B]11.1.3 (4-June-17)[/B]
------------------------
- Fonts cleanup.
- Fix home menu position for all font sets.
- Added Extended List View for music albums.
- Kodi 18 changes for add-on settings dialog.
------------------------
[B]11.1.2 (10-May-17)[/B]
------------------------
- Removed script.randomandlastitems, script.skin.helper.backgrounds and script.image.resource.select dependencies.
------------------------
[B]11.1.1 (5-May-17)[/B]
------------------------
- New default icons.
- View types now change in correct order using Container.OnNext / Container.OnPrevious.
- Duration changes and updates.
- Minor update of global search main window.
- Video information window will now support all content types.
------------------------
[B]11.1.0 (21-April-17)[/B]
------------------------
- Redesign of home screen categories.
- Slightly redesign of home screen widgets.
- Updated navigation for all widgets.
- Custom categories now use a regular text label instead of images.
- Custom category names are now used in the skin settings instead of "Custom 1", "Custom 2" etc.
- Removed all custom category images from skin.rapier/extras/ folder.
- Removed all category images from skin.rapier/media/homecategories/ folder.
- Updated screenshots.
- Updated duration labels for Kodi Leia.
------------------------
[B]11.0.8 (3-April-17)[/B]
------------------------
- Added Skin Settings > Home > Change Category Actions: change all main category actions.
- Added "Debug information" button to fullscreen video OSD.
------------------------
[B]11.0.7 (21-March-17)[/B]
------------------------
- Added information window for single movies part of a movie set.
- Updated PVR Group Manager and PVR Channel Manager dialogs for Kodi Leia.
------------------------
[B]11.0.6 (16-March-17)[/B]
------------------------
- Removed Wide List views.
- Added new section to skin settings: Views. Use this to disable views (will increase performance).
- Fix missing Icon View for picture and program add-ons.
------------------------
[B]11.0.5 (6-March-17)[/B]
------------------------
- Added "Download Extrafanart" button to video information window.
- Updated script.skin.helper.service infolabels for v1.1.3
- Added List Info / List Info 2 / Thumbs Info Views for video content.
- Fixes for episode views.
------------------------
[B]11.0.4 (28-February-17)[/B]
------------------------
- Several fixed for views.
------------------------
[B]11.0.3 (25-February-17)[/B]
------------------------
- Removed sort letter notification for some sort methods.
- Improvements of extra fanart.
- Added All Videos / Watched / Unwatched toggle button for PVR recordings window.
- Added support for script.skin.helper.skinbackup
- Added support for script.skin.helper.backgrounds
- Added support for script.skin.helper.widgets
- Decreased the size of home screen category icons.
------------------------
[B]11.0.2 (11-February-17)[/B]
------------------------
- Home screen Add-ons category will open up a new Add-ons window.
- Updated video information window to support video content type.
- Added Fullscreen button to Player Controls dialog.
- Fix for PVR subchannel numbers.
- Updated Player Process Info dialog.
------------------------
[B]11.0.1 (30-January-17)[/B]
------------------------
- Added List Info 2 View to tv show seasons.
- Added List Info 3 View to tv show seasons.
- Added banner style to List Info 3 View for tv shows and seasons.
- Added video and audio bitrate information to player process dialog.
------------------------
[B]11.0.0 (26-January-17)[/B]
------------------------
- Bump xbmc.gui to 5.13.0
- Major code cleanup.
- Added fully customizable Games home screen category.
- Added Games windows.
- Reconfigured Settings menubar and added Game settings.
- Added Games category to the presets dialog (used when creating custom categories and submenus).
- Removed PVR Guide now, next and channel views.
- Added support for direct numeric channel number input.
- Added Games widget for custom categories.
- Added numeric channel number input for sort letter notification.
------------------------
[B]10.4.0 (26-January-17)[/B]
------------------------
- Fix for home screen widget fanart.
- Added additional items to the presets dialog (used when creating custom categories and submenus).
- Removed movies Recommended View.
- Added support for script.audio.profiles
- Added subtitle delay label for subtitle delay button in the fullscreen video OSD.
- Added Reload Skin button to Skin Settings > Skin Settings.
- Added Skin Settings > Home > Category Menu > Reorder Categories. Use this to completely reorder your home screen categories.
- Combined some skin settings in Media > Music Playing using select dialog.
------------------------
[B]10.3.23 (7-January-17)[/B]
------------------------
- Added "Add-on Settings" button to top options menu bar when an add-on is running.
- List View normal style now defaults to file icon when no icon is available.
- During fullscreen episode playback, Nextup Notification now includes In Progress episodes list.
------------------------
[B]10.3.22 (26-December-16)[/B]
------------------------
- New status bar battery notification.
- Added fullscreen music video lyrics (enabled in skin settings) (big thanks to manfeed and BigNoid).
------------------------
[B]10.3.21 (22-December-16)[/B]
------------------------
- Fixed VC-1 codec media flags.
- If no trailer is available, trailer buttons will display "Search Trailer".
- If no movie, tv show or music content is available, home screen categories will go to sources.
- PVR teletext button is only visible if teletext is available.
------------------------
[B]10.3.20 (11-December-16)[/B]
------------------------
- Video windows and visualisations are hidden if an image slideshow is active.
- When playing music, home screen progress bar is changed to blue.
- Updated skin settings for artwork downloader to match supported artwork types.
- Added close button to text viewer dialog.
- Added Wrap Info View for tv shows.
- Added cast list in movies / sets / tv shows Wrap Info View (needs enabling in the view options).
- Updated language strings from Transifex.
------------------------
[B]10.3.19 (29-November-16)[/B]
------------------------
- Added home screen Videos category widgets: Categories / Media Sources.
- Clicking Back on all widgets will go to the first item in the list.
------------------------
[B]10.3.18 (29-November-16)[/B]
------------------------
- Added Settings button to events window.
- Added additional home screen custom category images.
- Added Comment / Contributors (if available) toggle button to song information window.
- Fixed background in add-on information window coming from the home screen.
- Added now playing notification (audio / video) in information windows when coming from the home screen.
------------------------
[B]10.3.17 (24-November-16)[/B]
------------------------
- Partially watched overlays are now more detailed.
- Added recording icon for PVR recordings window.
- Improvements of artist / album information window.
- Changed some info labels for PVR channels and recordings windows.
- Added Play button in album / song information window.
------------------------
[B]10.3.16 (16-November-16)[/B]
------------------------
- Remove script.globalsearch and script.artwork downloader from dependencies.
- Genre icons now also work inside containers.
- Added support for music / music video genre fanart image packs (Skin Settings > Backgrounds).
- Removed skin.rapier/extras/moviegenres/ and skin.rapier/extras/musicgenres/ folders.
- Added "Fix Skipping" button to game controllers dialog.
------------------------
[B]10.3.15 (12-November-16)[/B]
------------------------
- Added new artwork types for global search script.
- Fixed watched overlay for PVR recordings.
- Added media flags for PVR recordings.
- Added Privacy Policy button to system info window.