summaryrefslogtreecommitdiff
path: root/NEWS
blob: 33a62bd102d6872a257988e71e39e0517cdcbeb9 (plain)
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
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
NEW in 0.2.16
=============

  * Updated i18n

  * LastFM Album Art plugin
    * BGO#700276 - lastfm: update to new API 2.0

  * Lua Factory plugin
    * BGO#754895 - lua-factory: Fix compilation with g-o-a disabled

  * TheTVDB plugin
    * Fix tests

  * Contributors to this release:
    Alexandre Franke <alexandre.franke@gmail.com>
    Aurimas Černius <aurisc4@gmail.com>
    Balázs Úr <urbalazs@gmail.com>
    Bastien Nocera <hadess@hadess.net>
    Claudio Arseni <claudio.arseni@gmail.com>
    Dušan Kazik <prescott66@gmail.com>
    Georges Basile Stavracas Neto <georges.stavracas@gmail.com>
    Juan A. Suarez Romero <jasuarez@igalia.com>
    Matej Urbančič <mateju@svn.gnome.org>
    Pedro Albuquerque <palbuquerque73@gmail.com>
    Piotr Drąg <piotrdrag@gmail.com>
    Seong-ho Cho <shcho@gnome.org>


NEW in 0.2.15
=============

  * Updated i18n
  * Lot of improvements in Lua Factory
  * Removed Blip.tv source (service shutdown)
  * Apple Trailers plugin ported to Lua
  * Pocket plugin ported to Lua

  * General
    * BGO#749063 - build: General git.mk and MAINTAINERCLEANFILES fixes

  * Apple Trailers plugin
    * BGO#752681 - Port Apple Trailers source to Lua

  * Blip.tv plugin
    * BGO#725031 - bliptv: Search return recent items' RSS instead of results

  * Bookmarks plugin
    * BGO#752066 - grl-bookmarks doesn't notify of removals

  * dLeyna plugin
    * BGO#749889 - dleyna: Fix grl_dleyna_util_uri_is_localhost() usage
    * BGO#749890 - dleyna: Fix incorrect properties passed to applications

  * DMAP plugin
    * BGO#746722 - Add DPAP (iPhoto sharing) plugin

  * Freebox plugin
    * BGO#745179 - radios.m3u missing in the 0.2.14 tarball, build fails.

  * Guardian Videos plugin
    * BGO#748224 - guardianvideos: fix URL format string
    * BGO#750990 - Fix unescaping Guardian Videos titles

  * Local Mmetadata plugin
    * BGO#746776 - local-metadata: Remove unused variable
    * BGO#748604 - local-metadata: Don't crash on files named wsb.wmv
    * BGO#752057 - local-metadata: Query for media art existence

  * Lua Factory plugin
    * BGO#741607 - WIP: Use lua to parse video titles
    * BGO#741784 - lua-factory: testing
    * BGO#747953 - Information leak via plain text HTTP connection
    * BGO#750903 - Make it easier to access the API key config
    * BGO#750955 - CRITICAL **: grl_l_callback: assertion 'os != NULL' failed
    * BGO#750982 - Better sandboxing
    * BGO#750983 - lua-factory: Add inspect.lua helper
    * BGO#750990 - Fix unescaping Guardian Videos titles
    * BGO#751786 - lua-factory: Fix possible memleak if source registration
      fails
    * BGO#751981 - Add support for GOA in lua-factory
    * BGO#752593 - lua-factory: Add support for dates in Epoch format
    * BGO#752594 - tests: Fix lua-factory Makefile generation
    * BGO#752595 - lua-factory: Add grl.is_video_site() function
    * BGO#752681 - Port Apple Trailers source to Lua
    * BGO#752895 - lua-factory: Also try convert HTML from ISO8859-1
    * BGO#752899 - lua-factory: Re-add "Music" GOA support

  * Magnatune plugin
    * BGO#751890 - Magnatune plugin doesn't invoke the callback in search
      operations with 0 result

  * Metrolyrics plugin
    * BGO#754275 - Fix metrolyrics source and test

  * OpenSubtitles plugin
    * BGO#754451 - Opensubtitles plugin causes many warnings

  * TheTVDB plugin
    * BGO#748422 - thetvdb: Make it possible to hit only cache
    * BGO#748423 - thetvdb: Fuzzy series name matching
    * BGO#754489 - thetvdb: use https rather than insecure http

  * Tracker plugin
    * BGO#733582 - rhythmbox crashes with SIGSEGV in
      tracker_evt_update_orphan_item_cb
    * BGO#748173 - tracker: Do not advertise browse support for the Tracker
      extractor
    * BGO#748539 - Eliminate duplicates in grl-tracker search results
    * BGO#753732 - tracker: track number is missing from grilo information

  * YouTube plugin
    * BGO#741634 - youtube: Home-made refcounting?!
    * BGO#748395 - Update libgdata API usage
    * BGO#754244 - Grilo YouTube plugin crash

  * Contributors to this release:
    Alberto Garcia <berto@igalia.com>
    Alexandre Franke <alexandre.franke@gmail.com>
    Anders Jonsson <anders.jonsson@norsjovallen.se>
    Andika Triwidada <andika@gmail.com>
    Ask H. Larsen <asklarsen@gmail.com>
    Aurimas Černius <aurisc4@gmail.com>
    Balázs Úr <urbalazs@gmail.com>
    Bastien Nocera <hadess@hadess.net>
    Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
    Claudio Arseni <claudio.arseni@gmail.com>
    Colin Walters <walters@verbum.org>
    Daniel Mustieles <daniel.mustieles@gmail.com>
    Dušan Kazik <prescott66@gmail.com>
    Efstathios Iosifidis <iefstathios@gmail.com>
    Elad Alfassa <elad@fedoraproject.org>
    Fran Dieguez <fran.dieguez@mabishu.com>
    George Sedov <radist.morse@gmail.com>
    Gil Forcada <gforcada@gnome.org>
    Giovanni Campagna <gcampagn@cs.stanford.edu>
    Iain Lane <iain@orangesquash.org.uk>
    Inaki Larranaga Murgoitio <dooteo@zundan.com>
    Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
    Jeremy Whiting <jpwhiting@kde.org>
    Jordi Mas <jmas@softcatala.org>
    Juan A. Suarez Romero <jasuarez@igalia.com>
    Marek Černocký <marek@manet.cz>
    Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
    Necdet Yücel <necdetyucel@gmail.com>
    Olivier Crête <olivier.crete@collabora.com>
    Paul Seyfert <pseyfert@mathphys.fsk.uni-heidelberg.de>
    Pedro Albuquerque <palbuquerque73@gmail.com>
    Philip Withnall <philip@tecnocode.co.uk>
    Philip Withnall <philip.withnall@collabora.co.uk>
    Piotr Drąg <piotrdrag@gmail.com>
    Rafael Ferreira <rafael.f.f1@gmail.com>
    Samir Ribic <samir.ribic@etf.unsa.ba>
    Seong-ho Cho <shcho@gnome.org>
    Simon McVittie <simon.mcvittie@collabora.co.uk>
    Victor Toso <me@victortoso.com>
    W. Michael Petullo <mike@flyn.org>
    Xavier Claessens <xavier.claessens@collabora.com>
    Yosef Or Boczko <yoseforb@src.gnome.org>
    Yuri Myasoedov <ymyasoedov@yandex.ru>
    Мирослав Николић <miroslavnikolic@rocketmail.com>


NEW in 0.2.14
=============

  * General
    * BGO#724308 - Make it possible to pass "flags" to "remove()
    * BGO#725148 - Automatic network awareness
    * BGO#740942 - core: Fix excessive ref'ing when registering new keys
    * BGO#740943 - core: Add register_keys plugin function
    * BGO#741207 - Minor fixes at local-metadata and thetvdb
    * BGO#743449 - Use HTTPS whenever possible
    * Added/updated i18n support
      * Added Turkish

  * Bookmarks plugin
    * Fix thumbnail URL not getting saved
    * Fix updating bookmarks
    * Emit "item-removed" only when item is actually removed

  * dLeyna plugin
    * BGO#740052 - Crash in the dLeyna plugin

  * Euronews source
    * BGO#736548 - Folder icons for Euronews and The Guardian Videos

  * Flickr plugin
    * Small fixes

  * Freebox plugin
    * BGO#744168 - core: Add "audio-track" property

  * Local Metadata plugin
    * BGO#740927 - local-metadata: Add support for getting gibest hash
    * BGO#741562 - local-metadata: Broken title with another TV episode format

  * Lua Factory plugin
    * BGO#725147 - lua-factory: Support embedded resources
    * BGO#729680 - Some HTML entities not unescaped by grl.unescape()
    * BGO#737169 - lua-factory: Avoid warning if fetching an item failed
    * BGO#739508 - lua-factory: Warn when dates are in an invalid format
    * BGO#740761 - Correct "file size" metadata key
    * BGO#740765 - lua-factory: Fix use-after-free
    * BGO#740928 - lua-factory: Add support for boolean media properties
    * BGO#742523 - lua-factory: Work-around websites that still use ISO8859-1
    * BGO#744353 - lua-factory: may_resolve doesn't handle media being NULL

  * OpenSubtitles plugin
    * New plugin
    * BGO#740871 - opensubtitles: Add plugin

  * Podcasts plugin
    * BGO#741258 - podcasts: Fix crasher when DB could not be opened

  * Radiofrance source:
    * Support EPG down
    * Added icon

  * TheTVDB plugin
    * BGO#740763 - Unset "title-from-filename" when changing title

  * TMDb plugin
    * BGO#739502 - tmdb: Don't try to resolve TV series
    * BGO#740763 - Unset "title-from-filename" when changing title
    * BGO#743316 - Add libsoup as dependency to tmdb plugin in configure.ac

  * Tracker plugin
    * BGO#740707 - tracker: Add range filter support
    * BGO#740756 - tracker: Correctly set "title-from-filename"
    * BGO#740761 - Correct "file size" metadata key

  * The Guardian Videos source
    * BGO#736548 - Folder icons for Euronews and The Guardian Videos
    * BGO#737176 - guardianvideos: Update for new API

  * YouTube plugin
    * Small fixes
    * BGO#744015 - Remove code supporting libgdata < 0.9.1

  * Contributors to this release:
    * Alexandre Franke <alexandre.franke@gmail.com>
    * Andika Triwidada <andika@gmail.com>
    * Ask H. Larsen <asklarsen@gmail.com>
    * Aurimas Černius <aurisc4@gmail.com>
    * Balázs Úr <urbalazs@gmail.com>
    * Bastien Nocera <hadess@hadess.net>
    * Christian Kirbach <Christian.Kirbach@gmail.com>
    * Claudio Arseni <claudio.arseni@gmail.com>
    * Elad Alfassa <elad@fedoraproject.org>
    * Enrique Ocaña González <eocanha@igalia.com>
    * Fran Diéguez <fran.dieguez@mabishu.com>
    * Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
    * Gábor Kelemen <kelemeng@openscope.org>
    * Inaki Larranaga Murgoitio <dooteo@zundan.com>
    * Iris Gou <gouyingqiyanxuan321@gmail.com>
    * Juan A. Suarez Romero <jasuarez@igalia.com>
    * Kjartan Maraas <kmaraas@gnome.org>
    * Marek Černocký <marek@manet.cz>
    * Matej Urbančič <mateju@svn.gnome.org>
    * Mattias Eriksson <snaggen@gmail.com>
    * Miguel Rodríguez Núñez <bokerones.fritos@gmail.com>
    * Muhammet Kara <muhammetk@gmail.com>
    * Pedro Albuquerque <palbuquerque73@gmail.com>
    * Piotr Drąg <piotrdrag@gmail.com>
    * Rafael Ferreira <rafael.f.f1@gmail.com>
    * Rūdolfs Mazurs <rudolfsm@src.gnome.org>
    * Sebastian Keller <sebastian-keller@gmx.de>
    * Seong-ho Cho <shcho@gnome.org>
    * Victor Toso <me@victortoso.com>
    * Yanko Kaneti <yaneti@declera.com>
    * Yosef Or Boczko <yoseforb@src.gnome.org>
    * Yuri Myasoedov <ymyasoedov@yandex.ru>
    * Мирослав Николић <miroslavnikolic@rocketmail.com>


NEW in 0.2.13
=============

  * Several fixes in build system
  * Generate AUTHORS file automatically
  * BGO#706877 - Let TheMovieDb resolver perform searches based on file name
  * BGO#727901 - Some filesystem plugin related build fixes
  * Added/updated i18n support
    * Assamese (new)
    * Basque (new)
    * Brazilian/Portuguese
    * Catalan
    * Catalan
    * Catalan/Valencian
    * Chinese
    * Czech
    * Danish
    * French
    * Galician
    * German
    * Greek
    * Hebrew
    * Hungarian
    * Indonesian
    * Italian
    * Lithuanian
    * Polish
    * Russian
    * Serbian
    * Slovenian
    * Spanish
    * Traditional Chinese

  * Bookmarks plugin
    * Reimplemented using GOM as backend, instead of SQLite directly
    * BGO#729787 - Application crashes at startup

  * dLeyna plugin
    * New plugin based on dLeyna to access UPnP/DLNA sources
    * BGO#707346 - dleyna: Plugin to access DLNA contents using the dLeyna DBus
      service
    * BGO#732016 - Bad string construction
    * BGO#733253 - UPnP/DLeyna bug fixes

  * Filesystem plugin
    * BGO#725203 - Filesystem plugin bug fixes
    * BGO#730841 - grl-file-system: no notification changes for root container

  * Flickr plugin
    * BGO#730812 - flickr: Use SSL

  * Jamendo plugin
    * Fix browsing root category
    * Fix wrong free

  * LastFM Album Art plugin
    * Added tests

  * Local Metadata plugin
    * BGO#725025 - local-metadata: Movies detected as episodes of a series
    * BGO#725026 - Add support for SeasonxEpisode filename format
    * BGO#725456 - grilo sometimes calls plugins with %20 instead of spaces
    * BGO#727181 - local-metadata: Another bad TV show parsing
    * BGO#732261 - local-metadata: new regexp match
    * BGO#734636 - Tracker plugin doesn't get thumbnails

  * Lua Factory plugin
    * Several fixes
    * BDO#750038 - grilo-plugins: Conditional operator does not typecheck
    * BGO#727570 - lua-factory: Fix typo in debug statement
    * BGO#727571 - lua-factory: Don't add duplicate sources
    * BGO#728525 - lua-factory: Add grl.unzip fetch function
    * BGO#728882 - lua-factory: Add more keys to grl.get_options()
    * BGO#729649 - lua-factory: Fix garbage after escaped text in grl.unescape()
    * BGO#733259 - lua-factory: Fix use after free
    * BGO#733289 - lua-factory: don't iterate on lua env table
    * BGO#733303 - lua-factory: GrlMediaBoxes cannot have their metadata
      resolved
    * Euronews source
      * BGO#731224 - Crash in can_remove if g_uri_parse_scheme fails
    * Musicbrainz source
      * BGO#727766 - lua-factory: Add Musicbrainz Cover Art plugin
    * Radiofrance source
      * BGO#727569 - radiofrance: Don't break when run behind a portal
      * BGO#734234 - RadioFrance source does not work in grilo

  * Optical Media plugin
    * BGO#729704 - optical-media: Fix physical optical drives being ignored

  * Pocket plugin
    * Request librest >= 0.7.90

  * TheTVDB plugin
    * BGO#672933 - Add thetvdb.com metadata
    * BGO#733287 - thetvdb: fetch show in cache with case insensitive

  * Tracker plugin
    * Add deinit() function
    * BGO#678519 - grl_media_source_get_media_from_uri not implemented for
      tracker media source plugin
    * BGO#701651 - Use OpenSubtitles.org to look up IMDB ID
    * BGO#730399 - Search strings should be escaped

  * UPnP plugin
    * Removed this plugin, replaced by new dLeyna plugin
    * BGO#723780 - upnp: filter out devices on the local machine
    * BGO#733253 - UPnP/DLeyna bug fixes

  * Vimeo plugin
    * BGO#727899 - vimeo: Remove libgcrypt dependency
    * BGO#730900 - Vimeo not work!

  * Contributors to this release:
    * AlainLojewski <allomervan@gmail.com>
    * Alberto Garcia <berto@igalia.com>
    * Andika Triwidada <andika@gmail.com>
    * Ask H. Larsen <asklarsen@gmail.com>
    * Aurimas Černius <aurisc4@gmail.com>
    * Bastien Nocera <hadess@hadess.net>
    * Benjamin Steinwender <b@stbe.at>
    * 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@gmail.com>
    * Daniel Mustieles <daniel.mustieles@gmail.com>
    * Daniel Mustieles <dnaiel.mustieles@gmail.com>
    * Debarshi Ray <debarshir@gnome.org>
    * Elad Alfassa <elad@fedoraproject.org>
    * Emanuele Aina <emanuele.aina@collabora.com>
    * Enrico Nicoletto <liverig@gmail.com>
    * Fran Diéguez <fran.dieguez@mabishu.com>
    * Gábor Kelemen <kelemeng@openscope.org>
    * Gil Forcada <gforcada@gnome.org>
    * Giovanni Campagna <gcampagna@src.gnome.org>
    * Inaki Larranaga Murgoitio <dooteo@zundan.com>
    * Jeremy Whiting <jpwhiting@kde.org>
    * Juan A. Suarez Romero <jasuarez@igalia.com>
    * marablack3 <marablack3@gmail.com>
    * Marek Černocký <marek@manet.cz>
    * MarMav <mavridou@gmail.com>
    * Matej Urbančič <mateju@svn.gnome.org>
    * Milo Casagrande <milo@ubuntu.com>
    * Nilamdyuti Goswami <ngoswami@redhat.com>
    * Olav Vitters <olav@vitters.nl>
    * Piotr Drąg <piotrdrag@gmail.com>
    * Rafael Ferreira <rafael.f.f1@gmail.com>
    * Tom Tryfonidis <tomtryf@gmail.com>
    * Victor Toso <me@victortoso.com>
    * Wolfgang Stöggl <c72578@yahoo.de>
    * Yosef Or Boczko <yoseforb@src.gnome.org>
    * YunQiang Su <yqsu@src.gnome.org>
    * Yuri Myasoedov <ymyasoedov@yandex.ru>
    * Мирослав Николић <miroslavnikolic@rocketmail.com>


NEW in 0.2.12
=============

  * General
    * BGO#725299 - build: Detect Lua in Debian systems
    * BGO#725420 - all: Add names to all the timeouts and idles
    * Plug some leaks
    * Added/updated i18n support
      * Chinese
      * French
      * Galician
      * Hungarian
      * Korean
      * Portuguese
      * Russian
      * Slovenian
      * Spanish
      * Traditional Chinese

  * Apple Trailers plugin
    *BGO#724019 - core: Add "source-tags" property

  * Bookmarks plugin
    * BGO#726349 - bookmarks: Pass the removed media when notifying

  * Filesystem plugin
    * BGO#725203 - Filesystem plugin bug fixes

  * Freebox plugin
    *BGO#724019 - core: Add "source-tags" property

  * Guardian plugin
    * Removed (part of new Lua Factory plugin)
    * BGO#724644 - guardian-videos: Update to use guardianapis

  * Local Metadata plugin
    * Added tests
    * BGO#724046 - local-art: Use libmediaart instead of custom code
    * BGO#725026 - Add support for SeasonxEpisode filename format

  * Lua Factory plugin
    * Added new plugin that allows to create sources in Lua language
    * It includes the following sources:
      * Euronews - A source for watching Euronews online
      * Metrolyrics - A source for lyrics
      * Radio France - A source for browsing Radio France radio stations
      * The Guardian Videos - A source for browsing videos from the Guardian
    * BGO#711243 - Lua-Factory Plugin
    * BGO#722820 - Add Radio France source
    * BGO#724415 - Add Euronews source
    * BGO#724644 - guardian-videos: Update to use guardianapis
    * BGO#725188 - Lua-Factory: extend fetch operation
    * BGO#725209 - lua-factory: Detect broken sources
    * BGO#725381 - lua-factory: Add grl.unescape() helper
    * BGO#726562 - lua-factory: Print URL for failed fetches
    * BGO#726563 - lua-factory: Assert when overwriting user_data with
      concurrent resolves
    * BGO#726677 - metrolyrics: fix initial check up

  * Pocket plugin
    * BGO#725425 - pocket: initialize variables

  * TMDb plugin
    * BGO#726372 - tmdb: Fix possible assertion at run-time

  * Tracker plugin
    * BGO#629002 - Add GRL_METADATA_KEY_SIZE

  * UPnP plugin
    * BGO#724793 - upnp: Prevent crash with some UPnP servers

  * Contributors to this release:
    * Balázs Úr <urbalazs@gmail.com>
    * Bastien Nocera <hadess@hadess.net>
    * Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
    * Dominique Leuenberger <dimstar@opensuse.org>
    * Fran Diéguez <fran.dieguez@mabishu.com>
    * Juan A. Suarez Romero <jasuarez@igalia.com>
    * Matej Urbančič <mateju@svn.gnome.org>
    * Miguel Rodriguez Nuñez <bokerones.fritos@gmail.com>
    *  Rūdolfs Mazurs <rudolfsm@src.gnome.org>
    * Seong-ho Cho <darkcircle.0426@gmail.com>
    * Tiagosdot <almosthumane@portugalmail.pt>
    * Victor Toso <me@victortoso.com>
    * Wylmer Wang <wantinghard@gmail.com>
    * Yuri Myasoedov <ymyasoedov@yandex.ru>
    * naybnet <naybnet@gmail.com>


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>