From c71d1779f83aaa479dff3d22131a638c80f30eea Mon Sep 17 00:00:00 2001 From: croneter Date: Wed, 29 Dec 2021 15:59:26 +0100 Subject: [PATCH 1/2] Fix PKC not picking the correct Plex subtitle --- resources/lib/playlist_func.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/playlist_func.py b/resources/lib/playlist_func.py index e65277df..a006349c 100644 --- a/resources/lib/playlist_func.py +++ b/resources/lib/playlist_func.py @@ -377,7 +377,7 @@ class PlaylistItem(object): enabled = js.get_subtitle_enabled(self.playerid) if current != kodi_index: LOG.debug('Switching subtitle stream') - app.APP.player.setAudioStream(kodi_index) + app.APP.player.setSubtitleStream(kodi_index) else: LOG.debug('Not switching subtitle stream (no change)') if not enabled: From 5bd9faf9ea24125887665b954eff9665c13bbca0 Mon Sep 17 00:00:00 2001 From: croneter Date: Wed, 29 Dec 2021 16:01:40 +0100 Subject: [PATCH 2/2] Beta and stable version bump 3.6.3 --- addon.xml | 7 +++++-- changelog.txt | 3 +++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/addon.xml b/addon.xml index 1b34118e..6d90fc67 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + @@ -93,7 +93,10 @@ Plex를 Kodi에 기본 통합 Kodi를 Plex Media Server에 연결합니다. 이 플러그인은 Plex로 모든 비디오를 관리하고 Kodi로는 관리하지 않는다고 가정합니다. Kodi 비디오 및 음악 데이터베이스에 이미 저장된 데이터가 손실 될 수 있습니다 (이 플러그인이 직접 변경하므로). 자신의 책임하에 사용하십시오! 자신의 책임하에 사용 - version 3.6.2: + version 3.6.3: +- Fix PKC not picking the correct Plex subtitle #1760 + +version 3.6.2: - Fix playback report not working and AttributeError: 'NoneType' object has no attribute 'startswith' #1755 - Make sure that no proxy is used for artwork caching for calls to Kodi's webserver at localhost #1754 diff --git a/changelog.txt b/changelog.txt index 0adabeb0..2dc6bbba 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +version 3.6.3: +- Fix PKC not picking the correct Plex subtitle #1760 + version 3.6.2: - Fix playback report not working and AttributeError: 'NoneType' object has no attribute 'startswith' #1755 - Make sure that no proxy is used for artwork caching for calls to Kodi's webserver at localhost #1754