-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathchangelog.txt
1272 lines (920 loc) · 62.3 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
##################################################################################
############## reminder ######################################################
##################################################################################
build a xml based widget editor?
- set x
- set a
- set b -> append a as x
- set c -> append ab as x
Window.Property(IsRadio) Returns "true" if the window is a radio window, empty string otherwise (for use in the PVR windows)
cleanupnotes /reminder
!(A + B) = !A | !B
!(A | B) = !A + !B
Window.IsVisible - includes fade out time on dialogs
Window.IsActive - exclude fade out time on dialogs
always ? ListItem.IsParentFolder = String.IsEqual(ListItem.label,..)
REFACTOR CODE FOR container(itemlayout|focusedlayout) - test in 1150
REFACTOR MUSIC HUB
- idea get an optional (skinsetting - common vs enhanced?) 'layout' when click artist to differ container filled
- 'real studio' albums e.g. "Kill'em All"
- compilation (e.g. best of, b-sides etc) e.g. "Best Of Metallica"
- singles (official single/maxi releases . e.g. "nothing else matters")
- by reafactor - on albums get 3 rows of infoe
- date added (left) | stars rating (right)
- album titel (left) | original year (right)
- album artist (center??)
NOTE: expect 'long/multirow labels'
- item tag color circle panels (need revisit) textcolor hc white|shadowcolor hc black
- emuary info lookups : adjust/fix call/queries, reduce dialogselect popups
- section widgets
WIP : - tend to show a hardcoded "widget group"
- weather : current,weekly,dayly items)
- search : edit control + widget groups, search container filtered - options : disable whole group, disable specific containers (similiar to search window)
- PVR? :
- favourites : check option to differ content
keep in mind - integer can be used
- bring in options: create *title*-fanart.png if not existing - TakeScreenshot([filenameandpath,sync]) Takes a Screenshot. You can optionally specify the filename (including the path). Note: only .png files are supported. Add "sync" parameter to run synchronously (slow).
##################################################################################
generell re-construction :
- reduce and adjust used colors for easier/more intuitive setup/theme building
- fix navigation in windows
- auto focus viewid container when dialogselect
e.g.
- sort... changes (currently clears menu prop, but dont focus)
- navigation , espeacially when browse addons
- helper related support (switch from embuary.info (dialogs) to tmdbhelper , go over plugin paths in use )
- drop embuary.helper getbyid ? or keep optional / ratings|cast
- if dbid exist show play, else use 'lookup' icon on focus
- use script.upnext or native method (custom dialog via exp and ~ variable name="'fake'playlist_foldercontent" ) ? - may need force disable script.upnext
- go over animations/layouts
##################################################################################
https://github.com/sualfred/script.embuary.helper/wiki
https://github.com/jurialmunkey/plugin.video.themoviedb.helper/wiki/Player-Function
##################################################################################
######################## 1.61 ########################
#################################################################################
##################################################################################
######################## 1.60 ########################
#################################################################################
• dont show plot when open osd and 'temp' skinsetting show plot on video start is disabled
• temp = always focus first item , when sortmethod-dialogselect unloads
• videoplayer:
- when playing episode and its not playlist, navigate to whole CURRENT SHOW, starting at current epsidoe, instead of just CURRENT SEASON
TODO : use script to fill a playlist if empty
WIP
• working on script blur
• seekbar visit (looks fine, but..)
• whats up with amazon plugin ??
• get rid of embuary helper stuff - for maintain reasons
• get rid of tmdb.helper stuff or leave it optional - for maintain reasons - when done go over themoviedb helper
• Header Bar - decrease by 75%, will still enough readability
##################################################################################
######################## 1.59 ########################
#################################################################################
• fix blurred background ( when switch between common<->spotlight views )
##################################################################################
######################## 1.58 ########################
##################################################################################
• alphabet bar
- use own py method for alphabetbar
• cast container(s)
- use own py method for db items, adjust call variables
- dont show play icon when focus item
- other cleanup
##################################################################################
######################## 1.56/57 ########################
##################################################################################
• change item focus animation
• fix offline visible expression
• panel_info views (51[*])
- fix tmdb rating
• mainmenu|shutdownmenu
- add possibility to use 'filemanager'
• skinsettings
- alphabet scrollbar now optional, has to be enabled
- blur setting (install addon if missing)
##################################################################################
######################## 1.55 ########################
##################################################################################
• Infopanel Viewtypes
- Fix?? ratings - may tmdb ratings is still an issue when enable fallback ratings ( double entrys )
- use tvshowkeyart if exist as bg image
• View 512
- enable possibility to use epsisodes being a locked viewtype for View 512_InfoPanel
##################################################################################
######################## 1.54 ########################
##################################################################################
• changed how skin do trailer lookup
- filenaming and extension is up to the suer, only restriction is that 'trailer' has to be in the filename
- add skinsetting to allow youtube plugin to be used as fallback if listitem.trailer is empty and local trailer is not present in dir
• adjust some visible conditions
- menucontrol pvr static group and belonging settings - just if PVR addon installed
- view mode select - just if viewmodes available
##################################################################################
######################## 1.53 ########################
##################################################################################
• fix footer ratings
- workaround needed because scrappers use different naming conventions
- tvshows - themovie db org -> <tmdb>
- movies - themovie db org -> <themoviedb> (at least universal scrapper)
• show watched percent progress bar for tvshows/seasons - NEXUS only
##################################################################################
######################## 1.52 ########################
##################################################################################
• fullscreenvisualisation
- added skinsetting: ability to force visialisation in front, will disable fanart background ( no dimmed artwork )
• view520
- add possibility to force a poster panel when season content
- add bottom tags showing season label when season content (and not poster panel)
• videoinfo:
- fix : remove popup of timer/notification when navigate into other media infodialog
• custom_playlist dialog
- workaround to refresh currently playing list on load
##################################################################################
######################## 1.51 ########################
##################################################################################
• menucontrol 'musicvidoes' icon bar action:
- go to musicvidoes of artist, if not exist do youtube lookup of musicvideos (bump helper script)
• infopanels viewtypes (510-514)
- fix missing img to diffus blurred bg
• other minor stuff
##################################################################################
######################## 1.50 ########################
##################################################################################
• dialogconfirm:
- slighlty changed layout (still unfinished, esp. progress bar)
• global/media items
- added listitem indicators for plugin content - show tickmark if item is part of local lib
• media windows
- added letter popup when scroll , optional ( toogle on/off in skinseetings , LIBRARY section)
##################################################################################
######################## 1.49 ########################
##################################################################################
• dialog(multi)select:
- selected items got tickmarks
!! MERGED function of 'script.playlist.helper' into 'script.swan.helper' which is now used as dependencie.
You need to uninstall / disable 'script.playlist.helper' manually (go to Addons -> ContextMenu Addons -> Lookup for 'Playlist Helper' and uninstall it)
If not dooing so you'll get double menu entry , as script.playlist.helper share/had same functions from 'script.playlist.helper'
##################################################################################
######################## 1.48 ########################
##################################################################################
• favourites dialog
- use artwork panel layout
• dialogselect,favourites,filebrowser ('conditional' layout)
- got hidden buttons : top left switch colors (cycle 3 states) top right close dialogs
##################################################################################
######################## 1.47 ########################
##################################################################################
• shutdonmenu item shortcuts
- fix issue :itemaction' could'nt be moved down, due to typo
• change layout for selectdialog, add conditional layout for filebrowser
- used for disaply artwork
- when select / manage item artwork, its easier to compare the currwnt vs a candidate of a new kind of art (current used art if exist show left, comparison show right)
- as i could'nt deside which colors should be used, you can toggle a colorshem ,when hit 'info key' when an artwork item has focus
*Some Color usage s wip and may be changed, currentlöy use spotlight lib colors
##################################################################################
######################## 1.46 ########################
##################################################################################
• button controls get hard edged by default again, later individual change to rounded for wished controls
• videoinfo:
- custom onclick action fixed for matrix, when use force open info
• dialogkeyboard:
- change layout n colors for keys (square)
##################################################################################
######################## 1.45 ########################
##################################################################################
• view520:
- latest_*movie|episode|musicvideo* ... info panel get hidden buttons which when clicked update the container to latest*content* items
- fix? issue with visibility of doubled artwork tope left
- fix infolabels when in season content (due to prev batch ren procedere)
##################################################################################
######################## 1.44 ########################
##################################################################################
- hotfix, id 600 can cause crash as it is used in playlist dialog, and in mediawindow (when booth visible crash can happened)
##################################################################################
######################## 1.43 ########################
##################################################################################
• dialogselect
- got tickmark/roundbox indicator
• nextup continue watching dialog
- triangle ( re-add missing images )
• widget/mediaitem:
- add content(files) to use white text on 'black' bg
• view520:
- label for 'total seasons|episodes' 'tvshow status' count value - use themoviedb.helper property labels as fallback
- be able to focus currently playing playlist on click 'right' when no scrollbar visible
- differ lates content overlay music | video
• dialogmusicinfo | dialogfullscreeninfo
- sort musicvideo content by year
• currentplaylist dialog
- colors correction (hub | spotlight colors)
- if not hub
- get artwotk of currently playing item top (dimmed, get some labels of current item)
- added player control (play,next, etc.) NOTE: info button is for the currently plaing item not for a list item - use 'i' key or contextmenu there instead if wished
- hub call the dialog instead load the whole panel in the window itself (faster)
INFO:
- scrollbar is hidden - hit right to focus it,it'll then be visible when focused
- hit right closes dialog
- hit left either bring up player controls if you are in a media window, when in music hub it [currently] close itself
- activate possibilitys: media windows -> via menucontrol icon button (optional), view 520 additional got a touch control button (not optional, show whole touch group or nothing - set up in viewtype settings in menucontrol, when in a view which is vertical layoud out - go right)
• cleanup/add some localized infolabels here and there, adjust skinsettings (startup - go into kodi core election, adjust initial start settings/strings)
##################################################################################
######################## 1.42 ########################
##################################################################################
• Music Player Background behaviour
if NOT USING rotating Fanart BG: - Change Fallback artwork ( indicate that music playing :p,
:: TODO control with diff images showing different albumthumbs of db, if no musicdb setup show a fallback image) ::
if USING rotating Fanart BG and none Artist/Album Art existing
- first fallback to rotating ARTISTS Fanart of Music/MusicVideo Library ( not ITEM but MUSIC ARTIST CONTENT unrelated )
- second fallback - show predefined images (resource addon or optional usernominated artwork folder)
- add setting to set a user nominated artwork folder for musicplayer backgrounds
- add skinsetting ( skinsettings -> player -> MUSIC ) be able force showing rotating artwork of a user nominated folder ( ITEM and maybe CONTENT unrelated ) which is showing
• re add fanart slideshow dialog (custom dialog where you can look,slide trough,let auto slide trough item fanart at fullcreen)
- open within musicinfo, videoinfo dialaog (added new button to open) - button can be disabled, library -> videoinfo button settings
- open within media views from premenu icon bar - icon button can be disabled , menucontrol settings
• view520:
- fix songsheet color usage, itemlabel height
• dialogvideoinfo:
- fix extras lookup (working again,dont lookup if plugin.* in source ), change lyout for extras container - simple bg n text
• dialogselect
- change layout of bottom button group ( better visibilty , not a final layout overall, but working)
##################################################################################
######################## 1.41 ########################
##################################################################################
• addoninformation dialog
- fix button visibility (id 14, version, dont show if leia)
• hotfix - issue with var crash when try to open musicvisualisation
##################################################################################
######################## 1.40 ########################
##################################################################################
• fanartbackground / skinsettings
- when disbaled fanartbackground (item related) disabled, you can toggle settings to enable item unrelated rotating fanart as background
MUSIC : rotating artist fanart of latest 10 albums
VIDEO : rotating fanart of latest 10 movies,episodes,musicvideos
• home
- able to use rotating fanart (item related)
• pictureinformation dialog
- fix (experimental) next/previouspic when hit up/down in pictureinfo / Dialogpictureinfo.xml
• some code cleanup,refactoring
- change window open animation for media windows (zoom-fade,instead slide) - inkclude: Animation_OpenClose_MediaWindow
##################################################################################
######################## 1.39 ########################
##################################################################################
• slideshow window
- able to show gifs
• pctures window
- viewtypes availability ( 510,511,512,513,520 )
• pictureinformation dialog
- added
##################################################################################
######################## 1.38 ########################
##################################################################################
• dialogvideoinfo
- fix double id, prevent scrolling (left|right) from close button
• musicinfo|view 520
- add album column for songsheet
• view selector:
- fixed ui issues when en/disable viewtypes for 'pictures' and 'games' windows
• ability to slide in the currently playing musicplaylist when in media winkdow
* via premenu icon button ( can be disabled in skinsettings )
* if vertical scrollable view type is active and 'onleft' button clicked
when...
- focused container if scrollbar and albhabetbar not focusable
- focused scrollbar if albhabetbar not focusable
- focused albhabetbar
NOTE: currently unadjusted colors (playlist container use musichub colors)
• view520 touch control buttons
- play ( artist, album , genre, year ) folder content
- slide in playlist ( with ability to move items up|down or delete item in current playlist )
- toggle repeat states button
##################################################################################
######################## 1.37 ########################
##################################################################################
• HotFix : (Spotlight) BackgroundColor not applied on view 520
##################################################################################
######################## 1.36 ########################
##################################################################################
• skinsettings
- home widgets : possibility to use override select actions for episode widgets (either go to all episodes by tvshow , go to season view of tvshow) NOTE: IF episode item does not provie 'tvshowdbid' if fall back to go to all epsides, e.g. like 'nextup episodes' items by embuary helper
• smartplaylisteditor
- add delet rule buttons within the rule listing, NOTE: Cannot be Used by using 'Mouse/Touch' -> use contextmenu instead (common scenario)
• view520 (still WIP, but mostly done)
- should / will be a viewtype for every content
- View Options : autoplay trailer, disable big thumb if not music window, disable mediaflags, disable plot , disable touch buttons ( disabling is RECOMMENDED if not using to touch device )
• view global
- show labels on top of a blank bg instead of the *default icons , for : DIRECTORS,YEARS,TAGS,GENRES,PLAYLISTS,COUNTRIES
##################################################################################
######################## 1.35 ########################
##################################################################################
• videofullscreen
- fix overlay order of seekbar ( videofullscreen_infopanel lies over cast / videoosd when coming back from dialogs, or when use open osd on playback )
- fix visibility : hide videofullscreen_infopanel when embuaryinfodialogs active
##################################################################################
######################## 1.34 ########################
##################################################################################
• Hotfix: - custom footer panel color could not be applied
• added 2 new colors (maybe temp )
- seperator for Dynamic Media Container Headers (color_lib_widget_seperator, color_home_widget_seperator)
##################################################################################
######################## 1.33 ########################
##################################################################################
• shortcuts shutdown menu :
- get rid of fixed/hardcoded items
- adjust visible conditions, for profile login screen
• Viewtype 520 (WIP)
- show ratings, nearly unfinished
##################################################################################
######################## 1.32 ########################
##################################################################################
• bump resource addon to fill gap of available images for shortcut items
• fonts
- fix typos in include def 'n call
- remove double entrys
• Home
- Hometile Layout : - dont load hometilesubmenu if corresponding setting disabled
• shortcuts/skinsettingsection :
- ability for user defined shutdownmenu items
○ predefined
○ custom - define executebuiltins
'
currently if multi onclick / executions needed for an item, you'll have to use and save your script somwhere
'
example: path is 'skin.swan/scripts/multiple_test.py', action: RunScript(special://skin/scripts/multiple_test.py) , scrip runs 5 the 'notification built in' times
'''
import xbmc
def main():
# xbmc.executebuiltin(function, block).
# https://github.com/xbmc/xbmc/tree/master/xbmc/interfaces/builtins
xbmc.executebuiltin('notification(action1:, performed)')
xbmc.executebuiltin('notification(action2:, performed)')
xbmc.executebuiltin('notification(action3:, performed)')
xbmc.executebuiltin('notification(action4:, performed)')
xbmc.executebuiltin('notification(action5:, performed)')
if __name__ == '__main__':
main()
'''
i take o look later on to simplify ( use a custom path for user scripts , which can be stored , so you can choose a script from that folder )
- still hardcode are :
System.LogOff - [System.HasLoginScreen | Integer.IsGreater(System.ProfileCount,1)] + System.Loggedon : $LOCALIZE[20126][CR]$INFO[system.profilename]
mastermode - !Window.IsVisible(loginscreen) + System.HasLocks + System.IsMaster : $LOCALIZE[20046]
mastermode - !Window.IsVisible(loginscreen) + System.HasLocks + !System.IsMaster : $LOCALIZE[20045]
InhibitIdleShutdown(true) - !System.IsInhibit : $LOCALIZE[13017]
InhibitIdleShutdown(false) - System.IsInhibit : $LOCALIZE[13018]
##################################################################################
######################## 1.31 ########################
##################################################################################
• fonts :
- compability for addon provided dialogs/windows which supposed to support just kodi default skin (estuary)
• new Viewtype 520
- cast when trailer added - WIP, expect bugs n layout changes
##################################################################################
######################## 1.30 ########################
##################################################################################
• videofullscreeninfo :
- dyn conatainer items : disable bg panel - respect theme
• new Viewtype 520 (Spotlight Info Panel)
early WIP, currently no restrictions
• fixed missing labels, due to font refactor
##################################################################################
######################## 1.29 ########################
##################################################################################
• videofullscreen
- fix stutter/framerate issue - may just MAC OS *x*
• videofullscreeninfo :
- adjust custom container content colors ( match osd colors )
- musicvideo related
- go to album (music window) when click an album within the album container
- exclude currently playing musicvideo in the 'more musicvideos by %video.player%' container
https://streamable.com/6vwyj1
• osd/info panel
- add artist album labels for musicvideos :
• fontset
- add roboto font set (temp solution for cyrillic style dependencie )
• code refactor:
- dialogbusy (trailer busy property)
- dialogseekbar
- fonts
##################################################################################
######################## 1.28 ########################
##################################################################################
HOTfix :
*.1.28 leia changes:
• refactor code to circumstance leia "issue" - Player.DisplayAfterSeek is 'True' if playback is paused, which was fixed in > v.19.*?
##################################################################################
######################## 1.27 ########################
##################################################################################
- misc changes:
• add translations [de],[nl] for seekbarinfo
• reorder seek skinsettigs settings and adjust labels
• fix condition for seekinfo ( preventing panel|player info panel show up correctly )
##################################################################################
######################## 1.26 ########################
##################################################################################
HOTfix :
• still watching dialog: idle time from 1 sec to 10 minutes, SORRY
##################################################################################
######################## 1.25 ########################
##################################################################################
- changes:
• dialog subtiltes:
○ show sub filename
○ wider range for text/container
• videoplayer - osd
○ added button for 'frameadvance' function ( right beside 'playpause', if player paused )
○ playlist , show next episodes list when hit playlist button ( leia fix )
• videoplayer - videofullscreeninfo , videobookmarks/currentplaylist
○ show progressbar and current time/position
- added:
• still watching dialog:
○ a skin dialog which pop up when player is paused and 10 mins idle time
○ if no input follows in 30 secs after it is visible a user defined action will be performed
• osd
○ show current time/position, when progress(seek) slider focused
• dialog seekbar: (added)
○ by default use big labels
• skinsettings - PLAYER Section
○ ENABLE 'show video info (plot,progressbar)' when pausing , previously it was the default behaviour , its just optional now and disabled by default
○ add skinsetting: use seek gadget on bottom (smaller), instead of big info centered
○ add skinsetting: disable any seek info when OSD is active
○ add skinsetting: disable seek info, just show current position when osd slider has focusd, else show progressbar when videoinfo panel is visible
○ add skinsetting stillwatching_defaction : choose action which should be performed when you miss to hit some key in the still watching dialog
##################################################################################
######################## 1.24 ########################
##################################################################################
- replace context.addon , by script.addon usage ( dependencies and usage ) - (remove usage for invoke skinscripts)
- add setting to toggle default select action for music items (Music HUB related)
• Add Songs of Genre to next Position in Playlist (instead add and play all songs of genre = default) - previously : no action
##################################################################################
######################## 1.23 ########################
##################################################################################
- fix select action for playlistitems (fix false used offset for play title)
- add settings to toggle default select action for music items (Music HUB related)
• Add Song to next Position in Playlist (instead add and play = default) - previously : cleared playlist and start 'playfromhere'
• Add Album to next Position in Playlist (instead add and play = default) - previously : cleared playlist and play album
• Add Songs of Genre to next Position in Playlist (instead add and play all songs of genre = default) - previously : no action
- create context menu addon , used as dependencie (WIP)
''
playlist container related
- switch playlistitem (move up/down)
- delete playlistitem
library item related
- queue item to last | next playlistposition (artist,album,song,genre items)
- play all songs by artist
if either media window and on '* all albums' listitem entry,
or if not media window (e.g. Music HUB) for artist or album items (clears current playlist, and start playing folder)
other action in own menu
- play next song
- play previous song
- activate playlist window
- activate playercontrols dialog
- save currently active playlist ( .m3u )
''
##################################################################################
######################## 1.22 ########################
##################################################################################
- rework skin.script for playoffset playlist (fix leia,working now for booth skin versions)
- repack xbt (add missing icons from prev versions )
##################################################################################
######################## 1.21 ########################
##################################################################################
- lil cleanup
- fix : showing image overlay (icon + poster ) if not live.tv
##################################################################################
######################## 1.19~alpha ########################
##################################################################################
- Hotfix for OSD Buttons (textures, reasign correct ids)
- get rid of changelog window
##################################################################################
######################## 1.18~alpha ########################
##################################################################################
https://imgur.com/a/GsEvICh
• INFO :
- the texture Theme Name "Roundedge" do implicate wrong Skin Behaviour - AS IT IS INTENDED TO ONLY APPLY ROUND CORNERS TO WIDGETs/MEDIA ITEMS
- dont install via zip if you downloaded from git hub by using the green button ('skin.swan-alpha-master.zip')
• Add
- skinsettings
○ PVR OSD - optional go to epg grid window within OSD when select the 'pvrchannelguide button' (using always 'horizontal 2row layout' unadjusted colors )
○ PVR GRID
- Hide/Show Channel Name & Number - available via menucontrol viewtype setting - (default show)
- select timline timespan (ca. 1h , ca. 2h, ca. 4h) - available via menucontrol viewtype setting - (default ca. 2h)
- possibility to define neary every color for the grid (fo vs nf )
○ Speacial: the rounded Border Overlay is now optional (even if its nat a Background, the setting can be found in the Skinsettings -> Background Section )
- adjust pvrchannelguide | pvrosdchannels
https://i.imgur.com/vAsM05x.png
https://i.imgur.com/GKIYplc.png
https://i.imgur.com/g5290lx.png
- adjust Video OSD
○ PVR : add buttons for - record,teletext,pvrchannelguide,channelosd ( revisit: use of which buttonimages )
○ default control set to play/pause Button
- PVRGuide (tv|radio)
○ add larger horizontal layouts (id 51,52), ! UNADJUSTED VERTICAL LAYOUT ( id 53 )
○ adjust labels
○ custom colors can be used
https://i.imgur.com/p46yMW7.png
https://i.imgur.com/V26nXQQ.png
https://i.imgur.com/4X6S5jN.png
• improve|fix
- improve global menucontrol-sidepanel for better navigation / control movement
- improve layout for diaogextendedprogressabr
https://i.imgur.com/SjzdA4W.png
https://i.imgur.com/NkCGhrJ.png
- MediaWindow and Home Widgets
○ Studio ContentContainer - disable bottom tags
○ Channel Sourced Content - show epg progress, adjust labels for bottom tags (except circle panel), add possibility to use channels as section layout (make use of channel icons and epg progress)
https://i.imgur.com/jKZlKpU.png
- Music HUB
○ use originalyear again for 'years section'
- dialogvolumebar - fix missing anim fade out for thumb ctrl
- dialogvideoinfo + pvrrecordinginfo|pvrguideinfo : fix native buttons (visibility,ids,labels)
##################################################################################
######################## 1.17~alpha ########################
##################################################################################
• Add
- SmartPlaylistRule | SmartPlaylistEditor Dialogs
- PVR Stuff
○ MyPVRGuide.xml, DialogPVRGuideSearch.xml (functional), DialogPVRInfo.xml (shared with dialogvideoinfo), MyPVRSearch.xml (panel views) ,MyPVRTimers.xml (panel views)
[imgur]2fQHpXY[/imgur]
• improve|fix
- videofullscreen - add a progress ctrl
- dialogvolumebar (roundedged progresscontrol, slightly larger volume icon,adjust thumb visibility)
- global menucontrol : make nav easier via new list control, show settings based on focuseditem of new list (change contet window, viewtype settings, ...)
- change default '*button' layout (rounded style with transp borders)
- Widget Shortcuts : adjust PVR Stuff (WIP)
##################################################################################
######################## 1.16~alpha ########################
##################################################################################
ToDo Note : MusicHub
- differ between select actions - if item is curretnly supposed to play - make it optional 'play' or 'info', if bool info true -> add contextmenu to play
- if artist - add contextmenu item to play all, and|or optional action playall and than do hub nav(visprop) steps
- investigate issue - in which case items arent able to play even if paths are stored (play - visualtion stop there) - back in hub sometimes fail to oppen player
- if special artistalbum -> song onselect - first add full album , than play song via offset (instead play from here method)
• Add
- embuaryinfo dialog | trakt function calls : make use of ~ListItem.Property(id) (equals tmdb id for items) if existing
- fullscreenvisualisation/ musicplaylist : playitem(indexed) from list, dont remove previous items|playlist.clear() (MATRIX only)
- WIP : contextfunctions for media items (play|queue) via contextaddon ? WIP ? if browse music HUB for better handling than xml methods
- video(osd) : add possibility to open videoplaylist items for select playback , use fake playlist if episode from local library is playing
- upnext dialogs
○ choose layout for upnext and still watching dialogs ( ignores upnext addonbool fancy vs simple, user decide layout in via skin, a benifit as example is to have a simple style upnext and fancy style still there dialog )
○ define custom colors (except addon default, maybe later)
- netflix skip intro dialog
• Fixed
- Widget Shortcuts : Last Played selection could'nt be applied
- 1004 dialog : re adjust button positions (cast lookup)
- menucontrol mediawindow : autotoggle some viewtype settings
- view 56 - circle art layout
- view 58 : fix limit nextup to 1 item, fix imgdiffuse (skintheme rounded)
- movieinformation + fullscreeninfo + menucontrol : adjust embuary.info call|queries variables
- adjust info labels for episodes (info bottom widgets 'n' header)
##################################################################################
######################## 1.15~alpha ########################
##################################################################################
• Add
- dutch translations - thx to @'djdirty60'
- new Info Panel Viewtypes (WIP)
○ Poster (510) , Circle (511) , Landscape (512) , Square (513)
○ if blurred fanart is enabled - the blot bg make use of blurred fanart
○ if keyart not exist it uses a variable for InfoPanel Art ( fanart->landscape->poster->thumb ) - NOTE: Prefer Keyart seems slow in lookup - may cause by remote instead local ?
○ Options: • disabled fanart, use gaps in layout (could'nt decide for deletion, even if diff is just slightly noticeable or worth keeping)
• autoplay trailer
• toogle bg layer 4 visible
• if rotating fanart is enabled - InfoPanel Fanart will than rotate too
- playlist functions for contextmenu when brwose Music Hub Items
○ add to queue | play next (for : artists(*issue get back automatically),albums,songs,genres,years)
- trakt sync|manage functions ( if tmdb id provided ; use of plugin.themoviedb.helper ) available from
○ premenu bar ( media windows) - disable in skinsettings -> menu bar -> pre menu bar section
○ dialog videoinfo | embuaryinfo videoinfo - disable in skinsettings -> library -> videoinfo section
• improve|fix
- home : sectional widget related : auto move to the widgets beloinging to next|previous mainmenu items (experimental, 1st attempt)
- menucontrol : when hit trailer button focus stop button, instead of set focus media container
- fullscreeninfo : adjust poster layout cast, alignment corrections for containers depending on content (musicvideo vs. movie|episode)
- movieinformation + fullscreeninfo + menucontrol : adjust embuary.info call|queries variables
##################################################################################
######################## 1.14~alpha ########################
##################################################################################
• improve|fix rating/footer stuff (WIP)
- add framed textlabel fallback in footer if studiologo image does'nt exist in resource addon
- add non optional rating for plugins,music (netflix,amazon vod,disney+,music,userrating)
https://i.imgur.com/etSL50M.png
- try be faster in rating lookups (embuaryhelper|themoviedbhelper)
• skinsettings :
- add possibility to show trakt ratings
##################################################################################
######################## 1.13~alpha ########################
##################################################################################
- added
• videobookmarks (WIP):
- add dialog
• musicplaylisteditor (WIP):
- just functional, atm didnt cared much about layout
• music|videoplaylist ~ MyPlaylist.xml (WIP):
- ...
• skinsettings :
video
- pause video when opening fullscreeninfo ( was default skin behaviour without option before)
- pause video when opening videobookmarks
- ondown action on video osd - optional open videobookmarks ( default is open fullscreeninfo )
home
- add circular navigation option ( when click left on first widget item you can focus mainmenu )
musicplaylisteditor | MyPlaylist.xml ?
- toggle a bg panel (available in menucontrol panel, if musicplaylisteditor | MyPlaylist.xml is current window )
• default colortheme :
- change default spotlight colors
##################################################################################
######################## 1.12~alpha ########################
##################################################################################
- added
• shortcuts :
- new setting in Home Section : enable Section Widgets ( means Widgets can be linked to Mainmenu Entrys and will just be shown if the belonging Homemenu Entry was focused )
-> linking can be done from menuitem editor (link to multiple existing widgets), or from widget editor (link to a mainmenu entry)
! NOTE : unlinked Widgets will not be shown if using this setting
• skinsetting :
- use tmdbhelper as fallback for ratings - quick edit - WIP : currently just in in footer ( library section )
- fixes / improvements
• shortcuts :
- fix of some widget | mainmenu item attributes not covered on move/switch +|-
- fix when start to defime a widget for common items (videos|music|pictures|games|programs) a string was set and keept even if abort
- fix some Header Labels ( for dialog_1103 )
• fullscreenvisualisation|home
- fix incorrect visible condition which prevented load/show wished big playlist
• addonbrowser
- auto go back after updating and container is empty but focused
- check for updates on addonbroser opening (experimental)
• fullscreeninfo :
- musicvideos : get album and musicvideo container of current artist (expeimental) - Pretty Much WIP (just container, no actions, also include current musicvideo)
- auto 'toogle' plot visible if exist
• home :
- fix 'unable to move' when no widget visible -> change <defaultcontrol> from widgets to mainmenu id
• videoinfo :
- prevent crew lookup if musicvideo
- get background for musicvideos if musichub is the active window
• widgetitemlayouts :
- boolean expression wrong param 'get_bgpanel_visible' to 'get_tagbgpanel' - shrink progressbar under correct conditions (roundedge + no panal in use)
• initial start :
- if no content -> start in hometile layout with 'settings' as menu entry, to set up the stuff
- change/add some default widgets
##################################################################################
######################## 1.11~alpha ########################
##################################################################################
- renamed setting (will need re do - or auto detect on updete push
• 'menucontrol_forcedfocus_8999' to 'menucontrol_forcedfocus_premenu'
- added / adjust
• weather window (did the basics, rest see WIP* Note)
- by default show animated gif as ng image
- optional show
a) none - LAYER 1 color will be present as BG
b) multiimage - using resource.images.weatherfanart.multi - layer 2/3 overlay softened (40%)
c) single - resource.images.weatherfanart.single - layer 2/3 overlay softened (40%)
- choose alternative layout (clear layout)
- disable the scaled fanart in dayly widget items
-> choose settings in common menucontrol bar
## WIP NOTE : Color Usage, Maps Layout (infos)
• dialog(fullscreninfo).xml
- show cast container and some additional media flags, artwork , possibility to open tmdb info (just placed ,switch pos n offset later?,
## WIP NOTE: Colors for Container items/Container Hesading may need adjust ?
• OSD / Skinsettings ( -> Player Section)
- add setting 'show plot on video start' (previously show osd on start)
- changed 'show osd on start ' open player controls on start
- fixes
• 503/504 : when click play on 'next up/resume' widget - you gain focus to the widget again after coming back from video (just after hit select)
• artwork variables (e.g. view 50 auto show disc in list if exist, fallback to fanart if no thumb is found for artists)
• change some xsp path (some sortmethods not working outside of window(videos|playlist), e.g. year - define attributes in xml tags instead of xsp 'string')
• some visible conditions in generell
• fullscreenvisualisation - fix playlist visible conditions
• Music HUB
- Matrix :
- if click on album and it's an compilation / multidisc album - schow discs / album left - show songs right
- new dbtype ='originalyears' in content year, new path bool attribute = '?useoriginalyear=' ~false/true) - need further check the dependencies - force origonalyear as default
- if click on album and its a single disc album , focus song container, hide album container (!no 'auto' indiacte if came from artist and it has just one album !)
- fixes paths, removed encode function and unneded actions
- prevent focus an unfilled current playlist container
##################################################################################
######################## 1.10~alpha ########################
##################################################################################
- adjusted/added :
• OSD / Skinsettings ( -> Player Section)
- add option to autoclose osd after press common playback control (values from 0 to 9 seconds can be used), added protection for the setting to prevent user can use more than 1 digt
• LibrarySearch
- add static item for amazon lookup ,open videowindow with search term lookup in amazon vod plugin to brwose other results
• Home MainMenuTiles / CurrentlyPlaying*
* - add hidden container to fetch currently playing song/video for being able to open window(songinformation)|window(movieinformation)
* - add CurrentlyPlaying 'Panel/OSD Ctrl'
- increase tile size per row to 6, as default - options (4,5,6,7) in mind
- added possiblity to use user defined path for rotating background image
○ if a user has already defined an folder for generell image lookups (background,overlay etc) user select folder from that directory
○ if a user has NOT already defined an folder for generell image lookups the user select folder from 'OS root' directory
WIP IMG - https://imgur.com/a/IBrGngZ
- added option for override onclick to focus submenu
a) Skin.HasSetting(home_tile_focus_submenu) - will focus a circle layoud out panel using the container path of current item - global setting for Home Mainmenu Tile Layout - can be enabled within skinsetting -> Home Mainmenu
b) Skin.HasSetting(mainmenuitem$PARAM[nr]_disablesubmenu) - will disable the onclick for specific items - ITEM SPECIFIC SETTING (can be toggled on|off within item attribute editor)
• Spotlight Views
- if blur is toggled on , spotlight view can use an additional setting enable blur effect for the views 503,504
which will show the 'dimmed' blurred fanart as main background
e.g.
https://i.imgur.com/nmnmoK6.png
https://i.imgur.com/QJE9ZnL.png
https://i.imgur.com/DeDY0ZY.png
• Shortcuts
- add video root as mainmanue/widget item option