Release script.skinshortcuts - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12) +---- Forum: Skin helper addons (https://forum.kodi.tv/forumdisplay.php?fid=300) +---- Thread: Release script.skinshortcuts (/showthread.php?tid=178294) Pages:
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
|
RE: script.skinshortcuts - the_other_guy - 2020-03-22 anybody know how to override add to menu ? widgets add to home screen but are unusable they get added as ActivateWindow(10000,plugin://plugin.video.crackle,return) is not clickable if i go to settings and change to ActivateWindow(Videos,"plugin://plugin.video.crackle",return) it opens the addon RE: script.skinshortcuts - shaktoo - 2020-03-30 Hi All ! I have a question.. is there a way I can use 2 separate skin.shortcuts for 2 separate skins on the same Kodi ? let me clarify... For my Main HTPC ( windows based used as Primary media Server as well .. all my local Media is here ) as I require a more level of further customisation I use ANS as my main skin . I also like Bingie Skin ( Titan Bingie ) & I use this as my main skin on my Nvidia Sheild .... I want to use these 2 Skins but with different skin shortcuts Is this Possible Like maybe modifying & cloning the skin shortcuts to be used as separate incident in both skins ? RE: script.skinshortcuts - bsoriano - 2020-03-30 (2020-03-30, 18:13)shaktoo Wrote: Hi All !@shaktoo , as far as I know, script.skinshortcuts allows for shortcuts not to be shared between skins, but the skin needs to specify this in the "overrides.xml" file in the shortcuts folder. There is a "<doNotShareMenu />" tag that can be placed in that file. Regards, Bart RE: script.skinshortcuts - shaktoo - 2020-03-30 (2020-03-30, 18:26)bsoriano Wrote:Dear Bart,(2020-03-30, 18:13)shaktoo Wrote: Hi All !@shaktoo , as far as I know, script.skinshortcuts allows for shortcuts not to be shared between skins, but the skin needs to specify this in the "overrides.xml" file in the shortcuts folder. There is a "<doNotShareMenu />" tag that can be placed in that file. many thanks for the reply. Ihave been trying to achieve this as I have these 2 skins with different needs but was having difficulty.So basically if I create thsi tag @doNotShareMenu /> @" and place it in Overrides.xml in the skin folder that should do it ? Right RE: script.skinshortcuts - bsoriano - 2020-03-30 (2020-03-30, 20:28)shaktoo Wrote:@shaktoo , yes, it should. In my main HTPC I have Amber (the skin I maintain) and other skins that use skinshortcuts, and when I switch between skins, I have different shortcuts for Amber than for others, and it works well.(2020-03-30, 18:26)bsoriano Wrote:Dear Bart,(2020-03-30, 18:13)shaktoo Wrote: Hi All !@shaktoo , as far as I know, script.skinshortcuts allows for shortcuts not to be shared between skins, but the skin needs to specify this in the "overrides.xml" file in the shortcuts folder. There is a "<doNotShareMenu />" tag that can be placed in that file. Regards, Bart RE: script.skinshortcuts - shaktoo - 2020-03-30 Just One question : where is this overrides.xml as I cannot find it in Titan Bingie Skin. RE: script.skinshortcuts - bsoriano - 2020-03-31 (2020-03-30, 23:50)shaktoo Wrote: Just One question : where is this overrides.xml as I cannot find it in Titan Bingie Skin. @shaktoo , in the skin's folder, there should be a "shortcuts" sub-folder. There you will find the "overrides.xml" file. Regards, Bart RE: script.skinshortcuts - the_other_guy - 2020-03-31 C:\Users\xxxxx\AppData\Roaming\Kodi\userdata\addon_data\script.skinshortcuts settings.xml <settings version="2"> <setting id="donthidepvr" default="true">false</setting> <setting id="enable_logging" default="true">false</setting> <setting id="shared_menu">true</setting> </settings> RE: script.skinshortcuts - shaktoo - 2020-03-31 (2020-03-31, 00:52)the_other_guy Wrote: C:\Users\xxxxx\AppData\Roaming\Kodi\userdata\addon_data\script.skinshortcutsThanks @the_other_guy : will definiti=ely give this a try RE: script.skinshortcuts - teriyaki - 2020-04-23 I just installed a fresh compile of Kodi git and then script.skinshortcuts from the repo - version="1.1.0" provider-name="BigNoid, marcelveldt, SiLVO". Anyone know how to fix this? Quote:2020-04-23 08:33:46.355 T:554990 ERROR <general>: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- RE: script.skinshortcuts - AnonTester - 2020-04-23 @teriyaki this looks like a copy&paste error as the gui file tries to import itself. Can't test right know but I think the fix would be either: change line 1951 of file .kodi/addons/script.skinshortcuts/resources/lib/gui.py from Code: import gui Code: from resources.lib import gui comment out line 1951 by adding a # in front of the line and change the beginning of line 1952 from ui= gui.GUI( to ui=GUI( like so: Code: import gui Code: # import gui RE: script.skinshortcuts - teriyaki - 2020-04-23 (2020-04-23, 18:17)AnonTester Wrote: @teriyaki this looks like a copy&paste error as the gui file tries to import itself. Can't test right know but I think the fix would be either: Thanks for the fast response @AnonTester ! I applied your latter suggestion and it works fine now. Do you know which git repo would be the correct place to file a bug report for this? I think @mikeSiLVO forked it to make it python3 compatible but I'm not sure if his repo is the one for the official Kodi repo now or what. RE: script.skinshortcuts - Chillbo - 2020-04-23 (2020-03-08, 10:26)sualfred Wrote: @mikeSiLVO Sounds great that we're at the stage to ask that question already! One question I have regarding the need to use the Skin Helper script together with Skinshortcuts, @mikeSiLVO: Would it be possible to incorporate this button fuctionality into the Skinshortcuts script for the future? Code: RunScript(script.skin.helper.service,action=setskinshortcutsproperty,header=$LOCALIZE[528],property=widgetName) It should be a native functionality IMHO - any adjusted home menu or submenu entry can be renamed with a button and dialog, but the widget label renaming can currently only be done with the Skin Helper script. RE: script.skinshortcuts - mooninite - 2020-04-28 Could someone update the add-on's wiki page with the current source code repo URL and other information? https://kodi.wiki/view/Add-on:Skin_Shortcuts RE: script.skinshortcuts - pkscout - 2020-05-16 OK, I've spent the last couple of hours going through the documenation, looking though the code, and looking at the XML files the script generates to try and figure out how I might add a custom widget to a skin (I"m using Arctic Zephyr 2, so I'm basically trying to mod the skin to add this widget as an option). I specifically would like to have the PVR status widget Estuary has that tells me what the next recording is and what is currently recording. I have the XML from Estuary to do it (probably needs some changes to adapt visually to AZ2), I just can't figure out how or where to add it so that it shows up in the widgets I can pick it as an option to show on the LiveTV section of the home screen. It feels like it should go into the templates.xml file, but ¯\_(ツ)_/¯. Here's some of the code I'm trying to use as a widget (it does the currently recording part).
BTW, it looks like AZ2 uses skin shortcuts to generate everything, so I can't just manually shove this somewhere without it getting overwritten. Thanks. |