In my fork of nilzen's base I have added the option to execute a debug script from the context menu (just as with the old code base). It's tested and verified on linux and windows but I'm lacking mac. I have already asked for a pull request and I'm confident it's working but it would be good to get it confirmed.
For windows it's a bit tricky to get an external process running in the background but I have solved it using a bat script.
In the addon settings ad something like:
Code:
C:\\Users\\name\\debug.bat \"-url %s -name %s\"
Note the double back slashes. And in the debug.bat
Code:
START /B C:\Users\name\debug.exe %1 %2 %3 %4
One %n for every item after the bat script. Start /B puts the process in the background and your xbmc window should be restored.
EDIT: Got the changes merged to Nilzen's branch! Go grab and try
here . Note the master has the revision bumped to 1.0.1
EDIT2: Sit back and relax, the official addon is being updated to this so it should show up in your xbmc soon...