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 - Beta Release (for Isengard) - schimi2k - 2015-08-05

(2015-08-05, 17:03)mikesilvo164 Wrote:
(2015-08-05, 16:34)Mike_Doc Wrote: Thanks, in all views? because the var we use for posters is pretty much used in all views that display a poster and our existing definition has a couple of extras conditions in it than what is above, don't wont to fix one thing and break another Confused

Looks like one of your current VARs is:
Code:
<value condition="Stringcompare(ListItem.label,..)">DefaultFolderBack.png</value>
<value condition="Container.Content(genres)">$INFO[ListItem.Label,special://skin/extras/genre/video/icons/,.jpg]</value>
<value condition="!IsEmpty(ListItem.Art(poster))">$INFO[ListItem.Art(poster)]</value>
<value condition="Container.Content(episodes) + !IsEmpty(ListItem.Art(season.poster))">$INFO[ListItem.Art(season.poster)]</value>
<value condition="!IntegerGreaterThan(ListItem.Season,9) + [Container.Content(tvshows) | Container.Content(seasons) | Container.Content(episodes)]">$INFO[ListItem.Path]$INFO[ListItem.Season,../season0,-poster.jpg]</value>
<value condition="Container.Content(episodes)">$INFO[ListItem.Path]$INFO[ListItem.Season,../season,-poster.jpg]</value>
<value condition="Container.Content(episodes)">$INFO[ListItem.Art(tvshow.poster)]</value>
<value>$INFO[ListItem.Icon]</value>
so changing it to this:
Code:
<value condition="Stringcompare(ListItem.label,..)">DefaultFolderBack.png</value>
<value condition="Container.Content(genres)">$INFO[ListItem.Label,special://skin/extras/genre/video/icons/,.jpg]</value>
<value condition="!IsEmpty(Container.Art(season.poster))">$INFO[Container.Art(season.poster)]</value>
<value condition="!IsEmpty(ListItem.Art(tvshow.poster)) + !Container.Content(seasons)">$INFO[ListItem.Art(tvshow.poster)]</value>
<value condition="!IsEmpty(ListItem.Art(poster))">$INFO[ListItem.Art(poster)]</value>
<value>$INFO[ListItem.Icon]</value>
should work.

i will check if this will brake my settings Wink ... KAMIKAAAAAZEEEEEEEE !!!!!!
THX Mike 2 Rofl

EDIT: ive changed "<variable name="ListPosterVar">" ( starts line 2416 ) and i still have season posters in level 2 and 3...
maybe one of the "problem" kids could check too ?
when its working for you too, i can push it to mike... for a hot fix maybe
will check a bit deeper now
GOOD LUCK

@Oddsodz
BRILLIANT Bug report Smile


RE: Aeon Madnox - Beta Release (for Isengard) - BytEvil - 2015-08-05

(2015-08-05, 15:50)meowmoo Wrote: Fixed...

Thanks! Smile

and please make PR with renamed alac.png flac.png mp1.png mp2.png ra2.png ra.png in /media/flags/ folder Wink


RE: Aeon Madnox - Beta Release (for Isengard) - efrister - 2015-08-05

Hi All,
I work with Ember Media Manager, so i get all the graphics from there.
How can i load the logos and diskart to my wall without scaning the library? Cant kodi read from the movie folders the art and load them to the wall without artwork manager?
TIA


RE: Aeon Madnox - Beta Release (for Isengard) - meowmoo - 2015-08-05

I can confirm that mike's Code fix the issue, I was one of the "Problem kids" and now get Season poster in all views...

It still kind bugs me, b/c sometimes i don't get Season poster in rightview, but after changing to Listview and than back to rightview i get the season poster...

you need to change ListPosterVar and ListPosterVar1, and I think something is fishy if you change from Colored Genre to BW Genre, need some more testing... (on my openelec system maby)

here is the "fixed" variables.xml for testing
https://drive.google.com/open?id=0B9bSf6HADVkFZk9TUEJpdmNyQ0E

Quote:and please make PR with renamed alac.png flac.png mp1.png mp2.png ra2.png ra.png in /media/flags/ folder

Done

and for everyone using the latest git, some pic with the new settings in case you missed it Tongue
New Home now playing
watch gallery

New Music Viz
watch gallery


now time for Beer and Fußball Cool


RE: Aeon Madnox - Beta Release (for Isengard) - Warner306 - 2015-08-05

I was poking around in your skin today and found a couple of small issues that should be resolved:

1. The attribute <fadetime> is causing problems with movie posters when they are highlighted. The poster flashes on first selection and is fine after that until the window is closed and reopened. Open and close Wall view, for example, and cycle through the posters. The abnormal flashing of the selected poster should be obvious.

This is an issue related to Isengard. BigNoid removed all instances of <fadetime> from Aeon Nox 5 to address this problem. You would have to search through each view with posters (mostly wall views and video info screens such as script-ExtendedInfo Script-DialogVideoInfo and DialogVideoInfo) and remove the fadetime label. It is enough to delete the line entirely.

A sample from Viewtype_Wall.xml shows the entry as follows:

<fadetime>IconCrossfadeTime</fadetime>

Delete each instance of this line to fix the problem. The poster should not flash anymore.

2. The actor biography will not load the custom window when selected. It just freezes. I didn't investigate to determine why. You might be missing the correct custom_window called by the biography line. The window is supposed to pop-up on selection.


RE: Aeon Madnox - Beta Release (for Isengard) - Mike_Doc - 2015-08-06

Thanks Warner,

will add both to list and look at fixing them ASAP @ the weekend. I'm doing a major code cleanup starting the weekend so the fadetime will be part of that.

Which Dialoginfo are you in when the actor fails, the standard skin one I presume?

Mike.


RE: Aeon Madnox - Beta Release (for Isengard) - Mike_Doc - 2015-08-06

Thanks meowmoo for the confirmation on the var change and the info on the music viz mods.


RE: Aeon Madnox - Beta Release (for Isengard) - schimi2k - 2015-08-06

(2015-08-06, 08:16)Mike_Doc Wrote: Thanks Warner,

will add both to list and look at fixing them ASAP @ the weekend. I'm doing a major code cleanup starting the weekend so the fadetime will be part of that.

Which Dialoginfo are you in when the actor fails, the standard skin one I presume?

Mike.

if you want i can clean the fadetime if you want Smile just send me a pm


RE: Aeon Madnox - Beta Release (for Isengard) - Mike_Doc - 2015-08-06

Hi efrister, Kodi will only read the poster and fanart in general and load them into the DB, You need to have add-on Artwork Downloader installed and then configure to use local artwork and then run it, it will pull into Kodi all the artwork you have got from ember and download any other artwork it is configured to get that you don't have.

Please see #post 1 or schimi's signature for his 'how to' for more info on this and other things connected to using Madnox as your skin.


RE: Aeon Madnox - Beta Release (for Isengard) - wints - 2015-08-06

(2015-08-05, 17:50)schimi2k Wrote:
(2015-08-05, 17:03)mikesilvo164 Wrote:
(2015-08-05, 16:34)Mike_Doc Wrote: Thanks, in all views? because the var we use for posters is pretty much used in all views that display a poster and our existing definition has a couple of extras conditions in it than what is above, don't wont to fix one thing and break another Confused

Looks like one of your current VARs is:
Code:
<value condition="Stringcompare(ListItem.label,..)">DefaultFolderBack.png</value>
<value condition="Container.Content(genres)">$INFO[ListItem.Label,special://skin/extras/genre/video/icons/,.jpg]</value>
<value condition="!IsEmpty(ListItem.Art(poster))">$INFO[ListItem.Art(poster)]</value>
<value condition="Container.Content(episodes) + !IsEmpty(ListItem.Art(season.poster))">$INFO[ListItem.Art(season.poster)]</value>
<value condition="!IntegerGreaterThan(ListItem.Season,9) + [Container.Content(tvshows) | Container.Content(seasons) | Container.Content(episodes)]">$INFO[ListItem.Path]$INFO[ListItem.Season,../season0,-poster.jpg]</value>
<value condition="Container.Content(episodes)">$INFO[ListItem.Path]$INFO[ListItem.Season,../season,-poster.jpg]</value>
<value condition="Container.Content(episodes)">$INFO[ListItem.Art(tvshow.poster)]</value>
<value>$INFO[ListItem.Icon]</value>
so changing it to this:
Code:
<value condition="Stringcompare(ListItem.label,..)">DefaultFolderBack.png</value>
<value condition="Container.Content(genres)">$INFO[ListItem.Label,special://skin/extras/genre/video/icons/,.jpg]</value>
<value condition="!IsEmpty(Container.Art(season.poster))">$INFO[Container.Art(season.poster)]</value>
<value condition="!IsEmpty(ListItem.Art(tvshow.poster)) + !Container.Content(seasons)">$INFO[ListItem.Art(tvshow.poster)]</value>
<value condition="!IsEmpty(ListItem.Art(poster))">$INFO[ListItem.Art(poster)]</value>
<value>$INFO[ListItem.Icon]</value>
should work.

i will check if this will brake my settings Wink ... KAMIKAAAAAZEEEEEEEE !!!!!!
THX Mike 2 Rofl

EDIT: ive changed "<variable name="ListPosterVar">" ( starts line 2416 ) and i still have season posters in level 2 and 3...
maybe one of the "problem" kids could check too ?
when its working for you too, i can push it to mike... for a hot fix maybe
will check a bit deeper now
GOOD LUCK

@Oddsodz
BRILLIANT Bug report Smile

Tried this last night but it didn't help me Huh still no season poster at t3


RE: Aeon Madnox - Beta Release (for Isengard) - Warner306 - 2015-08-06

(2015-08-06, 08:16)Mike_Doc Wrote: Thanks Warner,

will add both to list and look at fixing them ASAP @ the weekend. I'm doing a major code cleanup starting the weekend so the fadetime will be part of that.

Which Dialoginfo are you in when the actor fails, the standard skin one I presume?

Mike.

The biography pop-up for the ExtendedInfo dialog was not working. Maybe it is missing the custom_window?


RE: Aeon Madnox - Beta Release (for Isengard) - schimi2k - 2015-08-06

(2015-08-06, 08:22)wints Wrote: ... SAVE SOME SPACE hehe

Tried this last night but it didn't help me Huh still no season poster at t3

did you try also the variable.xml from meowmoo ?
http://forum.kodi.tv/showthread.php?tid=230821&pid=2072060#pid2072060

its impossible to check for me and mike, because its working here Sad


RE: Aeon Madnox - Beta Release (for Isengard) - mikeSiLVO - 2015-08-06

(2015-08-06, 08:22)wints Wrote: Tried this last night but it didn't help me Huh still no season poster at t3

If you are on Isengard and you have a season poster in your DB then it will work but it is still dependent on what variable the view you have selected uses to display the poster.


RE: Aeon Madnox - Beta Release (for Isengard) - wints - 2015-08-06

Hi Mike yeah first tried manually editing the file it didn't work so downloaded meowmoo's file deleted the old and replaced it with meowmoo's, I've tried restarting kodi a few times also tried changing skins then going back to Madnox but still the same


RE: Aeon Madnox - Beta Release (for Isengard) - schimi2k - 2015-08-06

can you post a screenshot of your series folder pls