sale13 / romcollectionbrowser

Automatically exported from code.google.com/p/romcollectionbrowser
GNU General Public License v2.0
0 stars 0 forks source link

RCB won't start from favorites or Addon Shortcut (Kodi 14.0 final) #196

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Add RCB to "favorites" and try to start from favorites
2.Add Addon-Shortcut in skin settings and try to start with shortcut
3.

What is the expected output? What do you see instead?
- Starting RCB - Nothing happens

What version of the product are you using? On what operating system?
- RCB 2.0.17 - on Kodi 14.0 final (23th Dec Release) 
- Skin Confluence (unchanged) - Intel i5 - Win 7 64bit. 

Please provide any additional information below.
- Worked all fine in 13.2 (Gotham)
- RCB starts from Programs Menu without problems.
  (Program itself starts/runs/works fine in 14.0) 

Original issue reported on code.google.com by hellrais...@googlemail.com on 6 Jan 2015 at 10:47

GoogleCodeExporter commented 8 years ago
Here is a workaround for that issue: 
You have to modify the default.py file located in 
.kodi/addons/script.games.rom.collection.browser

Search for the following line in class MAIN(): 
if param == '' or param == 'script.games.rom.collection.browser': 

Add this addional condition: 
 or param == 'default.py'

The line should now look like: 
if param == '' or param == 'script.games.rom.collection.browser' or param == 
'default.py':

Thats worked for me. You should now be able to launch RCB from main menu or 
your favorites menu. 

good luck

Original comment by eddi.g.r...@gmail.com on 12 Feb 2015 at 9:14

GoogleCodeExporter commented 8 years ago
Fixed with 2.1.0

Original comment by maloep on 9 Mar 2015 at 5:59