Kodi Community Forum

Full Version: Aeon Nox: SiLVO
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
(2016-10-21, 23:18)zorensen Wrote: [ -> ]EDIT 2: Tried to remove all addons, including Aeon Nox SiLVO. Installed everything again and grabbed the latest version of Skin Shortcuts from GitHub, but I'm still getting Skin Shortcuts error... I can't even activate Aeon Nox SiLVO now Sad

Debug log (wiki)?

(2016-10-22, 00:49)horstepipe Wrote: [ -> ]Thank you very much I'll try to figure it out.
Any other hints on how to build a context menu addon?

Follow the link in my signature for the Skin Shortcuts context menu add-on - the source code is a further link away. Also Context Item Add-ons (wiki).
(2016-10-21, 19:47)BobCratchett Wrote: [ -> ]
(2016-10-21, 19:28)horstepipe Wrote: [ -> ]hey mike
is this true or did he misunderstand me?
http://forum.kodi.tv/showthread.php?tid=...pid2441090

Best regards

I suspect he misunderstood you. It's quite possible I'm about to as well, but I think you're wanting to be able to toggle an add-ons setting, but without going to the add-ons settings page. If I'm understanding right, I don't believe that's possible directly as I don't believe there's a built-in function to toggle an addons settings (unless the addon itself provides a method). Indirectly, you could write a very simple addon (even a context menu addon) to do it, as addons can toggle another addons settings with:

Code:
import xbmcaddon

xbmcaddon.Addon( "[addon.id]" ).setSetting( "[settingName]", "[value]" )

And then map a button to your new addon.

Thank you very much, I figuerd it out.
http://forum.kodi.tv/showthread.php?tid=...pid2441548
(2016-10-22, 00:49)HomerJau Wrote: [ -> ]
(2016-10-21, 23:18)zorensen Wrote: [ -> ]I just updated to the latest LibreELEC version with Krypton. I have the same problem. My box is stuck on the intro... However, editing the settings.xml didn't help me Sad I'm still stuck on the intro...

EDIT: I removed the intro.mp4 file to see what happened. I got into the main menu, but with a error message that said "Skin shortcuts error. See log for details". I'm trying to find that log, but no luck so far. Also the main menu on Aeon Nox is blank. I have no options what so ever - just the date and clock in the middle of the screen....

EDIT 2: Tried to remove all addons, including Aeon Nox SiLVO. Installed everything again and grabbed the latest version of Skin Shortcuts from GitHub, but I'm still getting Skin Shortcuts error... I can't even activate Aeon Nox SiLVO now Sad

I have same issue with Krypton and SiLVO skin but never tried to solve it (no spare time). Just went back to Jarvis. I was hoping I'd see a fix here...

I figured it out, and finally have this awesome skin running on Krypton. I had to backup my old guisettings.xml (or delete it if you'd like). Then I installed the Aeon Nox 5: SiLVO version from the standard Kodi skin and resetted the home menu settings from the settings menu. Then everything finally worked as it should.

Be aware, this makes you set up the skin to your likings again. All settings that you previously had are deleted. After some Googleing, I learned that this error usually are some because of corrupted home menu elements settings, and that a reset should do the trick. It did the trick for me at least! Hope that this will help you guys with the similar problem. Good luck! Wink
(2016-10-21, 19:40)BobCratchett Wrote: [ -> ]
(2016-10-21, 19:19)TopperBG Wrote: [ -> ]
(2016-10-21, 18:26)BobCratchett Wrote: [ -> ]I'm sorry, but as your log shows you are using banned add-ons (wiki), I can't provide any support. You need to find a forum where the add-ons you are using are supported to ask your questions, or remove all such add-ons and provide a clean debug log.

Sorry for that Sad Didn't know....
Here is the cleaned up log
https://www.dropbox.com/s/zpvymldsvr1qpbc/kodi.log?dl=0

Thanks for taking the time to provide a clean debug log Smile

OK, there's a few things that could be happening, looking at your log. The most likely are:-

The XMBCSwift module - which, from the log, looks to be be being used by one or more addons to import their content into the library isn't doing it's job correctly.

Emby, which you look to be using as a backend, isn't importing its media correctly into the local library.

Skin Shortcuts, which manages the main menu, isn't correctly adding visibility conditions to the menu item.

Unfortunately I'm only qualified to deal with the last one. If I could ask you to go to 'Videos' from your main menu, and tell me if you see a 'Movies' entry there, that will confirm if Kodi has library entries and if the Skin Shortcuts visibility condition is correct (it, like the Skin Shortcuts menu item shouldn't, won't show if there are no movies in your library). Just be aware that 'Videos' won't always take you to the root of the video library, so if you have a ".." entry at the start of the list, please follow it until you get to the root Smile

If it's there, then you've most likely found a bug in Skin Shortcuts, in which case it would be appreciated if you could get me a debug log with that scripts own debug logging option enabled. System/Settings > System > Add-ons > Dependencies > Skin Shortcuts, then enable the debug logging from it's settings page and click 'OK' (otherwise the setting doesn't save).
Log isn't that clean Wink before Bob spends any time on this I would like to ask TopperBG to please backup your userdata (wiki) folder and delete it from Kodi then start new with just the skin and add your sources from emby or wherever but DO NOT add any other repos other than my own if you need it. Then report if you have any issues with a debug log (wiki).
(2016-10-21, 19:59)Nathcloud9 Wrote: [ -> ]Hi, I have updated to krypton beta 3 and latest version of silvo and live tv widget is not working on both of them as it was before beta 3 update. Also is it just me? but the scan for channel icon is greyed out and I'm having to add each one of the 100's of channel icons 1 at a time via channel manager.
You're gonna have to post a debug log (wiki) or be more specific with what isn't working since I and another user have confirmed the widget to be working the same as it has been.
(2016-10-21, 20:13)Nathcloud9 Wrote: [ -> ]Is the repo down at the moment?
Not that I am aware of. The repo is from GitHub so if you can access that it should be working barring any bugs from Kodi itself.
(2016-10-22, 00:45)HomerJau Wrote: [ -> ]Yes I meant adding to the Kodi repo.

Would be much easier for the non-technical users to get the skin. (And this is the best/easiest skin IMO, especially for music)
It can not be added to the Kodi repo. First reason is that there are no other repos in the Kodi repository and the second is the one entry per skin rule, there is already an Aeon Nox in the repo so there cannot be another.

I agree with this rule as it avoids confusion and while I would appreciate a review of my code from those more experienced than myself it does allow me leeway to add things that might otherwise be rejected from the Kodi repo Smile
(2016-10-22, 08:12)zorensen Wrote: [ -> ]
(2016-10-22, 00:49)HomerJau Wrote: [ -> ]
(2016-10-21, 23:18)zorensen Wrote: [ -> ]I just updated to the latest LibreELEC version with Krypton. I have the same problem. My box is stuck on the intro... However, editing the settings.xml didn't help me Sad I'm still stuck on the intro...

EDIT: I removed the intro.mp4 file to see what happened. I got into the main menu, but with a error message that said "Skin shortcuts error. See log for details". I'm trying to find that log, but no luck so far. Also the main menu on Aeon Nox is blank. I have no options what so ever - just the date and clock in the middle of the screen....

EDIT 2: Tried to remove all addons, including Aeon Nox SiLVO. Installed everything again and grabbed the latest version of Skin Shortcuts from GitHub, but I'm still getting Skin Shortcuts error... I can't even activate Aeon Nox SiLVO now Sad

I have same issue with Krypton and SiLVO skin but never tried to solve it (no spare time). Just went back to Jarvis. I was hoping I'd see a fix here...

I figured it out, and finally have this awesome skin running on Krypton. I had to backup my old guisettings.xml (or delete it if you'd like). Then I installed the Aeon Nox 5: SiLVO version from the standard Kodi skin and resetted the home menu settings from the settings menu. Then everything finally worked as it should.

Be aware, this makes you set up the skin to your likings again. All settings that you previously had are deleted. After some Googleing, I learned that this error usually are some because of corrupted home menu elements settings, and that a reset should do the trick. It did the trick for me at least! Hope that this will help you guys with the similar problem. Good luck! Wink
You really should not be forced to re-setup your menu again. That is why Bob asked for a debug log (wiki) Wink

------------------------

My thanks to you once again Sir Bob Big Grin You always seem to be around to help when my time is the most limited.
(2016-10-20, 11:58)mikeSiLVO Wrote: [ -> ]We have had a discussion about Plot/Outline previously and I said that I prefer to get a wider sample of how that is handled by other backends and locations that differ from yours before I changed it. Where does the info in PlotOutline come from? Who provides it? What does it say using WMC in the states? Why does PlotOutline show Episode Name and Year? It doesn't seem to make sense to me to do that when PlotOutline is handled differently in Kodi library. Lots of unanswered questions...
Please ask the Kodi-devs why is PlotOutline gives other info in PVR than in the library.
Edit: maybe someone answers here: http://forum.kodi.tv/showthread.php?tid=...pid2441603

PlotOutline is in Estuary (new default skin) too and it is IMO there for a reason: It provides info that is useful in PVR. Please think about this again, even if you are not using PVR-section Wink

(2016-10-20, 11:58)mikeSiLVO Wrote: [ -> ]I have an opinion too, which is why I said "I may do something different" Wink
Of course, but why don't you want to make your skin's PVR section better and show info that is there (and useful). In library view there is info (first aired, added, studio, etc.) that is there and shown.
If PlotOutline is empty then is doesn't show. I can make a PR that equals the changes from AeonNox and your skin. So that you don't have to go through every single line the next time. I've rewritten the PVRInfo-dialog btw.
(2016-10-22, 08:35)mikeSiLVO Wrote: [ -> ]Log isn't that clean Wink

There are times - when the user has made a genuine effort to provide a clean log, when they've apologised for their mistake, and (notably) when I'm keen to work out whether I've made a change to the script which has broken users systems after a few informationally lacking reports - when somehow my eye doesn't spot some of the log crud Angel I promise to check more carefully in the future!

(2016-10-22, 08:35)mikeSiLVO Wrote: [ -> ]My thanks to you once again Sir Bob Big Grin You always seem to be around to help when my time is the most limited.

And issues with Skin Shortcuts always seem to pop up when your time is the most limited. Are you secretly keeping it working behind the scenes in your spare time?
(2016-10-22, 09:22)Solo0815 Wrote: [ -> ]Please ask the Kodi-devs why is PlotOutline gives other info in PVR than in the library.
PlotOutline is in Estuary (new default skin) too and it is IMO there for a reason: It provides info that is useful in PVR. Please think about this again, even if you are not using PVR-section Wink

Of course, but why don't you want to make your skin's PVR section better and show info that is there (and useful). In library view there is info (first aired, added, studio, etc.) that is there and shown.
If PlotOutline is empty then is doesn't show. I can make a PR that equals the changes from AeonNox and your skin. So that you don't have to go through every single line the next time. I've rewritten the PVRInfo-dialog btw.
I am not going to ask the Kodi devs anything...

Since this seems very important to you, if you PR the changes without added comments (<!-- -->) I will merge it as-is but if anybody mentions seeing the wrong info or that it is doubled with regular plot then I will revert it faster than you can say "If it ain't broke don't Solo it" Wink

This last bit is very irritating to me cause I've spent a lot of time improving the PVR section when I don't even use the damn thing so when you come and say shit like "why don't you want to make your skin's PVR section better" it is extremely aggravating Angry
(2016-10-22, 09:33)BobCratchett Wrote: [ -> ]And issues with Skin Shortcuts always seem to pop up when your time is the most limited. Are you secretly keeping it working behind the scenes in your spare time?
Ummmm... I am going to follow Winston Zedmore's advice... If someone asks if you're a God you say YES! Tongue
Sorry mike Confused I know you spend hours/days improving the skin, not just the PVR section and and I didn't want to annoy you
I love your and BigNoid's work and want to make the skins experience even better in PVR, which you and BigNoid aren't using.

I'm on further training the next week and not at home. I'll do a PR, when I'm back home.

Another question:
What editor are you using to edit the skin's XMLs? I'm using Kate (from KDE) and I can hide groups so that only the <control="group"> line is there. For that reason I'm adding the comments. So that I can easily see, what group it is.
If you don't want it, then I'll remove it.
(2016-10-22, 09:53)Solo0815 Wrote: [ -> ]Sorry mike Confused I know you spend hours/days improving the skin, not just the PVR section and and I didn't want to annoy you
I love your and BigNoid's work and want to make the skins experience even better in PVR, which you and BigNoid aren't using.

I'm on further training the next week and not at home. I'll do a PR, when I'm back home.

Another question:
What editor are you using to edit the skin's XMLs? I'm using Kate (from KDE) and I can hide groups so that only the <control="group"> line is there. For that reason I'm adding the comments. So that I can easily see, what group it is.
If you don't want it, then I'll remove it.
Solo0815, I consider you a friend. An online friend but regardless of that my foul language used at times is never a sign that I will hold a grudge or anything Wink

I use SublimeText 3 and phil65s wonderful, amazing, fantastic, did I say wonderful, KodiDevKit. I recommend the combo to all who can deal with a slight learning curve.

I am a control freak, I admit it. The reason for the comment removals is because I do not like seeing them and have even removed or changed existing ones from others and myself. I only mentioned it because I was perturbed and drunk Mike + annoyed = Grumpy Mike Sad Tongue
Let's forget about that Big Grin
Quote:I consider you a friend. An online friend ...
dito
Guess i will try again and hope for some help. Some icons seem to be gone on my install.
Top right is supposed to be the mute icon but it is just a black block: http://imgur.com/HkfaLhZ
Debug: http://pastebin.com/4apvGQDV
Edit: seems to work now magically.
I also got a problem with tv widget. Mainly showing tv-shows in progress. Most of the other seems to work. No matter what panel/list/compact I select for In Progress TV-Shows, it wont show anything.
Debug: http://pastebin.com/sW3iKwEX
Hi again, can someone please answer my questions? I have now looked inside the skin zip file and there is no live tv widget (only system info). What happened to it please as it looked great. Also why is scan for missing icons greyed out on live tv?

thanks Nath
@mikesilvo: In regards to my showcase weird behaviour, it was fixed by the addon update! Many thanks for that tip! But the disc issue persisted. Funny thing is, I've been able to figure a pattern to what's going on. It was all due to my moviesets, but since I had issues with them in madnox as well, I realised there was something amiss on my end, probably with the database. So a complete reinstall did the trick. I'm reintegrating my films into the library, starting off with the sets, and so far, all is good.
Sorry if it's asked already but can't find it - How can I move settings like menu structure, submenus, widgets, addons shortcuts to another Kodi installation?
Tried already but can't copy all of the things in menu:
1. copy /userdata/addon_data/skin.aeon.nox.silvo/settings.xml
2. copy /userdata/guisettings.xml
3. copy all /addon/skin.aeon.nox.silvo ?
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 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759