-
Notifications
You must be signed in to change notification settings - Fork 12
/
NEWS
6784 lines (5628 loc) · 211 KB
/
NEWS
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
0.44.1 (stable)
===============
Server:
- Fix progress reporting for ImportResource
MediaExport:
- Fix a critical when unable to detect mime type
All contributors to this release:
- Jens Georg <mail@jensge.org>
0.44.0 (stable)
===============
All:
- Translation updates
All contributors to this release:
- Sabri Ünal <yakushabb@gmail.com>
- Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Added/updated translations:
- tr.po, courtesy of Sabri Ünal
- zh_TW.po, courtesy of Cheng-Chia Tseng
0.43.0 (unstable)
=================
Minimum Soup version required is now 3.2
Tracker:
- Plugin removed, please use Tracker3
LMS:
- Plugin removed
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Piotr Drąg <piotrdrag@gmail.com>
- Scrambled 777 <weblate.scrambled777@simplelogin.com>
Added/updated translations:
- hi.po, courtesy of Scrambled777
0.42.6 (stable)
===============
All:
- Translation updates
MediaExport:
- Do not ignore dangling symlinks forever
External Plug-in:
- Fix issue with recent Vala version
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/212
- https://gitlab.gnome.org/GNOME/rygel/issues/232
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Aefgh Threenine <aefgh39622@gmail.com>
- Rachida SACI <rgebbid@gmail.com>
- Vasil Pupkin <3abac@3a.by>
- Sabri Ünal <libreajans@gmail.com>
- Ekaterine Papava <papava.e@gtu.ge>
Added/updated translations:
- be.po, courtesy of Yuras Shumovich
- ka.po, courtesy of Ekaterine Papava
- th.po, courtesy of Akom Chotiphantawanon
- tr.po, courtesy of Sabri Ünal
0.42.5 (stable)
===============
All:
- Translation updates
Core
- Fix issue with devices that cannot handle DLNA 1.51
Server
- Fix issue with Raumfeld devices not supporting OGG
- Actually validate derivedFrom operator
MediaExport
- Fix critical after a change in glib
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/104
- https://gitlab.gnome.org/GNOME/rygel/issues/220
- https://gitlab.gnome.org/GNOME/rygel/issues/231
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Ekaterine Papava <papava.e@gtu.ge>
- Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
- Andre Klapper <a9016009@gmx.de>
- Sabri Ünal <libreajans@gmail.com>
- Daniel Șerbănescu <daniel@serbanescu.dk>
Added/updated translations:
- eo.po, courtesy of Kristjan SCHMIDT
- ka.po, courtesy of Ekaterine Papava
- ro.po, courtesy of Florentina Mușat
- tr.po, courtesy of Sabri Ünal
0.42.4 (stable)
===============
- Translation updates
- Fix building with meson 1.2.0
0.42.3 (stable)
===============
Server
- Fix endless loop in XML namespace lookup
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/228
All contributors to this release:
- Jens Georg <mail@jensge.org>
0.42.2 (stable)
===============
Server
- Fix issue with urls having "." in them
- Export disc numbers
Tracker3
- Export disc numbers
MediaExport
- Export disc numbers
All
- Translation updates
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/225
- https://gitlab.gnome.org/GNOME/rygel/issues/223
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Sabri Ünal <libreajans@gmail.com>
Added/updated translations:
- tr.po, courtesy of Sabri Ünal
0.42.1 (stable)
===============
- Fix incomplete API/ABI switch to 2.8
- Document the necessity of X.init_threads()
- Fix a type mismatch for the collation helper
- Re-enable the since checker
- Remove deprecated calls to GSSDP/GUPnP
- Many translation updates
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/119
- https://gitlab.gnome.org/GNOME/rygel/issues/222
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Nart Tlisha <daniel.abzakh@gmail.com>
- Ekaterine Papava <papava.e@gtu.ge>
- Rico Tzschichholz <ricotz@ubuntu.com>
- Nathan Follens <nfollens@gnome.org>
- Efstathios Iosifidis <eiosifidis@gnome.org>
- Dušan Kazik <prescott66@gmail.com>
- Sabri Ünal <libreajans@gmail.com>
Added/updated translations:
- ab.po, courtesy of Нанба Наала
- el.po, courtesy of Efstathios Iosifidis
- ka.po, courtesy of Ekaterine Papava
- nl.po, courtesy of Nathan Follens
- sk.po, courtesy of Dušan Kazik
- tr.po, courtesy of Emin Tufan Çetin
0.42.0 (stable)
===============
- Remove obsolete .desktop enries
- Translation updates
All contributors to this release:
- Piotr Drąg <piotrdrag@gmail.com>
- Guillaume Bernard <associations@guillaume-bernard.fr>
- Alexander Shopov <ash@kambanaria.org>
- Jake Dane <3689-jakedane@users.noreply.gitlab.gnome.org>
- Jürgen Benvenuti <gastornis@posteo.org>
- Matej Urbančič <mateju@src.gnome.org>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Changwoo Ryu <cwryu@debian.org>
- Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>
- Alan Mortensen <alanmortensen.am@gmail.com>
- Balázs Úr <balazs@urbalazs.hu>
- Jordi Mas <jmas@softcatala.org>
- Leônidas Araújo <leorusvellt@hotmail.com>
- Marek Černocký <marek@manet.cz>
- Nart Tlisha <daniel.abzakh@gmail.com>
- Fran Dieguez <frandieguez@gnome.org>
- Goran Vidović <trebelnik2@gmail.com>
Added/updated translations:
- ab.po, courtesy of Нанба Наала
- bg.po, courtesy of Alexander Shopov
- ca.po, courtesy of Jordi Mas i Hernàndez
- cs.po, courtesy of Marek Černocký
- da.po, courtesy of Alan Mortensen
- de.po, courtesy of Jürgen Benvenuti
- fr.po, courtesy of Guillaume Bernard
- gl.po, courtesy of Fran Dieguez
- hr.po, courtesy of gogo
- hu.po, courtesy of Balázs Úr
- ko.po, courtesy of Changwoo Ryu
- lv.po, courtesy of Rūdolfs Mazurs
- pl.po, courtesy of Piotr Drąg
- pt_BR.po, courtesy of Leônidas Araújo
- sl.po, courtesy of Matej Urbančič
- sv.po, courtesy of Anders Jonsson
0.41.2 (development)
====================
- Port to GLib's UUID function
- Temporarily disable the Since check during build
- Translation updates
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Asier Sarasua Garmendia <asiersarasua@ni.eus>
- Марко Костић <marko.m.kostic@gmail.com>
- Nart Tlisha <daniel.abzakh@gmail.com>
- Bartłomiej Piotrowski <b@bpiotrowski.pl>
- Emin Tufan Çetin <etcetin@gmail.com>
- Zurab Kargareteli <zuraxt@gmail.com>
- Kukuh Syafaat <kukuhsyafaat@gnome.org>
Added/updated translations:
- ab.po, courtesy of Нанба Наала
- eu.po, courtesy of Asier Sarasua Garmendia
- id.po, courtesy of Kukuh Syafaat
- ka.po, courtesy of Temuri Doghonadze
- sr.po, courtesy of Марко М. Костић
- tr.po, courtesy of Emin Tufan Çetin
0.41.1 (development)
====================
- Fix deprecations in meson files
- Adapt to VAPI changes in GUPnP
- Translation updates
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Daniel Mustieles <daniel.mustieles@gmail.com>
- Aurimas Černius <aurisc4@gmail.com>
- Aleksandr Melman <Alexmelman88@gmail.com>
Added/updated translations:
- es.po, courtesy of Daniel Mustieles García
- lt.po, courtesy of Aurimas Černius
- ru.po, courtesy of Aleksandr Melman
0.41.0 (development)
====================
Overall:
- Use GUPnP 1.6 API
- Use Libsoup 3 API
- API bump to 2.8
- ABI reset
Confirmation UI:
- Do not install ui file if preferences are not built
Documentation:
- Fix gtk-doc generation and installation
- Add option "man_pages" to disable man pages
Config:
- Fix Tracker3 configuration
Presets:
- Add presets for more encoders
- Fix mp4 muxing
- Support VA-API MPEG2 encoding
- Support VA-API H.264 encoding
Rygel:
- Port to GApplication instead of using our own single instance
mechanism
Core:
- Make plugin loader more predictable
Server:
- Add albumArtURI to VideoItem for devices that use that
for the thumbnail
Renderer:
- Fix a critical if there is no mime_type
MediaExport:
- Strip XML extensions (for DIDL_S playlists)
- Support ".nomedia" to skip indexing folders
- If database upgrade failed, do not activate plugin
- Treat parallel Tracker3 module similar to original Tracker
plugin
- Drop deperecated ValueArray
- Fix disabling meta-data extraction
LMS:
- Drop deprecated ValueArray
Tracker (old):
- Disable by default
Tracker3:
- Fix Video graph
- Fix deadlock on start
- Do not kill whole rygel if service is not activatable
GStreamer Media Engine:
- Adapt to deprecations
- Fix pipeline blocking issue when transcoding from video-only
files
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/151
- https://gitlab.gnome.org/GNOME/rygel/issues/160
- https://gitlab.gnome.org/GNOME/rygel/issues/166
- https://gitlab.gnome.org/GNOME/rygel/issues/173
- https://gitlab.gnome.org/GNOME/rygel/issues/183
- https://gitlab.gnome.org/GNOME/rygel/issues/187
- https://gitlab.gnome.org/GNOME/rygel/issues/190
- https://gitlab.gnome.org/GNOME/rygel/issues/192
- https://gitlab.gnome.org/GNOME/rygel/issues/192
- https://gitlab.gnome.org/GNOME/rygel/issues/196
- https://gitlab.gnome.org/GNOME/rygel/issues/208
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Pawan Chitrakar <chautari@gmail.com>
- Quentin PAGÈS <pages_quentin@hotmail.com>
- Piotr Drąg <piotrdrag@gmail.com>
- Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
- Yaron Shahrabani <sh.yaron@gmail.com>
- Fabio Tomat <f.t.public@gmail.com>
- Yosef Or Boczko <yoseforb@gnome.org>
- Danial Behzadi <dani.behzi@ubuntu.com>
- Boyuan Yang <073plan@gmail.com>
- Hugo Carvalho <hugokarvalho@hotmail.com>
- Yuri Chornoivan <yurchor@ukr.net>
- Alexander Shopov <ash@kambanaria.org>
- Źmicier Turok <nashtlumach@gmail.com>
- Jiri Grönroos <jiri.gronroos@iki.fi>
- Alexey Rubtsov <rushills@gmail.com>
- Charles Monzat <charles.monzat@free.fr>
- Fran Dieguez <frandieguez@gnome.org>
- Rico Tzschichholz <ricotz@ubuntu.com>
- Jordi Mas <jmas@softcatala.org>
- Kjartan Maraas <kmaraas@gnome.org>
- Cheng-Chia Tseng <pswo10680@gmail.com>
- Juliano Camargo <julianosc@protonmail.com>
Added/updated translations:
- bg.po, courtesy of Alexander Shopov
- ca.po, courtesy of Carles Ferrando Garcia
- fa.po, courtesy of Danial Behzadi
- fi.po, courtesy of Jiri Grönroos
- fr.po, courtesy of Guillaume Bernard
- fur.po, courtesy of Fabio Tomat
- gl.po, courtesy of Fran Dieguez
- he.po, courtesy of Yosef Or Boczko
- nb.po, courtesy of Kjartan Maraas
- ne.po, courtesy of Pawan Chitrakar
- pt.po, courtesy of Hugo Carvalho
- ru.po, courtesy of Alexey Rubtsov
- uk.po, courtesy of Yuri Chornoivan
- zh_CN.po, courtesy of lumingzh
- zh_TW.po, courtesy of Cheng-Chia Tseng
0.40.4 (stable)
===============
- Do not install UI file if preferences are not built
Renderer:
- Fix critical if mime_type is missing
Tracker3:
- Do not exit if service is missing
MediaExport:
- Fix running without media indexing
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/160
- https://gitlab.gnome.org/GNOME/rygel/issues/196
- https://gitlab.gnome.org/GNOME/rygel/issues/208
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Pawan Chitrakar <chautari@gmail.com>
- Aleksandr Melman <Alexmelman88@gmail.com>
Added/updated translations:
- ne.po, courtesy of Pawan Chitrakar
- ru.po, courtesy of Aleksandr Melman
0.40.3
======
Tracker3:
- Fix deadlock on start-up
- Use the correct graph name for Videos
All contributors to this release:
- Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
- Jens Georg <mail@jensge.org>
- Quentin PAGÈS <pages_quentin@hotmail.com>
0.40.2
======
- Disable tracker2 in default build options
- Updated translations
- Fixed potential race condition in meson build
All contributors to this release:
- Rico Tzschichholz <ricotz@ubuntu.com>
- Quentin PAGÈS <pages_quentin@hotmail.com>
- Yaron Shahrabani <sh.yaron@gmail.com>
- Pawan Chitrakar <chautari@gmail.com>
- Charles Monzat <charles.monzat@free.fr>
- Fran Dieguez <frandieguez@gnome.org>
Added/updated translations:
- fr.po, courtesy of Guillaume Bernard
- gl.po, courtesy of Fran Dieguez
- he.po, courtesy of Yaron Shahrabani
- ne.po, courtesy of Pawan Chitrakar
0.40.1
======
Server:
- Set albumArtUri on Videos to provide thumbnails for the PS4
MediaExport:
- Strip xml suffix when generating titles from filenames
Documentation:
- Fix generation and install location
Tracker3:
- Add section to the default configuration file
Translations:
- Various updates
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/151
- https://gitlab.gnome.org/GNOME/rygel/issues/183
- https://gitlab.gnome.org/GNOME/rygel/issues/190
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Kjartan Maraas <kmaraas@gnome.org>
- Cheng-Chia Tseng <pswo10680@gmail.com>
- Juliano Camargo <julianosc@protonmail.com>
Added/updated translations:
- nb.po, courtesy of Kjartan Maraas
- pt.po, courtesy of José Vieira
- zh_TW.po, courtesy of Cheng-Chia Tseng
0.40.0
======
- Translation updates
All contributors to this release:
- sicklylife <translation@sicklylife.jp>
- Baurzhan Muftakhidinov <baurthefirst@gmail.com>
- Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>
- Milo Casagrande <milo@milo.name>
- Zander Brown <zbrown@gnome.org>
- Mario Blättermann <mario.blaettermann@gmail.com>
- Ask Hjorth Larsen <asklarsen@gmail.com>
- Balázs Úr <balazs@urbalazs.hu>
- Марко Костић <marko.m.kostic@gmail.com>
- Dušan Kazik <prescott66@gmail.com>
- Changwoo Ryu <cwryu@debian.org>
- Danial Behzadi <dani.behzi@ubuntu.com>
- Boyuan Yang <073plan@gmail.com>
- Nathan Follens <nfollens@gnome.org>
- Marek Černocký <marek@manet.cz>
- Asier Sarasua Garmendia <asiersarasua@ni.eus>
- Matej Urbančič <mateju@svn.gnome.org>
- Thibault Martin <mail@thibaultmart.in>
- Goran Vidović <trebelnik2@gmail.com>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Rafael Fontenelle <rafaelff@gnome.org>
- Kukuh Syafaat <kukuhsyafaat@gnome.org>
- Piotr Drąg <piotrdrag@gmail.com>
- Fran Dieguez <frandieguez@gnome.org>
- Emin Tufan Çetin <etcetin@gmail.com>
Added/updated translations:
- cs.po, courtesy of Marek Černocký
- da.po, courtesy of Alan Mortensen
- de.po, courtesy of Mario Blättermann
- en_GB.po, courtesy of Bruce Cowan
- eu.po, courtesy of Asier Sarasua Garmendia
- fa.po, courtesy of Danial Behzadi
- fr.po, courtesy of Thibault Martin
- gl.po, courtesy of Fran Dieguez
- hr.po, courtesy of gogo
- hu.po, courtesy of Balázs Úr
- id.po, courtesy of Kukuh Syafaat
- it.po, courtesy of Milo Casagrande
- ja.po, courtesy of sicklylife
- kk.po, courtesy of Baurzhan Muftakhidinov
- ko.po, courtesy of Changwoo Ryu
- lv.po, courtesy of Rūdolfs Mazurs
- nl.po, courtesy of Nathan Follens
- pl.po, courtesy of Piotr Drąg
- pt_BR.po, courtesy of Rafael Fontenelle
- sk.po, courtesy of Dušan Kazik
- sl.po, courtesy of Matej Urbančič
- sr.po, courtesy of Марко М. Костић
- sv.po, courtesy of Anders Jonsson
- tr.po, courtesy of Emin Tufan Çetin
- zh_CN.po, courtesy of Mingcong Bai
0.39.2
======
Core:
- Allow loading plugin that conflicts with a disabled plugin
Server:
- Check for subtitles only on "local" files
Rygel:
- Support IPv6 if supported by GUPnP context manager
Tracker:
- Add missing default in case
Tracker3:
- Make it an optional dependency
- Add mising default in case
- Update for API break in 2.99
GstLaunch:
- Fix critical about missing media engine
- Fix missing updated() call
- Update resolution of examples
MediaExport:
- Fix missing title in virtual containers
Examples:
- Change device name for fullscreen renderer example
- Bind "Space" to Play/Pause toggle for fullscreen renderer
- Drop init system examples that are not systemd
- Fix a typo in mx-info
- Fix removing files from ignorelist in mx-info
Tests:
- Remove some compiler warnings
- Add test for loading conflicting but disabled modules
Documentation:
- Remove outdated Ubuntu docs
- Minor updates for man pages
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/159
- https://gitlab.gnome.org/GNOME/rygel/issues/167
- https://gitlab.gnome.org/GNOME/rygel/issues/169
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Yuri Chornoivan <yurchor@ukr.net>
- Sam Thursfield <sam@afuera.me.uk>
- Daniel Mustieles <daniel.mustieles@gmail.com>
- Jordi Mas <jmas@softcatala.org>
- Efstathios Iosifidis <eiosifidis@gnome.org>
- Florentina Mușat <florentina.musat.28@gmail.com>
- Aurimas Černius <aurisc4@gmail.com>
- Piotr Drąg <piotrdrag@gmail.com>
- Fabio Tomat <f.t.public@gmail.com>
- Daniel Șerbănescu <daniel@serbanescu.dk>
Added/updated translations:
- ca.po, courtesy of Carles Ferrando Garcia
- el.po, courtesy of Efstathios Iosifidis
- es.po, courtesy of Daniel Mustieles
- fur.po, courtesy of Fabio Tomat
- lt.po, courtesy of Aurimas Černius
- ro.po, courtesy of Florentina Mușat
- uk.po, courtesy of Yuri Chornoivan
0.39.1
======
Tests:
- Add missing test sample files
All contributors to this release:
- Jens Georg <mail@jensge.org>
0.39.0
======
Dependency changes:
- New dependency: GStreamer Editing Services
- New dependency: Tracker 3
All:
- Remove deprecated GTimeVal
- Fix "potential null access" warnings with newer Vala
Autotools Build:
- Removed
Core:
- Actually use pretty hostname
- Drop libtool support from plugin loader
- Add support for "Conflicts:" keyword in plugin files
Server:
- Provide subtitles as transcoded resource
- Hack subtitle mime-types for LG devices
- Fix a missing nullable argument
Tracker:
- Fix date-time check for New container
- Remove obsolete variables
- Fix query for nmm:albumTitle (now nie:title)
Tracker3:
- Add initial support for new Tracker API 3.0
MediaExport:
- Drop the termin "Blacklist"
GStreamer Renderer:
- Port to playbin3
- Fix GIR namespace errors during vala compile
GStreamer Media Engine:
- Restore transmuxing capabilities
- Fix time-based seeking on transcoded resources
Examples:
- Remove deprecated functions
Data:
- Fix desktop file
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/129
- https://gitlab.gnome.org/GNOME/rygel/issues/155
- https://gitlab.gnome.org/GNOME/rygel/issues/157
- https://gitlab.gnome.org/GNOME/rygel/issues/157
- https://gitlab.gnome.org/GNOME/rygel/issues/161
- https://gitlab.gnome.org/GNOME/rygel/issues/164
- https://gitlab.gnome.org/GNOME/rygel/issues/165
- https://gitlab.gnome.org/GNOME/rygel/issues/84
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Daniel Mustieles <daniel.mustieles@gmail.com>
- sicklylife <translation@sicklylife.jp>
- Yuri Chornoivan <yurchor@ukr.net>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Matej Urbančič <mateju@svn.gnome.org>
- Cheng-Chia Tseng <pswo10680@gmail.com>
- Danial Behzadi <dani.behzi@ubuntu.com>
- Florentina Mușat <florentina.musat.28@gmail.com>
- Daniel Șerbănescu <daniel@serbanescu.dk>
- Michael Catanzaro <mcatanzaro@gnome.org>
- Daniel Korostil <ted.korostiled@gmail.com>
- Piotr Drąg <piotrdrag@gmail.com>
- Umarzuki Bin Mochlis Moktar <umarzuki@gmail.com>
- Jordi Mas <jmas@softcatala.org>
- Philip Withnall <philip@tecnocode.co.uk>
Added/updated translations:
- ca.po, courtesy of Carles Ferrando Garcia
- es.po, courtesy of Daniel Mustieles
- fa.po, courtesy of Danial Behzadi
- ja.po, courtesy of sicklylife
- ms.po, courtesy of abuyop
- pl.po, courtesy of Piotr Drąg
- ro.po, courtesy of Florentina Mușat
- sl.po, courtesy of Matej Urbančič
- sv.po, courtesy of Anders Jonsson
- uk.po, courtesy of Yuri Chornoivan
- zh_TW.po, courtesy of Cheng-Chia Tseng
0.38.2
======
Meson Build:
- Fix installation dir for presets
- Fix installation dir for icons
- Add option to disable introspection completely
- Add glib as a dependency to get --target-glib passed on
- Fix version string in pkg-config
- Generate libtool link flags into pkg-config files for
backward-compatibility
- Do not drop date from manpage
All:
- Clean up code that caused unnecessary C code to be generated
Core:
- Fix a potential fd leak
Media Export:
- Drop NOENT XML parsing option
- Drop RECOVER XML parsing option
GStreamer Media Engine:
- Link against -lm where necessary
Simple Media Engine:
- Obey lseek return value
- Simplify code by using IOError.from_errno
Documentation:
- Fix building the references using wong GUPnP version
Examples:
- Fix unblacklisting in mx-info
- Add option to show blacklist in mx-info
0.38.1
======
- Several build fixes for recent vala
All contributors to this release:
- Rico Tzschichholz <ricotz@ubuntu.com>
- Jens Georg <mail@jensge.org>
- Charles Monzat <charles.monzat@free.fr>
Added/updated translations:
- fr.po, courtesy of Charles Monzat
0.38.0
======
Examples:
- Fix crash if logo is missing in full-screen renderer
- Fix missing GResource for full-screen renderer
Renderer:
- Fix a critical if mime type is not present
All contributors to this release:
- Jens Georg <mail@jensge.org>
0.37.2
======
Build:
- Bump GLib dependency to 2.44
- Drop Valac requirement to 0.36
Server:
- Fix @ADDRESS@ replacement for proxy or transcoded urls
- Use a proper check for localhost
- Add some hacks for LG devices
MediaExport:
- Document blacklisting behaviour
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/122
- https://gitlab.gnome.org/GNOME/rygel/issues/123
- https://gitlab.gnome.org/GNOME/rygel/issues/89
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Pieter Schalk Schoeman <pieter@sonbesie.co.za>
- Yuras Shumovich <shumovichy@gmail.com>
- Andre Klapper <a9016009@gmx.de>
Added/updated translations:
- af.po, courtesy of F Wolff
- be.po, courtesy of Uladzimir Manulenka
0.37.1
======
All:
- Add meson build files
- Port to GSSDP and GUPnP 1.2 API
- Preliminary IPv6 support
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Carmen Bianca BAKKER <carmen@carmenbianca.eu>
Added/updated translations
- eo, courtesy of Kristjan SCHMIDT
0.37.0
======
All:
- Update URLs for gitlab
- Fix compiler warnings in C code
- Documentation updates
- Fix several deprecated functions
Renderer:
- Fix type argument mismatch of return value
GStreamer Media Engine:
- Imaplement JPEG transcoding
GStreamer Renderer:
- Make sinks configurable
- Add support for audio/aac mime type
Server:
- Move engine intialization into server plugin
MediaExport:
- Remove dead code
Updated/added dependencies:
- Vala version requirement bumped to 0.40
- GTK+ requirement bumped to 3.22
- GStreamer requirement bumped to 1.12
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/rygel/issues/120
- https://gitlab.gnome.org/GNOME/rygel/issues/7
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Rico Tzschichholz <ricotz@ubuntu.com>
- Kjartan Maraas <kmaraas@gnome.org>
Added/updated translations
- nb, courtesy of Kjartan Maraas
0.36.2
======
- Translation updates
Build:
- Allow building examples stuff without gstreamer-video
- Bump GSSDP requirement
All:
- Fix property default values for newer vala
- Fix position of asynchronous out parameters with newer vala
- Fix warnings regarding errors on DBus methods with newer vala
Core:
- Fix using localized directory names for config directory
GStreamer Renderer:
- Add support for "video/avi"
Media Export:
- Don't scrub file name when extract-metadata is false
Bugs fixed in this release:
- Close https://gitlab.gnome.org/GNOME/rygel/issues/118
- https://bugzilla.gnome.org/show_bug.cgi?id=792358
- Close https://gitlab.gnome.org/GNOME/rygel/issues/114
- Close https://gitlab.gnome.org/GNOME/rygel/issues/119
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Rico Tzschichholz <ricotz@ubuntu.com>
- Piotr Drąg <piotrdrag@gmail.com>
- Waldo Luís Ribeiro <waldoribeiro@sapo.pt>
- Mingye Wang <arthur200216@gmail.com>
- Mingcong Bai <jeffbai@aosc.xyz>
- gogo <trebelnik2@gmail.com>
- Fabrice Fontaine <fontaine.fabrice@gmail.com>
- Changwoo Ryu <cwryu@debian.org>
Added/updated translations
- en_GB, courtesy of Waldo Luís Ribeiro
- es, courtesy of Daniel Mustieles
- hr, courtesy of gogo
- zh_CN, courtesy of Mingcong Bai
0.36.1
======
- Translation updates
Examples
- Fix building examples without Wayland
- Fix mx-info to use Python 3
Tracker
- Fix SPARQL syntax error
- Fail configure if tracker-sparql is not found at all
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=791921
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Piotr Drąg <piotrdrag@gmail.com>
- Kjartan Maraas <kmaraas@gnome.org>
- Xavi Ivars <xavi.ivars@gmail.com>
- Ting-Wei Lan <lantw@src.gnome.org>
- ST Alfas <st.alfas5@gmail.com>
- Pawan Chitrakar <chautari@gmail.com>
- Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
- hanniedu <hannie@ubuntu-nl.org>
- Cédric Valmary <cvalmary@yahoo.fr>
- Alexander Shopov <ash@kambanaria.org>
Added/updated translations
- bg, courtesy of Alexander Shopov
- ca, courtesy of Carles Ferrando Garcia
- ca@valencia, courtesy of Xavi Ivars
- eo, courtesy of Kristjan SCHMIDT
- ml, courtesy of Razee Marikar
- nb, courtesy of Kjartan Maraas
- ne, courtesy of Pawan Chitrakar
- nl, courtesy of Justin van Steijn
- oc, courtesy of Cédric Valmary (totenoc.eu)
0.36.0
======
- Translation updates
All contributors to this release:
- Piotr Drąg <piotrdrag@gmail.com>
- Pawan Chitrakar <chautari@gmail.com>
- Jordi Mas <jmas@softcatala.org>
- Ask Hjorth Larsen <asklarsen@gmail.com>
Added/updated translations
- ca, courtesy of Carles Ferrando Garcia
- da, courtesy of Ask Hjorth Larsen
- ne, courtesy of Pawan Chitrakar
0.35.0
======
- Translation updates
- Fix missing COPYING.logo in tarball
- Fix XML generation rule for out-of-tree builds from git
- Fix Build issue for dist tarballs with Yocto 2.2
- Fix GStreamer dependency for media engine
Examples
- Add logo to fullscreen renderer
Server:
- Fix guessing user agent from SSDP/UPnP communication
Renderer:
- Remove NOT_IMPLEMENTED for SetNextAVTransport
MediaExport:
- Log if setting nice value for extractor fails
Tracker:
- Search for 2.0 API
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=778829
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Piotr Drąg <piotrdrag@gmail.com>
- gogo <trebelnik2@gmail.com>
- Tom Tryfonidis <tomtryf@gnome.org>
- Matteo Settenvini <matteo@member.fsf.org>
- Furkan Ahmet Kara <furkanahmetkara.fk@gmail.com>
- Carlos Garnacho <carlosg@gnome.org>
Added/updated translations
- el, courtesy of Tom Tryfonidis
- hr, courtesy of gogo
- oc, courtesy of Cédric Valmary (totenoc.eu)
- tr, courtesy of Emin Tufan Çetin
0.34.0