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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
|
NEW in 0.2.11
=============
* General
* Require glib >= 2.34
* Added/Updated i18n support
* Czech
* Indonesian
* Lithuanian
* Norwegian Bokmål
* Polish
* Bookmarks plugin
* BGO#724548 - bookmarks: Bug fixes
* Flickr plugin
* BGO#724615 - flickr: Set mime-type for images
* Freebox plugin
* BGO#724369 - freebox plugin fails to link against avahi-glib and
avahi-client
* Pocket plugin
* BGO#724123 - pocket: Bump required gnome-online-accounts version
* BGO#724265 - pocket: Add thumbnails support for videos
* TMDb plugin
* Fix tests
* Tracker plugin
* BGO#724546 - grl-tracker-source cannot find tracker 1.0
* Contributors to this release:
* Andika Triwidada <andika@gmail.com>
* Aurimas Černius <aurisc4@gmail.com>
* Bastien Nocera <hadess@hadess.net>
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Juan R. Garcia Blanco <juanrgar@gmail.com>
* Kjartan Maraas <kmaraas@gnome.org>
* Marek Černocký <marek@manet.cz>
* Piotr Drąg <piotrdrag@gmail.com>
* Vadim Rutkovsky <vrutkovs@redhat.com>
NEW in 0.2.10
=============
* General
* Improve building
* Require glib 2.32 or higher
* Require new Grilo version
* Run coverage only in src/
* Unload plugins in tests
* BGO#699317 - switch from gnome-doc-utils to yelp-utils
* BGO#710185 - grilo-inspect leaves empty directories in /tmp
* BGO#723525 - License text contains obsolete FSF postal address
* Added/Updated i18n support
* Brazilian Portuguese
* Catalan
* Catalan Valencian (new)
* Chinese Simplified (new)
* Czech
* Danish (new)
* Esperanto (new)
* French
* Galician
* German
* Greek
* Hebrew (new)
* Hungarian (new)
* Indonesian
* Italian (new)
* Japanese (new)
* Korean (new)
* Latvian (new)
* Lithuanian
* Malayalam
* Norwegian Bokmål
* Polish
* Portuguese
* Russian (new)
* Serbian
* Slovak
* Slovenian
* Spanish
* Traditional Chinese
* Ukrainian
* Apple Trailers plugin
* Do not share GCancellable among operations
* BGO#722398 - core: Add unit to duration
* BGO#723233 - Add source icons
* Blip.tv plugin
* Fixed leak
* Small fixes
* BGO#723233 - Add source icons
* Bookmarks plugin
* Small fixes
* DMAP plugin
* Add more attributes
* Small fixes
* BGO#715016 - dmap: Fix memory leak when Avahi is absent
* BGO#723574 - Patch to make DMAP media list hierarchical
* Fake Metadata plugin
* Removed plugin
* Filesystem plugin
* BGO#695303 - new feature: grilo playlist library
* BGO#709900 - Don’t return outdated thumbnails for local files
* BGO#710796 - Minor memory leak fix
* Flickr plugin
* Small fixes
* BGO#706917 - flickr: resolve() returns wrong values
* Freebox plugin
* New plugin offering TV channels through Freebox server, offered by Free
ISP in France
* BGO#720436 - freebox: Add new Freebox TV source
* Gravatar plugin
* BGO#715017 - gravatar: Fix typo in error message
* Guadian plugin
* New plugin showing the newest videos from the Guardian
* BGO#680678 - Add Guardian Video source
* Jamendo plugin
* BGO#721642 - Assorted fixes from coverity scan
* Magnatune plugin
* Small fixes
* Optical Media plugin
* BGO#703619 - Create sources for each optical media
* BGO#720441 - optical-media: Fix CFLAGS and LIBS name
* BGO#722629 - optical-media: Implement proper content-changed support
* BGO#723990 - optical-media: Fix incorrect emblemed icon handling
* Pocket plugin
* New plugin showing content from Pocket
* BGO#722819 - Add Pocket source
* Rai.tv plugin
* Fixed leaks
* Small fixes
* BGO#721642 - Assorted fixes from coverity scan
* BGO#722822 - raitv: Remove slow keys
* BGO#723233 - Add source icons
* TMDb plugin
* Fixed tests
* BGO#710185 - grilo-inspect leaves empty directories in /tmp
* BGO#710272 - Test-suite fails with libsoup 2.44.1
* BGO#721642 - Assorted fixes from coverity scan
* BGO#723147 - tmdb: Use https queries
* BGO#723149 - tmdb: Reduce number of network calls
* Tracker plugin
* BGO#715036 - Support tracker 0.17
* BGO#715080 - build: support tracker 0.18
* UPnP plugin
* BGO#722607 - upnp: Add icons for UPnP servers
* Vimeo plugin
* Added new tests
* Fixed leaks
* BGO#711393 - vimeo: Don't leak cache directories
* BGO#723233 - Add source icons
* YouTube plugin
* Fix management of skip value
* More debug information
* Small fixes
* BGO#721642 - Assorted fixes from coverity scan
* BGO#723233 - Add source icons
* Contributors to this release:
* Alexandre Franke <alexandre.franke@gmail.com>
* Andika Triwidada <andika@gmail.com>
* Anish A <aneesh.nl@gmail.com>
* Ask H. Larsen <asklarsen@gmail.com>
* Aurimas Černius <aurisc4@gmail.com>
* Baptiste Mille-Mathias <baptiste.millemathias@gmail.com>
* Bastien Nocera <hadess@hadess.net>
* Carles Ferrando <carles.ferrando@gmail.com>
* Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
* Christian Kirbach <christian.kirbach@gmail.com>
* Claudio Arseni <claudio.arseni@ubuntu.com>
* Daniel Korostil <ted.korostiled@gmail.com>
* Daniel Mustieles <daniel.mustieles@gmail.com>
* Dimitris Spingos <dmtrs32@gmail.com>
* Dominique Leuenberger <dimstar@opensuse.org>
* Dušan Kazik <prescott66@gmail.com>
* Enrico Nicoletto <liverig@gmail.com>
* Evgeny Bobkin <evgen.ibqn@gmail.com>
* Fernando Carvalho <phaetonkde@gmail.com>
* Fran Diéguez <fran.dieguez@mabishu.com>
* Gabor Kelemen <kelemeng@gnome.hu>
* Gil Forcada <gforcada@gnome.org>
* Jacobo Aragunde Pérez <jaragunde@igalia.com>
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Kenneth Nielsen <k.nielsen81@gmail.com>
* Kjartan Maraas <kmaraas@gnome.org>
* Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
* Marek Černocký <marek@manet.cz>
* Matej Urbančič <mateju@svn.gnome.org>
* Nishio Futoshi <fut_nis@d3.dion.ne.jp>
* Philip Withnall <philip.withnall@collabora.co.uk>
* Piotr Drąg <piotrdrag@gmail.com>
* Rūdolfs Mazurs <rudolfsm@src.gnome.org>
* Seong-ho Cho <darkcircle.0426@gmail.com>
* W. Michael Petullo <mike@flyn.org>
* Yosef Or Boczko <yoseforb@src.gnome.org>
* Yuri Myasoedov <ymyasoedov@yandex.ru>
* Мирослав Николић <miroslavnikolic@rocketmail.com>
* 甘露(Gan Lu) <rhythm.gan@gmail.com>
NEW in 0.2.9
============
* General
* Updated translations (Brazilian Portuguese, Galician, Slovenian, Spanish
and Traditional Chinese)
* Added German translation
* Added Indonesian translation
* Added Lithuanian translation
* Added Norwegian Bokmål translation
* Added lcov support (test coverage)
* Integration with Coveralls.io service
* Refactored testsuite to use glib gtester
* BGO#702731 - gitignore: Ignore test-driver and the generated stuff under
po/
* BGO#703037 - all: Add G_LOG_DOMAIN for each plugin
* BGO#704678 - gitignore: Ignore more test executables and the .pot file
* BGO#703396 - Use totem-pl-parser instead of libquvi
* Apple trailers plugin
* Fixed warning
* Added test suite
* Blip.tv plugin
* Fixed problems with pagination
* Check empty results case
* Added test suite
* Flickr plugin
* BGO#705149 - flickr: Bigger thumbnails
* Local Metadata plugin
* Added new tests
* Fixed leaks
* Magnatune plugin
* BGO#701336 - Magnatune: slow startup due to hostname lookup at plugin init
* TMDb plugin
* Small fixes
* UPnP plugin
* Use always root container when browsing using search
* BGO#702730 - upnp: Disappearing sources are not unregistered
* BGO#704917 - upnp: Avoid warning on empty resolve result
* Vimeo plugin
* Added test suite
* Contributors to this release:
* Andika Triwidada <andika@gmail.com>
* Aurimas Černius <aurisc4@gmail.com>
* Bastien Nocera <hadess@hadess.net>
* Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
* Christian Kirbach <Christian.Kirbach@googlemail.com>
* Debarshi Ray <debarshir@gnome.org>
* Emanuele Aina <emanuele.aina@collabora.com>
* Enrico Nicoletto <liverig@gmail.com>
* Fran Diéguez <fran.dieguez@mabishu.com>
* Jasper Lievisse Adriaanse <jasper@humppa.nl>
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Kjartan Maraas <kmaraas@gnome.org>
* Matej Urbančič <mateju@svn.gnome.org>
* Miguel Rodriguez Núñez <bokerones.fritos@gmail.com>
* Victor Toso <me@victortoso.com>
NEW in 0.2.8
============
* General
* Updated translations
* Flickr plugin
* BGO#700517 - flickr: Renaming of sources created using GOA
* Magnatune plugin
* New plugin providing music from Magnatune
* BGO#698523 - Adding Magnatune pluggin
* Contributors to this release:
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Marek Chalupa <mchalupa@redhat.com>
* Marek Černocký <marek@manet.cz>
* Piotr Drąg <piotrdrag@gmail.com>
* Victor Toso <me@victortoso.com>
NEW in 0.2.7
============
* General
* Fix crash when registering sources
* Added i18n support
* Brazilian
* Czech
* Galician
* Greek
* Polish
* Serbian
* Slovenian
* Spanish
* BGO#673496 - Add i18n
* BGO#697565 - Using GOA in Flickr plugin
* Blip.tv plugin
* BGO#700297 - bliptv: Fix crash when browsing on 64-bit platforms
* Filesystem plugin
* BGO#696860 - filesystem: Add support for non-file URIs
* Flickr plugin
* Support GOA accounts
* BGO#697175 - Grilo's flickr plugin using OAuth
* BGO#697565 - Using GOA in Flickr plugin
* LastFM Album Art plugin
* Hardcode support for "mega" and "extra" thumbnails
* Metadata Store plugin
* Added filtering by type
* Optical Media plugin
* BGO#679624 - grl-optical-media reports USB sticks as DVD
* BGO#696863 - optical-media: Don't recurse when looking for DVDs
* BGO#696864 - optical-media: Fix detection of loopback mounted ISOs
* Rai.tv plguin
* BGO#697724 - Rai.tv finalaze segmentation fault
* BGO#700297 - bliptv: Fix crash when browsing on 64-bit platforms
* Tracker plugin
* Handle date-format keys
* Fix query syntax
* Contributors to this release:
* Bastien Nocera <hadess@hadess.net>
* Daniel Mustieles <daniel.mustieles@gmail.com>
* Dimitris Spingos <dmtrs32@gmail.com>
* Fran Diéguez <fran.dieguez@mabishu.com>
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Marek Černocký <marek@manet.cz>
* Marek Chalupa <mchalupa@redhat.com>
* Martin Srebotnjak <miles@filmsi.net>
* Matej Urbančič <mateju@svn.gnome.org>
* Miguel Rodriguez Núñez <bokerones.fritos@gmail.com>
* Piotr Drąg <piotrdrag@gmail.com>
* Rafael Ferreira <rafael.f.f1@gmail.com>
* Мирослав Николић <miroslavnikolic@rocketmail.com>
NEW in 0.2.6
============
* General
* BGO#690614 - Some plugins fail to load
* BGO#692118 - [PATCH] Fix build with automake 1.13
* BGO#695789 - grilo-plugins: don't override pkg-config if there's one
already set
* Filesystem plugin
* BGO#690710 - grl-filesystem only honours the first base-path
* BGO#694008 - Filesystem plugin strips "extension" from directories' title
* Jamendo plugin
* Capitalize root-level titles
* Metadata Store plugin
* Store type of media
* Add filter by source-id key
* Rai.tv plugin
* Added new plugin that provides videos from Rai TV (Radiotelevisione
italiana), Italy's national public radio and television.
* TMDb plugin
* Several fixes
* BGO#691196 - Values in TMDb plugin are returning in reverse order
* BGO#691197 - Add support for film writers in TMDb plugin
* BGO#691339 - tmdb: Handle thumbnail independently of poster/backdrop
* Tracker plugin
* Added support for Tracker 0.16
* Added filter by type support
* BGO#691717 - grilo tracker plugin doesn't notify about newly added media
* UPnP plugin
* Add filter by type support
* YouTube plugin
* Initialize correctly all the inner structures
* LastFM Album Art plugin
* Do not return default image
* Contributors to this release:
* Bastien Nocera <hadess@hadess.net>
* Jonny Lamb <jonnylamb@gnome.org>
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Marco Piazza <mpiazza@gmail.com>
* Mathias Hasselmann <mathias@openismus.com>
* Mike Ruprecht <mike.ruprecht@collabora.co.uk>
* Mohammed Hassan <mohammed.hassan@jollamobile.com>
* Nuno Araujo <nuno.araujo@russo79.com>
NEW in 0.2.5
============
* General
* Moved examples/ into help/
* Fixed typo in documentation
* BGO#689577 - autogen.sh does not pass all arguments correctly to
gnome-autogen.sh
* TMDb plugin
* Do not require plugin installed to run the tests
* Several fixes and improvements in tests
* Publication date is a slow key
* UPnP plugin
* Fixed race condition when creating the sources
* Contributors to this release:
* Evan Nemerson <evan@coeus-group.com>
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Mathias Hasselmann <mathias@openismus.com>
* Murray Cumming <murrayc@murrayc.com>
NEW in 0.2.4
============
* General
* Improved build system
* Added plugins documentation
* BGO#685473 - grl_source_query(): Does not hint at the query syntaxes
* Blip.TV plugin
* Use GrlNet instead of librest
* Fixed backend API usage
* Filesystem plugin
* Fixed a warning
* Jamendo plugin
* BGO#689125 - jamendo: return no result when browsing out of range feeds
* Local Metadata plugin
* Check URL in resolve
* Metadata Store plugin
* Fixed crash with freed variable
* BGO#687788 - metadata-store: Add 'search' with filtering by 'favourite'
* TMDb plugin
* Added documentation
* Added example of use
* Restored original-title key
* BGO#688245 - Add tmdb plugin tests
* Tracker plugin
* Added support for Tracker 0.15
* Vimeo plugin
* Use GrlNet
* Use quvi to get the URL video
* Set up URL key as slow key
* Added "format" parameter
* BGO#688821 - Vimeo plugin is broken
* Contributors to this release:
* Andrzej Bieniek <andyhelp@gmail.com>
* Antía Puentes <apuentes@igalia.com>
* Jens Georg <jensg@openismus.com>
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Mathias Hasselmann <mathias@openismus.com>
* Murray Cumming <murrayc@murrayc.com>
* Murray Cumming <murrayc@openismus.com>
NEW in 0.2.3
============
* General:
* BGO#673491 - Remove "default" get_caps implemetations
* Sources report the type of medias they support
* DMAP plugin:
* Fixed typo in GObject macro
* Flickr plugin:
* Handle only photos
* Metadata Store plugin:
* BGO#686282 - metadata-store: updates don't work properly
* BGO#686288 - metadata-store: add support for GRL_METADATA_KEY_FAVOURITE
* TMDb plugin
* Several fixes
* UPnP plugin
* Link it to libgssdp
* YouTube plugin
* Added "format" parameter
* Contributors to this release:
* Andreas Henriksson <andreas@fatal.se>
* Antía Puentes <apuentes@igalia.com>
* Bastien Nocera <hadess@hadess.net>
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Mathias Hasselmann <mathias@openismus.com>
* Murray Cumming <murrayc@murrayc.com>
NEW in 0.2.2
============
* TMDb plugin
* Added new plugin that gets information from TMDb.
* Moved some keys to Grilo core.
* BGO#679686 - GRL_METADATA_KEY_CERTIFICATE doesn't consider regional ratings
* Contributors to this release:
* Jens Georg <jensg@openismus.com>
NEW in 0.2.1
============
* DMAP plugin
* New plugin providing content from DMAP protocol (BGO#652516)
* Local Metadata plugin
* Fixed segmentation fault
* Tracker plugin
* Several fixes
* YouTube plugin
* BGO#685235 - Better error reporting for youtube plugin when quvi fails
* Contributors to this release:
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Mohammed Hassan <mohammed.hassan@jollamobile.com>
* W. Michael Petullo <mike@flyn.org>
NEW in 0.2.0
============
* General
* Use the new API 0.2.0
* Added support for Windows
* Removed g_thread_init() call (deprecated)
* Use g_str_has_prefix() instead of strrstr() (performance reasons)
* BGO#641115 - grilo plugins do not store private data in right places
* BGO#641357 - Remove libdir= from all Makefile.am
* BGO#667855 - Support tracker 0.13/0.14
* Apple trailers plugin
* Fixed mime-type
* Filesystem plugin
* Do not show file extension in the media title
* Added filtering by key capability
* Added filtering by media type capability
* Gravatar plugin
* BGO#680435 - Don't leak GParamSpec
* Jamendo plugin
* Fix small typo
* Local Metadata plugin
* Several fixes and improvements
* Use user's cache to get album art
* BGO#673916 - local-metadata: Support all GIO supported schemes
* BGO#673936 - local-metadata: Don't leave unfinished calls
* Optical Media plugin
* New plugin that provides content from DVD and Blu-ray disks (BGO#672929)
* SHOUTCast plugin
* Use the new API 2.0
* Tracker plugin
* Added config option to expose documents as content (turned off by default)
* Merged Tracker Media Source and Tracker Metadata Source in one Tracker Source
* BGO#658448 - No tracker-sparql-0.12 support
* BGO#662748 - tracker plugin: support multiple resources in a larger file
* UPnP plugin
* Removed "UPnP -" prefix from title
* BGO#653756 - Empty results on UPnP shows error
* BGO#653759 - UPnP sends back containers on search
* BGO#658812 - upnp: support GRL_METADATA_KEY_TRACK_NUMBER
* YouTube plugin
* Request quvi 0.4.0
* Contributors to this release:
Alberto Garcia <agarcia@igalia.com>
Bastien Nocera <hadess@hadess.net>
Cedric Bosdonnat <cedric.bosdonnat@gmail.com>
Damien Lespiau <damien.lespiau@intel.com>
Guillaume Emont <gemont@igalia.com>
Iago Toral Quiroga <itoral@igalia.com>
Jens Georg <jensg@openismus.com>
Jonathan Matthew <jonathan@d14n.org>
Juan A. Suarez Romero <jasuarez@igalia.com>
Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Mathias Hasselmann <mathias@openismus.com>
Michael Wood <michael.g.wood@linux.intel.com>
Philip Withnall <philip@tecnocode.co.uk>
Piotr Drąg <piotrdrag@gmail.com>
Sam Thursfield <sam.thursfield@codethink.co.uk>
Vincent Untz <vuntz@gnome.org>
Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
NEW in 0.1.17
=============
* General
* Do not generate static libraries
* Install XML files in the same place as libraries plugins.
* Blip.TV plugin
* Added new plugin
* Bookmarks plugin
* Minor changes
* Local Metadata plugin
* Plugged memory leak
* Podcasts plugin
* Fixed BGO#653937 - Doesn't support gmime 2.5.x
* Tracker plugin
* Minor fixes
* Fixed BGO#654248 - tracker-sparql-0.11 support
* Removed code for tracker < 0.10.5
* Vimeo plugin
* Correctly links against libgcrypt
* Youtube plugin
* Minor fixes
* Added support for libgdata >= 0.9.0
* Removed code for libdata < 0.7
* Contributors to this release:
Cedric Bosdonnat <cedric.bosdonnat@gmail.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Philip Withnall <philip@tecnocode.co.uk>
NEW in 0.1.16
=============
* General
* Do not install test programs
* Fixed gdata flags for libgdata >= 0.7
* Missed configuration keys are not warnings any more
* Small fixes in build system
* Use the new cancellation API
* Fake Metadata plugin
* Updated for latest changes in core
* Filesystem plugin
* Do not replace already existant identifiers
* Jamendo plugin
* Small fixes
* Fixed feed identifier
* Podcasts plugin
* Several fixes
* Included thumbnail in podcasts
* Made cache time configurable
* Shoutcast plugin
* Do not use deprecated functions
* Tracker plugin
* Fixed registering keys when re-loading the plugin
* Vimeo plugin
* Handled wrong dates
* Youtube plugin
* Fixed BGO#650679 - Youtube plugin shouldn't load the categories on start * Added quvi supported
* Contributors to this release:
Alberto Garcia <agarcia@igalia.com>
Guillaume Emont <guijemont@igalia.com>
Iago Toral Quiroga <itoral@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Philippe Normand <pnormand@igalia.com>
Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
NEW in 0.1.15
=============
* LastFM Album Art plugin
* Plugged some leaks
* Local Metadata plugin
* Plugged some leaks
* Youtube plugin
* Plugged some leaks
* Made operations cancellable
* Contributors to this release:
Juan A. Suarez Romero <jasuarez@igalia.com>
NEW in 0.1.14
=============
* General
* Get rid of unused definitions
* Use new "content-changed" API
* Added "module" information to XML files
* Use new API instead of deprecated ones.
* Jamendo plugin
* Plugged some leaks
* LastFM Album Art plugin
* resolve() is now a cancellable operation
* Local metadata plugin
* Small fixes
* resolve() is now a cancellable operation
* Tracker plugin
* Several fixes
* UPnP plugin
* Plugged some leaks
* Contributors to this release:
Juan A. Suarez Romero <jasuarez@igalia.com>
Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
NEW in 0.1.13
=============
* General:
* Do not use grl_data_key_is_known(), as it is deprecated
* Tracker:
* Do not load the plugin if Tracker is not running
* Allow Tracker versions below 0.10.5
* Contributors to this release:
Juan A. Suarez Romero <jasuarez@igalia.com>
NEW in 0.1.12
=============
* Local metadata plugin
* Add support for series and seasons
* Tracker plugin
* Several fixes and improvements
* Add support for writting back metadata
* Contributors to this release:
Iago Toral Quiroga <itoral@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
NEW in 0.1.11
=============
* Filesystem plugin
* Small fix
* Flickr plugin
* Plugged a leak
* LastFM album art plugin
* Added extralarge and megalarge thumbnails
* Tracker plugin
* Several fixes
* Provided a tracker-based metadata source
* UPnP plugin
* Fixed small bug.
* Youtube plugin
* Fixed BGO#643924 - [PATCH] youtube plugin not parsing date
* Contributors to this release:
Juan A. Suarez Romero <jasuarez@igalia.com>
Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Michael Wood <michael.g.wood@linux.intel.com>
NEW in 0.1.10
=============
* General
* Use the new grl_metadata_source_may_resolve() function
* Split src/ code between media and metadata sources
* Gravatar plugin
* Use the new multi-valued API to provide several avatars
* Jamendo plugin
* Fixed feeds category
* LastFM album art plugin
* Use the new mult-valued API to provide several thumbnails
* Podcasts plugin
* Fixed invalid GrlNetWc free
* Shoutcast plugin
* Disabled by default (it is broken)
* UPnP plugin
* Use GrlData API to set metadata properties
* Vimeo plugin
* Several fixes
* Fixed BGO#643811 - Date format for vimeo plugin
* Youtube plugin
* Use the new mult-valued API to provide several thumbnails
* Contributors to this release:
* Guillaume Emont <gemont@igalia.com>
* Juan A. Suarez Romero <jasuarez@igalia.com>
* Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
* Michael Wood <michael.g.wood@linux.intel.com>
NEW in 0.1.9
============
* General
* Implemented NULL-text search (search all)
* Bookmarks plugin
* Fixed saving/loading content from database
* Addec content-changed notification
* Filesystem plugin
* Added cancellation support
* Added content-changed notification
* Flickr plugin
* Fixed Makefile.am
* Local metadata plugin
* New plugin that provides covers and thumbnails from local filesystem
* Podcasts plugin
* Fixed search
* Added content-changed notification
* Tracker plugin
* Several fixes and improvements
* UPnP plugin
* Fixed warning
* Added content-changed notification
* Contributors to this release:
Fabien Lebaillif - Delamare <fabien@developers.arq-media.com>
Guillaume Emont <gemont@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
NEW in 0.1.8
============
* General
* Use the new GrlConfig rework
* Filesystem plugin
* Implemented search() function
* Podcasts plugin
* Small fix in log domain
* Tracker plugin
* New plugin that gets its content from Tracker
* UPnP plugin
* Several improvements and fixes
* Add support for thumbnails
* Implemented query() function
* Youtube plugin
* Plug leak
* Contributors to this release:
Fabien Lebaillif - Delamare <fabien@developers.arq-media.com>
Guillaume Emont <gemont@igalia.com>
Iago Toral Quiroga <itoral@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
Jussi Kukkonen <jku@linux.intel.com>
Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
NEW in 0.1.7
============
* General
* General fixes, including fixes for:
* GB#627864 - log: Revamp the log system
* GB#628506 - rename the GRL_ERROR quark to GRL_CORE_ERROR
* Install plugins as loadable modules, not libraries
* Use GrlNet
* Adapt code to changes in GrlPluginRegistry functions
* Apple trailers plugin
* General fixes, including fix for:
* GB#630538 - Apple trailers can provide a higher-resolution thumbnail
* Filesystem plugin
* Implemented media_from_uri() and test_media_from_uri()
* Flickr plugin
* General fixes
* Podcasts plugin
* General fixes
* Shoutcast plugin
* General fixes
* UPnP plugin
* Aded plugin deinit function
* Vimeo plugin
* GB#630494 - The Vimeo plugin accesses freed memory during searches
* Youtube plugin
* General fixes, including fix for:
* GB#635394 - Add ability to get video URL from page URL, or <embed> URL
* Handle libgdata 0.7 and 0.8 api
* Contributors to this release:
Chris Lord <chris@linux.intel.com>
Damien Lespiau <damien.lespiau@intel.com>
Guillaume Emont <gemont@igalia.com>
Iago Toral Quiroga <itoral@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
Ross Burton <ross@linux.intel.com>
Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
NEW in 0.1.6
============
* General
* General fixes
* Use the new metadata key system
* Use the new way of registering plugins
* Apple trailers plugin
* General fixes
* Handle more metadata keys
* Handle both SD and HD videos
* Bookmarks plugin
* General fixes
* Fake metadata plugin
* General fixes
* Filesystem plugin
* General fixes
* Restrict content to a set of directories
* Flickr plugin
* General fixes
* Added browse operation
* Instance source to handle personal content
* Gravatar plugin
* New plugin that shows avatar for author/artist
* Jamendo plugin
* General fixes
* LastFM album art plugin
* General fixes
* Metadata Store plugin
* General fixes
* Podcasts plugin
* General fixes
* SHOUTCast plugin
* General fixes
* Cache root page for some minutes
* Change ID encoding
* uPnP plugin
* General fixes
* Vimeo plugin
* General fixes
* Youtube plugin
* General fixes
* Handle more metadata keys
* Contributors to this release:
Chris Lord <chris@linux.intel.com>
Damien Lespiau <damien.lespiau@intel.com>
Iago Toral Quiroga <itoral@igalia.com>
iain <iain@linux.intel.com>
Joaquim Rocha <jrocha@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
Simón Pena <spenap@gmail.com>
Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Xabier Rodriguez Calvar <xrcalvar@igalia.com>
NEW in 0.1.5
============
* General
* Code moved to gnome.org
* Improved build system
* Use of glib slices when possible
* Apple trailers plugin
* General fixes
* Bookmarks plugin
* Added a title to root category
* Flickr plugin
* General fixes
* Jamendo plugin
* General fixes
* LastFM album art plugin provider
* General fixes
* Podcasts plugin
* Added a title to root category
* SHOUTCast plugin
* General fixes
* UPnP plugin
* Use source name as title in root category
* Vimeo plugin
* New plugin that shows content from Vimeo service
* Youtube plugin
* General fixes
* Refactored plugin to use libgdata
* Contributors to this release:
Iago Toral Quiroga <itoral@igalia.com>
Joaquim Rocha <jrocha@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Xabier Rodriguez Calvar <xrcalvar@igalia.com>
NEW in 0.1.4
============
* General
* Updates related with changes in Grilo API
* Bookmarks
* Small improvements
* Flickr plugin
* Use the new configuration system
* Metadata-Store plugin
* New plugin where to save metadata
* Podcasts plugin
* Small improvements
* Contributors to this release:
Iago Toral Quiroga <itoral@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
NEW in 0.1.3
============
* General
* Minor fixes
* Apple Trailers plugin
* New plugin
* Bookmarks plugin
* Small improvements
* Podcasts plugin
* Small improvements
* Shoutcast plugin
* Small improvements
* Upnp pugin
* Small improvements
* Contributors to this release:
Iago Toral Quiroga <itoral@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
Philippe Normand <phil@base-art.net>
NEW in 0.1.2
============
* General
* Minor fixes.
* Bookmarks plugin
* New pluging used to save and retrieve bookmarks to other content.
* Flickr plugin
* Get rid of flickcurl library.
* It have its own methods to access flickr services, with GIO and libxml2.
* Jamendo plugin
* Minor fixes.
* Podcasts plugin
* Some fixes
* Shoutcast plugin
* New plugin to access SHOUTcast radios
* Upnp plugin
* Support for new versions of gupnp-av-1.0 (>=0.5).
* Contributors to this release:
Iago Toral <itoral@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
NEW in 0.1.1
============
* First release
* Developed plugins for accessing:
* Local filesystem
* Flickr
* Jamendo
* Podcasts
* uPnP
* Youtube
* Developed metadata providers:
* Fake: provides fake data for almost all keys
* Last.FM: provides album covers
* Contributors to this release:
Iago Toral <itoral@igalia.com>
Juan A. Suarez Romero <jasuarez@igalia.com>
|