![]() |
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 for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Dumyat - 2018-09-19 @Megablaps Glad you were able to find a fix. Just an idea, but maybe you could post what you did. Then the master branch of the skin can be updated, so everybody can benefit ![]() RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Megablaps - 2018-09-20 (2018-09-19, 20:43)Dumyat Wrote: @MegablapsYeah, sure thing dude. The Github, here has the 'LisItem' spelling error as opposed to 'ListItem' and a few spacing and formatting quibbles. The View_810_MusicFlix.xml needs to be modded in this way Delete the following Lines 108 - 118 (inclusive): <control type="textbox"> <label>[COLOR white]$INFO[Window(Home).Property(SkinHelper.LisItem.Albums)][/COLOR]</label> <top>-2</top> <left>130</left> <width>610</width> <height>160</height> <align>left</align> <include>KodiFlixButtonsValues</include> <autoscroll time="3000" delay="4000" repeat="5000">true</autoscroll> <visible>!ListItem.IsParentFolder + Container.Content(artists)</visible> </control> And replace with: <control type="textbox"> <label>[COLOR white]$INFO[Window(Home).Property(SkinHelper.ListItem.Albums.Formatted)][/COLOR]</label> <top>-2</top> <left>130</left> <width>810</width> <height>242</height> <align>left</align> <include>KodiFlixButtonsValues</include> <autoscroll time="3000" delay="4000" repeat="5000"></autoscroll> <visible>!ListItem.IsParentFolder + Container.Content(artists)</visible> </control> Cheers. RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Megablaps - 2018-09-20 Thought I'd share another fix I made for Madnox, this only applies to the MusicFlix view. Has anyone else had this problem where the record label wouldn't show up in the information screen? (This is only for custom made icons that match the '<label>x</label> in the album nfo. files. The standard issue icons that come with the skin work fine). The skin understandably doesn't have EVERY record label under the sun. The label would show on the now playing screen, and the library browsing screen but not the info screen. See pics 1 and 2 ![]() ![]() I fixed this by amending the DialogMusicInfo.XML Go to line 220 (could be earlier, maybe around 215) Replace: <texture>$INFO[ListItem.Property(Album_Label),resource://resource.images.recordlabels.white/,.png]</texture> With this: <texture>flags/music/recordlabel/$INFO[ListItem.Property(Album_Label),,.png]</texture> Presto! See pic 3. Another bug worked out of my system. I'm now chasing a similar issue with movies in Kodiflix view. Where the studios only show on the info screen, not while browsing. ![]() RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - mikeSiLVO - 2018-09-21 @gibxxi Buttons for add-on info are fixed on Git. @ ALL please be aware that @Megablaps fixes are for Kodi Krypton and NOT Leia. Record labels are working for me just fine in Leia and I cannot test the album and track lists cause Skin Helper is not returning those labels for me ATM. I have no idea if it will be fixed due to the fact marcel the maintainer of that script is busy with real life and I have no idea if/when he can update it. There is indeed a typo that I have fixed with the artist view (thanks @Megablaps ![]() If you can see the tracklist for MusicFlix view for albums (in Leia) please post here and I can send you a updated file to test and make sure that I did not mess anything up ![]() EDIT:@gibxxi Here is a pic ![]() ![]() RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Megablaps - 2018-09-21 Cheers @mikeSiLVO I should have been clearer with my Krypton setup. It's near 100% dialled. I just personally haven't had a solid need to upgrade to Leia yet. 😎👍 Love your work. Just wondering too, in Kodiflix view for Movies (Leia), do you get custom studio icons only showing in info view and not in the library view? I was having issues in Krypton but I managed to get it to work with a similar mood. RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - sergejskr - 2018-09-21 Hi guys, I need some help from the devs, who has been working most of the time on those skins. I'm trying to improve skin.aeon.madnox-krypton version and I cannot find in which xml view it renders this information: ![]() ![]() I need to improve the way how rating is displayed, but cannot find the related controls. Thank you. RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - WolvesPhil - 2018-09-23 I have just found a small issue with the artwork on my madnox install, on the menu screen the posters showing up when using the skin overlay service to show next up episode from current shows we are watching appear to show artwork that isn't on my media location... I have correct season art in the folders and these show up when navigating the folders however the season art showing up on the main screen is wrong - any ideas on this one? I'll get some screenshots if needed but this might be something already raised (even though a quick search hasn't shown anything) RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - gibxxi - 2018-09-29 (2018-09-21, 07:22)mikeSiLVO Wrote: @gibxxi Buttons for add-on info are fixed on Git. Thanks Mike. ![]() Dan / Gib. RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - McButton - 2018-09-29 **Fixed** RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Slipass - 2018-10-03 Hi Mike, since the last Kodi Update 18 Beta 3 i have no currect pvr view (Enigma Plugin) Do you have an idea? KODI 17 Final ![]() KODI 18 Beta 3 ![]() RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - MoloMuy - 2018-10-09 Hi, I'm with the Kodi Leia v18 Beta 3 version on an Nvidia Shield Since installing the Beta 3 version of Leia, it does not show me the codec h265 flags I have named the files as follows h265.png hevc.png and I do not recognize either of the two Thank you very much RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - mikeSiLVO - 2018-10-24 (2018-10-03, 12:47)Slipass Wrote: Hi Mike, Sorry for late reply. Live TV InfoBar should be fixed on Git now. RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Slipass - 2018-10-24 Thanks Mike, I will test it next week. Can you fix also the video/animation on startup? Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - risoterapia - 2018-11-02 Hello! I have installed LibreELEC (Leia) v8.90.006 ALPHA and aeon madnox fron github (https://github.com/MadMikeDoc/skin.aeon.madnox.leia) and all is ok. I have no problems but sometimes i have a crash screen and i receive information that a lot of crashes have caused to have to restart. I have a kodi-Crash.log with a lines as follow: T:140424341575424 WARNING: CPythonInvoker(26, /storage/.kodi/addons/script.extendedinfo/plugin.py): the python script "/storage/.kodi/addons/script.extendedinfo/plugin.py" has left several classes in memory that we couldn't clean up. The classes include: N9XBMCAddon7xbmcgui10DialogBusyE What could be happening? RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - bsoriano - 2018-11-02 @mikeSiLVO, it seems that the fix for Live TV Info Bar has made it so whenever you press M on any playing video, you get the PVR info. Could you please check? Maybe a visibility condition needs to be changed? Thanks. Regards, Bart |