-
Notifications
You must be signed in to change notification settings - Fork 169
/
changelog.txt
2714 lines (2265 loc) · 66.7 KB
/
changelog.txt
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
11.1.6
=============
fix to many threads started (edge case when massive and long running updates are pushed via realtime sync)
improve websocket reconnects on Emby server hard reboot/power cycle
fix cyclic import
fix remove client on remote playback
fix remote playback pause command from clients after init
fix watch together for multiple participants and one of them stopped the playback -< disabled watch together for all clients
11.1.5
=============
add musicvideo album node
inject --NO INFO-- when musicvideo album is empty
improve websocket reconnect
fix issue when using invalid dynamic nodes
improve episode debug messages
improve Kodi shutdown
fix minor sync pause issue
11.1.4
=============
fix emby connect
fix music sync when AlbumArtist info is missing
fix chapter sync issue when using older 4.8.X Emby server versions
lower ping interval to 3 seconds, as proxy servers (apache) keepalive timeout is by default 5 seconds
minor https connection improvements
11.1.3
=============
fix websocket close-connection issue
improve offline-mode notifications
increase http timeouts from 1 to 3 seconds
add music content synced-nodes for singles
add translations
fix websocket-reconnect issue (edge case)
fix minor webservice issue when Kodi queries jpeg pictures
improve strm files playback with embedded http streams
fix progress updates when using dynamic nodes in native mode
add follow-http option for remote content e.g. strm and livetv default off -> do not pipe external http links through Emby server. This fixes some edge case playback issues
fix cinnema mode in native mode
fix remote playback progress updates when dynamic content remotely played in native mode
some minor playback performance improvements
change datetime datetime.utcnow api call, as it's deprecated
11.1.2
=============
minor logging changes
add SeriesPrimary artwork as fallback for episode thumb artwork
hold upcoming episode cache for 1 day
11.1.1
=============
fix server remove
11.1.0
=============
change playerbusy threading
increase aysnc conmmands timeouts to 3 seconds
set highest resolution for multiversions by Kodi (as an option, default is on)
autoselect best quality multiversion for episodes etc. (classic multiversions selection) (as an option, default is off)
improve tvshows deduplication
notifyall on content add/content updated/content remove/content userdata changed/library add/library remove (option)
fix delete season/tvshow
support multiversion content delete
fix server remove when server is offline
improve http error messages
fix edge case http communication issues
fix sync stalled when plugin content update in progress and Emby server restarted
11.0.9
=============
improve TVShow deduplication
fix minor http request queue issue
fix special charecter & issue in nodes
11.0.8
=============
keep plugin settings on forced database resets
keep Kodi native favorites
favorites toggle option syncs
fix dynamic node issue when "dynamic libraries" configuration options set to off
add de-duplicate function
11.0.7
=============
fix player crash when item was removed from Kodi playlist
Rename GusetStart to Guest Star
11.0.6
=============
fix guest stars
fix audio playback
11.0.5
=============
fix database vaccum function
fix episode remove bug
11.0.4
=============
fix delete after watched
11.0.3
=============
fix folder startup sync issue
fix removal of abandoned MusicAlbums and MusicArtists
fix library remove issue
fix playsession
fix minor subtitle issue
fix when no pathsubstitution used
11.0.2
=============
fix invalid music album disc numbers
add fallback for chapters using Emby server 4.8.X
fix runtime for multiversion content
fix content ungrouping (mutiversion) sync issue
11.0.1
=============
fix http connection issues
fix subtitle issue
11.0.0
=============
add movie-tvshowlink support
option to disable startup sync
chapters assigned to mediasources (accurate chapter markers for multiversion content)
support skip credits in native mode
add Creditstart into database
change logging modes
add support Kodi 21 multiversion
add support Kodi 21 specials
improve livetv sync menu
improve themes sync menu
use original filenames in addon mode (improves Kodi subtitle download)
support native mode for dynamic nodes
fix non youtube trailers
support skipintro for dynamic nodes
support multiversion selection for dynamic nodes
filter MusicAlbum update on song play (realtime updates) -> skip double updates (performance)
rename helper addons
improve threading priorities (performance)
fix xml encoding in addon.xml
improve http connection -> use less tcp sessions (performance)
support specials in continue last played node (modification by user seashell, thanks)
improve sync performance for multiversion content
improve boxset sync (performance)
improve folder sync (performance)
improve database priorities (reliability)
remove Kodi workarounds for bookmarks (Kodi 21.1 seems fixed the issues)
remove settings migration from 9.X
reconnect when emby server is down on Kodi start
fix repeat mode status updates and support repeat remove command
add support shuffle mode remote commands
add support remote audio stream selection
improve player events
increase default curl timeouts
10.0.47
=============
skip retries on async requests
10.0.46
=============
fix multiversion content assinged to collection
fix Windows specific connection issues
10.0.45
=============
fix dynamic node recommended (double items)
fix upcoming dynamic node when not item name is reported
fix soundtrack tagged as compilation
add context menu refresh option for seasons and series
add config redirect from helper plugin
fix boxset/collection updates
10.0.44
=============
fix init sync for records when recording in progress
10.0.43
=============
fix recently played synced nodes
10.0.42
=============
fix player crash for edge cases
10.0.41
=============
fix http issue when chunked data are received
10.0.40
=============
fix realtime sync issue for unsyncable content e.g. photos
10.0.39
=============
change log modes
10.0.38
=============
rename dialog files
fix remote playback issue
10.0.37
=============
fix remote playback client selection
fix remote playback commands
fix nodes sort order
fix minor shutdown issue
add translations
10.0.36
=============
disable Emby server offline msg on wake from sleep mode
add additional notification options
fix sync pause issue
fix queue issue
10.0.35
=============
fix http header recv issue
fix Kodi profile library folder
fix Emby server (hard) restart issue
add settings option in context menu
10.0.34
=============
fix dynamic nodes in hybrid mode
10.0.33
=============
disable remove worker pause
cache DNS
fix connection when http prefix is missing
add tracking of Emby server version (for mandatory resets)
workaround for dynamic nodes folder browse (Emby server bug)
10.0.32
=============
fix sync paused issue for realtime library updates
fix http connection
fix node typo
10.0.31
=============
fix connection issues with SubUrl connection strings (also fixes websocket issues behind proxies)
fix wrong subtitle index
fix http head requests
10.0.30
=============
fix transcoding playback
10.0.29
=============
intercept pillow library issue
10.0.28
=============
minor changes in Player session ops
fix websocket messages delay
fix session logout
10.0.27
=============
fix several minor http issues
faster https socket connection
support http redirects (including websocket connections)
fix Emby session stop
sync pause only for Emby scan tasks
10.0.26
=============
rewrite http communication with Emby server (remove urllib3 dependency, http comminicaion is now on low level socket-basis)
fix context menu
rewrite emby login handshakes
fix textoverlay position
fix minor artwork issues
remove song artwork from synced content (let Kodi handle it)
fix menu options in content helper plugins
fix library Id filters for dynamic nodes
fix dynamic node Genre for Audiobooks and Podcasts
10.0.25
=============
fix sort orders for dynamic nodes
improve performance for dynamic nodes
change plugin structure (fixes content detection issues for dynamic nodes)
10.0.24
=============
fix server busy progress bar when server restarted or shutdown
fix websocket issue
fix init sync when server is busy (sync re-started)
increase paging limit for MusicAlbum
remove sorting parameter for unlimited synced nodes (performance)
add Kodi database indexes (performance)
improve sync performance
10.0.23
=============
fix pillow library issue
Improve multicontent sync, thanks to Luke for modifications (currently only in Emby server's beta version, will be backported to next stable)
disable sortby (could give minor sync performance plus). This change breaks Emby server 4.7 support. It's no longer supported by plugin
fix sync pause while watch-togeter and remote-mode
fix progress updates -> never delay
add translations
10.0.22
=============
fix favorite sync issue
fix Boxset realtime updates
fix websocket issue
rollback multiversion content changes from 10.0.21. The performance issue will be addressed in one of the next versions. -> different approach
add option to adjust the max URI length
fix delete after watched function
fix pillow library issue
10.0.21
=============
fix boxset updates for realtime sync when content was added
unify code
improve realtime boxset updates sync performance (de-double updates)
fix favorites linked by sub-content
fix image overlay for favorites, when added via Kodi's favorite option
improve internal queue
fix sync crash
fix dynamic nodes refresh when content was deleted, added or modified
supress unnecessary progress updates e.g. after episode playback, season was updated by incoming Emby server notification.
fix content detection by PresentationUniqueKey
improve init sync speed for multiversion content
10.0.20
=============
disable http HEAD request forwarding to emby server (less server load for Emby)
fix dynamic nodes refresh when content was deleted
fix userdata updates for Tag, Studio, Playlist, Person
fix favorites and use image overlays
more reliable delete-after-watched option
several minor player fixes
10.0.19
=============
fix strm files including a plugin source
fix head (mime type) queries from Kodi
10.0.18
=============
fix boxsets to tags option
10.0.17
=============
intercept .ifo request in webservice
fix skip credits jumps (thanks to user skyfish)
fix webservice threading issues (special thanks to user seashell)
add EventName into playback session dict
fix boxsets to tags option
fix watch together (seek and timezones)
fix recording syncs
Add node reset finish notification
10.0.16
=============
fix webservice threading issues (special thanks to user seashell)
fix minor multicontent selection issue
10.0.15
=============
add Next Episodes played node
fix websocket close issue
fix recoding library sync
fix delete episode issue in native mode
add goto context menu option
10.0.14
=============
fix recently played nodes
fix websocket close issue
fix multiversion episode delete issue
fix dynamic node search
fix node cache reset
fix next episodes node
fix continue watching node
fix reset resume position via Kodi when content is marked as watched
fix watched status for dynamic nodes
fix strm file issue
10.0.13
=============
add uniqueids for musicvideos
add ratings for musicvideos
fix musicvideo sync issue
add option to set imdb as default rating provider
fix minor rating issue (for updated content)
fix tvshow/season sync issue
fix nodes
transcoding livetv, respect bitrate settings
10.0.12
=============
fix folder view for home video/photos
close sync progress bars when server connection drops
urllib3 v1 support
fix strm file issue when https links are included
update Chinese language file (thanks to whisperer)
fix download content episode node
add download content series node
fix Kodi shutdown issue
10.0.11
=============
fix emby connect
remove sdr from strHdrType
add transcode option for video: vc1, prores, msmpeg4v2
add transcode option for audio: aac_latm, dtshd_hra, dtshd_ma, pcm_s16le, truehd, opus
10.0.10
=============
change hdrtype assignment to "VideoRange"
change urllib3 dependency to >= 2.0 version
fix library removal issue for edge case
10.0.9
=============
fix player crash
fix date created not updated
add additional debug log information
10.0.8
=============
remove kodi workaround option (fixes are added dynamically)
fix API issues
replace requests with urllib3
fix 'FreeTypeFont' object has no attribute 'getsize' -> python pillow api change
workaround for Kodi chapter bugs for MusicVideos and Movies played via widgets
remove reuselanguageinvoker -> causes Kodi issues
fix File name too long issue
fix playertracker issue
10.0.7
=============
fix MusicAlbum sync issue
fix Studio sync issue
improve incremental boxset sync on Kodi start
fix BoxSet sync issue
add remoteplay option
fix episode intros
fix player stop issue
fix extracted bluray and dvd playback
fix some minor intro issues
fix A-Z node order
10.0.6
=============
add support for favorite photos and homevideos
performance improvement for init sync (disable autoindex, temporary disable database indexes)
fix multiepisode season detection
add people for MusicVideos
remove countries and directors nodes for tvshows (not supported by Kodi)
keep settings on reset -> not deleting favorites if favorites sync is disabled
improve support for special charecters in filenames
fix multiselection filesizes
fix notification timings
add translations
fix MusicAlbum sync issue when album was moved to different library
fix cinema mode markers and disable intros for in progress content
10.0.5
=============
fix movie artwork -> backdrop assignment to thumb if thumb not exists
fix sync issue for invalid episodes metadata
10.0.4
=============
exclude photos
fix virtual tv
fix typo
10.0.3
=============
fix SesaonId detection by PresentationUniqueKey -> compatibility with 4.9.X Emby server
10.0.2
=============
fix Emby server 4.9.X episode issue (SeasonId not reported)
port 9.4.13/14 bugfixed to 10.X
10.0.0
=============
fix nodes window reload
fix Kodi content detection
add additional nodes
fix nodes
fix favorites remove
9.4.21
=============
fix multiversion episode delete issue
fix strm file issue
fix websocket close issue
9.4.20
=============
fix 'FreeTypeFont' object has no attribute 'getsize' -> python pillow api change
fix playertracker issue
fix library removal issue for edge case
fix player crash
9.4.19
=============
fix Studio sync issue
fix BoxSet sync issue
backport MusicAlbum bugfix from 10.X
fix extracted bluray and dvd playback
9.4.18
=============
fix sync issue for invalid episodes metadata
fix nextepisodes synced node
9.4.17
=============
exclude photos
fix virtual tv
9.4.16
=============
fix SesaonId detection by PresentationUniqueKey -> compatibility with 4.9.X Emby server
9.4.15
=============
fix books and games library issue
9.4.14
=============
fix stream sync issue
9.4.13
=============
fix invalid year values sync issue
9.4.12
=============
fix database option set
fix favorites remove
fix content date
fix musicgenre removal
9.4.11
=============
fix dynamic node
9.4.10
=============
fix minor sync issue
9.4.9
=============
fix dynamic nodes folder selection, when folder has multiple content types included (e.g. pictures)
fix delete after played option
9.4.8
=============
fix player crash when content was playerd from an external source (not Emby)
9.4.7
=============
fix nodes
9.4.6
=============
fix player issues
9.4.5
=============
fix initial xmls configuration
remove overlay from photos
add bookmark workarounds for episode widgets
fix cinemamode via widget playback
fix native mode widget playback
9.4.4
=============
fix multiversion
fix player issues
fix upgrade issue from 8.X version
9.4.3
=============
fix boxset update issue
fix favourites update
fix artwork cache
fix player issues
9.4.2
=============
fix minor player issue
unified player code
fix sources.xml
fix artwork cache/remove
fix player timing issues (stability)
fix Boxsets synced via Emby server stable version
fix livetv issues
9.4.1
=============
fix database vacuum
fix MusicGenre updates
fix playlists
9.4.0
=============
keep advancedsettings.xml on factory reset
add options to adjust the context menu
fix watched status
fix context menu options
remove (library) label extension from tags
fix server busy notification when server is shutdown or restarting
fix favorites issue
added additional database consitency checks
fix multipart content
9.3.0
=============
fix artwork caching
fix delete downloaded content
change downloaded content label from downloaded to download
fix database I/O issue
fix queue issue/hibernate issue
support subscontent donwload (via season, tvshow)
add support for season favorites
fix favourites "remove" action via Kodi's default favourite view
add translations
fix numeric check (e.g. aspect ratio value was not detected)
fix dynamic node subcontent issue (e.g. movies -> genre)
make paging factors adjustable by content
fix dynamic nodes content reports to Emby server
fix native mode Windows path issue
fix queue timing issue
new tvtunes integration
remove emby server -> clean content settings and nodes
fix several minor issues
unify code
lower MusicAlbum paging value (Emby server > 4.8.0.58 (beta) has performacne issues with subcontent queries)
fix Kodi nightly database issue
fix file delete issue
fix virtual content issue e.g. for upcoming episodes
fix database reset for Windows
9.2.3
=============
Fix search cache issue
Fix minor musicvideo issue
Fix minor sync issue
Block .tbn file queries in addon mode, if not a picture query
Block invalid queries in addon mode
Add Download option
Fix player issues
Fix remote mode issues
9.2.2
=============
Add additional caching for mixed content in dynamic mode
Add search option in dynamic nodes
Fix dynamic nodes issue
9.2.1
=============
add additional image fallbacks for landscape
fix minor sync issue for BoxSet updates
fix smb pathes (native mode)
autoupdate Kodi settings for addon mode (myvideos.extractflags=disabled, myvideos.extractthumb=disabled, myvideos.usetags=disabled, musicfiles.findremotethumbs=disabled, musicfiles.usetags=disabled, myvideos.extractchapterthumbs=enabled (if path subsitution is enabled, otherwise myvideos.extractchapterthumbs=false)
fix picture load issue
fix realtime (library) update issue for edge case
9.2.0
=============
fix favorites content playback
use helper folder for dynacmic nodes including mixed content
fix sync issue for mixed content libraries
fix dynamic node for audio content
fix music sync issue
option to sync livetv channels on Kodi start
9.1.3
=============
fix delete option via context menu
fix sort order for dynamic nodes
fix sync issue for Videos
9.1.2
=============
fix kodi source -> http://kodi.emby.tv
fix Kodi shutdown when Emby server connection was down
fix dynamic node sort options
code unification
fix homevideo/photos dynamic node
fix init sync crash
option to disable favorites sync
9.1.1
=============
clean code
fix crash on Kodi exit
fix remote playback issues
9.1.0
=============
improve plugin startup
fix BoxSet updates on Kodi startup
add support for realtime updates of boxsets
fix/support sync issue for virtual content like BoxSets, MusicAlbum, MusicArtist, Tags, Persons, Genres, MusicGenres etc.
change Kodi events to a more reliable threading/queueing system
fix issue with different actors but similar names
support playlist sync
added sync tag nodes for collections
fix sync node issues
support favorites for all sorts of Emby content
support MusicGenres for Musicvideos
less ram usage while sync in progress
clean and restructure (code) modules
Subcontent unification changed (Genre, MusicGenre, Tags, MusicArtist, Studios, MusicAlbum)
Boxsets (Collections) to Tags as Option
Fix Artwork issue for MusicAlbum
xml python api plugin replaced by code. Plugin is a source of issues and not very stable.
Some livetv sync fixes
fix/improve cache for dynamic content updates
fix timeouts (CCurlFile::Stat)
new combined in progress node
Patching requests python lib to disable Nagle
add dynamic node links as xml
fix release date information
add continue watching node
change default sort option for Episodes
fix folder playback
8.2.15
=============
use low level API for socket object (performance)
use low level API for custom queue object (performance)
optimize/fix init sync
optimize session commands
change epg refresh method
fix livetv for Kodi 21
8.2.14
=============
(realtime) progress progress updates even if Emby server is busy
(another) fix dynamic nodes (genre and tags) for mixed content
fix webdav issue
add recommendations for dynamic nodes
fix library updates when "use path substitution" is enabled (plugin) and "extract video information from files" is enabled (Kodi). Actually "extract video information from files" should always be disabled.
fix remote client selection when Emby server doesn't report a Username
8.2.13
=============
fix sync issue (changed userdata reported for a folder by Emby server)
fix minor webservice issue
fix live tv epg issues
fix boxset/collection issue
add option to adjust curl timeouts
fix dynamic nodes (genre and tags) for mixed content
fix kodi companion query without admin account
8.2.12
=============
fix folder view for pictures
8.2.11
=============
fix minor issue when disconnecting from Emby server
fix hibernate issue when playing content
8.2.10
=============
Widget refresh improvement
fix progress updates, playing native (Kodi) files in combination of Emby content
fix check artwork update -> https://emby.media/community/index.php?/topic/116208-embyforkodi-next-gen-8xx-support/&do=findComment&comment=1268202
fix minor sync issue
8.2.9
=============
add emby sources to sources.xml (fixes Kodi's masterlock issue)
(re)add Kodi workaround for episode bookmarks (default on)
disable http2 by default
fix minor sync issue and improve incremental performance
fix IPV6 websocket connection -> https://github.com/MediaBrowser/plugin.video.emby/issues/471
fix media flags (codec infos)
8.2.8
=============
fix tvtunes
add option to disable websocket communication
improve server reconnects
minor livetv improvements
minor progress sync updates
workaround for Emby server issues (http unresponsiveness)
8.2.7
=============
even more fixes for livetv streamclose issue (for single tuner devices)
improve channel sorting
8.2.6
=============
additional fixes for livetv streamclose issue
8.2.5
=============
fix livetv streamclose issue
8.2.4
=============
fix crash when invalid remotecontent requested to play
keep using same connection on Emby server reboot
minor changes in livetv stream init
fix livetv stream init issue
fix local trailers
8.2.3
=============
fix hls-streams when using (Kodi's) path substitution
faster hls-streams init
redefine modi in plugins config menu. Basic and standard mode only shows essential functions (user frendlyness)
skip intro default enabled
add option to limit artwork size
add option to define the artwork compression level
fix remote playback photos
fix database close issue
improve sync pause
fix remote playback focus screens
improve incremental sync performance
add translations
8.2.2
=============
fix progress reset issue
fix artwork compession issue
fix minor artwork query issue
8.2.1
=============
improve live tv sync