forked from UniversalMediaServer/UniversalMediaServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.txt
4894 lines (4506 loc) · 182 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
10.12.0 - 2021-09-17
General:
Increased performance and reduced memory use of startup scan
Renderer configurations now have MediaInfo enabled by default
Fixed files locking during or just after download
Fixed process hanging on shutdown
Made building the project faster
Started using DeepSource for static code analysis
Translation updates via Crowdin:
French (100%) (thanks, Archaos!)
German (100%) (thanks, pipin!)
Italian (100%) (thanks, Marco F. V. Baljet!)
Portuguese (Brazilian) (thanks, Mauro.A!)
Russian (96%) (thanks, Andrey Zhernovoy!)
Dependencies:
Revert h2database from 1.4.199 to 1.4.197
Bump JRE to 8u302+8 on macOS
Bump junit5.version from 5.7.2 to 5.8.0
Bump maven-javadoc-plugin from 3.3.0 to 3.3.1
Bump maven-pmd-plugin from 3.14.0 to 3.15.0
Bump oshi-core from 5.8.1 to 5.8.2
Fixed using x64 JRE on x86 (i586) Linux
10.11.0 - 2021-09-04
General:
Added link to changelog in auto updater (thanks, Patrick!)
Fixed Dolby Vision video being detected as Digital Video (dv)
Fixed browsing on some renderers
Fixed tsMuxeR not working on macOS (thanks, justdan96!)
Renderers:
Improved support for subtitles on LG OLED TVs
Translation updates via Crowdin:
Chinese (Traditional) (95%) (thanks, Gene Wu!)
Czech (99%)
Danish (100%) (thanks, NCAA!)
Dutch (97%) (thanks, Jos van der logt!)
Finnish (100%) (thanks, Esko Gardner!)
Korean (100%) (thanks, VenusGirl!)
Polish (100%) (thanks, Karol Szastok!)
Portuguese (99%) (thanks, mariopinto!)
Spanish (100%) (thanks, edwardalvarez2011!)
Turkish (100%) (thanks, Burak Yavuz and Erdin Koc!)
Ukrainian (19%) (thanks, Paul Furlet!)
Dependencies:
Bump checkstyle from 8.45.1 to 9.0
Bump JNA from 5.8.0 to 5.9.0
Bump oshi-core from 5.8.0 to 5.8.1
Bump tsMuxeR to 2021-09-02-01-59-46
10.10.1 - 2021-08-23
General:
Up to 4x browsing speed improvement (thanks, ik666!)
Disabled UPnP search while we fix problems with it
Fixed sending MusicBrainz info for non-audio files
Fixed the older HTTP engine
Renderers:
Improved support for HDR and high bit depths on LG OLED TVs
Fixed support for OGG formats on LG EG910V TV
Dependencies:
Bump gson from 2.8.7 to 2.8.8
Bump JRE to 8u302+8
Bump logback-version from 1.2.3 to 1.2.5
10.10.0 - 2021-08-18
General:
Added fully played overlay to TV series thumbnails in Media Library if all episodes are played
Fixes some renderers not reflecting content updates like fully played thumbnail changes
Fixed broken API matching for episodes from files with years in the series name
Fixed files locking during or just after download
Ignore incomplete files
Translation updates via Crowdin:
Romanian (100%) (thanks, FlorinT!)
Russian (90%) (thanks, Sergei Kotlar!)
10.9.0 - 2021-08-09
General:
Added option to download folder as playlist on web interface
Added option to download media as playlist on web interface
Changed macOS dock icon to match newer Apple design guidelines for Big Sur+ (thanks, Alex Gurr!)
Made more room for media titles on web interface
Added recognition of MP1
Improved support for Blu-ray (PGS), HDMV, DVB, WebVTT and EIA-608 subtitles
Fixed crash on SUSE Linux
Fixed chapter folders showing blank names
Renderers:
Improved support for Google Chromecast Ultra
Improved support for MXPlayer on Google Android
Improved support for Windows Media Player
Fixed support for OGG formats on Naim-Mu-So, Roku and Samsung devices
Translation updates via Crowdin:
Chinese (Traditional) (100%) (thanks, Gene Wu!)
Danish (100%) (thanks, NCAA!)
English (United Kingdom) (43%) (thanks, MrSmithr!)
Finnish (100%) (thanks, Esko Gardner!)
French (100%) (thanks, Maxence Vary!)
German (100%) (thanks, Peter Ollig and pipin!)
Korean (100%) (thanks, VenusGirl!)
Polish (100%) (thanks, Karol Szastok!)
Portuguese (Brazilian) (100%) (thanks, Mauro.A!)
Russian (89%) (thanks, Artem4ik!)
Spanish (100%) (thanks, Diego Guerrero, edwardalvarez2011 and Gerardo Ruiz!)
Thai (3%) (thanks, Surasak Namnongor!)
Turkish (100%) (thanks, Burak Yavuz!)
Dependencies:
Bump checkstyle from 8.44 to 8.45.1
Bump com.sun.xml.bind-version from 3.0.1 to 3.0.2
Bump git-commit-id-plugin from 4.0.5 to 4.9.10
10.8.2 - 2021-07-25
General:
Fixed a crash on headless environments like Docker
Translation updates via Crowdin:
Polish (100%) (thanks, Karol Szastok!)
10.8.1 - 2021-07-24
General:
Fixed a crash on headless environments like Docker
Translation updates via Crowdin:
Chinese (Simplified) (100%) (thanks, 無情天!)
English (United Kingdom) (43%) (thanks, MrSmithr!)
French (100%) (thanks, Archaos!)
Portuguese (Brazilian) (100%) (thanks, jaccoud!)
Ukrainian (18%) (thanks, Paul Furlet!)
10.8.0 - 2021-07-22
General:
Added youtube-dl engine which fixes support for YouTube channel feeds
Added automatic names for web feeds in the user interface, and the ability to add/edit manual names for web streams
Added sample web radio stream
Added support for pasting YouTube channels directly, instead of needing the feed URLs
Improved performance and logging for unmonitored files
Fixed several web content user interface bugs
Fixed sample web feeds and streams not being loaded on macOS
Fixed broken sample web feeds
Fixed/updated readme links
Fixed web bump interface (thanks, Pikarobbi!)
Fixed broken thumbnail caching on macOS
Fixed support for mp3 radio streams on the web interface
Fixed support for radio streams without thumbnails on the web interface
Translation updates via Crowdin:
Danish (100%) (thanks, NCAA!)
English (United Kingdom) (36%) (thanks, Pete Russell!)
Finnish (100%) (thanks, Esko Gardner!)
Italian (99%) (thanks, Dimitri Graffi!)
Korean (100%) (thanks, VenusGirl!)
Portuguese (99%) (thanks, mariopinto!)
Portuguese (Brazilian) (96%) (thanks, Mauro.A!)
Turkish (100%) (thanks, Burak Yavuz!)
Dependencies:
Bump commons-io from 2.10.0 to 2.11.0
Bump FFmpeg to latest Git versions
Bump oshi-core from 5.7.5 to 5.8.0
Bump rome from 1.15.0 to 1.16.0
Bump spotbugs-maven-plugin from 4.2.3 to 4.3.0
Bump Video.js from 7.10.1 to 7.13.3
10.7.0 - 2021-07-04
General:
Improved detection of movies and anime episodes
Increased default max memory on Windows machines with 8+ GB RAM
Removed filename from entries inside the TRANSCODE folder
Fixed upnp:class in UPnP search results (thanks, ik666!)
Fixed the "Reset the cache" button not resetting API metadata too
Fixed failed database upgrade for fully played statuses
Fixed FFmpeg crash
Fixed marking a directory as fully played not changing cached thumbnails
Renderers:
Improved support for VLC on iPhone
Translation updates via Crowdin:
Czech (100%)
Danish (100%) (thanks, NCAA!)
Finnish (100%) (thanks, Esko Gardner!)
French (100%) (thanks, Archaos!)
Hungarian (94%) (thanks, Zatamon!)
Korean (100%) (thanks, VenusGirl!)
Polish (100%) (thanks, Karol Szastok!)
Portuguese (99%) (thanks, mariopinto!)
Portuguese (Brazilian) (96%) (thanks, Mauro.A!)
Romanian (100%) (thanks, FlorinT!)
Russian (89%) (thanks, Dmitry Lavrentev!)
Turkish (100%) (thanks, Burak Yavuz!)
Dependencies:
Bump assertj-core from 3.19.0 to 3.20.2
Bump checkstyle from 8.43 to 8.44
Bump commons-io from 2.9.0 to 2.10.0
Bump doxia-module-docbook-simple from 1.9.1 to 1.10
Bump git-commit-id-plugin from 4.0.4 to 4.0.5
Bump jaudiotagger from 2.2.5 to 2.2.7
Bump maven-idea-plugin from 2.2.1 to 2.3-atlassian-10
Bump oshi-core from 5.7.4 to 5.7.5
10.6.0 - 2021-06-03
General:
Added support for UPnP searching (thanks, sf666!)
Removed broken New Media folder, as that functionality exists in the Media Library
Improved episode detection and prettifying
Fixed failed database connections with hanging processes
Fixed description of media library/cache settings
Renderers:
Improved support for Sony XBR OLED TVs
Translation updates via Crowdin:
Chinese (Simplified) (98%) (thanks, QI wolong!)
Danish (100%) (thanks, NCAA and GurliGebis!)
Finnish (100%) (thanks, Esko Gardner!)
French (100%) (thanks, Archaos!)
German (98%) (thanks, pipin!)
Korean (100%) (thanks, VenusGirl!)
Polish (100%) (thanks, Karol Szastok!)
Portuguese (99%) (thanks, mariopinto!)
Portuguese (Brazilian) (96%) (thanks, Mauro.A!)
Serbian (Cyrillic) (96%) (thanks, Slobodan Simić (Слободан Симић)!)
Spanish (100%) (thanks, edwardalvarez2011 and fafranco82!)
Turkish (100%) (thanks, Burak Yavuz!)
Ukrainian (18%) (thanks, Paul Furlet!)
Dependencies:
Bump checkstyle from 8.42 to 8.43
Bump commons-io from 2.8.0 to 2.9.0
Bump FLAC on macOS to 1.3.3
Bump tsMuxeR (justdan96 release) on macOS to 2021-04-30-02-13-20
Bump gson from 2.8.6 to 2.8.7
Bump jna-version from 5.7.0 to 5.8.0
Bump junit5.version from 5.7.1 to 5.7.2
Bump maven-javadoc-plugin from 3.2.0 to 3.3.0
Bump oshi-core from 5.5.0 to 5.7.4
10.5.0 - 2021-05-08
General:
Added new option to mark a fully played video after moving it to a new folder
Implemented external API to allow users to perform actions on their UMS instance from an authorized external source, please see docs at https://support.universalmediaserver.com/books/configuration/page/external-api (thanks, ikrahne!)
Fixed TV series metadata not saving for some series
Improved episode detection from filenames
Optimized network use and handling of unimplemented UPnP actions for some renderers
Fixed audio cover art extraction (thanks, ik666!)
Fixed database upgrade for some users
Fixed recognition of some renderers
Renderers:
Improved support for H.264 on Panasonic VT60
Translation updates via Crowdin:
Danish (99%) (thanks, NCAA and GurliGebis!)
Finnish (99%) (thanks, Esko Gardner!)
French (100%) (thanks, Archaos!)
Italian (98%) (thanks, tiwi90!)
Korean (99%) (thanks, VenusGirl!)
Polish (100%) (thanks, Karol Szastok!)
Portuguese (99%) (thanks, mariopinto!)
Portuguese (Brazilian) (96%) (thanks, Mauro.A!)
Serbian (97%) (thanks, Slobodan Simić (Слободан Симић)!)
Spanish (100%) (thanks, Gerardo Ruiz, fafranco82, Eduardo Martin, and manuel fernandez!)
Turkish (100%) (thanks, Burak Yavuz!)
Ukrainian (17%) (thanks, Paul Furlet!)
Dependencies:
Bump checkstyle from 8.41 to 8.42
Bump com.sun.xml.bind-version from 3.0.0 to 3.0.1
Bump commons-lang3 from 3.11 to 3.12.0
Bump icu4j from 68.2 to 69.1
Bump JRE from 15 to 8u292
Bump maven-project-info-reports-plugin from 3.1.1 to 3.1.2
Bump MediaInfo from 20.09 to 21.03
Bump metadata-extractor from 2.15.0 to 2.16.0
Bump spotbugs-maven-plugin from 4.2.2 to 4.2.3
Bump twelvemonkeys-imageio-version from 3.6.4 to 3.7.0
10.4.1 - 2021-03-26
General:
Fixed broken transcoding for some users
Fixed file scanner freezing on some files with external subtitles
Fixed support for HEVC (H.265) via tsMuxeR
Renderers:
Fixed detection of some Samsung 4K (UHD) TVs (thanks, jkl16!)
Translation updates via Crowdin:
Dutch (100%) (thanks, johnnygood!)
German (100%) (thanks, pipin!)
Korean (99%) (thanks, VenusGirl!)
Norwegian (85%) (thanks, nhanssen88!)
Spanish (100%) (thanks, Julio Alberto García!)
Dependencies:
Bump spotbugs-maven-plugin from 4.2.0 to 4.2.2
10.4.0 - 2021-03-19
General:
Added renderer config setting DisableUmsResume for renderers with their own resume support, like Samsung TVs
Improved speed of transcoding to H.264 by up to 3x
Fixed MEncoder crashing when trying to downmix 7.1 AAC to 5.1 AC-3
Fixed renderer SupportedVideoBitDepths setting
Improved memory use and speed when resume is disabled
Fixed renderer resolution and bitrate limiting
Fixed broken transcoding for some users since the previous release
Renderers:
Improved support for VC1 codec on Sony Blu-ray UBP-X800M2 (thanks, thechrisgregory!)
Improved support for many filetypes on Kodi (thanks, thechrisgregory!)
Improved support for 12-bit video on VLC
Translation updates via Crowdin:
Estonian (24%) (thanks, Tanel K!)
Japanese (97%) (thanks, Katsuhide.M!)
Russian (91%) (thanks, Dmitry Lavrentev!)
Dependencies:
Bump git-commit-id-plugin from 4.0.3 to 4.0.4
Rolled back FFmpeg
10.3.0 - 2021-03-13
General:
Improved automatic maximum bandwidth setting and enabled it by default
Improved performance of browsing folders
Fixed being able to click the web interface button before it is browsable
Fixed matching and prettifying some TV episodes
Fixed binding to virtual network interfaces by default (can still be forced)
Renderers:
Added support for foobar2000 mobile (thanks, jps92!)
Improved support for Apple TV 4K
Fixed audio support on Bravia EX 500
Translation updates via Crowdin:
Arabic (96%) (thanks, خليل مراطلة !)
Chinese (Traditional) (thanks, Austin Zhang!)
Czech (100%)
Danish (100%) (thanks, NCAA!)
Finnish (100%) (thanks, Esko Gardner!)
Italian (96%) (thanks, Roberto crescia and tiwi90!)
Korean (99%) (thanks, VenusGirl!)
Polish (100%) (thanks, Karol Szastok!)
Portuguese (100%) (thanks, mariopinto!)
Russian (91%) (thanks, Artem4ik and Dmitry Lavrentev!)
Slovak (96%) (thanks, Lukáš Praznovec!)
Swedish (100%) (thanks, Erik Karlsson!)
Turkish (100%) (thanks, Burak Yavuz!)
Dependency updates:
Bump checkstyle from 8.40 to 8.41
Bump FFmpeg to latest
Bump thumbnailator from 0.4.13 to 0.4.14
Bump twelvemonkeys-imageio-version from 3.6.2 to 3.6.4
10.2.0 - 2021-02-28
General:
Added option to skip the first-run wizard (thanks, Ahmed Adan!)
Improved speed of API lookups by up to 3x
Improved support for MusicBrainz (thanks, ik666!)
Fixed support for some languages, e.g. Arabic
Fixed and secured some URLs in the code and docs
Renderers:
Added support for MediaPlayer by PeteManchester
Added support for nextCP/2
Fix auto loading for Sony UBP-X800
Translation updates via Crowdin:
Arabic (100%) (thanks, خليل مراطلة !)
Catalan (100%) (thanks, nikodeimos!)
French (100%) (thanks, Archaos!)
Hungarian (100%) (thanks, Viktor Kozma!)
Slovak (99%) (thanks, Dušan!)
Swedish (100%) (thanks, Erik Karlsson!)
Dependency updates:
Bump CheckStyle to 8.40
10.1.0 - 2021-02-16
General:
Added lastPlaybackPosition, lastPlaybackDate, and playbackCount to UPnP responses
Added bitsPerSample to UPnP responses (thanks, sf666!)
Fixed VLC transcoding bugs
Fixed SkipExtensions setting not supporting spaces (thanks, ik666!)
Fixed tsMuxeR on 64-bit Linux (including Docker) and macOS systems
Fixed MPlayer/MEncoder on macOS 10.15+
Translation updates via Crowdin:
Arabic (100%) (thanks,خليل مراطلة (meratkha)!)
Catalan (93%) (thanks, nikodeimos!)
Dutch (100%) (thanks, DJ_eMPe!)
Korean (99%) (thanks, VenusGirl!)
Serbian (Cyrillic) (100%) (thanks, Slobodan Simić (Слободан Симић) (slsimic)!)
Dependency updates:
Bump junit5.version from 5.7.0 to 5.7.1
Bump maven-checkstyle-plugin from 3.1.1 to 3.1.2
Bump MPlayer/MEncoder for macOS to SB67
10.0.1 - 2021-01-29
General:
Added some UPnP properties for TV episodes
Added renderer config option SendDLNAOrgFlags
Reduced network traffic
Fixed error when parsing episode filenames without series titles
Fixed not recognizing TV episodes past episode 99
Fixed finding metadata for some TV episodes, especially anime
Fixed not showing some metadata for movies and episodes on the web interface
Renderers:
Improved detection of LG OLED TVs
Improved support for Panasonic HZ1500
Improved support for Roku Ultra devices
Improved support for Sony Bravia XH Series TVs (thanks, SimpleUser!)
Translation updates via Crowdin:
Arabic (57%) (thanks, meratkha!)
German (100%) (thanks, pipin!)
Korean (99%) (thanks, VenusGirl!)
Norwegian (88%) (thanks, lexmerlin!)
Romanian (100%) (thanks, FlorinT!)
Dependency updates:
Bump assertj-core from 3.18.1 to 3.19.0
Bump JRE from 15.0.1 to 15.0.2
Bump oshi-core from 5.3.7 to 5.4.1
Bump twelvemonkeys-imageio-version from 3.6.1 to 3.6.2
10.0.0 - 2021-01-12 - Changes since 10.0.0-a1
General:
Retry media lookups that failed due to transient errors
Fixed automatic file watching
Renderers:
Improved support for Sony Bluray UBP-X800M2 (thanks, thechrisgregory!)
Fixed UPnP pushing via Panasonic TVs and Samsung Q9 TVs
Translation updates via Crowdin:
Czech (100%)
Danish (100%)
English (United Kingdom) (32%)
Finnish (100%)
Greek (91%)
French (100%)
Japanese (99%)
Polish (100%)
Portuguese (100%)
Portuguese (Brazilian) (100%)
Romanian (99%)
Serbian (99%)
Turkish (100%)
Dependency updates:
Bump spotbugs-maven-plugin from 4.1.4 to 4.2.0
10.0.0 - 2021-01-12 - Changes since 9.8.3
DLNA browsing:
When browsing a TV show in the Media Library, all videos across all seasons are visible.
There are two new folders within the Movies and TV Shows folders - Filter by Progress and Filter by Information.
Filter by Progress contains the Watched and Unwatched folders which used to sit within the Videos folder in the Media Library
Filter by Information lets you filter the videos by a new rich metadata set (actors, genres, country, director, genre, IMDb rating, release date).
Alongside that is a similar folder Filter by Information which lets you filter the videos by API metadata (actors, genres, etc.)
New folders Recently Added, Recently Played, In Progress and Most Played are in the Media Library
Web interface:
Added breadcrumbs at the top of each page
When in the TV Shows area of the Media Library, the TV shows themselves are shown as thumbnails, with covers from the API
When browsing a TV show, a movie, or a TV episode, any API metadata is displayed along with a large cover image, including actors, awards, classification, country, directors, genres, plot, ratings, year, and total seasons.
On those pages above, the colors on the pages are based on the cover image
Clicking on an individual actor, country, director, genre, or start year, takes you to a list of other media that matches that metadata
The last few items in the Recently Added, Recently Played, In Progress and Most Played folders are displayed on the front page
Each TV show and movie has an IMDb icon and direct link if one is found
Folder and media covers are shown
Fixed bugs with the Back button
Version has moved to the settings menu
Minor design updates
General:
API is enabled even without filename prettifying
Failed API lookups are debounced by 1 week to avoid network spam
Changed prettified season/episode number formatting from Series - 101 - Episode to Series S01E01 - Episode
Fixed some bugs with prettifying to support more files
Added support for audio playlist thumbnails (thanks, sf666!)
Playlist folders are correctly identified via UPnP (thanks, sf666!)
Fixed automatic file watching
Renderers:
Improved support for Sony Bluray UBP-X800M2 (thanks, thechrisgregory!)
Fixed UPnP pushing via Panasonic TVs and Samsung Q9 TVs
Translation updates via Crowdin:
Czech (100%)
Danish (100%)
English (United Kingdom) (32%)
Finnish (100%)
Greek (91%)
French (100%)
Japanese (99%)
Polish (100%)
Portuguese (100%)
Portuguese (Brazilian) (100%)
Romanian (99%)
Serbian (99%)
Turkish (100%)
Dependency updates:
Bump jQuery from 1.12.0 to 3.5.1
Bump spotbugs-maven-plugin from 4.1.4 to 4.2.0
Bump video.js from 7.2.3 to 7.10.1
10.0.0-a1 - 2020-12-22
DLNA browsing:
When browsing a TV show in the Media Library, all videos across all seasons are visible.
There are two new folders within the Movies and TV Shows folders - Filter by Progress and Filter by Information.
Filter by Progress contains the Watched and Unwatched folders which used to sit within the Videos folder in the Media Library
Filter by Information lets you filter the videos by a new rich metadata set (actors, genres, country, director, genre, IMDb rating, release date).
Alongside that is a similar folder Filter by Information which lets you filter the videos by API metadata (actors, genres, etc.)
New folders Recently Added, Recently Played, In Progress and Most Played are in the Media Library
Web interface:
Added breadcrumbs at the top of each page
When in the TV Shows area of the Media Library, the TV shows themselves are shown as thumbnails, with covers from the API
When browsing a TV show, a movie, or a TV episode, any API metadata is displayed along with a large cover image, including actors, awards, classification, country, directors, genres, plot, ratings, year, and total seasons.
On those pages above, the colors on the pages are based on the cover image
Clicking on an individual actor, country, director, genre, or start year, takes you to a list of other media that matches that metadata
The last few items in the Recently Added, Recently Played, In Progress and Most Played folders are displayed on the front page
Each TV show and movie has an IMDb icon and direct link if one is found
Folder and media covers are shown
Fixed bugs with the Back button
Version has moved to the settings menu
Minor design updates
General:
API is enabled even without filename prettifying
Failed API lookups are debounced by 1 week to avoid network spam
Changed prettified season/episode number formatting from Series - 101 - Episode to Series S01E01 - Episode
Fixed some bugs with prettifying to support more files
Added support for audio playlist thumbnails (thanks, sf666!)
Playlist folders are correctly identified via UPnP (thanks, sf666!)
Dependency updates:
Bump jQuery from 1.12.0 to 3.5.1
Bump video.js from 7.2.3 to 7.10.1
9.8.3 - 2020-12-22
General:
Added option to allow symlinked files to be treat as their real target file (thanks, SurfaceS!)
Fixed handling of web streams while transcoding with VLC (thanks, fu2x!)
Fixed support for subtitles with some user and renderer config combinations
Fixed renderer configuration change-detection not always working (thanks, fu2x!)
Fixed various errors on the web interface (thanks, SurfaceS!)
Fixed all code lint and enforce it in GitHub Actions
Fixed sending empty MusicBrainz requests
Fixed sending unnecessary network requests
Renderers:
Improved support for Sony Bravia XF series
Improved support for Yamaha A/V receivers
Improved detection of VLC for desktop
Translation updates via Crowdin:
Chinese (Traditional) (100%)
Czech (100%)
Dependencies:
Bump assertj-core from 3.18.0 to 3.18.1
Bump com.sun.xml.bind-version from 3.0.0-M5 to 3.0.0
Bump icu4j from 68.1 to 68.2
Bump maven-pmd-plugin from 3.13.0 to 3.14.0
Bump MediaInfo to 20.09
Bump oshi-core from 5.3.4 to 5.3.7
Bump saaj-impl from 1.5.2 to 2.0.0
Bump twelvemonkeys-imageio-version from 3.6 to 3.6.1
9.8.2 - 2020-11-08
General:
Improved filename prettifying for XviD and x265 videos
Improved support for WebP images
Fixed memory leaks
Fixed duration of resume files via DLNA
Fixed incorrect resolution metadata if the renderer uses KeepAspectRatioTranscoding
Fixed not removing old JRE folders on Windows install
Updated links in documentation (thanks, xaitax!)
Fixed date on zip logs filename (thanks, Midhun R Nair!)
Save logs to desktop by default (thanks, dotslash21!)
Renderers:
Improved support for Blu-ray and DVD subtitles on VLC for desktop
Improved detection of Microsoft Edge
Updated logo for Microsoft Edge
Translation updates via Crowdin:
Chinese (Simplified) (100%)
Chinese (Traditional) (100%)
Dutch (92%)
Italian (100%)
Romanian (100%)
Serbian (Cyrillic) (86%)
Dependencies:
Bump AdoptOpenJDK from 14.0.2 to 15.0.1+9
Bump assertj-core from 3.17.1 to 3.18.0
Bump commons-io from 2.7 to 2.8.0
Bump commons-lang3 from 3.7 to 3.9
Bump commons-text from 1.3 to 1.9
Bump git-commit-id-plugin from 4.0.2 to 4.0.3
Bump icu4j from 67.1 to 68.1
Bump junit5.version from 5.6.2 to 5.7.0
Bump junrar from 7.3.0 to 7.4.0
Bump maven-project-info-reports-plugin from 3.1.0 to 3.1.1
Bump metadata-extractor from 2.14.0 to 2.15.0
Bump oshi-core from 5.2.5 to 5.3.4
Bump spotbugs-maven-plugin from 4.0.4 to 4.1.4
9.8.1 - 2020-09-05
General:
Improved speed of renderers and UMS recognizing each other
Reduced network and CPU loads associated with renderer discovery
Improved loading of external libraries
Fixed older macOS auto-updating to UMS for newer macOS
Fixed quickrun scripts for developers
Fixed not removing the Windows service firewall rule on uninstall
Translation updates via Crowdin:
English (United Kingdom) (33%)
German (98%)
Slovak (98%)
Dependencies:
Bump assertj-core from 3.16.1 to 3.17.1
Bump git-commit-id-plugin from 4.0.1 to 4.0.2
Bump junrar from 6.0.1 to 7.3.0
Bump maven-resources-plugin from 3.1.0 to 3.2.0
Bump MediaInfo from 18.12 to 20.08
Bump oshi-core from 5.2.2 to 5.2.5
9.8.0 - 2020-07-26
General:
Started releasing two macOS builds which fixed MEncoder not working on 10.15 (Catalina)
Improved support for ASF, MKV, MP4, MPEG-PS, MPEG-TS, and WMV videos by adding and improving accuracy of DLNA.ORG_PN values (thanks for testing, carlosvsilva!)
Reduced CPU use and improved video/audio quality by muxing some supported streams with FFmpeg instead of transcoding
Other DLNA compatibility fixes, including sending correct framerates, color depths, and audio channel counts
Improved load time on web interface with many files by 10x or more (thanks, outnos!)
Fixed forced network interface not always persisting
Fixed Safari login prompts with HTTPS on web interface (thanks, outnos!)
Fixed not displaying the Minimize on startup option in GUI on macOS
Fixed Windows installer not adding a Windows Firewall exception for the service
Renderers:
Improved support for Philips PUS 6500 Series TVs
Improved support for AVI files on Panasonic Viera VT60 TVs
Improved support for Samsung Q7 Series TVs
Fixed detection of Panasonic Viera DX Series TVs
Fixed detection of Samsung Q9 TVs
Fixed detection of Samsung Soundbar MS750
Fixed false-detection of XBMC
Translation updates via Crowdin:
Danish (100%)
Korean (34%)
Dependencies:
Bump AdoptOpenJDK to 14.0.2
Bump git-commit-id-plugin from 4.0.0 to 4.0.1
Bump jna-version from 5.5.0 to 5.6.0
Bump junrar from 4.0.0 to 6.0.1
Bump MPlayer/MEncoder for macOS to SB66
Bump oshi-core from 5.2.1 to 5.2.2
Bump rome from 1.14.1 to 1.15.0
Bump twelvemonkeys-imageio-version from 3.5 to 3.6
9.7.2 - 2020-07-11
General:
Fixed HTTPS and authentication in the web interface (thanks, outnos!)
Fixed Windows service
Fixed auto updater getting stuck on program startup
Fixed high CPU usage for some users
Fixed fontconfig warning
Renderers:
Added support for Sony STR-DN1080 AV Receiver (thanks, GurliGebis!)
Fixed detection of newer versions of VLC on Apple TV (thanks, ajkessel!)
Translation updates via Crowdin:
Bulgarian (100%)
French (100%)
Hungarian (100%)
9.7.1 - 2020-07-05
General:
Implemented the minimize on startup option on macOS
Added dates to the debug log zip (thanks, midhun1998!)
Added profiling logging for the database
Windows installer stops the existing service if it is running
Windows installer starts the service if the checkbox is enabled at the end and the service is installed, instead of starting the GUI
Windows installer does not try to start the GUI on computer startup if the service is installed
GUI warns about using it as a GUI when it is already installed as a service
The service uses our bundled Java instead of the system one
Changed the default AC-3 transcoding bitrate to 448 for better transcoding compatibility
Translation updates via Crowdin:
Czech (100%)
Danish (99%)
English (United Kingdom) (25%)
Finnish (100%)
Polish (100%)
Portuguese (100%)
Portuguese (Brazilian) (100%)
Russian (93%)
Slovak (98%)
Spanish (99%)
Turkish (100%)
Ukrainian (17%)
Dependency updates:
Bump maven-site-plugin from 3.9.0 to 3.9.1
Bump oshi-core from 5.1.2 to 5.2.0
Bump rome from 1.13.1 to 1.14.1
Bump spotbugs-maven-plugin from 4.0.0 to 4.0.4
9.7.0 - 2020-06-21
General:
Improved browsing and scanning speed and stability
Optimized database storage space
Fixed aspect ratio comparisons
Fixed the "Check for updates" button not finding updates
Fixed support for Eclipse development
Fixed freezes while browsing and scanning a folder at the same time
Renderers:
Improved support for high bit-depth videos on Samsung and Sony TVs, and VLC
Fixed transcoding support in some cases on DirecTV, Panasonic, Samsung, Sony and Vizio TVs, and Android phones
Translation updates via Crowdin:
Chinese Traditional (100%)
French (100%)
Hungarian (100%)
Polish (100%)
Spanish (100%)
Dependency updates:
Bump surefire-version from 3.0.0-M4 to 3.0.0-M5
9.6.2 - 2020-06-15
General:
Fixed broken browsing on some renderers
Fixed broken transcoding on renderers with KeepAspectRatio enabled
Improved support for web interface on iOS (thanks, Jeff Puls!)
Renderers:
Updated support for external subtitles on VLC for Desktop (thanks, JuanPZ!)
Translation updates via Crowdin:
Russian (94%)
Dependency updates:
netty from 4.1.50 to 3.10.6
9.6.1 - 2020-06-14
General:
Fixed Linux startup error
9.6.0 - 2020-06-12
General:
Improved compatibility of files containing both supported and unsupported streams
Improved support for MP4 and OGA/OGG audio on the web interface
Fixed automatic updating on Windows and macOS
Fixed renderer control windows not refocusing on Windows when renderer image was clicked
Fixed support for external subtitles when using the se syntax in renderer config
Fixed not transcoding embedded subtitles when we should
Renderers:
Updated support for external subtitles on VLC for iOS (thanks, JuanPZ!)
Updated support for external subtitles on Panasonic VT60
Translation updates via Crowdin:
English (British) (5%)
Macedonian (0%)
Dependency updates:
commons-io from 2.6 to 2.7
exec-maven-plugin from 1.6.0 to 3.0.0
JRE from 8 to 14.0.1
maven-project-info-reports-plugin from 3.0.0 to 3.1.0
metadata-extractor from 2.13.0 to 2.14.0
netty from 3.10.6 to 4.1.50
oshi-core from 5.1.0 to 5.1.2
rome from 1.12.2 to 1.13.1
9.5.0 - 2020-05-24
General:
Significant improvements to scanning and browsing speed and resource use
Fixed episode titles in the Media Library
Fixed aspect ratio validation
Added more automatic regression tests for file format detection
Renderers:
Added support for Vimu Player on Amazon Fire TV Stick (thanks, nouse and Nadahar!)
Translation updates via Crowdin:
Dutch (92%)
Turkish (100%)
Dependency updates:
7zipj from 9.20-2.00 to 16.02-2.01
assertj-core from 3.16.0 to 3.16.1
junrar from 1.0.1 to 4.0.0
oshi-core from 5.0.1 to 5.1.0
9.4.3 - 2020-05-09
General:
Added support for streaming and transcoding from AV1 video codec
Added quickrun commands to aid rapid development
Memory use improvements on macOS
Transcoding compatibility fixes
Fixed support for transcoding videos with no audio
Renderers:
Improved support for LG OLED TVs
Improved support for Panasonic VT60 TVs
Improved support for Sony AG-series TVs
Improved support for Sony X-series TVs
Translation updates via Crowdin:
Serbian (87%)
Turkish (100%)
Dependencies:
Updated assertj to 3.16.0
Updated doxia-module-docbook-simple to 1.9.1
Updated FFmpeg on macOS to 20200504 (5767a2e) to support more media formats
Updated git-commit-id-plugin to 4.0.0
Updated h2database to 1.4.199
Updated icu4j to 67.1
Updated jaxb-impl to 2.3.3
Updated JMustache to 1.15
Updated JNA to 5.5.0
Updated junit5 to 5.6.2
Updated maven-antrun-plugin to 3.0.0
Updated maven-assembly-plugin to 3.3.0
Updated maven-checkstyle-plugin to 3.1.0
Updated maven-compiler-plugin to 3.8.1
Updated maven-pmd-plugin to 3.13.0
Updated maven-project-info-reports-plugin to 3.0.0
Updated maven-site-plugin to 3.9.0
Updated metadata-extractor to 2.13.0
Updated Oshi to 5.0.1
Updated plexus-utils to 3.3.0
Updated rome to 1.12.2
Updated saaj-impl to 1.5.2
Updated spotbugs-maven-plugin to 4.0.0
9.4.2 - 2020-04-21
General:
Improved detection of M4V and MP4 files
Improved automated regression tests for media format detection
Improved detection of incomplete binaries
Fixed Linux failing to use bundled FFmpeg (thanks, snicket2100!)
Fixed support for custom server names with special characters (thanks, snicket2100!)
Renderers:
Improved support for H.264 videos on VLC for iOS
Translation updates via Crowdin:
Bulgarian (96%)
Finnish (100%)
French (100%)
Hungarian (84%)
Romanian (100%)
Slovak (100%)
Dependencies:
Updated Chromecast api-v2 to 0.11.3
Fixed broken FFmpeg binary on Linux x86
Updated Google Gson to 2.8.6
Updated Google Guava to 29.0
Updated h2database to 1.4.200
Updated Java Runtime Environment to 1.8.251
9.4.1 - 2020-04-08
Translation updates via Crowdin:
Bulgarian (93%)
Czech (100%)
Danish (99%)
Finnish (99%)
French (99%)
Hebrew (21%)
Italian (100%)
Polish (99%)
Portuguese (99%)
Portuguese (Brazilian) (99%)
Spanish (100%)
Swedish (100%)
Ukrainian (23%)
Dependencies:
Updated FFmpeg on macOS to fix a startup bug
Updated JUnit5 to 5.6.1
Updated Maven Javadoc plugin to 3.2.0
Updated Maven Assembly plugin to 3.2.0
9.4.0 - 2020-04-05
General:
Started releasing 5 Linux builds: x86, x86_64, ARM, ARMhf and ARM64
Linux builds all default to using the system FFmpeg if it exists
Improved transcoding speed
Fixed broken cache loading in some situations
Fixed transcoding bugs
Fixed subtitles bugs
Improved logging
Renderers:
Added support for Denon AVR-4311CI (thanks, sc3141!)
Added support for Denon AVR-X4200W (thanks, sc3141!)
Translation updates via Crowdin:
Danish (99%)
Greek (92%)
Hebrew (19%)
Portuguese (99%)
Swedish (99%)
Dependencies:
Fixed incorrect MediaInfo version on Windows, now it is 18.12
Updated FFmpeg to 3362330 (20200328) on all operating systems
Updated Twelvemonkeys ImageIO to 3.5
9.3.1 - 2020-03-22
General:
Updated build documentation in BUILD.md (thanks, luca-vercelli!)
Renderers:
Fixed too much transcoding on Samsung 9 series TVs
Fixed WAV support on PS3
Translation updates via Crowdin:
Arabic (36%)
Serbian (87%)
Slovenian (60%)
9.3.0 - 2020-02-23
General:
Added support for devices that require MRR authorization, like Denon AVR devices (thanks, sc3141)
Added support for symlinks in the folder selector
Fixed subtitles being transcoded unnecessarily
Fixed compiling on new OpenJDK versions
Improved support for audio files
Improved parsing of uncommon files
Fixed attempting to add empty files
Added some regression testing for our use of FFmpeg and MediaInfo
Dependencies:
Updated JRE to 1.8.241
9.2.0 - 2020-01-13
General:
Added more precise support for subtitles in renderer profiles. See the si and se options in DefaultRenderer.conf.
Fixed uninstallation of Windows service (thanks, pponce!)
Use secure connections for program updates (thanks, xaitax!)
Fixed startup on Linux using ARM processors (thanks, felsen2011!)
Logging improvements
Renderers:
Added support Sony BRAVIA AG series TVs (thanks, rubin55!)
Improved support for 2019 Samsung TVs, including 8K streaming
Improved support for Panasonic GX800B
Translation updates via Crowdin:
Chinese Traditional (100%)
Croatian (44%)
Danish (100%)
English (United Kingdom) (3%)
Hungarian (71%)
Korean (33%)
Slovak (100%)
Slovenian (60%)
Swedish (97%)
9.1.0 - 2019-11-01
General:
Added automatic updating to Linux and macOS (it already existed on Windows)
Added the UMS version to the web interface
Added a different icon in macOS dark mode (thanks, bcbomb47!)
Fixed pixelation of icon on some Linux distributions
Renderers:
Fixed support for external subtitles on some Samsung TVs (thanks, pipin!)
Translation updates via Crowdin:
Bulgarian (93%)
Croatian (29%)
Danish (99%)
Dutch (93%)
Finnish (100%)
Italian (100%)
Korean (33%)
Persian (35%)
Turkish (100%)
Dependencies:
Updated JRE to 1.8.231
9.0.1 - 2019-10-06
General:
Fixed not using standalone Java on Linux
Increased default maximum memory on Linux to match other OS (1280MB)
Improved speed of some database lookups
Improved speed of OpenSubtitles validation
Logging improvements
Switched from findbugs to spotbugs
Fixed broken tooltips
Fixed startup link not uninstalling on Windows
Fixed error when prettifying some filenames
Renderers:
Improved support for Mirascreen (thanks, Dušan Kazik)
Improved support for Sony BluRay BDP-S3700
Translation updates via Crowdin:
Bulgarian (91%)
Chinese Traditional (100%)
Croatian (28%)
Estonian (22%)
Hungarian (70%)
Russian (94%)
Slovak (88%)
Spanish (100%)
Swedish (93%)
Dependencies:
Updated ImageIO to 3.4.2
9.0.0 - Changes since 9.0.0-b2 - 2019-09-06
General:
Adds UMS to Windows Firewall exceptions on install
Better cleanup of install directory on install/uninstall on Windows
Fixed transcoding when using our Docker image (thanks, tcely!)
Fixed track numbers not prepending in Media Library
Fixed startup crash when invalid characters are in the OS Path
Fixed adding unsupported files to the database
Renderers:
Improved support for TrueHD videos on Samsung UHD TVs
Translation updates via Crowdin:
Chinese Traditional (94%)
Croatian (20%)
Czech (100%)
Danish (89%)
Finnish (32%)
Japanese (100%)
Polish (100%)
Russian (93%)