2017-12-18, 23:52
Scrapers seems to not working like before (even the local nfo scraper)...
(2017-12-19, 20:38)Slipass Wrote: maloep update the romcollection browser at github.Yes, I read it and I will look into it. Atm I am trying to get RCB to work with Kodi 18 at all. Then we will look into RetroPlayer and video support and maybe update some scrapers. There will be a new release but it will need some time to be finished.
I try to write him on github but i dont find any contact.
I want to say him that in his version the trailer/ short video preview for the roms does not work.
In the old version it is possible to setup the pfad for the movies.
I hope, he read this.
https://github.com/maloep/romcollectionbrowser
(2018-01-07, 14:59)malte Wrote: New test version available: 2.1.4Hi @malte. Thanks for new version!
Quote:Info
This LCD Smartie Plugin reads hyperspin log file line by line and displays last quoted text.
General usage
$dll(hyperspin,1,path_to_log_file,filter_quotes_option)
Functions
---------
One fucntion available
Function 1
Returns last quoted text
Requires
path to log file as first parameter
yes or no as second parameter in order to filter or not the quotes.
Examples
--------
$dll(hyperspin,1,C:\program files\hyperspin\events.log,yes)
$dll(hyperspin,1,C:\program files\hyperspin\events.log,no)
WARNING: REPLACE THE PATH TO LOG FILE WITH THE CORRECT ONE!
trihy Wrote:Do you think you could add a log file that log on the latest line, the running rom and system? And when returning to rcb from a game, should show nothing on the latest line or just empty log.Hmmm. I don't think we will add this as a feature in the main line. But I could show you where to put some lines of code that will do this. Just let me know if you are interested and I will try it out.
Im using LCDSMARTIE and when using hyperspin, it shows the last running rom.
Fennec Wrote:I can't seem to get the Snes9x emulator working on my laptop - hence it won't work in Kodi. (Works fine on my desktop)Do you have DirectX 9 installed on your laptop? Looks like this is missing.
When I try to load Snes9x I get this error message:
"The code execution cannot proceed because d3dx9_38.dll was not found.
Reinstalling the program may fix this problem. "
Fennec Wrote:Also, I notice that RCB displays game screenshots as opposed to game box cover art. I'd much prefer to use the game box art. Is there a way to switch this in RCB?You should be able to change this in config.xml. Look here.
(2018-01-18, 16:13)malte Wrote:Hi, I dont know how to add code or compile code, but if it´s simple for a non coder, I will try! Or if you send me some testing files for PM, I will try too.trihy Wrote:Do you think you could add a log file that log on the latest line, the running rom and system? And when returning to rcb from a game, should show nothing on the latest line or just empty log.Hmmm. I don't think we will add this as a feature in the main line. But I could show you where to put some lines of code that will do this. Just let me know if you are interested and I will try it out.
Im using LCDSMARTIE and when using hyperspin, it shows the last running rom.
try:
__launchNonXbox(cmd, romCollection, gameRow, settings, precmd, postcmd, roms, gui, listitem)
gui.writeMsg("")
except Exception, (exc):
try:
pathname = util.getAddonDataPath()
filename = os.path.join(pathname, 'rcb_lcdsmartie.log')
fh = open(filename, 'w')
fh.write('%s - %s' %(romCollection.name, gameRow[util.ROW_NAME]))
fh.close()
__launchNonXbox(cmd, romCollection, gameRow, settings, precmd, postcmd, roms, gui, listitem)
fh = open(filename, 'w')
fh.write('Rom Collection Browser - Emuladores')
fh.close()
gui.writeMsg("")
except Exception, (exc):
(2018-01-19, 09:27)malte Wrote: Ok, it is more than one line but it should be possible for a non-coder. The source file to edit is "launcher.py". On Windows you will find it here: "C:\Users\<you username>\AppData\Roaming\Kodi\addons\script.games.rom.collection.browser.git\resources\lib". On other systems you just have to replace the part "C:\Users\<you username>\AppData\Roaming\Kodi\addons\" with the system specific location.Thanks! Doesnt seem difficult. Will try asap, but need to finish some mods to lcd .dll file to proper display this.
The code to edit should be around line 95.
Old code:
Code:try:
__launchNonXbox(cmd, romCollection, gameRow, settings, precmd, postcmd, roms, gui, listitem)
gui.writeMsg("")
except Exception, (exc):
New code:
Code:try:
pathname = util.getAddonDataPath()
filename = os.path.join(pathname, 'rcb_lcdsmartie.log')
fh = open(filename, 'w')
fh.write('%s - %s' %(romCollection.name, gameRow[util.ROW_NAME]))
fh.close()
__launchNonXbox(cmd, romCollection, gameRow, settings, precmd, postcmd, roms, gui, listitem)
fh = open(filename, 'w')
fh.write('Rom Collection Browser - Emuladores')
fh.close()
gui.writeMsg("")
except Exception, (exc):
Just replace the old code with the new code. Only thing to be aware of is the formatting of the code. Python is a bit picky about whitespaces and indentation. Make sure that the new code has the same indentation as the old code.
EDIT: I forgot to add: you will find the log file at "C:\Users\<you username>\AppData\Roaming\Kodi\userdata\addon_data\script.games.rom.collection.browser.git". Oh, and please post a foto of your LCD if everything is working