2018-08-01, 16:39
(2018-07-31, 23:24)Takezo36 Wrote: @napville2000 that should be fixed now please try againhttps://pastebin.com/eMHd7KKP
@mzup unfortunately that's not enough. could you enable debug logging and send me the log?
(2018-07-31, 23:24)Takezo36 Wrote: @napville2000 that should be fixed now please try againhttps://pastebin.com/eMHd7KKP
@mzup unfortunately that's not enough. could you enable debug logging and send me the log?
(2018-08-01, 14:17)olympus Wrote: 1) The addon tries to set the current view to icons. Can you please make this an option in the addon's settings?
Newer versions of Kodi can lock user's desired view if you set the content of each view in the addon.
The view is always changed to a view I don't like on the skin that I use and I have to change it back every time I launch an app.
I commented line 489 and it doesn't try to change it.
#xbmc.executebuiltin("Container.SetViewMode(Icons)")
This is what I would like to be an option.
(2018-08-01, 14:17)olympus Wrote: 2) I prefer to have "Don't show your OS provided app listing" enabled and to create my own custom entries.I can add the translatePath part in the next version as well. But the add lnk or add custom path might take a bit longer because i want to update the structure of my code (it's quite a mess) before i add new features.
Can you add support for special kodi paths for custom lnk files (Windows) and custom desktop files (Linux)?
What I mean, I like to edit manually and change the full paths of the commands to special kodi paths.
For example I change in store json file
C:\\Users\\USERNAME\\AppData\\Roaming\\Kodi\\userdata\\addon_data\\plugin.program.applauncher\\Firefox.lnk
to
special://profile/addon_data/plugin.program.applauncher/Firefox.lnk
The addon can't read these kind of command paths though.
If I change line 378 from
AppRunner.executeApp(command, args, killKodi, minimize)
to
AppRunner.executeApp(xbmc.translatePath(command), args, killKodi, minimize)
the addon can read all kind of commands, special and normal.
(2018-08-02, 19:36)Takezo36 Wrote: @mzupHey I ended up being able to create a shortcut to a bat file and was able to access the store app that way. Issue i have with that is that it launches the app but then since the bat file ends it brings kodi back to foreground.
Thanks I'll have a look at it on the week end. I might would contact you, if you don't mind, and ask you to execute one or two powershell scripts to get a better view on the problem.
(2018-08-02, 19:36)Takezo36 Wrote: I can add the translatePath part in the next version as well. But the add lnk or add custom path might take a bit longer because i want to update the structure of my code (it's quite a mess) before i add new features.
Just to clarify, it will be two new things
- An option to define custom "start menu" paths.
- On create custom entry provide a selection to choose a lnk/desktop file as template.
Is that what you want?
(2018-08-02, 19:36)Takezo36 Wrote: But the add lnk or add custom path might take a bit longer because i want to update the structure of my code (it's quite a mess) before i add new features.