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
|
script.extendedinfo - phil65 - 2013-03-26 Support for ExtendedInfo Script (for skinners only, no end-user support. please ask in the corresponding skin threads) Current Kodi script repo release version is 6.0.7 (Kodi Matrix and up) Video showing some of the functionality: [video=youtube][video=youtube]https://www.youtube.com/watch?v=7i3z6QxEU3A&feature=youtu.be[/video] GitHub repository: https://github.com/phil65/script.extendedinfo https://github.com/scott967/script.extendedinfo List content overview for the XMLs Code: . MOVIES TVSHOWS SEASONS EPISODES ACTORS AVAILABLE IN OFFICIAL KODI REPOSITORY. CAUTION: Needs v14.2 v19.0 at least to run properly on all platforms. for newest isengard nightly builds I created a context menu add-on to add an entry to show the Movie / TVShow / Season extendedinfo dialog. That way it can also be used in Confluence for example. https://github.com/phil65/context.extendedinfo.dialog https://github.com/phil65/context.extendedinfo.ratemedia Please note that forum user scott967 is now the maintainer of this addon. Re: [RELEASE] script.ExtendedInfo - Martijn - 2013-03-26 Change id to lowercase only RE: [RELEASE] script.ExtendedInfo - phil65 - 2013-03-26 done. RE: [RELEASE] script.ExtendedInfo - Eisi2005 - 2013-03-26 nice script Thanks for your great work RE: [RELEASE] script.ExtendedInfo - MarcosQui - 2013-03-26 Finally the data for sets being shown correctly. Congratulations Phil. Works fine here. RE: [RELEASE] script.ExtendedInfo - phil65 - 2013-03-27 ok, next one. (this is an old feature from script.extramusicinfo by pieh, credits for that script) call the script with onclick>RunScript(script.extendedinfo,info=NearEvents)</onclick> and you´ll get Window(home).Property(... NearEvents.%i.Artists NearEvents.%i.Date NearEvents.%i.City NearEvents.%i.Region NearEvents.%i.Country this uses GeoIP and returns concerts in your area including dates / venues. use newest GIT commit for this. RE: [RELEASE] script.ExtendedInfo - jurialmunkey - 2013-03-27 (2013-03-26, 19:04)phil65 Wrote: Spent the last 1-2 days with writing a new script. I´m done now (except documentaition of course, as usual ) Amazing work! RE: [RELEASE] script.ExtendedInfo - fmronan - 2013-03-27 awesone, congratulation Can you add discart, like clearlogo,please? RE: [RELEASE] script.ExtendedInfo - MarcosQui - 2013-03-27 phil, I found a problem. If you use a info panel off list everything works fine, but if you use the data included in the list (as view List in Aeon) the script does not return any data because it would be necessary to use "ListItem.Property" Any solution? RE: [RELEASE] script.ExtendedInfo - fmronan - 2013-03-27 a error with album pastebin RE: [RELEASE] script.ExtendedInfo - Balinus - 2013-03-27 (2013-03-27, 01:37)phil65 Wrote: ok, next one. (this is an old feature from script.extramusicinfo by pieh, credits for that script) wow! RE: [RELEASE] script.ExtendedInfo - phil65 - 2013-03-27 (2013-03-27, 13:09)MarcosQui Wrote: phil, I found a problem. was also like that with old script.moviesets. we cannot assign properties to listitems generated by xbmc. only to windows/dialogs. RE: [RELEASE] script.ExtendedInfo - phil65 - 2013-03-27 next one: use: RunScript(script.extendedinfo,info=artistevents,artistname=$ESCINFO[ListItem.Label]) and you´ll get: Window(home).Property(... ArtistEvents.%i.Artists ArtistEvents.%i.Date ArtistEvents.%i.City ArtistEvents.%i.Region ArtistEvents.%i.Country this will give you all upcoming concerts from the given artist. RE: [RELEASE] script.ExtendedInfo - pieh - 2013-03-27 (2013-03-27, 01:37)phil65 Wrote: ok, next one. (this is an old feature from script.extramusicinfo by pieh, credits for that script)Nice to see this one shaping up to something usable RE: [RELEASE] script.extendedinfo - phil65 - 2013-03-27 that one is included in nox for about a year it worked with your old script, too. the other ones were broken, but i managed to get them all working. thx for that script again. (and also for script.rssclient, that´s also a very nice one) |