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 / Jarvis) - BobCratchett - 2016-02-10

(2016-02-10, 15:23)bsoriano Wrote: Bob, I asked Marcel about this and he said that the episode info is provided by the Next Aired widget in Skin Helper Service, that you just need to use the correct listitem properties. Could you please take a look? Thank you.

Regards,

Bart

Certainly there's nothing we can do about displaying a list of episodes if the plugin returns a list of tv shows. It's possible to add support for the specific infolabels that the widget provides if someone is up to the task and Mr. V is happy about specific-support for a specific-widget (the primary reason you get so many widget choices with the skinshortcuts-dev branch is because the widgets are all handled as generically as possible). You could, for example, add another variable to each of the plot variables in templates.xml to pull out the relevant properties:-

Code:
<value condition="!IsEmpty(Container(8011$SKINSHORTCUTS[id]).ListItem.Property(NextAired.NextTitle)">Next Episode: $INFO[Container(8011$SKINSHORTCUTS[id]).ListItem.Property(NextAired.NextTitle)]</value>

(Which is just an example - would obviously need adding all the info you'd want to see - and completely untested as I don't actually use Next Aired. It's also worth remembering that they're processed in order, so if another variable matches before the new one, that will be used)


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - bsoriano - 2016-02-10

(2016-02-10, 16:21)BobCratchett Wrote:
(2016-02-10, 15:23)bsoriano Wrote: Bob, I asked Marcel about this and he said that the episode info is provided by the Next Aired widget in Skin Helper Service, that you just need to use the correct listitem properties. Could you please take a look? Thank you.

Regards,

Bart

Certainly there's nothing we can do about displaying a list of episodes if the plugin returns a list of tv shows. It's possible to add support for the specific infolabels that the widget provides if someone is up to the task and Mr. V is happy about specific-support for a specific-widget (the primary reason you get so many widget choices with the skinshortcuts-dev branch is because the widgets are all handled as generically as possible). You could, for example, add another variable to each of the plot variables in templates.xml to pull out the relevant properties:-

Code:
<value condition="!IsEmpty(Container(8011$SKINSHORTCUTS[id]).ListItem.Property(NextAired.NextTitle)">Next Episode: $INFO[Container(8011$SKINSHORTCUTS[id]).ListItem.Property(NextAired.NextTitle)]</value>

(Which is just an example - would obviously need adding all the info you'd want to see - and completely untested as I don't actually use Next Aired. It's also worth remembering that they're processed in order, so if another variable matches before the new one, that will be used)

Thanks Bob. I wish I was up to the task, but it would take a long time for me to understand skinning and the code enough to be able to provide a meaningful contribution. It's just something I miss from the way the widget worked in the old MadNox, and that's fine. This is nothing major or show-stopping.

Regards,

Bart


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - BobCratchett - 2016-02-10

(2016-02-10, 16:47)bsoriano Wrote: Thanks Bob. I wish I was up to the task, but it would take a long time for me to understand skinning and the code enough to be able to provide a meaningful contribution. It's just something I miss from the way the widget worked in the old MadNox, and that's fine. This is nothing major or show-stopping.

Seeing as its you, I've added basic support with the next episode information prepended to the description. As such, it's best used with a list style widget or with the panel info enabled. Think of it as my way of saying thanks for all the testing you've done - without which we wouldn't be so tantalisingly close to merging all of this. Plus, knowing me I'll forget to actually thank you when we're all done Wink


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - schimi2k - 2016-02-10

(2016-02-10, 18:33)BobCratchett Wrote:
(2016-02-10, 16:47)bsoriano Wrote: Thanks Bob. I wish I was up to the task, but it would take a long time for me to understand skinning and the code enough to be able to provide a meaningful contribution. It's just something I miss from the way the widget worked in the old MadNox, and that's fine. This is nothing major or show-stopping.

Seeing as its you, I've added basic support with the next episode information prepended to the description. As such, it's best used with a list style widget or with the panel info enabled. Think of it as my way of saying thanks for all the testing you've done - without which we wouldn't be so tantalisingly close to merging all of this. Plus, knowing me I'll forget to actually thank you when we're all done Wink

Sir Bob... you and the whole A-Team never need to say THX here !!! we cant thank you enough here for all your IMMENSE help and work what you did and do !!!
i just can give you a rep from time to time, and even this is not enough ...


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - bsoriano - 2016-02-10

(2016-02-10, 18:56)schimi2k Wrote:
(2016-02-10, 18:33)BobCratchett Wrote:
(2016-02-10, 16:47)bsoriano Wrote: Thanks Bob. I wish I was up to the task, but it would take a long time for me to understand skinning and the code enough to be able to provide a meaningful contribution. It's just something I miss from the way the widget worked in the old MadNox, and that's fine. This is nothing major or show-stopping.

Seeing as its you, I've added basic support with the next episode information prepended to the description. As such, it's best used with a list style widget or with the panel info enabled. Think of it as my way of saying thanks for all the testing you've done - without which we wouldn't be so tantalisingly close to merging all of this. Plus, knowing me I'll forget to actually thank you when we're all done Wink

Sir Bob... you and the whole A-Team never need to say THX here !!! we cant thank you enough here for all your IMMENSE help and work what you did and do !!!
i just can give you a rep from time to time, and even this is not enough ...

I echo schimi's sentiment! We can never thank you enough for all that you are doing! You made my day Bob, thank you also for your kind words!


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - BobCratchett - 2016-02-10

(2016-02-10, 18:56)schimi2k Wrote: you and the whole A-Team never need to say THX

See, that's whats wrong with you young whipper-snappers - no manners Tongue Genuinely, though, and I'm sure I speak for all member of the 'A-Team' (which I personally consider you, bsoriano, Mr. Doc and anyone else whose contributed to getting the skinshortcuts-dev branch to where it is to be a part of) you're very welcome.


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - Mr. V - 2016-02-11

Quick update on the skinshhortcuts dev branch.

I have added the system info widget. It is still a WIP progress. There still are a number of issues with the widget. So if you can hold off on any bug reports/feature requests for the system info widget that would be great.


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - Mr. V - 2016-02-11

(2016-02-07, 18:49)bsoriano Wrote: Hello dev/gfx team,

After testing today, I have one small request for consideration:

1. The Next Aired widget is a TV Show widget, not an Episode widget, which means I can see which shows are airing today, but not what episode for each show. Could you have a TV Episodes Next Aired widget? In my opinion, this is more useful.

Thanks for considering my request.

Regards,

Bart

Some general information for this widget. The next aired will only show episodes that are airing today if you don't change settings in the next aired script.

So you need to enable number 1. Then update being number 2. and make sure you hit ok to save the settings.
Image

And it should show episodes today and in the future. As per screen Shot.
Image


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - Soujirou Seta - 2016-02-11

(2016-02-10, 14:31)Soujirou Seta Wrote: Consider last update, and only music part.

nothing to do affects anithing....., happen only in this skin, any help?

Tkx very much!

only up thx!


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - schimi2k - 2016-02-11

(2016-02-11, 02:59)Soujirou Seta Wrote:
(2016-02-10, 14:31)Soujirou Seta Wrote: Consider last update, and only music part.

nothing to do affects anithing....., happen only in this skin, any help?

Tkx very much!

only up thx!

Check first page!


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - Soujirou Seta - 2016-02-11

(2016-02-11, 03:30)schimi2k Wrote:
(2016-02-11, 02:59)Soujirou Seta Wrote:
(2016-02-10, 14:31)Soujirou Seta Wrote: Consider last update, and only music part.

nothing to do affects anithing....., happen only in this skin, any help?

Tkx very much!

only up thx!

Check first page!

Errr, i`m really embarrssed, because this ishue continues 'expect now poster album apearrr on all pagges until music is playng'................. i'm very confuding reaaaaaaally

Butt this beautiful visualization in this skin for music, simple ogone.

anst tkx for awser.


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - Mike_Doc - 2016-02-11

Hi Seta,

I'm sorry but I'm having trouble trying to understand what your issue is? I understand english may not be you first language and as such could you perhaps take some screenshots and show us what is wrong for you?

Thanks

Mike.


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - Alanon - 2016-02-11

Hi all, since the dev skin is going along at amazing speeds, I just thought I'd chime in about a couple of older issues, that aren't really bugs, inasmuch as they don't prevent the skin from functioning beautifully.

1. There's a bug with the full-screen display in the landscape view, which I've shown in the image below. There might be other such discrepancies, but I've not tested them out.

Image


2. There's a discrepancy in the full-screen OSD settings. If it's turned on, the full-screen is active everywhere except the main screen. On the other hand, if the widget is turned on, there can be a small preview playing in the square, but not a full-screen background anywhere else. Why can't we have it both ways?

3. I find myself questioning the need for the nowplaying info widget on the home screen. If the top position is interfering with Mr V's widget rows, and the lower one moves the bar unnecessarily, wouldn't it be better to remove it, and perhaps use the same information layout as in the case of music playback?

4. There seems also to be a need for a music OSD overhaul. While using the mouse, the lyrics and extendedinfo panels are always overlapping and causing pretty great difficulty to actually reach the playback controls.

5. There's something strange happening with the info and art when retrieved for streamed content, the info on pause gets botched in a strange fashion This issue, coupled with the strange subtitle bug tells me there's something fishy with that whole feature.

That's about it. As I've said it's nothing major, but seeing as madnox is quickly becoming the perfect skin (for me, at least), I thought no harm in mentioning these annoyances.


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - schimi2k - 2016-02-11

(2016-02-11, 18:13)Alanon Wrote: Hi all, since the dev skin is going along at amazing speeds, I just thought I'd chime in about a couple of older issues, that aren't really bugs, inasmuch as they don't prevent the skin from functioning beautifully.

1. There's a bug with the full-screen display in the landscape view, which I've shown in the image below. There might be other such discrepancies, but I've not tested them out.

...

2. There's a discrepancy in the full-screen OSD settings. If it's turned on, the full-screen is active everywhere except the main screen. On the other hand, if the widget is turned on, there can be a small preview playing in the square, but not a full-screen background anywhere else. Why can't we have it both ways?

3. I find myself questioning the need for the nowplaying info widget on the home screen. If the top position is interfering with Mr V's widget rows, and the lower one moves the bar unnecessarily, wouldn't it be better to remove it, and perhaps use the same information layout as in the case of music playback?

4. There seems also to be a need for a music OSD overhaul. While using the mouse, the lyrics and extendedinfo panels are always overlapping and causing pretty great difficulty to actually reach the playback controls.

5. There's something strange happening with the info and art when retrieved for streamed content, the info on pause gets botched in a strange fashion This issue, coupled with the strange subtitle bug tells me there's something fishy with that whole feature.

That's about it. As I've said it's nothing major, but seeing as madnox is quickly becoming the perfect skin (for me, at least), I thought no harm in mentioning these annoyances.

THX 4 the infos Smile
with all the old and new features its hard now to keep all problems in mind Wink
i think after the next big update we will try to fix those "smaller" problems faster like right now, because all power goes right now to the next update
so just be a bit more patient ... its worth it


RE: Aeon Madnox - Beta Release (for Isengard / Jarvis) - Alanon - 2016-02-11

(2016-02-11, 18:30)schimi2k Wrote: THX 4 the infos Smile
with all the old and new features its hard now to keep all problems in mind Wink
i think after the next big update we will try to fix those "smaller" problems faster like right now, because all power goes right now to the next update
so just be a bit more patient ... its worth it

That was my reasoning too, with all the new stuff, sometimes the old stuff is forgotten. As I've said, it's nothing major, and certainly the big update needs to become stable first, but it helps to have it written in the thread. for future reference, at least.

Just keep at it guys, really appreciate all the work you are putting in! Nod