Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f3fe8ae6b | ||
|
|
4ee91654ea | ||
|
|
3190658e0c | ||
|
|
c330523b9e | ||
|
|
5a5c865135 |
15
release.yaml
15
release.yaml
@@ -1,19 +1,8 @@
|
||||
version: '0.5.3'
|
||||
version: '0.5.4'
|
||||
changelog: |-
|
||||
Bug Fixes
|
||||
---------
|
||||
+ Fix forced and sdh/cc subtitle not working (#184) @aiosk
|
||||
+ Fix performance profiling (#182) @mcarlton00
|
||||
+ Allow playback from Info menu (#179) @mcarlton00
|
||||
|
||||
Code or Repo Maintenance
|
||||
------------------------
|
||||
+ Manually decode json responses (#183) @mcarlton00
|
||||
|
||||
CI & build changes
|
||||
------------------
|
||||
+ CI - remove use_aliases from emoji command (#186) @mcarlton00
|
||||
+ Bump actions/setup-python from 3 to 4 (#178) @dependabot
|
||||
+ Fix sys.argv comparison (#189) @mcarlton00
|
||||
dependencies:
|
||||
py2:
|
||||
- addon: 'xbmc.python'
|
||||
|
||||
@@ -458,11 +458,11 @@ def play_file(play_info):
|
||||
playlist.add(playurl, list_item)
|
||||
player.play(playlist)
|
||||
else:
|
||||
if sys.argv[1] > 1:
|
||||
# Play from "Info" screen
|
||||
if len(sys.argv) > 1:
|
||||
# Play from within addon
|
||||
xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, list_item)
|
||||
else:
|
||||
# Play from menu. Doesn't have a handle, so need to call player directly
|
||||
# Play from remote control. Doesn't have a handle, so need to call player directly
|
||||
playlist = xbmc.PlayList(xbmc.PLAYLIST_VIDEO)
|
||||
playlist.clear()
|
||||
playlist.add(playurl, list_item)
|
||||
|
||||
Reference in New Issue
Block a user