Release script.extendedinfo - 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.extendedinfo (/showthread.php?tid=160558) 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
RE: script.extendedinfo - nvsquared - 2017-02-15 (2017-02-08, 17:28)TheSwede1970 Wrote:(2017-02-07, 23:24)justinhow Wrote: I'm also getting script error on Kodi 17 final release when using Extended Info option in a movie Info screen. Info from kodi.log in debug mode. The issue is that the latest extendedinfo script has been made to work with Kodi 18 Leia. In Kodi 18 Leia, the function System.HasModalDialog has been changed to System.HasActiveModalDialog. This causes the error "Could not find valid content type". To fix it for Kodi 17 look in your addon directory and open the file process.py ("C:\Users\yourusername\AppData\Roaming\Kodi\addons\script.extendedinfo\resources\lib") . Look for the line: if xbmc.getCondVisibility("System.HasActiveModalDialog") should be line 263 and change it to if xbmc.getCondVisibility("System.HasModalDialog"). Hope the original author can fix it in an update to work with both Kodi 17 and 18. RE: script.extendedinfo - cw-kid - 2017-02-15 (2017-02-15, 17:31)nvsquared Wrote:(2017-02-08, 17:28)TheSwede1970 Wrote:(2017-02-07, 23:24)justinhow Wrote: I'm also getting script error on Kodi 17 final release when using Extended Info option in a movie Info screen. Info from kodi.log in debug mode. Thank you this just fixed the problem for me! RE: script.extendedinfo - cw-kid - 2017-02-15 Hi Clicking the add to Sickbeard button doesn't appear to do anything and the TV Show is not added. I have the SickRage add-on installed for Kodi which appears to be working on its own. The add to Couch Potato button works OK however from ExtendedInfo. What I am missing for Sickbeard? Thanks RE: script.extendedinfo - iMak - 2017-02-16 (2017-02-15, 17:31)nvsquared Wrote:It didn't work in Kodi 18 in Nvidia Shield. The installed addon version is 5.6.0. It works fine in final Kodi 17 though.(2017-02-08, 17:28)TheSwede1970 Wrote:(2017-02-07, 23:24)justinhow Wrote: I'm also getting script error on Kodi 17 final release when using Extended Info option in a movie Info screen. Info from kodi.log in debug mode. The message I get: "ExtendedInfo script error" The log: Code: 01:12:45.547 T:1660934432 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- RE: script.extendedinfo - Guilouz - 2017-02-16 (2017-02-16, 00:13)iMak Wrote:(2017-02-15, 17:31)nvsquared Wrote:It didn't work in Kodi 18 in Nvidia Shield. The installed addon version is 5.6.0. It works fine in final Kodi 17 though.(2017-02-08, 17:28)TheSwede1970 Wrote: Same issue here... Same error on Kodi 18 (master branch) when use 'RunScript(script.extendedinfo,info=openinfodialog)' Code: 03:10:10.491 T:123145407041536 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- RE: script.extendedinfo - iMak - 2017-02-16 Hope @phil65 steps in and update the script RE: script.extendedinfo - User 224999 - 2017-02-16 Please give it some time. Kodi 18 is still pre alpha stage so skinners and addon devs need time to adjust their work. You can't expect it to work already at this stage. Remember we're all volunteers that give up our free time to create these tools. RE: script.extendedinfo - iMak - 2017-02-16 (2017-02-16, 09:37)marcelveldt Wrote: Please give it some time. Kodi 18 is still pre alpha stage so skinners and addon devs need time to adjust their work. All the efforts are highly appreciated. Well done guys. RE: script.extendedinfo - cablecar1 - 2017-02-17 nvsquared Have you any idea where to find the file to solve the extendedinfo erro on a MAC? RE: script.extendedinfo - Raze - 2017-02-19 Quote:The issue is that the latest extendedinfo script has been made to work with Kodi 18 Leia. In Kodi 18 Leia, the function System.HasModalDialog has been changed to System.HasActiveModalDialog. This causes the error "Could not find valid content type". To fix it for Kodi 17 look in your addon directory and open the file process.py ("C:\Users\yourusername\AppData\Roaming\Kodi\addons\script.extendedinfo\resources\lib") . Works perfectly. Cheers. I know Phil is busy, but this addon is fantastic and I hope he can find more time for it. RE: script.extendedinfo - oledb0815 - 2017-02-19 (2017-02-15, 19:04)cw-kid Wrote:(2017-02-15, 17:31)nvsquared Wrote:(2017-02-08, 17:28)TheSwede1970 Wrote: Same issue here... here too - thanks a lot for the hint !! edit, but only in kodi 17(1), in 18 it doesn't RE: script.extendedinfo - Skinnerxyz - 2017-02-20 is it still possible to load the script in backend mode? to request labels of actors in dialogvideoinfo or anything else without the xml file from the script? and gives there a dokumentation for backend mode and which labels? RE: script.extendedinfo - nvsquared - 2017-02-22 (2017-02-17, 13:53)cablecar1 Wrote: nvsquared Don't have a Mac but according to the Kodi Wiki the userdata folder is located at "/Users/<your_user_name>/Library/Application Support/Kodi/userdata/". So your addons folder should be "/Users/<your_user_name>/Library/Application Support/Kodi/addons/" See this link: Userdata (wiki) RE: script.extendedinfo - Wanilton - 2017-02-28 @phil65 Trouble reported by iMak, Code: Support/Kodi/addons/script.module.kodi65/lib/kodi65/actionhandler.py", line 8, in <module> Happen in Leia when using windows OS too, hope in next days, you check this.. When using Krypton, script is broken for play youtube videos, appear message no youtube id found. Thanks again for all support in this script, it´s great. RE: script.extendedinfo - Magoo32 - 2017-03-01 Running LibreElec Milhouse V18 L nightlies on a Chromebox , Getting Script Errors with Newest Version of the script. Full Debug Log: LOG |