forked from GNOME/rygel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
4613 lines (3867 loc) · 151 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.25.3
======
Server:
- Some clean-up.
- Use framerate in PlaySpeed response.
- Style fixes.
Tracker:
- Fix for new resource handling.
Renderer:
- Set "Connection: close" in HEAD request to server.
- Fix GetProtocolInfo output.
- Correctly escape state variables.
- Fix an issue with dangling this pointer of AVTransport in lambdas.
- Fix an issue with dangling service pointer in ChangeLog.
- Fix AV1-MR:1-AVT:1-6.1.
- Return an error on incorrect playback transitions
GStreamer Renderer:
- Add GObject introspection.
UI:
- Fix ambiguity with recent Vala compiler and GLib.ListStore.
All contributors to this release:
- Jens Georg <[email protected]>
- Milan Plzik <[email protected]>
- Simon Mikuda <[email protected]>
- Мирослав Николић <[email protected]>
- Tom Tryfonidis <[email protected]>
- Sebastian Rasmussen <[email protected]>
- Samir Ribic <[email protected]>
- Rafael Ferreira <[email protected]>
- Paweł Żołnowski <[email protected]>
- Muhammet Kara <[email protected]>
- Matej Urbančič <[email protected]>
- Marek Černocký <[email protected]>
- Kevron Rees <[email protected]>
- Fran Dieguez <[email protected]>
- Daniel Korostil <[email protected]>
- Chao-Hsiung Liao <[email protected]>
- Changwoo Ryu <[email protected]>
- Balázs Úr <[email protected]>
- Aurimas Černius <[email protected]>
- Ask Hjorth Larsen <[email protected]>
- Alexandre Franke <[email protected]>
- Alain Lojewski <[email protected]>
Added/updated translations
- bs, courtesy of Samir Ribić
- cs, courtesy of Marek Černocký
- da, courtesy of Ask Hjorth Larsen
- el, courtesy of Tom Tryfonidis
- fr, courtesy of Alain Lojewski
- gl, courtesy of Fran Dieguez
- hu, courtesy of Balázs Úr
- ko, courtesy of Changwoo Ryu
- lt, courtesy of Aurimas Černius
- pl, courtesy of Paweł Żołnowski
- pt_BR, courtesy of Rafael Ferreira
- sl, courtesy of Matej Urbančič
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
- sv, courtesy of Sebastian Rasmussen
- tr, courtesy of Muhammet Kara
- uk, courtesy of Daniel Korostil
- zh_TW, courtesy of Chao-Hsiung Liao
0.25.2.1
========
- Fix dist tarball
- Include new translations
Bugs fixed in this release:
All contributors to this release:
- Yuri Myasoedov <[email protected]>
- Jens Georg <[email protected]>
- Dušan Kazik <[email protected]>
- Daniel Mustieles <[email protected]>
Added/updated translations
- es, courtesy of Daniel Mustieles
- ru, courtesy of Yuri Myasoedov
- sk, courtesy of Dušan Kazik
0.25.2
======
- Merge changes from Cablelab's CVP-2 implementation.
- Avoid circular reference that made context recreation fail after
suspend/resume cycle.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=720218
- https://bugzilla.gnome.org/show_bug.cgi?id=736365
- https://bugzilla.gnome.org/show_bug.cgi?id=740221
All contributors to this release:
- Jens Georg <[email protected]>
- Marek Černocký <[email protected]>
- Piotr Drąg <[email protected]>
- Kjartan Maraas <[email protected]>
- Dušan Kazik <[email protected]>
- Daniel Mustieles <[email protected]>
- Craig Pratt <[email protected]>
- Bernd Homuth <[email protected]>
- Balázs Úr <[email protected]>
Added/updated translations
- cs, courtesy of Marek Černocký
- de, courtesy of Bernd Homuth
- es, courtesy of Daniel Mustieles
- hu, courtesy of Balázs Úr
- nb, courtesy of Kjartan Maraas
- sk, courtesy of Dušan Kazik
0.25.1
======
- Use different log domains for components.
Core:
- Fix typo.
Server:
- Small refactoring regarding remote/local resources.
Rygel:
- Improve compatibility with recent Vala compiler.
Tracker:
- Fix compile issues due to missing exception.
MediaExport:
- Fix issue where files removed on dist were not removed from index.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=740903
- https://bugzilla.gnome.org/show_bug.cgi?id=741913
- https://bugzilla.gnome.org/show_bug.cgi?id=741953
All contributors to this release:
- Jens Georg <[email protected]>
- Rafael Ferreira <[email protected]>
- Muhammet Kara <[email protected]>
- Marek Černocký <[email protected]>
- Marc-André Lureau <[email protected]>
- Inaki Larranaga Murgoitio <[email protected]>
- Balázs Úr <[email protected]>
- Pawan Chitrakar <[email protected]>
- hmt <[email protected]>
- Fran Dieguez <[email protected]>
- Dušan Kazik <[email protected]>
- Daniel Mustieles <[email protected]>
- Bernd Homuth <[email protected]>
Added/updated translations
- cs, courtesy of Marek Černocký
- de, courtesy of Bernd Homuth
- es, courtesy of Daniel Mustieles
- eu, courtesy of Iñaki Larrañaga Murgoitio
- gl, courtesy of Fran Dieguez
- hu, courtesy of Balázs Úr
- ne, courtesy of Pawan Chitrakar
- pt_BR, courtesy of Rafael Ferreira
- sk, courtesy of Dušan Kazik
- tr, courtesy of Muhammet Kara
0.25.0
======
A new unstable release of Rygel!
- (Presumably) Fix issue with generated version if downstream calls autoreconf
on the dist tarball.
- Add Remote UI Server implementation.
- Add EnergyManagement service implementation.
- Bump ABI/API.
Renderer:
- Make it possible to implement different play modes.
Server:
- Several style fixes and code refactorings.
- Move the code for Samsung subtitles into Samsung device hack.
MediaExport:
- Style and documentation fixes.
GStreamer media engine:
- Fix warning about non-existent source id.
Simple media engine:
- Fix locking.
Tests:
- Reenable locking-affected engine tests.
Dependencies:
- Bump libmediaart version to 0.7.0.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=737513
- https://bugzilla.gnome.org/show_bug.cgi?id=737522
- https://bugzilla.gnome.org/show_bug.cgi?id=737867
All contributors to this release:
- Jens Georg <[email protected]>
- Richard Röjfors <[email protected]>
- Parthiban Balasubramanian <[email protected]>
- Kjartan Maraas <[email protected]>
- Daniel Mustieles <[email protected]>
- Yosef Or Boczko <[email protected]>
- Scott Deboy <[email protected]>
- rygelgit <[email protected]>
- Rūdolfs Mazurs <[email protected]>
- Piotr Drąg <[email protected]>
- Jussi Kukkonen <[email protected]>
- Dimitris Spingos <[email protected]>
- Claudio Arseni <[email protected]>
Added/updated translations
- el, courtesy of Dimitris Spingos (Δημήτρης Σπίγγος)
- es, courtesy of Daniel Mustieles
- he, courtesy of Yosef Or Boczko
- it, courtesy of Milo Casagrande
- lv, courtesy of Rūdolfs Mazurs
- nb, courtesy of Kjartan Maraas
0.24.2
======
A maintenance release of Rygel!
Server:
- Fix sidecar album art extraction.
Media-Export:
- Work-around an issue with GStreamer bindings that caused truncated embedded
album art.
All contributors to this release:
- Jens Georg <[email protected]>
0.24.1
======
A maintenance release of Rygel!
Server:
- Fix UpdateObject call on MusicItem.
External:
- Fix plugin activation.
MPRIS:
- Fix stream position indication for clients that do not event "Position".
- Fix plugin activation.
- Force update of properties on plugin creation.
GObject-Introspection:
- Fix renderer example and require a recent version of g-i.
- Add license for examples.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=737867
All contributors to this release:
- Jens Georg <[email protected]>
- Мирослав Николић <[email protected]>
- Yosef Or Boczko <[email protected]>
- Rūdolfs Mazurs <[email protected]>
- Richard Röjfors <[email protected]>
- Milo Casagrande <[email protected]>
- Kjartan Maraas <[email protected]>
Added/updated translations
- he, courtesy of Yosef Or Boczko
- it, courtesy of Milo Casagrande
- lv, courtesy of Rūdolfs Mazurs
- nb, courtesy of Kjartan Maraas
- sr, courtesy of Мирослав Николић
- sr@latin, courtesy of Miroslav Nikolić
0.24.0
======
A new stable release of Rygel!
- Make it possible to build without GObject introspection.
Server:
- Fix a critical about timeout sources.
MediaExport:
- Fix typo in plugin file.
- Don't delete a file if the file monitor signalled the file was deleted.
Renderer:
- Fix criticals on start-up.
GStreamer media engine:
- Fix possible race in accessing a critical section.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=734303
- https://bugzilla.gnome.org/show_bug.cgi?id=734358
- https://bugzilla.gnome.org/show_bug.cgi?id=736403
All contributors to this release:
- Jens Georg <[email protected]>
- Debarshi Ray <[email protected]>
- Yuri Myasoedov <[email protected]>
- Marek Černocký <[email protected]>
- Kjartan Maraas <[email protected]>
- Gil Forcada <[email protected]>
- Fran Diéguez <[email protected]>
- Dušan Kazik <[email protected]>
- Changwoo Ryu <[email protected]>
- Carles Ferrando <[email protected]>
- Andika Triwidada <[email protected]>
- Tong Hui <[email protected]>
- Tom Tryfonidis <[email protected]>
- Sebastian Rasmussen <[email protected]>
- Rafael Ferreira <[email protected]>
- Paweł Żołnowski <[email protected]>
- Nilamdyuti Goswami <[email protected]>
- Enrico Nicoletto <[email protected]>
- Daniel Mustieles <[email protected]>
- Daniel Korostil <[email protected]>
- Christian Kirbach <[email protected]>
- Chao-Hsiung Liao <[email protected]>
- Balázs Úr <[email protected]>
- Aurimas Černius <[email protected]>
- Ask H. Larsen <[email protected]>
- Alexandre Franke <[email protected]>
Added/updated translations
- as, courtesy of Nilamdyuti Goswami
- ca, courtesy of Gil Forcada
- ca@valencia, courtesy of Gil Forcada
- cs, courtesy of Marek Černocký
- da, courtesy of Ask Hjorth Larsen
- de, courtesy of Christian Kirbach
- el, courtesy of Tom Tryfonidis
- es, courtesy of Daniel Mustieles
- fr, courtesy of naybnet
- gl, courtesy of Fran Dieguez
- hu, courtesy of Balázs Úr
- id, courtesy of Andika Triwidada
- ko, courtesy of Changwoo Ryu
- lt, courtesy of Aurimas Černius
- nb, courtesy of Kjartan Maraas
- pl, courtesy of Paweł Żołnowski
- pt_BR, courtesy of Rafael Ferreira
- ru, courtesy of Yuri Myasoedov
- sk, courtesy of Dušan Kazik
- sv, courtesy of Sebastian Rasmussen
- uk, courtesy of Daniel Korostil
- zh_CN, courtesy of Tong Hui
- zh_HK, courtesy of Chao-Hsiung Liao
- zh_TW, courtesy of Chao-Hsiung Liao
0.23.3
======
- Some build fixes.
- Add GObject introspection support and some examples.
Core:
- Fix building with recent vala versions.
Server:
- Fix a crash when ImportResource() is cancelled.
- Simplify error handling in ImportResource().
- Use new libmediaart API.
Renderer:
- Make it possible to re-implement PlayerController.
Changes in dependencies:
- Libmediaart >= 0.5.0
Known issues:
- It's currently not possible to implement a renderer using g-i. That is
either some issue in Vala or a bug in what we do.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=732057
- https://bugzilla.gnome.org/show_bug.cgi?id=734302
All contributors to this release:
- Jens Georg <[email protected]>
- Aurimas Černius <[email protected]>
- Tom Tryfonidis <[email protected]>
- Rico Tzschichholz <[email protected]>
- Richard Röjfors <[email protected]>
- Piotr Drąg <[email protected]>
- Olav Vitters <[email protected]>
- ngoswami <[email protected]>
- MarMav <[email protected]>
- Kjartan Maraas <[email protected]>
- Daniel Mustieles <[email protected]>
Added/updated translations
- as, courtesy of Nilamdyuti Goswami
- el, courtesy of Tom Tryfonidis
- es, courtesy of Daniel Mustieles
- lt, courtesy of Aurimas Černius
- nb, courtesy of Kjartan Maraas
0.23.2
======
- Hide Object.uris property. Its semantics were always unclear.
Renderer:
- Work-around failing HEAD requests, next incarnation.
- Support M3U playlists.
- Check instance id in Next() and Prev() SOAP calls.
- Sent byte position in RelCount/AbsCount instead of int.MAX.
GStreamer renderer:
- Remove "TRANSITIONING" state in Stop() and Pause() SOAP calls.
- Don't try to parse empty meta-data for duration guessing.
Server:
- Make sure tags don't contain white-spaces in UpdateObject() call.
- Improve CSV splitting in UpdateObject().
- Validate date in UpdateObject().
Basic Management:
- Fix NSLookup repitition.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=732935
All contributors to this release:
- Jens Georg <[email protected]>
- Enrico Nicoletto <[email protected]>
- Daniel Mustieles <[email protected]>
- rygelgit <[email protected]>
- Fran Diéguez <[email protected]>
Added/updated translations
- es, courtesy of Daniel Mustieles
- gl, courtesy of Fran Dieguez
- pt_BR, courtesy of Enrico Nicoletto
0.23.1.1
========
- Launch rygel directly from desktop file.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=731858
All contributors to this release:
- Yuri Myasoedov <[email protected]>
- Bastien Nocera <[email protected]>
Added/updated translations
- ru, courtesy of Yuri Myasoedov
0.23.1
======
A new unstable release of Rygel!
- Remove -Wl,-z,defs.
- Fix several criticals related to time-out sources.
Rygel:
- Change single instance behavior; don't replace running instance by default,
add new "-r/--replace" option to go back to the old behavior.
- Several manpage fixes.
Server:
- Pass on all resources on object creation.
- Pass more meta-data on object creation.
- Improve error handling in reference creation.
- Set HTTP version to 1.1 as late as possible.
- Port media art lookup to libmediaart.
- Add some documentation for AudioItem.
- Move some properties to base classes.
- Fix a potential null pointer dereference.
Renderer:
- Report NextAVTransport* values in GetMediaInfo().
- Properly remove the playlist timeout.
GStreamer Renderer:
- Don't exit if there is no playbin element.
- Deprecate Renderer.wrap.
- Use cubic volume.
- Fix duration and position.
- Use duration from meta-data until playbin does provide it.
- Rely on libsoup to determine the proxy.
- Use dlna+http virtual protocol if the dlnasrc element is available.
Preferences:
- Use Gtk.Window instead of Gtk.Dialog.
External:
- Let the peer decide on the sort order.
MediaExport:
- Code style fixes.
- Use libmediaart for media art extraction.
- Handle external media art such as folder.jpg etc.
- Prevent a strange warning on media upload.
- Add a configuration option to disable/set the time to wait before
extracting meta-data after a file modification event has happened.
- Properly handle album art for m4a fies.
Attention!
==========
- API and ABI version have been bumped to 2.4 to prepare for the upcoming API
changes.
- New dependency: libmediaart >= 0.4.0.
- Due to a memory leak fix, the recommended Vala version is 0.24.0-108-g0edb05c
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=689632
- https://bugzilla.gnome.org/show_bug.cgi?id=694455
- https://bugzilla.gnome.org/show_bug.cgi?id=702555
- https://bugzilla.gnome.org/show_bug.cgi?id=709723
- https://bugzilla.gnome.org/show_bug.cgi?id=710387
- https://bugzilla.gnome.org/show_bug.cgi?id=710443
- https://bugzilla.gnome.org/show_bug.cgi?id=720672
- https://bugzilla.gnome.org/show_bug.cgi?id=721817
- https://bugzilla.gnome.org/show_bug.cgi?id=721824
- https://bugzilla.gnome.org/show_bug.cgi?id=723374
- https://bugzilla.gnome.org/show_bug.cgi?id=726982
- https://bugzilla.gnome.org/show_bug.cgi?id=727424
- https://bugzilla.gnome.org/show_bug.cgi?id=727479
- https://bugzilla.gnome.org/show_bug.cgi?id=729090
- https://bugzilla.gnome.org/show_bug.cgi?id=731348
- https://bugzilla.gnome.org/show_bug.cgi?id=731859
All contributors to this release:
- Jens Georg <[email protected]>
- Craig Pratt <[email protected]>
- Richard Röjfors <[email protected]>
- Reiner Merk <[email protected]>
- Piotr Drąg <[email protected]>
- Marek Černocký <[email protected]>
- Jussi Kukkonen <[email protected]>
- Enrico Nicoletto <[email protected]>
- Daniel Mustieles <[email protected]>
- Alexander Kanavin <[email protected]>
Added/updated translations
- cs, courtesy of Marek Černocký
- es, courtesy of Daniel Mustieles
- pt_BR, courtesy of Enrico Nicoletto
0.22.2
======
a new stable release of rygel!
- fix dbus plugins.
- bump libsoup requirement to 2.44.
tracker:
- actually use nmm:dlnamime property.
bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=730913
all contributors to this release:
- jens georg <[email protected]>
- wolfgang stöggl <[email protected]>
- tom tryfonidis <[email protected]>
- dirgita <[email protected]>
- carles ferrando <[email protected]>
added/updated translations
- ca@valencia, courtesy of pau iranzo
- de, courtesy of wolfgang stoeggl
- el, courtesy of eva fotopoulou
- id, courtesy of dirgita
0.22.1
======
a new stable release of rygel!
core:
- don't spam debug log.
renderer:
- fix uri handling for playlists.
bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=726776
all contributors to this release:
- jens georg <[email protected]>
- peter mráz <[email protected]>
- dušan kazik <[email protected]>
- christian kirbach <[email protected]>
added/updated translations
- de, courtesy of christian kirbach
- sk, courtesy of peter mráz
0.22.0
======
a new stable release of rygel!
all contributors to this release:
- inaki larranaga murgoitio <[email protected]>
- kenneth nielsen <[email protected]>
- мирослав николић <[email protected]>
- pau iranzo <[email protected]>
- jiro matsuzawa <[email protected]>
- duarte loreto <[email protected]>
- ask h. larsen <[email protected]>
added/updated translations
- ca, courtesy of pau iranzo
- da, courtesy of ask hjorth larsen
- eu, courtesy of iñaki larrañaga murgoitio
- ja, courtesy of jiro matsuzawa
- pt, courtesy of duarte loreto
- sr, courtesy of мирослав николић
0.21.6
======
- More cp -d replacement.
GStreamer Renderer:
- Fix two criticals on start-up.
All contributors to this release:
- Jens Georg <[email protected]>
- Yuri Myasoedov <[email protected]>
- Wylmer Wang <[email protected]>
- Ville-Pekka Vainio <[email protected]>
- Rūdolfs Mazurs <[email protected]>
- Paweł Żołnowski <[email protected]>
- naybnet <[email protected]>
- Daniel Korostil <[email protected]>
- Chao-Hsiung Liao <[email protected]>
- Andika Triwidada <[email protected]>
Added/updated translations
- fi, courtesy of Jiri Grönroos
- fr, courtesy of naybnet
- id, courtesy of Andika Triwidada
- lv, courtesy of Rūdolfs Mazurs
- pl, courtesy of Paweł Żołnowski
- ru, courtesy of Yuri Myasoedov
- uk, courtesy of Daniel Korostil
- zh_CN, courtesy of Wylmer Wang
- zh_HK, courtesy of Chao-Hsiung Liao
- zh_TW, courtesy of Chao-Hsiung Liao
0.21.5
======
- Some gtk-doc fixes.
- Remove obsolete configure function from autogen.sh.
- Fix "make distcheck".
- Replace non-portable cp -d.
- Fix GstLaunch examples in rygel.conf for GStreamer 1.0.
- Add support for /etc/pretty-hostname.
- Support building with tracker-1.0 API.
Core:
- Remove Freedesktop.* DBus interfaces.
- Move the two copies of Rygel.DLNAProfile to Core.
GStreamer Renderer:
- Deprecate .wrap constructor.
- Don't leak and return a value in the .wrap constructor on error.
MediaExport:
- Be a bit more helpful and tell which folder we failed to enumerate.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=722021
- https://bugzilla.gnome.org/show_bug.cgi?id=722527
- https://bugzilla.gnome.org/show_bug.cgi?id=724138
- https://bugzilla.gnome.org/show_bug.cgi?id=724215
- https://bugzilla.gnome.org/show_bug.cgi?id=724820
All contributors to this release:
- Jens Georg <[email protected]>
- Kjartan Maraas <[email protected]>
- Fran Diéguez <[email protected]>
- Rafael Ferreira <[email protected]>
- Nilamdyuti Goswami <[email protected]>
- Milo Casagrande <[email protected]>
- Matej Urbančič <[email protected]>
- Marek Černocký <[email protected]>
- Giovanni Campagna <[email protected]>
- Debarshi Ray <[email protected]>
- Daniel Mustieles <[email protected]>
- Daniel Korostil <[email protected]>
- Changwoo Ryu <[email protected]>
- Bjørn Lie <[email protected]>
- Balázs Úr <[email protected]>
- Aurimas Černius <[email protected]>
Added/updated translations
- as, courtesy of Nilamdyuti Goswami
- cs, courtesy of Marek Černocký
- es, courtesy of Daniel Mustieles
- gl, courtesy of Fran Dieguez
- hu, courtesy of Balázs Úr
- it, courtesy of Milo Casagrande
- ko, courtesy of Changwoo Ryu
- lt, courtesy of Aurimas Černius
- nb, courtesy of Kjartan Maraas
- pt_BR, courtesy of Rafael Ferreira
- sl, courtesy of Matej Urbančič
- uk, courtesy of Daniel Korostil
0.21.4
======
Core:
- Link against libm for "round" function.
All contributors to this release:
- Matej Urbančič <[email protected]>
- Marek Černocký <[email protected]>
- Kjartan Maraas <[email protected]>
- Jens Georg <[email protected]>
- Chao-Hsiung Liao <[email protected]>
Added/updated translations
- cs, courtesy of Marek Černocký
- nb, courtesy of Kjartan Maraas
- sl, courtesy of Matej Urbančič
- zh_HK, courtesy of Chao-Hsiung Liao
- zh_TW, courtesy of Chao-Hsiung Liao
0.21.3
======
A new unstable release of Rygel.
Changes compared to 0.21.3:
- Update FSF address.
Server:
- Use correct depth for PNG thumbnails.
- Add hacks for LG SmartShare TVs.
MediaExport:
- Work around an SQL error when browsing Artists.
GStreamer Renderer:
- Query source element for duration and position.
- Remove BUFFERING/CLOCK_LOST handling.
External:
- Don't corrupt container names.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=720671
- https://bugzilla.gnome.org/show_bug.cgi?id=720836
- https://bugzilla.gnome.org/show_bug.cgi?id=721270
- https://bugzilla.gnome.org/show_bug.cgi?id=721575
- https://bugzilla.gnome.org/show_bug.cgi?id=721824
All contributors to this release:
- Jens Georg <[email protected]>
- Rafael Ferreira <[email protected]>
- Milo Casagrande <[email protected]>
- Victor Ibragimov <[email protected]>
- Tong Hui <[email protected]>
- siva <[email protected]>
- Matej Urbančič <[email protected]>
- Marek Černocký <[email protected]>
- Dimitris Spingos <[email protected]>
- Daniel Mustieles <[email protected]>
- Aurimas Černius <[email protected]>
Added/updated translations
- cs, courtesy of Marek Černocký
- el, courtesy of Dimitris Spingos (Δημήτρης Σπίγγος)
- es, courtesy of Daniel Mustieles
- it, courtesy of Milo Casagrande
- lt, courtesy of Aurimas Černius
- pt_BR, courtesy of Rafael Ferreira
- sl, courtesy of Matej Urbančič
- tg, courtesy of Victor Ibragimov
- zh_CN, courtesy of Tong Hui
0.21.2
======
A new unstable release of Rygel.
Changes compared to 0.21.1:
ATTENTION: API and ABI bump!
Tracker:
- Add build support for 0.18.
Server:
- Allow server plugins to override search capabilities.
- Add more Samsung hacks.
- Add seeking hacks for some UPnP music receivers.
Renderer:
- Return protocol info of current media in GetCurrentConnectionInfo call.
- Implement SetNextAVTransportURI.
- Treat REL_TIME/ABS_TIME the same again. This is less broken than the
original fix.
- Use correct PlaybackStorageMedium values.
BasicManagement:
- Remove unused state variable.
MPRIS:
- Set default playspeed to prevent a critical.
External:
- Fix wrong parameter order in AlbumArtFactory.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=706986
- https://bugzilla.gnome.org/show_bug.cgi?id=709165
- https://bugzilla.gnome.org/show_bug.cgi?id=712181
- https://bugzilla.gnome.org/show_bug.cgi?id=712660
- https://bugzilla.gnome.org/show_bug.cgi?id=715089
- https://bugzilla.gnome.org/show_bug.cgi?id=719721
- https://bugzilla.gnome.org/show_bug.cgi?id=719998
- https://bugzilla.gnome.org/show_bug.cgi?id=720669
- https://bugzilla.gnome.org/show_bug.cgi?id=720837
All contributors to this release:
- Jussi Kukkonen <[email protected]>
- Kristjan SCHMIDT <[email protected]>
- Jens Georg <[email protected]>
- Parthiban Balasubramanian <[email protected]>
- Milo Casagrande <[email protected]>
- Fran Diéguez <[email protected]>
- Daniel Mustieles <[email protected]>
- 甘 露 <[email protected]>
- Reiner Merk <[email protected]>
- Marek Černocký <[email protected]>
- John Obaterspok <[email protected]>
- Dominique Leuenberger <[email protected]>
Added/updated translations
- cs, courtesy of Marek Černocký
- eo, courtesy of Kristjan SCHMIDT
- es, courtesy of Daniel Mustieles
- gl, courtesy of Fran Dieguez
- it, courtesy of Milo Casagrande
- zh_CN, courtesy of 甘露(Gan Lu)
0.21.1
======
A new unstable release of Rygel.
Changes compared to 0.21.0:
- Fix vala check to only compile, not link to avoid issues with
gst-uninstalled.
- Some documentation fixes.
- Port to new libsoup session API.
Basic Management:
- Add initial support.
Server:
- Support serving subtitles using the PV method. Fixes external subtitles for
a variety of devices such as WD TV Live or Panasonic TVs.
Renderer:
- Accept missing mime-types in playlist check.
- Fix CurrentTransportActions to include Next and Prev.
- Support milliseconds in time-stamps.
- Drop allowed value list from TransportPlaySpeed.
- Unify playspeed parsing.
- Implement DLNA bye seeking.
- Fix and implement PlaybackStorageMedium variable.
MPRIS:
- Fix for new renderer API.
GStreamer renderer:
- Implement DLNA byte seeking.
- Enable more playspeeds.
Changes in dependencies:
- libsoup >= 2.42.0
- GUPnP-AV >= 0.12.4
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=661228
- https://bugzilla.gnome.org/show_bug.cgi?id=707058
- https://bugzilla.gnome.org/show_bug.cgi?id=707059
- https://bugzilla.gnome.org/show_bug.cgi?id=707541
- https://bugzilla.gnome.org/show_bug.cgi?id=707831
- https://bugzilla.gnome.org/show_bug.cgi?id=710368
- https://bugzilla.gnome.org/show_bug.cgi?id=711399
- https://bugzilla.gnome.org/show_bug.cgi?id=711661
- https://bugzilla.gnome.org/show_bug.cgi?id=712336
- https://bugzilla.gnome.org/show_bug.cgi?id=712517
All contributors to this release:
- Jussi Kukkonen <[email protected]>
- Jens Georg <[email protected]>
- Piotr Drąg <[email protected]>
- Daniel Mustieles <[email protected]>
- Richard Röjfors <[email protected]>
- Matej Urbančič <[email protected]>
- Jean-Baptiste Dubois <[email protected]>
- Dimitris Spingos <[email protected]>
Added/updated translations
- el, courtesy of Dimitris Spingos (Δημήτρης Σπίγγος)
- es, courtesy of Daniel Mustieles
- pl, courtesy of Piotr Drąg
- sl, courtesy of Matej Urbančič
0.21.0
======
A new unstable release of Rygel.
Changes compared to 0.19.7:
- Port to new libsoup vapi.
- Several i18n fixes.
- Make missing gtk-doc non fatal and just don't build api docs then unless
explicitly requested.
- Rename --enable-valadoc to --enable-apidocs.
- Several style fixes.
- Add "devel" and "release" shortcuts to autogen.
- Drop strict vala compiler because of deprecations.
Core:
- Get MediaDevice port from MetaConfig.
Server:
- Generate proper contentFeatures.dlna.org header for DIDL_S resources.
- Use xmlNs instead of specifying the namespace in string form in Samsung
subtitle support.
- Make MediaObject.serialize public to enable custom XML modifications.
- Use URL-aware base64 encoding to prevent issues with "/".
Renderer:
- Fix REL_TIME seeking.
- Fix error codes when seeking beyond the file.
- Fix error codes when time-seek is not available.
- Add PossiblePlaybackStorageMedia values.
- Set track info for empty or non-http uris.
- Fix AbsoluteCounterPosition type.
- Listen to MediaPlayer.volume changes.
- Don't loop on image-only playlists.
- Lower LastChange accumulation timeout.
GStreamer renderer:
- Handle seeking beyond end of file.
- Remove invalid DLNA profile MPEG_TS_HD_EU_ISO.
- Fix GStreamer dependency to use 1.0 instead of 0.10.
MediaExport:
- Fix GstDiscoverer error handling.
MPRIS:
- Fix seeking.
- Query seeking ability from DBus.
- Ignore read-only MPRIS peers.
Simple media engine:
- Support files > 4GB on 32bit systems.
Examples:
- Simplify C renderer example a bit.
- Simulate image rendering in vala renderer example.
Changes in dependencies:
GLib >= 2.34 due to g_file_delete_async
Vala >= 0.22 for new libsoup-2.4 vapi
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=677405
- https://bugzilla.gnome.org/show_bug.cgi?id=686628