2015-04-08, 04:06
There's no record of the add-on being run in that log.
(2015-04-05, 12:55)Blackwatcher Wrote: Hello ,
thank you for your Work. I run your Plugin under Kodi 14.2 on Windows 8.1.
When I launch Steam, Kodi is running in the Background. I have the Option to quit Kodi pulled to "Yes" but Kodi is not shutdown ?
taskkill /im Kodi.exe
timeout /t 1 && tasklist /nh /fi "imagename eq Kodi.exe" | find /i "Kodi.exe" >nul && (taskkill /f /im Kodi.exe)
(2015-05-10, 21:45)teeedubb Wrote: The add-on uses taskkill to quit kodi, does the following quit kodi when run from a command prompt?
Code:taskkill /im Kodi.exe
timeout /t 1 && tasklist /nh /fi "imagename eq Kodi.exe" | find /i "Kodi.exe" >nul && (taskkill /f /im Kodi.exe)
Not sure why that wouldn't work, I'd need to try out on a win8.1 system. You could put something that works for you into a pre-steam script and point the add-on to use that (or even add it into the ahk script and recompile it).
<setting label="50062" id="SteamWin2" type="executable" visible="system.platform.windows" default="C:\Program Files (x86)\Steam\steam.exe"/>
<setting label="50062" id="SteamWin" type="executable" visible="system.platform.windows" default="C:\Program Files (x86)\Steam\steam.exe"/>
if dialog.yesno('Steam Launcher', 'Select which version of Steam to launch:', yeslabel='Steam A',nolabel='Steam B'):
steamWin = addon.getSetting("SteamWin").decode("utf-8")
else:
steamWin = addon.getSetting("SteamWin2").decode("utf-8")
steamlauncher = os.path.join(basePath, 'SteamLauncher-AHK.exe')
(2015-05-15, 09:54)teeedubb Wrote: TheBuz: Add the following to the files contained within the addon:
script.steam.launcher\resources\settings.xml
Add:
Code:<setting label="50062" id="SteamWin2" type="executable" visible="system.platform.windows" default="C:\Program Files (x86)\Steam\steam.exe"/>
<setting label="50062" id="SteamWin2" type="executable" visible="system.platform.windows" default="C:\Modified\GFsteam.exe"/>