• 1
  • 166
  • 167
  • 168(current)
  • 169
  • 170
  • 181
[RELEASE] Super Favourites AKA Super-Addon Creator
(2021-01-16, 18:53)letstry1 Wrote: Tried the new versions again v1.0.69 on Kodi 18.7 and 18.9 and
v2.0.6 on 19.0rc using CracleTV Add-on. 

Made three SupFav links to/for
1)-Comedy Category, to (2)-3rd Rock TV show, and  (3)-S01E01

With 18.7 and 18.9 SupFav link would only work connecting to the S01E01 episode

With 19.0rc all links worked and open correctly.

So I will just wait till Kodi 19.0 is up and running officially which appears to be coming before long.
I revisited the issue you reported on my Android tablet and my Windows 10 PC and SF version 1.0.69 worked on Kodi 18.9. I did discover that if all the dependencies were not met for Crackle, it would not work properly. In my case, Kodi indicated that Crackle was installed but it still would not run correctly until I made sure all dependencies were met. This included input stream and widevine among other dependencies.
Reply
Someone knows where to find the log when it is enabled?

Try to use it as an widget, opens fine. But when exit it goes back to menu of programs and in again to the favourit, and then I can get out to the menu.
Petter :-)
Many thanks for all the effort YOU all do! THANKS! :-)
nVidia Shield TV (2015), Samsung QE75Q70R and Yamaha RX-V767
Reply
So, I was still having issues opening some SF Ive made to sections of some addons, like Movies section, or TV Section. I was able to get them to work by changing a line of code in player.py file, line 133.
Changed this: 
def activateWindowCommand(cmd):
    property = 'SF_BROWSER_PATH'
    cmds = cmd.split(',', 1)

To this:

def activateWindowCommand(cmd):
    xbmc.executebuiltin(cmd)
    cmds = cmd.split(',', 1)

Now all my shortcuts open correctly. This is on Matrix SF 2.0.6

This was a fix primaeval gave me a while ago that has worked for me for the Leia version also. Not sure if its correct code for Matrix, but it does fix my issue without any noticed side effects so far.
https://github.com/primaeval/spoyser-rep...8a5d6ba10a
Reply
(2021-02-16, 22:12)jdig4240 Wrote: So, I was still having issues opening some SF Ive made to sections of some addons, like Movies section, or TV Section. I was able to get them to work by changing a line of code in player.py file, line 133.
Changed this: 
def activateWindowCommand(cmd):
    property = 'SF_BROWSER_PATH'
    cmds = cmd.split(',', 1)

To this:

def activateWindowCommand(cmd):
    xbmc.executebuiltin(cmd)
    cmds = cmd.split(',', 1)

Now all my shortcuts open correctly. This is on Matrix SF 2.0.6

This was a fix primaeval gave me a while ago that has worked for me for the Leia version also. Not sure if its correct code for Matrix, but it does fix my issue without any noticed side effects so far.
https://github.com/primaeval/spoyser-rep...8a5d6ba10a
Which Movies or TV sections were not working under 1.0.69?
Reply
(2021-02-16, 23:02)jmooremcc Wrote:
(2021-02-16, 22:12)jdig4240 Wrote: So, I was still having issues opening some SF Ive made to sections of some addons, like Movies section, or TV Section. I was able to get them to work by changing a line of code in player.py file, line 133.
Changed this: 
def activateWindowCommand(cmd):
    property = 'SF_BROWSER_PATH'
    cmds = cmd.split(',', 1)

To this:

def activateWindowCommand(cmd):
    xbmc.executebuiltin(cmd)
    cmds = cmd.split(',', 1)

Now all my shortcuts open correctly. This is on Matrix SF 2.0.6

This was a fix primaeval gave me a while ago that has worked for me for the Leia version also. Not sure if its correct code for Matrix, but it does fix my issue without any noticed side effects so far.
https://github.com/primaeval/spoyser-rep...8a5d6ba10a
Which Movies or TV sections were not working under 1.0.69?

Ok, I just tested your 1.0.69 on a fresh install of 18.9. Still has the same issue. You can replicate it just like this. Make a Movies folder in SFs. Download The Movie Database Helper from Kodi repo. Add the Movies section of TMDBH to the Movies folder you made in SF. Now go to SF and try opening the TMDBH Movies shortcut. It doesnt open. I also made a TV Shows SF folder and put TMDBH TV Shows in that and has the same issue. Now change that line of code I mentioned and it will fix the issue. This is just one example. It has this issue with many other SF I try to make. Has been like this for years, but the fix I mentioned does work. 
Heres a log..https://justpaste.it/8uvjv

Windows 10/18.9.
Reply
(2021-02-16, 22:12)jdig4240 Wrote: So, I was still having issues opening some SF Ive made to sections of some addons, like Movies section, or TV Section. I was able to get them to work by changing a line of code in player.py file, line 133.
Changed this: 
def activateWindowCommand(cmd):
    property = 'SF_BROWSER_PATH'
    cmds = cmd.split(',', 1)

To this:

def activateWindowCommand(cmd):
    xbmc.executebuiltin(cmd)
    cmds = cmd.split(',', 1)

Now all my shortcuts open correctly. This is on Matrix SF 2.0.6

This was a fix primaeval gave me a while ago that has worked for me for the Leia version also. Not sure if its correct code for Matrix, but it does fix my issue without any noticed side effects so far.
https://github.com/primaeval/spoyser-rep...8a5d6ba10a

Was this as an answer to me?
In this case, how to do this?
Petter :-)
Many thanks for all the effort YOU all do! THANKS! :-)
nVidia Shield TV (2015), Samsung QE75Q70R and Yamaha RX-V767
Reply
Well done @jdig4240. One line of code and the Series problem has been solved on both Leia 18.9 (SF 1.0.69) and Matrix RC1 (SF 2.0.6)
Reply
(2021-02-17, 09:10)zordon12 Wrote: Well done @jdig4240. One line of code and the Series problem has been solved on both Leia 18.9 (SF 1.0.69) and Matrix RC1 (SF 2.0.6)

Thanks for confirming!
Reply
(2021-02-16, 23:43)jdig4240 Wrote:
(2021-02-16, 23:02)jmooremcc Wrote:
(2021-02-16, 22:12)jdig4240 Wrote: So, I was still having issues opening some SF Ive made to sections of some addons, like Movies section, or TV Section. I was able to get them to work by changing a line of code in player.py file, line 133.
Changed this: 
def activateWindowCommand(cmd):
    property = 'SF_BROWSER_PATH'
    cmds = cmd.split(',', 1)

To this:

def activateWindowCommand(cmd):
    xbmc.executebuiltin(cmd)
    cmds = cmd.split(',', 1)

Now all my shortcuts open correctly. This is on Matrix SF 2.0.6

This was a fix primaeval gave me a while ago that has worked for me for the Leia version also. Not sure if its correct code for Matrix, but it does fix my issue without any noticed side effects so far.
https://github.com/primaeval/spoyser-rep...8a5d6ba10a
Which Movies or TV sections were not working under 1.0.69?

Ok, I just tested your 1.0.69 on a fresh install of 18.9. Still has the same issue. You can replicate it just like this. Make a Movies folder in SFs. Download The Movie Database Helper from Kodi repo. Add the Movies section of TMDBH to the Movies folder you made in SF. Now go to SF and try opening the TMDBH Movies shortcut. It doesnt open. I also made a TV Shows SF folder and put TMDBH TV Shows in that and has the same issue. Now change that line of code I mentioned and it will fix the issue. This is just one example. It has this issue with many other SF I try to make. Has been like this for years, but the fix I mentioned does work. 
Heres a log..https://justpaste.it/8uvjv

Windows 10/18.9.
Thank you jdig4240 for bringing this issue to my attention. Although the solution you proposed works for your specific case, it unfortunately eliminates code that responds to problems for different use cases. Based on the information you provided, I was able to create a work around and will publish new releases shortly.

The beauty of open source is that we are all able to collaborate on the development of software we're interested in. Starting with Kodi 18.5+, Kodi's code changes made parts of the original SF author's code inoperable. I'm thankful for any contributions that make SF work better.
Reply
I have a new release of SF that fixes the folder access problem recently reported.
The Matrix version is 2.0.7
The Leia version is 1.0.70

https://github.com/jmooremcc/Repository....c.repo.zip
Reply
This is what I have been waiting for, everything now fixed.

Thanks to jdig4240 and jmooremcc for the new update.
Reply
(2021-02-17, 20:04)jmooremcc Wrote: I have a new release of SF that fixes the folder access problem recently reported.
The Matrix version is 2.0.7
The Leia version is 1.0.70

https://github.com/jmooremcc/Repository....c.repo.zip

Just get 404 on github, du I have to registered to download?
Petter :-)
Many thanks for all the effort YOU all do! THANKS! :-)
nVidia Shield TV (2015), Samsung QE75Q70R and Yamaha RX-V767
Reply
(2021-02-17, 19:10)jmooremcc Wrote:
(2021-02-16, 23:43)jdig4240 Wrote:
(2021-02-16, 23:02)jmooremcc Wrote: Which Movies or TV sections were not working under 1.0.69?

Ok, I just tested your 1.0.69 on a fresh install of 18.9. Still has the same issue. You can replicate it just like this. Make a Movies folder in SFs. Download The Movie Database Helper from Kodi repo. Add the Movies section of TMDBH to the Movies folder you made in SF. Now go to SF and try opening the TMDBH Movies shortcut. It doesnt open. I also made a TV Shows SF folder and put TMDBH TV Shows in that and has the same issue. Now change that line of code I mentioned and it will fix the issue. This is just one example. It has this issue with many other SF I try to make. Has been like this for years, but the fix I mentioned does work. 
Heres a log..https://justpaste.it/8uvjv

Windows 10/18.9.
Thank you jdig4240 for bringing this issue to my attention. Although the solution you proposed works for your specific case, it unfortunately eliminates code that responds to problems for different use cases. Based on the information you provided, I was able to create a work around and will publish new releases shortly.

The beauty of open source is that we are all able to collaborate on the development of software we're interested in. Starting with Kodi 18.5+, Kodi's code changes made parts of the original SF author's code inoperable. I'm thankful for any contributions that make SF work better.

Super Awesome!! And you are correct. That is about when SF broke for me until i found that patch. Now, im just curious, do you have any idea what the rest of the code actually did?? I thought I was using most of SF features, but I did not notice any major issues with that patch in place.
Reply
(2021-02-17, 22:23)pettergulbra Wrote:
(2021-02-17, 20:04)jmooremcc Wrote: I have a new release of SF that fixes the folder access problem recently reported.
The Matrix version is 2.0.7
The Leia version is 1.0.70

https://github.com/jmooremcc/Repository....c.repo.zip

Just get 404 on github, du I have to registered to download?
https://github.com/jmooremcc/Repository....c.repo.zip
Reply
(2021-02-17, 20:04)jmooremcc Wrote: I have a new release of SF that fixes the folder access problem recently reported.
The Matrix version is 2.0.7
The Leia version is 1.0.70

https://github.com/jmooremcc/Repository....c.repo.zip

Hmm, another bug might have been introduced with 2.0.7. Can you check the SF context menu/Super Favourites Menu, think its shooting blanks, lol.
Reply
  • 1
  • 166
  • 167
  • 168(current)
  • 169
  • 170
  • 181

Logout Mark Read Team Forum Stats Members Help
[RELEASE] Super Favourites AKA Super-Addon Creator6