Kodi Community Forum
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 - paulsk2 - 2020-01-04

artist slideshow has been updated and no longer works with this skin . any chance anyone could be a hero and help fix this . been my favourite skin for years :-) so thanks for all the hard work :-)


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - ArieS - 2020-02-12

So I finally got some time to update all my boxes to Leia... All boxes are running Madnox.
On my NUC and on my PC the 4k flag shows up for UHD movies but not on my Vero 4K
https://imgur.com/8OTSMDp

https://imgur.com/stYkZYc

Any idea what's going on?

One more question, I'm missing some studio flags. I remember in old versions of Madnox, we had to point the skin to the Studio folder but it seems not anymore. However, I cannot find where the Studio flag is located in the skin folder.

Thanks in advance for any help I can get!


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - meowmoo - 2020-02-12

I guess the nuc is running windows?
I'm pretty sure it's a case sensitive problem, because the vero is running Linux.

No idea about the studio logos sorry


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - meowmoo - 2020-02-12

(2020-01-04, 22:37)paulsk2 Wrote: artist slideshow has been updated and no longer works with this skin . any chance anyone could be a hero and help fix this . been my favourite skin for years :-) so thanks for all the hard work :-)

Open the musicvisualization.xml

Search for ArtistSlideshow

You find something like this
Code:
<control type="multiimage"> <aspectratio>scale</aspectratio> <timeperimage>10000</timeperimage> <randomize>true</randomize> <fadetime>600</fadetime> <loop>yes</loop> <imagepath background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow)]</imagepath> <visible>System.HasAddon(script.artistslideshow)</visible> </control>]

Replace it with that
Code:
<control type="image"> <aspectratio>scale</aspectratio> <fadetime>400</fadetime> <animation effect="fade" start="0" end="100" time="400">WindowOpen</animation> <animation effect="fade" start="100" end="0" time="300">WindowClose</animation> <texture background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow.Image)]</texture> <visible>!String.IsEmpty(Window(Visualisation).Property(ArtistSlideshow.Image))</visible> </control>]



RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - ArieS - 2020-02-13

(2020-02-12, 23:02)meowmoo Wrote: I guess the nuc is running windows?
I'm pretty sure it's a case sensitive problem, because the vero is running Linux.

 
Hey meowmoo, 
Care to elaborate a bit more? 
I see the PNG for it is 4k.png
My file is named Doctor Sleep (2019).atmos.UHD.Bluray
What exactly am I supposed to change?

By the way, it worked perfectly with Krypton on the Vero 4K...
Thanks.


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - meowmoo - 2020-02-13

OK if it work on krypton than it's not a naming problem :/

You can try to rename the png to 2160p.png

Just guessing here, need to open a xml to see what is going on


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - ArieS - 2020-02-14

(2020-02-13, 03:37)meowmoo Wrote: OK if it work on krypton than it's not a naming problem :/

You can try to rename the png to 2160p.png

Just guessing here, need to open a xml to see what is going on
Any chance you could add a video named Doctor Sleep (2019).atmos.UHD.Bluray to your library just to see if it displays the flag, since you also have a Vero 4K. It would be truly appreciated Wink


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - meowmoo - 2020-02-14

rename the png to "4K.png" (uppercase K) its "4k.png" right now and it should work

the new madnox had the same issue, so sorted that issue also Tongue


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - ArieS - 2020-02-14

(2020-02-14, 14:35)meowmoo Wrote: rename the png to "4K.png" (uppercase K) its "4k.png" right now and it should work

the new madnox had the same issue, so sorted that issue also Tongue
The other day I had replaced the PNG 4k.png with a 4K.png but I guess it didn't work.
This time I deleted 4k.png and added a 4K.png and it worked! Thanks bud!


@mikeSiLVO (or anyone else) Where's the Studio flags folder located now? Being trying to add some flags but can't find the folder...


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Karellen - 2020-02-14

@ArieS

If you are using Windows it is located here...
C:\Users\Master\AppData\Roaming\Kodi\addons\resource.images.studios.white

You can also submit the icons for inclusion into the package...
https://github.com/XBMC-Addons/resource.images.studios.white


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - ArieS - 2020-02-16

(2020-02-14, 22:34)Karellen Wrote: @ArieS

If you are using Windows it is located here...
C:\Users\Master\AppData\Roaming\Kodi\addons\resource.images.studios.white

You can also submit the icons for inclusion into the package...
https://github.com/XBMC-Addons/resource.images.studios.white
Thanks Karellen, got it!


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - homerjs - 2020-02-16

Hi all, thanks for the continued work on this, I was running 17.6 for the longest time but since I saw Madnox works now with Leia I switched.   I have 1 niggly little thing I wonder if I can ask about, I use Kodiflix as my view for Movies, I have it set to centered and scroll ascending left to right...alphabetically.  The issue is when I want to scroll through quickly...when you press down on the remote and it allows you to essentially "page scroll"  9 at a time, this only works until about halfway though my library and then it stops jumping to the next 9 movies and I can see the small indicator bar at the bottom has reached as far right as it can go, I have to press up and then  single scroll through the rest of the movies.  Any thoughts on why this happens
Just checked and this also happens with other layouts like Showcase, perhaps I have a setting wrong in the QuickNav viewtype settings menu ?
thanks


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - homerjs - 2020-02-16

(2020-02-16, 02:31)homerjs Wrote: Hi all, thanks for the continued work on this, I was running 17.6 for the longest time but since I saw Madnox works now with Leia I switched.   I have 1 niggly little thing I wonder if I can ask about, I use Kodiflix as my view for Movies, I have it set to centered and scroll ascending left to right...alphabetically.  The issue is when I want to scroll through quickly...when you press down on the remote and it allows you to essentially "page scroll"  9 at a time, this only works until about halfway though my library and then it stops jumping to the next 9 movies and I can see the small indicator bar at the bottom has reached as far right as it can go, I have to press up and then  single scroll through the rest of the movies.  Any thoughts on why this happens
Just checked and this also happens with other layouts like Showcase, perhaps I have a setting wrong in the QuickNav viewtype settings menu ?
thanks



RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - homerjs - 2020-02-16

The scrollbar length is too short, however if I go and change the setting "enable alphabet scroll bar" that works, and then if I go back and disable alphabet scrollbar then back to movies, the scrollbar length is correct...but this goes away on reboot.


RE: Aeon Madnox for Krypton / Jarvis - [RC2 Revision 0.9.1] 30/05 - Busta Uppa - 2020-03-21

I am finally using Aeon Madnox again and it feels great!  I'm running Leia 18.5, and just downgraded my Artist Slideshow add-on so it could work with this skin.

One weird issue is that my CD art shows up correctly on the Home Menu player, but on the full Now Playing screen it only shows the generic "CD-R" looking disc.  Any idea why that might be happening?

I'm also not getting Artist ClearLogos/Clearart at all, nor are record label icons appearing on the Now Playing screen.  I had these all on my old Krypton installation so I'm trying to pin down what the issue is.  I notice that if I select "Choose Art" on the artist info screen, I only see options for thumbnail and fanart (and "poster" for some artists but not others).  On my old Krypton installation I recall having the ability to select artist logo as well.

For reference I installed the Madnox skin from the download here https://github.com/mikesilvo164/skin.aeon.madnox/tree/leia
If there's a problem with that I can install from elsewhere, as long as it works on Leia 18.5 or current.

Per the Skin Settings-Help screen, I have the following add-ons installed:
- color picker
- SiLVO repository
- skin helper service
- artist slideshow (v2.1.5)
- extendedinfo
- skin shortcuts
- resource images studios white
- skin info service
- service library data provider


Thanks for any insight and for all the hard work you've put in!!