Aeon Madnox for Krypton / Jarvis - (no longer in development) - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67) +---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179) +----- Forum: Madnox (https://forum.kodi.tv/forumdisplay.php?fid=314) +----- Thread: Aeon Madnox for Krypton / Jarvis - (no longer in development) (/showthread.php?tid=230821) 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
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
|
RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - Razieal - 2016-05-04 (2016-05-03, 21:23)BobCratchett Wrote:I have installed 1.0.8 git version actually wrote this post about static widgets after trying on1.0.8 version but nothing changed widgets still static(2016-05-03, 21:15)Razieal Wrote:(2016-05-03, 20:57)Razieal Wrote: I jst have a quick and simple question that why widgets dont auto update they just static I just updated to latest version and old versions before MR V widgets implementation widgets used to update every 5 secs now they just static there is no option anywhere to set a time to update homescreen widgets also even after playing a movie im seeing same widgets on homescreen no updates no movements . Really annoying indeed Can someone please help on this matter Thanks RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - BobCratchett - 2016-05-04 (2016-05-04, 07:56)Razieal Wrote:(2016-05-03, 21:23)BobCratchett Wrote:I have installed 1.0.8 git version actually wrote this post about static widgets after trying on1.0.8 version but nothing changed widgets still static(2016-05-03, 21:15)Razieal Wrote: Even after playing media still seeing same widgets on homescreen that defeats the whole purpose of having widgets if they are not going to auto update Just to be clear, by "static widgets still static", you mean that the widgets still don't reload after media playback ends? (I want to be clear as your original post seemed unclear on whether that was your only issue, or if you also has a problem with the widgets not auto-scrolling.) If that's the case, the most likely possibilities are:
The third and fourth can both be checked by manually editing the widget path within the menu editor - just select the choose widget button again, and choose the last item in the list (probably 'Custom Item', but I forget what we labelled it). At the end of the path should be either a ? or a &, depending if the path already has any parameters, followed by: Code: reload=$INFO[Window(Home).Property(widgetreload)] RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - Mike_Doc - 2016-05-04 @Bob, is the space in 'widget reload' required? Just checked my includes and I have the code on some widgets but it is 'wdigetreload'? Some others have values like 'randomalbums', 'randommovies' etc. some examples from my SSS includes: Code: Line 3313: <content sortby="dateAdded" sortorder="descending" target="music">plugin://service.library.data.provider?type=recentalbums&reload=$INFO[Window.Property(recentalbums)]</content> Mike RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - BobCratchett - 2016-05-04 The space was added to my post courtesy of autocorrect - thanks for the spot, I'll edit the post accordingly (The randommovies, randomepisodes are the library data providers own reload parameter, and ensure those widgets are refreshed as soon as the script has regenerated them.) RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - schimi2k - 2016-05-04 maybe i can give a small advice... i am using for all my "collection based" stuff just PLAYLISTS ! playlist for main menu items and also playlists for the widgets i use for my collections ( recent added movies, recent added episodes ) all with playcount less than 1 i have the full controll what i want to see and what should i say - it worked ! when i play a movie and finish it - KAPOWWWW - not anymore in my widget i watched an episode - KAPOWWWW - not anymore in my widget i use EMBER command for every 30 Minutes to check my collection and when ember found a new content - ember scrape it ( movie or episode ) and send a synch to kodi and KAPOWWWW - i saw it in my widgets - same happen when i manualy refresh my database too so if someone have problems with the default Kodi or LDP "provider" should test with playlists - making a playlist is easy like to swing a lightsaber ! and with playlists YOU have control over the stuff you wanna see i was to make a tutorial with this tip, but again there where too many questions about things i already answer on first page, so i save my time with making tutorials... RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - meowmoo - 2016-05-04 Same as schimi, I'm using playlist and my widgets update after watching a episode RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - Bonecrusher - 2016-05-04 Hello guys, how can I get the blur effect on the right side of the DialogVideoInfo.xml? Left side is the movie cover, right side are infos to the movie...an the background ist black... thanks for helping me Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - sarlan19 - 2016-05-04 (2016-05-04, 12:56)meowmoo Wrote: Same as schimi, I'm using playlist and my widgets update after watching a episode Could you share a screenshot of the rules of that playlist please ? I tried a couple of things with no luck. I think I'll be forced to do a clean install again..... RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - Slipass - 2016-05-04 (2016-05-04, 12:56)meowmoo Wrote: Same as schimi, I'm using playlist and my widgets update after watching a episode It works for me by movies but not for episodes. <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <smartplaylist type="episodes"> <name>10 Episoden</name> <match>all</match> <rule field="playcount" operator="is"> <value>0</value> </rule> <limit>10</limit> <order direction="descending">dateadded</order> </smartplaylist> RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - meowmoo - 2016-05-04 I post them when I'm home Maby tell me what exactly you wanna see in you widget RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - sarlan19 - 2016-05-04 I want to see the last added episodes. So when I add one to the library it gets added on the first spot in the widget. When I watch it i'd like to see it gone from the widget. This used to work flawlessly before. Now it doesn't :-( I just did a clean install and rebuild my widgets with the same result. I tried to add an episode and it doesn't show in the "recent episode" playlist in "library". On the tv show the flag for new episode is not there too. Thanks for your time (2016-05-04, 17:58)meowmoo Wrote: I post them when I'm home RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - Slipass - 2016-05-04 (2016-05-04, 17:58)meowmoo Wrote: I post them when I'm home My wish: A playlist for my livebackground on submenue Only for Comedy Series: (the series lie on a special path on a server) Only the last 10 added episodes form the series Sorted by date added My problem here: When i watched a episode, my databases crashes and only a restart from the windows 10 server helps. I worte with schimi about the problem but we cant find the failure. The failure is only by episodes and only, when i select a special path. I have separated folders for the series (cartoon, comedy, drama.....) RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - schimi2k - 2016-05-04 (2016-05-04, 17:48)Slipass Wrote:(2016-05-04, 12:56)meowmoo Wrote: Same as schimi, I'm using playlist and my widgets update after watching a episode i have my SERIES Widget Playlist like this: Code: <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> the rulefield for genre animation and anime is to seperate my animation and anime series from the regular ones - work also perfectly and with this settings i see new episodes on the left side and when i watch a episode it dissapear from that widget ( on my Pi it took maybe 15 seconds - on my windows player just a cpl of seconds max ) Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - sarlan19 - 2016-05-04 I don't think the problem is with playlist. I think it has to do with Kodi not picking up the last episode added as a new episode. Even in confluence my "recently added" episode is messed up. Envoyé de mon iPhone en utilisant Tapatalk RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - FoxForceFive - 2016-05-04 When I add my own images as background they appear to be 'zoomed in' for want of a better word. It's like the background isn't scaling? If that's the case is it an easy fix or should I resize my background images as a 'dirty fix'? If you're unsure what I mean I can provide screenshots as examples (not at my htpc right now). |