Kodi Community Forum
[CLOSED] Advanced Launcher - Applications Launcher Addon for XBMC - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Game Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=291)
+---- Thread: [CLOSED] Advanced Launcher - Applications Launcher Addon for XBMC (/showthread.php?tid=85724)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Enlightened - 2013-12-17

Maybe like how aeon nox has comics implemented as a separate picture viewer?


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Angelscry - 2013-12-17

(2013-12-17, 14:08)Enlightened Wrote: Maybe like how aeon nox has comics implemented as a separate picture viewer?
Maybe, but it 's not at all how Advanced Launcher is actually working. You ask for a directory based items (like XBMC files browser) when Advanced Launcher is based on content (like XBMC library mode). If you want a support like that, it will be more simple to create anew dedicated add-on than of rewrite Advanced Launcher from start (and keep it compatible with previous versions of Advanced Launcher).


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - locoguano - 2013-12-18

I'd like to use AL to launch World of Warcraft on my HTPC (under Wine, of course). My OS is Ubuntu 13.10. I have searched through this thread but still seem to be completely lost. Can anyone help me out with getting this set up?


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Angelscry - 2013-12-19

(2013-12-18, 18:30)locoguano Wrote: I'd like to use AL to launch World of Warcraft on my HTPC (under Wine, of course). My OS is Ubuntu 13.10. I have searched through this thread but still seem to be completely lost. Can anyone help me out with getting this set up?
It is possible to start an application with wine with a command line like this :

Code:
wine "c:\program files\internet explorer\iexplore.exe"

where c:\program files\internet explorer\iexplore.exe is the virtual windows path to the application you want to start. So if you want to start World of Warcraft, the command line will be something like this (I'm not sure at all it is the rightl path) :

Code:
wine "c:\program files\World of Warcraft\WoW.exe"

So into Advanced Launcher you just have a to create a stand alone launcher with theses parameters :

Application: /usr/bin/wine
Arguments: "c:\program files\World of Warcraft\WoW.exe"

Instead of using the virtual windows path, you can also use the real linux path. It will be something like this : ~/.wine/drive_c/program_files/World of Warcraft/WoW.exe. You will found additionnal information concerning Wine and World of Warcraft here : http://www.wowwiki.com/World_of_Warcraft_functionality_on_Wine


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Choppasmith - 2013-12-20

So I finally tried this with PPSSPP (a really good PSP emulator for Windows) and my only problem is the sound won't start right away. I have to press Escape to access the Emulator's menu, stop the game, and reload it, and then it's fine. There's nothing about it on the Wiki, and I'm wondering if anyone has had any luck?

Also, just fyi to anyone else, I find that checking the "Toggle XBMC's Windowed Mode" works better when quitting the emulator.


[RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - ktjensen - 2013-12-20

Chappasmith - also had that happen when I launched a browser. Lost sound. Switched browsers and it worked. Guess you might need to experiment with the launcher and command line parameters for the app you launch.


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Angelscry - 2013-12-20

(2013-12-20, 00:37)Choppasmith Wrote: So I finally tried this with PPSSPP (a really good PSP emulator for Windows) and my only problem is the sound won't start right away. I have to press Escape to access the Emulator's menu, stop the game, and reload it, and then it's fine. There's nothing about it on the Wiki, and I'm wondering if anyone has had any luck?

Also, just fyi to anyone else, I find that checking the "Toggle XBMC's Windowed Mode" works better when quitting the emulator.

(2013-12-20, 10:36)ktjensen Wrote: Chappasmith - also had that happen when I launched a browser. Lost sound. Switched browsers and it worked. Guess you might need to experiment with the launcher and command line parameters for the app you launch.

I could be related to the fact that the XBMC audio engine takes around 10 seconds to release the audio and let other started applications use it. If not already done, have you tried, both, to desactivate the XBMC navigation sounds?


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - 3dhubiflieger - 2013-12-24

I have now the Problem that the Advanced Launcher loose all of its settings. This happens only with the zsnes Emulator. I scroll down the Roms with Gamepad and one Button pressed. If I press another Button simultaneously it scrolls faster. If I now select a game, the Emulator starts. But when I exit the Emulator and return to Advanced Launcher, all of my settings including pictures are gone ! I can replicate this every time. This happens on 2 Computer with Windows XP / Frodo 2.2 / ADVL 2.1
How can I restore my settings ?


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Angelscry - 2013-12-24

(2013-12-24, 09:51)3dhubiflieger Wrote: I have now the Problem that the Advanced Launcher loose all of its settings. This happens only with the zsnes Emulator. I scroll down the Roms with Gamepad and one Button pressed. If I press another Button simultaneously it scrolls faster. If I now select a game, the Emulator starts. But when I exit the Emulator and return to Advanced Launcher, all of my settings including pictures are gone ! I can replicate this every time. This happens on 2 Computer with Windows XP / Frodo 2.2 / ADVL 2.1
How can I restore my settings ?
Normally the problem happen randomly when you add/edit/modify a categorie, a launcher or an item. It's the first time, somenone report me the problem when only browsing the items. To restore settings, go into Advanced Launcher settings > Advanced > Backup Options > Import XML file (restore backup) > Then select the file corresponding to you last modification. Files naming convention is : YYYYMMDD-HHMMSS-MILLISEC-launchers.xml. Then your categories/launchers/items list will be automatically restored. I will try on my side to reproduce the problem. Which buttons are you pressing pressing exactly? What is your Gamepad, mapping?


Version 2.2.0 - Angelscry - 2013-12-25

Version 2.2.0 : This new version of Advanced Launcher fix notifications that were not showing the Advanced Launcher icon, but instead, the previous icons use by the system. Also a big code cleaning have been done with this version, with the revrite of the launchers.xml load/save options. Advanced Launcher is now slightly more faster on these tasks, but, unfortunately, this rewrite still not able fix the bug of launchers.xml file corruption. This version also change the dependance of python from 2.0 to 2.1. So, Advanced Launcher will be not compatible with the future version of XBMC (Gotham).

Changelog :
  • Fix XBMC notification icon display.
  • Rewrite launchers.xml load/save functions.
  • Code cleaning.
  • Change python dependence to version 2.1.



RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Ghostdivision - 2013-12-26

I just use advanced launcher to launch chrome web browser from xbmc, every few months it seems to break with updates, can i turn updates off if thats all i want it for....

My log is now showing this.

00:17:02 T:4332 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.IndexError'>
Error Contents: list index out of range
Traceback (most recent call last):
File "C:\Users\HTPC\AppData\Roaming\XBMC\addons\plugin.program.advanced.launcher\addon.py", line 20, in <module>
plugin.Main()
File "C:\Users\HTPC\AppData\Roaming\XBMC\addons\plugin.program.advanced.launcher\resources\lib\launcher_plugin.py", line 98, in __init__
self._load_launchers(self.get_xml_source(BASE_CURRENT_SOURCE_PATH))
File "C:\Users\HTPC\AppData\Roaming\XBMC\addons\plugin.program.advanced.launcher\resources\lib\launcher_plugin.py", line 1902, in _load_launchers
launcherdata[n] = values[0][index]
IndexError: list index out of range
-->End of Python script error report<--

On the current version just released.


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Angelscry - 2013-12-26

(2013-12-26, 09:38)Ghostdivision Wrote: I just use advanced launcher to launch chrome web browser from xbmc, every few months it seems to break with updates, can i turn updates off if thats all i want it for....

My log is now showing this.

00:17:02 T:4332 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.IndexError'>
Error Contents: list index out of range
Traceback (most recent call last):
File "C:\Users\HTPC\AppData\Roaming\XBMC\addons\plugin.program.advanced.launcher\addon.py", line 20, in <module>
plugin.Main()
File "C:\Users\HTPC\AppData\Roaming\XBMC\addons\plugin.program.advanced.launcher\resources\lib\launcher_plugin.py", line 98, in __init__
self._load_launchers(self.get_xml_source(BASE_CURRENT_SOURCE_PATH))
File "C:\Users\HTPC\AppData\Roaming\XBMC\addons\plugin.program.advanced.launcher\resources\lib\launcher_plugin.py", line 1902, in _load_launchers
launcherdata[n] = values[0][index]
IndexError: list index out of range
-->End of Python script error report<--

On the current version just released.
Could you please post here the content of your launchers.xml file (using pastebin service), so I will be able to reproduce your problem on my system and try to found a way to fix it. Actually I'm not able to reproduce this problem on system. I suspect that your launchers.xml file was previously corrupted, and with the new version, which is more restrictive... you obtain now a error message. But I need to verify first.


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Ghostdivision - 2013-12-27

Hmm hopefully this is the correct thing you were asking for.

http://pastebin.com/w4rrJHSy


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Angelscry - 2013-12-27

(2013-12-27, 10:37)Ghostdivision Wrote: Hmm hopefully this is the correct thing you were asking for.

http://pastebin.com/w4rrJHSy
No. I was asking for the xbmc/userdata/addon_data/plugin.program.advanced.launcher/launchers.xml file.

Maybe one thing you can try is to rollback Advanced Launcher to version 2.1.0. Edit one of your launchers (by renaming one of them for example). It will save the launchers.xml file with proper format. Then reinstall version 2.2.0 of Advanced Launcher.


RE: [RELEASE] Advanced Launcher - Applications Launcher Addon for XBMC - Ghostdivision - 2013-12-28

Rollback was greyed out, will try to find the other file.

Btw if i have to redo this again, do you have your youtube video showing how to set up a web browser, I remember that helped get this working when i did it awhile back but im having trouble locating it.

http://pastebin.com/Hw3ns9vu

The bat file its pointing to works fine, its just advanced launcher giving me that error whenever i try to click on it and create a launcher or use this existing one to launch chrome.

I can access the settings for it yet, but as far as simply clicking on the program, it spits out that error now.