Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ad76560ed | ||
|
|
d6f449930c | ||
|
|
ebdf501115 | ||
|
|
34861fb9b9 | ||
|
|
2f3fe8ae6b | ||
|
|
4ee91654ea | ||
|
|
3190658e0c | ||
|
|
c330523b9e | ||
|
|
5a5c865135 |
15
release.yaml
15
release.yaml
@@ -1,19 +1,8 @@
|
||||
version: '0.5.3'
|
||||
version: '0.5.5'
|
||||
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
|
||||
+ Ensure a handle is valid before trying to use it to start playback (#194) @mcarlton00
|
||||
dependencies:
|
||||
py2:
|
||||
- addon: 'xbmc.python'
|
||||
|
||||
@@ -458,11 +458,14 @@ 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 and int(sys.argv[1]) > 0:
|
||||
# Play from info menu
|
||||
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 or addon menus. 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