summaryrefslogtreecommitdiff
path: root/NEWS
blob: d6daedf136e5d9b0e489cfec3fb1bd15579a1873 (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
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
0.17.5.1
========

A paperbag release for Rygel

Changes compared to 0.17.5:

- Fix underlinking of some plug-ins.

MediaExport:
 - Fix database upgrade from schema version 11 to 12

All contributors to this release:
   Jens Georg <mail@jensge.org>

0.17.5
======

A new unstable release for Rygel

Changes compared to 0.17.4:

- Correctly announce "content-synchronization" DLNA capability if supported.
- Move some public classes to GObject-style construction.
- Drop some obsolete code.
- Large refactoring and clean-up of the build setup.

Renderer:
 - Fix issue with internal plug-in in librygel-renderer.
 - Delay creation of the PlayerController. This fixes a critical in the
   wrapping GStreamer renderer.
 - Fix an issue with X_DLNA_SeekTime being always available, even for images.
 - Fix a typo in the initial state variable notify.
 - Add renderer-side PlaySpeed support.

Server:
 - Fix issue with ServiceResetToken being regenerated at each start.
 - Fix issue with missing search capabilities when the plug-in supports change
   tracking.
 - Fix schema location in generated LastChange XML.
 - Fix issue where only the most recent LastChange event was added to the
   LastChange XML.
 - Fix an issue with default parameter set to "this" being ambigous.
 - Get the SystemUpdateID from the back-end when it supports change tracking.

GStreamer renderer:
 - Base RygelPlaybinRenderer on RygelMediaRenderer instead of directly
   extending RygelMediaDevice.
 - Move the plugin class back into the Playbin plugin.

Examples:
 - Add a fullscreen renderer.
 - Fix C renderer plugin example to actually work.

Tests:
 - Massive overall improvements to drop deprecated Vala constructs, unused and
   unreachable code to make it possible to compile them with strict valac.
 - Disable one test for GStreamer media engine.

MediaExport:
 - Implement tracking of changes.
 - Persist ServiceResetToken.
 - Persist systemUpdateID, containerUpdateID and totalDeletedChildCount.
 - Some file renaming to match coding style.
 - Don't try to parse each and every text file.
 - Don't run gst-discoverer on text files.

Docs:
 - Various updates.

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=689603
 - https://bugzilla.gnome.org/show_bug.cgi?id=689134
 - https://bugzilla.gnome.org/show_bug.cgi?id=689135
 - https://bugzilla.gnome.org/show_bug.cgi?id=689960
 - https://bugzilla.gnome.org/show_bug.cgi?id=690056

All contributors to this release:
  Jens Georg <jensg@openismus.com>
  Murray Cumming <murrayc@murrayc.com>
  Regis Merlino <regis.merlino@intel.com>
  Dr.T.Vasudevan <drtvasudevan@gmail.com>
  Christophe Guiraud <christophe.guiraud@intel.com>

Added/updated translations
 - ta, courtesy of Dr.T.Vasudevan

0.17.4
======

A new unstable release for Rygel

Changes compared to 0.17.3:

- Various documentation fixes.
- Fix .pc file to point to correct version of libgee.
- Hopefully final fix for building with --disable-valadoc.
- Change --with-media-engine=none to =simple.

MediaExport:
 - Add DLNA profile for playlists.
 - Ignore files starting with ".".
 - Handle text/plain to accomodate issues with shared-mime-info and missing
   file extensions.

All contributors to this release:
  Murray Cumming <murrayc@murrayc.com>
  Jens Georg <jensg@openismus.com>

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=689517

0.17.3
======

A new unstable release for Rygel

Changes compared to 0.17.2:

- Really bump Vala requirement as announced in previous version.
- Remove obsolete --enable-test-plugin configure option.
- Don't run tests by default.

Server:
 - Add serialisation of containers to DIDL_S playlist format.
 - Generate thumbnails for native files only.
 - Add support for playlist items.
 - Support DIDL_S DLNA profile.

Doc:
 - Update "Implementing server plugins" docs.
 - Add "Implementing renderer" docs.
 - Some general improvements.

Tracker:
 - Fix building against recent tracker releases.

Renderer:
 - Mark some strings for translation.
 - Add PresetNameList to initial notify.
 - Set correct track numbers.
 - Support DIDL_S playlists.
 - Some state notification fixes.
 - Add GetCurrentTransportActions UPnP call.

Playbin:
 - Add 3GPP mime-type.
 - Properly query duration using DURATION_CHANGED message and really check if
   the pipeline knows its TIME and not just its size.

Examples:
 - C version of the example renderer.

Media-Export:
 - Reenable media art extraction.
 - Fix a critical on harvesting.
 - Fix an upload issue with the method to mark an item as a place-holder.
 - Support playlist items.

All contributors to this release:
  Jens Georg <jensg@openismus.com>
  Murray Cumming <murrayc@murrayc.com>
  Krzesimir Nowak <krnowak@openismus.com>
  Mark Ryan <mark.d.ryan@intel.com>

Bugs fixed in this release
  - https://bugzilla.gnome.org/show_bug.cgi?id=686638

Known issues:
 - Transcoding to WMV is not working properly, streams are audio-only.

Changes in dependencies
  - Vala 0.18

0.17.2
======

A new unstable release for Rygel

Changes compared to 0.17.1:

- Fix , unescaping and CSV parsing in UpdateObject call.
- Fix thumbnails for XBox 360.
- Look for the proper device description XML.
- Fix regression that caused missing Content-Length headers.
- More GObject API changes.
- Fix pkg-config files to not include GStreamer dependency.
- Port to libgee-0.8 API
- Remove unneccessary GStreamer dependencies.

MediaExport:
 - Fix regression introduced in 0.17.2 causing empty containers.

Playbin:
 - Only report duration of a file if it's really known.

Examples:
 - C version of the server plug-in.

Media-Engine GStreamer:
 - Port to GStreamer 1.0 API.

Known issues:
 - Transcoding to WMV is not working properly, streams are audio-only.
 - Media art extraction is disabled as it caused crashes/lock-ups.

Changes in dependencies:
 - GUPnP-DLNA 0.7.0 for GStreamer 1.0 support.
 - Necessary versions of GStreamer libs have been bumped to 1.0.
 - Vala version 0.18 for included GStreamer vapis.

0.17.1
======

A new unstable release for Rygel

Changes compared to 0.17.0:

- Many documentation updates.
- Fix random failure of HTTPGetTest.
- Clean-up linking, trying to fix over- and underlinking.
- Adapt to new GUPnP vapi.
- Fix crash if force-downgrade-for is empty.
- Fix a namespace issue in the public API.
- Fix the pkg-config files after API and bump.
- Only create a seek when the client requests seeking.
- Don't search for modules in hidden folders, except .libs to support
  --enable-uninstalled.
- Drop the "test" plugin.
- Switch some of the public members in API to GObject properties.
- Some style fixes.
- Change Device version to MediaServer:3.
- Change Service version to ContentDirectory:3.
- Implement "Track Changes" feature of ContentDirectory:3.
- Add an API for plugins to show capabilities such as upload or change
  tracking.
- Implement UpdateObject in ContentDirectory:3.

Media-Engine GStreamer:
 - Fix a crash in transcoding.
 - Fix a mix-up in DLNA profiles causing upload to fail.
 - Ignore full-range seeks, fixing a transcoding issue with certain versions
   of mpegtsmux.

MediaExport:
 - Don't expose a colorDepth of 0.
 - Allow updating of objects via UPnP call "UpdateObject".

Renderer-Gst:
 - Add convenience method to access GstPlaybin of renderer plug-in.

Examples:
 - Fix service description in SysV init script.
 - Add an example server plugin.
 - Add an example renderer plugin.

External:
 - Support "audio.music" as documented in the spec.

MPRIS:
 - Fix a crash when a peer does not implement mandatory properties.

Playbin:
 - Add mime-types for AAC audio.

Changes in dependencies:
 - GUPnP >= 0.19.0 for new VAPI.
 - GUPnP-AV >= 0.11.2 for XML fragment support.
 - GUPNP-DLNA is optional only when building the GStreamer media engine.

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=680496
 - https://bugzilla.gnome.org/show_bug.cgi?id=684868
 - https://bugzilla.gnome.org/show_bug.cgi?id=683934
 - https://bugzilla.gnome.org/show_bug.cgi?id=674738
 - https://bugzilla.gnome.org/show_bug.cgi?id=674738
 - https://bugzilla.gnome.org/show_bug.cgi?id=686018
 - https://bugzilla.gnome.org/show_bug.cgi?id=679023
 - https://bugzilla.gnome.org/show_bug.cgi?id=676024

All contributors to this release:
  Murray Cumming <murrayc@openismus.com>
  Jens Georg <jensg@openismus.com>
  Krzesimir Nowak <krnowak@openismus.com>
  Andreas Henriksson <andreas@fatal.se>
  Mark Ryan <mark.d.ryan@intel.com>

0.17.0
======

A new unstable release for Rygel

Changes compared to 0.16.0:

- Implement notification on configuration changes.
- Fix compatibility issues with newer Reciva firmwares.
- Add missing header, vapi and deps files.
- Make it possible to compile and run Rygel without GStreamer. Please note
  that the functionality is reduced when run without GStreamer. Serveral
  plug-ins are disabled and no transcoding is possible.
- API version is bumped to 2.0.
- .so version is bumped to 1.

Examples:
 - Fix standalone-server example to not return 404 all the time.

Changes in dependencies:
 - Tracker plug-in does not depend on GUPnP-DLNA anymore.

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=685183

All contributors to this release:
  Jens Georg <jensg@openismus.com>
  Krzesimir Nowak <krnowak@openismus.com>

0.15.2
======

A new release in Rygel's unstable cycle!

Changes compared to 0.15.2:

- Prevent a critical if the thumbnail for a file does not exist.
- Fix all warnings from newer Vala.
- Let the plugins do the sorting to prevent that we slice before we sort.
- Move the default sort criteria into MediaContainer to allow containers to
  override it if necessary.
- Canonicalize common error messages.
- Add TwoPlayer to V1 downgrades.
- Small refactoring of the V1 handling.
- Fix debug builds.
- Add "description" property to MediaItem.
- Remove misc.vapi.
- Disable installing if --enable-uninstalled was used.

Tracker:
 - Sort browse results using SPARQL.
 - Sort album containers by disc, track and title.

MediaExport:
 - Sort browse and search results using SQL.
 - Fix a crash when a client tried to access a non-existent query container.
 - Sort album containers by disc, track and title.
 - Properly collate query containers.

Mediathek:
 - Extract date and description from RSS feed.
 - Sort by date descending (newest entry first) by default.

Changes in dependencies:
 - Vala 0.16.1 for Posix.execvp.

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=661482
 - https://bugzilla.gnome.org/show_bug.cgi?id=668376
 - https://bugzilla.gnome.org/show_bug.cgi?id=652375
 - https://bugzilla.gnome.org/show_bug.cgi?id=639809
 - https://bugzilla.gnome.org/show_bug.cgi?id=681452
 - https://bugzilla.gnome.org/show_bug.cgi?id=680742

All contributors to this release:
  Jens Georg <mail@jensge.org>
  Lukasz Pawlik <lukasz.pawlik@comarch.com>
  Fran Diéguez <fran.dieguez@mabishu.com>
  Мирослав Николић <miroslavnikolic@rocketmail.com>
  Yaron Shahrabani <sh.yaron@gmail.com>
  Nilamdyuti Goswami <nilamdyuti@gmail.com>
  Matej Urbančič <mateju@svn.gnome.org>
  Kentaro KAZUHAMA <kazken3@gmail.com>
  Daniel Mustieles <daniel.mustieles@gmail.com>
  Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>

Added/updated translations
 - as, courtesy of Nilamdyuti Goswami
 - es, courtesy of Daniel Mustieles
 - gl, courtesy of Leandro Regueiro
 - he, courtesy of Yaron Shahrabani
 - ja, courtesy of Kentaro KAZUHAMA
 - sl, courtesy of Matej Urbančič
 - sr, courtesy of Мирослав Николић
 - sr@latin, courtesy of Miroslav Nikolić
 - zh_HK, courtesy of Chao-Hsiung Liao
 - zh_TW, courtesy of Chao-Hsiung Liao

0.15.1
======

A new release in Rygel's unstable cycle!

Changes compared to 0.15.1:

- Fix setting of meta-data in AVTransport.
- Fix compatibility with various new Samsung devices.
- Fix content-range checking.
- Relay meta-data to player instances in AVTransport.
- Fall-back to template description if cached description is not readable.
- Add librygel-core, librygel-server and librygel-renderer.
- Generate documentation for newly created libraries.
- Use GIO for thumbnail requests and don't fail if there's no thumbnail
  directory as tumbler creates that.

MediaExport:
 - Use display_name instead of filename to prevent encoding issues in DIDL.
 - Speed up browsing of virtual folders.
 - Fix upgrade from Rygel 0.6 (be nice to Debian stable users).
 - Fix translation of virtual folders.
 - Massively speed up initial meta-data extraction.

Playbin:
 - Uptime content-types for various XIPH formats.
 - Fix LPCM playback.

External:
 - Don't browse external containers recursively.
 - Guard against empty mandatory properties.

Tracker;
 - Port to libtracker-sparql.
 - Use nfo:fileName as alternative title if nie:title is not available.
 - Remove some dead code.
 - Unify query code.

New dependencies:
 - libtracker-sparql-0.14
 - libunistring (optional)

Bugs fixed:
 https://bugzilla.gnome.org/show_bug.cgi?id=677959
 https://bugzilla.gnome.org/show_bug.cgi?id=677966
 https://bugzilla.gnome.org/show_bug.cgi?id=674542
 https://bugzilla.gnome.org/show_bug.cgi?id=676037
 https://bugzilla.gnome.org/show_bug.cgi?id=661988
 https://bugzilla.gnome.org/show_bug.cgi?id=644491
 https://bugzilla.gnome.org/show_bug.cgi?id=679648

Added/updated translations
 - as, courtesy of Nilamdyuti Goswami
 - bg, courtesy of Alexander Shopov
 - el, courtesy of Tom Tryfonidis
 - es, courtesy of Daniel Mustieles
 - gl, courtesy of Fran Dieguez
 - he, courtesy of Yaron Shahrabani
 - lt, courtesy of Aurimas Černius
 - nb, courtesy of Kjartan Maraas
 - sl, courtesy of Matej Urbančič
 - te, courtesy of Hari Krishna
 - zh_HK, courtesy of Chao-Hsiung Liao
 - zh_TW, courtesy of Chao-Hsiung Liao

All contributors to this release:
 Jens Georg <mail@jensge.org>
 Murray Cumming <murrayc@murrayc.com>
 Yaron Shahrabani <sh.yaron@gmail.com>
 Daniel Mustieles <daniel.mustieles@gmail.com>
 Nilamdyuti Goswami <nilamdyuti@gmail.com>
 Matej Urbančič <mateju@svn.gnome.org>
 Luis de Bethencourt <luis@debethencourt.com>
 Kjartan Maraas <kmaraas@gnome.org>
 Fran Diéguez <fran.dieguez@mabishu.com>
 Tom Tryfonidis <tomtryf@gmail.com>
 Sasi Bhushan Boddepalli <sasi@swecha.net>
 Murray Cumming <murrayc@openismus.com>
 Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
 Aurimas Černius <aurisc4@gmail.com>
 Alexander Shopov <ash@kambanaria.org>

0.15.0
======

A new unstable cycle for GNOME 3.6!

Changes compared to 0.14.0:

- Port to Vala 0.16 vapis.
- Use new GMutex/GCond api.
- Use GLib 2.30 Unix signal handling code.
- Parse "Range:" HTTP headers using libsoup functions.
- Fix SinkProtocolInfo generation in SinkConnectionManager.
- Fix URI escaping in AVTransport ChangeLog generation.
- Use the correct XML namespace for upnp:author and upnp:album in
  GetSortCapabilities.
- Use GStreamer presets to set the encoding bitrates in our transcoders.
- Lower the MP3 and MPEG2 bitrates a bit.
- Remove the current AAC transcoder and add a working one.
- Fix state machine transitions in AVTransport.
- Set correct number of tracks and reset when URI is empty.
- Implement GetMediaInfo_Ext.
- Check InstanceID in AVTransport and RenderingControl.
- Use "FactoryDefault" as default RenderingControl preset.
- Update service description files to include the proper allowed values.
- Verify if the URI passed in SetAVTransportURI is accessible and the media
  matches any of the advertised mime types.
- Fix initial LastChange event to include all state variables.
- Fix RecordMedium state variable to return "NOT_IMPLEMENTED".
- Fix serveral error codes in AVTransport.
- Add some checks for "Mute" and "Volume" in RenderingControl.
- Push meta-data, mime type and contentFeatures.dlna.org to the MediaPlayer
  instance.
- Select streamingMode.dlna.org header based on DLNA flags.

IOP:
 - Force version downgrade for devices using the Mediabolic UPnP stack.

Playbin:
 - Fix duration notification
 - Avoid Warning from GStreamer when an empty URI is set.
 - Use "NO_MEDIA_PRESENT" as initial state instead of "STOPPED".

GstLaunch:
 - Add an option to set the DLNA profile of a stream if applicable

Ui:
 - Fix initial set-up.
 - Fix removing autostart file when Rygel is not running.

Changes in dependencies:
 - Vala >= 0.16 for newer vapis
 - glib >= 2.32 for Unix signal handlers and new GMutex/GCond APIs

Bugs fixed in this release:
 https://bugzilla.gnome.org/show_bug.cgi?id=675234
 https://bugzilla.gnome.org/show_bug.cgi?id=674071
 https://bugzilla.gnome.org/show_bug.cgi?id=674733

All contributors to this release:
 Jens Georg <mail@jensge.org>
 Yaron Shahrabani <sh.yaron@gmail.com>
 Sasi Bhushan <sasi@swecha.net>
 Jonh Wendell <jwendell@gnome.org>
 Yuri Myasoedov <omerta13@yandex.ru>
 Matej Urbančič <mateju@svn.gnome.org>
 Marek Černocký <marek@manet.cz>
 Luca Ferretti <lferrett@gnome.org>
 Kentaro KAZUHAMA <kazken3@gmail.com>
 Joe Hansen <joedalton2@yahoo.dk>
 Gil Forcada <gforcada@gnome.org>
 Gabor Kelemen <kelemeng@gnome.hu>
 Fran Diéguez <fran.dieguez@mabishu.com>
 Daniel Nylander <po@danielnylander.se>
 Christian Kirbach <Christian.Kirbach@googlemail.com>
 Bruno Brouard <annoa.b@gmail.com>
 Alexander Shopov <ash@kambanaria.org>

Added/updated translations
 - bg, courtesy of Alexander Shopov
 - ca, courtesy of Joan Duran
 - cs, courtesy of Marek Černocký
 - da, courtesy of Joe Hansen
 - de, courtesy of Christian Kirbach
 - fr, courtesy of Pierre Henry
 - gl, courtesy of Fran Dieguez
 - he, courtesy of Yaron Shahrabani
 - hu, courtesy of Gabor Kelemen
 - it, courtesy of Luca Ferretti
 - ja, courtesy of Kentaro KAZUHAMA
 - pt_BR, courtesy of Jonh Wendell
 - ru, courtesy of Yuri Myasoedov
 - sl, courtesy of Matej Urbančič
 - sv, courtesy of Daniel Nylander

0.13.4
======

A new release in the current unstable release cycle

Changes compared to 0.13.3:

- Add the new logo.
- Don't abort if a client requests an invalid thumbnail or subtitle.
- Don't crash if a GStreamer element is missing.
- Set X_DLNACAP according to the allow-upload/allow-deletion configuration.
- Drop the "maximum version" requirements in configure.ac.
- Revert the ¨npt=0- is not a seek" patch since it broke DLNA requirement
  7.3.33.4.
- Don't crash if a User-Agent contains non-UTF-8 characters.

Mediathek:
 - Reduce severity of a warning message.

Playbin:
 - Emit duration change once the playbin can know it.

Tracker:
 - Refactor alternative properties.

MPRIS:
 - Don't abort if a server doesn't use the proper type for the "Metadata"
   property.

MediaExport:
 - Set proper UPnP class for virtual containers.

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=672048
 - https://bugzilla.gnome.org/show_bug.cgi?id=667781

Added/updated translations
 - lv, courtesy of Rūdolfs Mazurs
 - pl, courtesy of Piotr Drąg

All contributors to this release:
 Jens Georg <mail@jensge.org>
 Rudolfs Mazurs <rudolfs.mazurs@gmail.com>
 Piotr Drąg <piotrdrag@gmail.com>
 Lukasz Pawlik <lukasz.pawlik@comarch.com>

0.13.3
======

A new release in the current unstable release cycle

Changes compared to 0.13.2:

- Fix a regression introduced in 0.13.2 that caused the XBox 360 to show empty
  Album, Artist and Genre folders with the Tracker plugin.
- Fix the time-out used on item creation.
- Only ask tumbler to create thumbnails if it's not a remote resource.

Added/updated translations
 - sl, courtesy of Matej Urbančič
 - sr, courtesy of Мирослав Николић
 - sr@latin, courtesy of Miroslav Nikolić

All contributors to this release
 Jens Georg <mail@jensge.org>
 Мирослав Николић <miroslavnikolic@rocketmail.com>
 Matej Urbančič <mateju@svn.gnome.org>

0.13.2
======

A new release in the current unstable release cycle

Changes compared to 0.13.1:

- Work around a reference issue when using vala-0.16.
- Really add the hack for WMP 12.
- Fix XBox 360 showing the same songs multiple times in the "Songs" listing
  when not using MediaExport back-end.
- Drop obsolete gconf dependency.
- Don't crash when loading the same module twice accidently.
- Add tests for ItemCreator class.
- Refactor, document and clean-up ItemCreator class.
- Use supplied <dc:date> in CreateObject call.

Tracker:
 - Revert the change that lets the fs-miner chose the RDF type. This broke
   uploading very badly.
 - Use the item's date when creating a new item.

Bugs fixed:
 https://bugzilla.gnome.org/show_bug.cgi?id=664184
 https://bugzilla.gnome.org/show_bug.cgi?id=669858
 https://bugzilla.gnome.org/show_bug.cgi?id=660477

Added/updated translations
 - cs, courtesy of Marek Černocký
 - es, courtesy of Daniel Mustieles

All contributors to this release:
 Jens Georg <mail@jensge.org>
 Marek Černocký <marek@manet.cz>
 Daniel Mustieles <daniel.mustieles@gmail.com>

0.13.1
======

A new release in the current unstable release cycle

Changes compared to 0.13.0:

- Fix MPEG2 transcoding to not fail due to a typo in the container caps.
- Output debug information about the used transcoding profile.
- Fix AVC transcoding: Framerate and resource resolution.
- Some documentation updates.
- Simplify the RTP depayloader guessing code by using GStreamer functionality.
- Stop leaking HTTPRequests due to a ref cycle.
- Some stability errors and conformance changes.
- Add coverage reports for unittests.
- Increase the coverage of some classes.
- Fix basic search implementation for offset > 0 and limit == 0.
- Add an environment variable to set the time-out for plug-in loading to help
  when running in valgrind.

IOP:
 - More refactoring: Version downgrade is not longer bound to the XBox 360
   hacks and configurable. That makes the ugly trailing colon disappear for
   devices that are not a XBox 360 but still need the downgrade.
 - Add hacks for XBMC which has problems to play AAC/M4A files shared with the
   "correct" DLNA mime-type.
 - Fix Slideshow option in XBox 360 when called from top-level image browser.
 - If a time-seek requests everything, just ignore that it's a seek.
 - Add a file extension to all served URIs to help those devices that need
   them.
 - Fix an issue where Windows Media Player 12 only showed the first 200 items.

UI:
 - Minor clean-up and polishing.
 - Tooltips.

Tracker:
 - Get rid of work-around for gnome-bug 623685

MediaExport:
 - Fix a regression in the file monitor that caused moved files to be missed.
 - Update the documentation to clarify how to enter URIs in the configuration
   file.
 - Fix an endless loop when adding media to an empty but watched directory.
 - Delay the creation of the virtual folder hierarchy until the initial walk
   is done.

Mediathek:
 - Update the documentation on how to configure it and distribute those.

MPRIS:
 - Add possibility to disable the whole module.

External:
 - Don't crash if the D-Bus server doesn't behave as specified when sending
   updates.
 - Transcoding/Proxying if the uri contained the @ADDRESS@ template
 - Fix icons; it was still using the MediaItem1 interface.
 - Update child count properly if container changes.
 - Add possibility to disable the whole module.

Changes in dependencies:
 - Require Vala 0.14.1 for GStreamer VAPI fixes.

Bugs fixed:
 https://bugzilla.gnome.org/show_bug.cgi?id=659432
 https://bugzilla.redhat.com/show_bug.cgi?id=759206
 https://bugzilla.gnome.org/show_bug.cgi?id=666363
 https://bugzilla.gnome.org/show_bug.cgi?id=644538
 https://bugzilla.gnome.org/show_bug.cgi?id=668335
 https://bugzilla.gnome.org/show_bug.cgi?id=663826
 https://bugzilla.gnome.org/show_bug.cgi?id=653120
 https://bugzilla.gnome.org/show_bug.cgi?id=663631
 https://bugzilla.gnome.org/show_bug.cgi?id=669677
 https://bugzilla.gnome.org/show_bug.cgi?id=669680

Updated/Added translations:
 - es, courtesy of Daniel Mustieles
 - fr, courtesy of Alexandre Franke
 - ja, courtesy of Jiro Matsuzawa
 - pl, courtesy of Piotr Drąg

All contributors to this release:
 Jens Georg <mail@jensge.org>
 Marcin Kazmierczak <marcin.kazmierczak@comarch.com>
 Krzesimir Nowak <qdlacz@gmail.com>
 Piotr Drąg <piotrdrag@gmail.com>
 Lukasz Pawlik <lucas.pawlik@gmail.com>
 Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
 David King <amigadave@amigadave.com>
 Daniel Mustieles <daniel.mustieles@gmail.com>
 Alexandre Franke <alexandre.franke@gmail.com>


0.13.0
======

The beginning of a new unstable release cycle.

Many of the commits in this release already have been released in one of
our stable 0.12.x versions. A list of all changes that already were released
is available in the stable branch's NEWS file:

http://git.gnome.org/browse/rygel/tree/NEWS?h=RYGEL_0_12_5

Changes compared to 0.12.5:

- Use context-less API from gupnp-0.18.
- Switch to .xz tarballs as default.
- Get rid of a nested MainLoop in HTTP POST handling that caused a lot of
  trouble with vala's async support.
- Refactor ClientHacks into a generic part and XBox support.
- Add a hack for Panasonic TVs that can only handle PNG thumbnails if you
  tell them they're JPEG.
- Always build and run tests when using autogen.sh.
- Write uploaded data to a temporary hidden file first and move to real file
  later, helping file monitors to only create a single event.
- Add a 128x128 version of the icon.
- Move the 48x48 JPEG icon and 120x120 icons necessary for DLNA out of the
  icon theme.
- Drop XML comments from the content description files which might cause
  issues in IOP.
- Stabilize the error handling in HTTP POST.
- Clean-up GTK+ checks in configure.ac.
- Only pass -g to valac when --enable-debug was passed.
- More robust transcoding on faulty input.
- Clean-up and refactor audio- and video-transcoders.
- Clean-up RTP depayloader guessing.
- Fix deadlock on Ctrl-C.
- Fix a crash on filesystem error while uploading.

- MediaExport:
  - Refactor and clean QueryContainer.
  - Use proper UPnP classes like object.container.album.musicAlbum for virtual
    folders.
  - Support audio-less videos.

- Mediathek:
  - Set proper DLNA profile on the WMV streams.

- Playbin:
  - Add support for image/jpeg and image/png.

- Tracker:
  - Fix querybuilder for graphed statements.
  - Let tracker-fs-miner override properties and chose the proper RDF type
    for an uploaded file.
  - Cache ContainerUpdateIDs for metadata-based containers.

- Bugs fixed in this release:
  gnome:660107 - Mediathek HTTP proxy URL doesn't have a DLNA profile for WMV
  gnome:661336 - No thumbnails for Panasonic
  gnome:637226 - rygel installs 120x120 icons, instead of 128x128

- All contributors to this release:
  - Jens Georg <mail@jensge.org>
  - Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
  - Grzegorz Grabowski <grzegorz.grabowski@comarch.com>
  - Mario Blättermann <mariobl@gnome.org>
  - Marek Černocký <marek@manet.cz>
  - Matej Urbančič <mateju@svn.gnome.org>
  - Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
  - Jorge González <jorgegonz@svn.gnome.org>

- Added/updated translations:
  - de, courtesy of Mario Blättermann
  - sl, courtesy of Matej Urbančič
  - cz, courtesy of Marek Černocký
  - eo, courtesy of Kristjan SCHMIDT
  - es, courtesy of Jorge González


0.11.3
======

Another release in the unstable release cycle.

Changes since 0.11.2:

- Dependency-related changes:
  - Bump GStreamer version to 0.10.35 for important encodebin fixes.
  - Bump Vala version to version 0.14.
  - Bump libsoup maximum version.

- Fixed an abort if the client requested chunks of data being too small.
- Fix memory leaking related to file upload.
- Work-around a crash when the service description file is invalid.
- Make rygel a single-instance app. If a new instance is started, the old
  instance will be shut down. This is likely to be reveresed in a future
  release.
- Fix an UPnP compatibility regression.
- Fix resolution and framerate for MPEG_TS_HD_NA_ISO transcoder.
- Adapt to changes in upcoming vala-0.14
- Allow UPnP class generalization on upload to DLNA_ORG.AnyContainer.
- Add transcoders for AAC_ISO_320 and AVC_MP4_BL_CIF15_AAC_520. Note that both
  are disabled by default since GStreamer has some issues with these
  pipelines.

- IOP:
  - Fix IOP with XBox 360's music browsing.
  - Fix IOP with Samsung Galaxy S.
  - Fix IOP with Allegro clients.

- Tracker:
  - Properly escape meta-data strings.
  - Update search containers if tracker content changes.
  - Fix wrong search result when "exists true" was searched for artist, album
    and genre.
  - Implement @refID.
  - Add an option to share only those files that have a nmm:dlnaProfile set.

- MediaExport:
  - Refactor database access code.

All contributors to this release:
  - Jens Georg <mail@jensge.org>
  - Luis de Bethencourt <luis.debethencourt@collabora.com>
  - Daniel Mustieles <daniel.mustieles@gmail.com>
  - Мирослав Николић <miroslavnikolic@rocketmail.com>
  - Yuri Myasoedov <omerta13@yandex.ru>
  - Thijs Vermeir <thijsvermeir@gmail.com>
  - Mario Blättermann <mariobl@gnome.org>
  - Marek Černocký <marek@manet.cz>
  - Kjartan Maraas <kmaraas@gnome.org>
  - Andrej Žnidaršič <andrej.znidarsic@gmail.com>

Added/updated translations
  - cs, courtesy of Marek Černocký
  - de, courtesy of Mario Blättermann
  - es, courtesy of Daniel Mustieles
  - nb, courtesy of Kjartan Maraas
  - ru, courtesy of Yuri Myasoedov
  - sl, courtesy of Andrej Žnidaršič
  - sr, courtesy of Мирослав Николић
  - sr@latin, courtesy of Miroslav Nikolić

- UPnP requirements addressed:
  - UPnP CTT 2.0 cases AV-CD:1-4.1

- DLNA requirements addressed:
  - 7.3.66.3
  - 7.3.120.4
  - 7.3.136.1
  - 7.3.136.4

- Bugs fixed:
  bgo#629582 - MediaServer doesn't work with Samsung Galaxy S
  bgo#654833 - compiler warning in media-export plugin

0.11.2
======

Another release in the unstable release cycle.

Changes since 0.11.1:

- Fix regression introduced in 0.11.1 which made tracker plugin fail to
  start.
- Add commandline options -c, --config to override the user
  configuration file.
- Add a config file options to override the upload directories.
- Use proper UPnP service description syntax.
- Tracker:
  - Clean-up left-over place-holder items on plugin start-up.

All contributors to this release:
  - Jens Georg <mail@jensge.org>
  - Topi Santakivi <topi.santakivi@digia.com>
  - Matej Urbančič <mateju@svn.gnome.org>
  - Marek Černocký <marek@manet.cz>
  - Jorge González <jorgegonz@svn.gnome.org>

Added/updated translations
  - cs, courtesy of Marek Černocký
  - es, courtesy of Jorge González
  - sl, courtesy of Matej Urbančič

- UPnP requirements addressed:
  - UPnP CTT 1.5 cases 1.x.y.z.

- DLNA requirements addressed:
  - 7.3.139.1
  - Improved robustness for the CreateObject tests.

0.11.1
======

Another release in the unstable release cycle.

This is mostly a comatibility release to be able to build against latest
unstable releases of GSSDP & GUPnP.

Changes since 0.11.0:

- Fix warnings and critical messages when Rygel is run without a DBus session
  bus available.
- Modify XBox support to not disturb UPnP conformance.
- Bump required minimum versions of GSSDP, GUPnP, GUPnP-AV and GUPnP-Vala.
- Implement upnp:searchClass.
- Several improvements to SOAP action parameter validation.
- MediaExport:
  - Add APE to the supported media formats.

All contributors to this release:
  - Jens Georg <mail@jensge.org>
  - Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
  - Topi Santakivi <topi.santakivi@digia.com>
  - Andrej Žnidaršič <andrej.znidarsic@gmail.com>
  - Mario Blättermann <mariobl@gnome.org>

Dependency-related changes:
- Bump GSSDP requirement to 0.11.0
- Bump GUPnP requirement to 0.17.0
- Bump GUPnP-AV requirement to 0.9.0
- Bump GUPnP-Vala requirement to 0.9.0

- UPnP requirements addressed:
  - UDA-1.1.1
  - UDA-1.1.2
  - UDA-1.1.3
  - UDA-1.1.4
  - UDA-3.1.3
  - UDA-4.2.2
  - AV-CD:1-6.1
- DLNA requirements addressed:
  - 7.3.67.4
  - 7.3.134.1

Updated translations:
  - de, courtesy of Mario Blättermann.
  - sl, courtesy of Andrej Žnidaršič.

0.11.0
======

This release marks the beginning of a new unstable release-cycle which will
eventually be integrated into GNOME 3.2. Changes since 0.10.2:

- Serve video thumbnails to XBox 360
- Change ImportResource not to use GVFS
- Validate passed sort criteria string
- More validation and robustness of input arguments for actions
- Complete supported formats for TimeSeekRange parsing
- Ignore unknown commandline options and print help string when
  encountering those
- Make sure an uploaded file is closed after HTTP POST
- Several fixes related to seeking
- Add restrictions to correct transfer modes
- MediaExport:
  - Wait for filesystem events to settle before harvesting new files
  - General code clean-up, especially in the file monitor
  - Add option to disable file monitoring
  - Add more exotic media to be harvested:
    - .mpc/.mpc: MusePack
    - .wv: WavPack
    - .aac: Stand-alone AAC (raw/ADTS)
    - .mp2: MPEG 1, Audio Profile 2
    - .webm: WebM video files
    - .mka: Audio in a Matroska file
  - Ignore unknown file from discoverer
- Tracker:
  - Print the used upload directories
  - Use D-Bus filtering for GraphUpdated, be waken much less by tracker
  - Support adding of existing but non-indexed files as well as general
    objects with all kinds of URIs through the CreateObject call
  - Generally rework the handling of place holder items which are uploaded
    later by the Content-Directory
  - Set item size in the tracker-miner graph

All contributors to this release:
  - Jens Georg <mail@jensge.org>
  - Topi Santakivi <topi.santakivi@digia.com>
  - Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
  - Muhammet Kara <muhammet.k@gmail.com>
  - Marek Černocký <marek@manet.cz>
  - Luis de Bethencourt <luis.debethencourt@collabora.co.uk>
  - Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
  - Lê Trường An <xinemdungkhoc1@gmail.com>
  - Jorge González <jorgegonz@svn.gnome.org>
  - Gabriel F. Vilar <cogumm@gmail.com>
  - Daniel Mustieles <daniel.mustieles@gmail.com>
  - Andrej Žnidaršič <andrej.znidarsic@gmail.com>

- Many other non-functional and/or minor improvements and fixes.

Dependency-related changes:

- Bump libsoup requirements

Bugs fixed in this release:

bgo#651965 - Rygel Uses 100% CPU while working on an incomplete MKV file

- UPnP requirements satisfied:
  - AV-CD:1-4.2
  - AV-CD:1-4.3
  - AV-CD:1-9.1
  - AV-CD:1-11.1
  - AV-CD:1-12.1
  - AV-CM:1-5.1
- DLNA requirements satisfied:
  - 7.3.128.7
  - 7.4.31.2
  - 7.4.38.6
  - 7.4.40.3
  - 7.4.40.8
  - 7.4.49.4
Added/updated translations:
  - cs, courtesy of Marek Černocký
  - es, courtesy of Daniel Mustieles
  - pt_BR, courtesy of Gabriel F. Vilar
  - sl, courtesy of Andrej Žnidaršič
  - tr, courtesy of Muhammet Kara
  - vi, courtesy of Lê Trường An

0.10.2
======

A new release in the stable 0.10.x series for GNOME 3.0. Changes since 0.10.1:

- Fix sorting on dates without time
- Fix MediaExport plugin skipping m4a files
- Fix serving of album art
- Fix an assertion when harvesting files still being downloaded
- Don't entity-quote UTF-8 characters
- Fix a hidden potential crasher with vala async functions

Bugs fixed in this release:

648486 - Rygel doesn't show up in Samsung PS50C77 TV

All contributors to this release:

Jens Georg <mail@jensge.org>

0.10.1
======

A new release in the stable 0.10.x series for GNOME 3.0. Changes since 0.10.0:

- Fix severe performance regression introduced in 0.9.9
- Fix a crash on corrupt files
- Generate ChangeLog from git on make dist

All contributors to this release:

Jens Georg <mail@jensge.org>

0.10.0
======

The first release in the new stable 0.10.x series for GNOME 3.0. Changes since
0.9.9:

- More user-friendly short description. Downstream integrators might want to
  update their packages (check README).
- Simplified transcoding by use of new 'encodebin' GStreamer element. This also
  implies fixing of MPEG TS transcoder to work with recent GStreamer (plugins).
- Much more consistent and simpler HTTP stream handling by increased reliability
  on GStreamer.
- Many fixes and improvements to HTTP streams.
- More robust tests for HTTP streams.
- Fix .po files being all uppercase.
- Don't crash if log_domain is unset.
- Apply Xbox hacks on Philips DLNA TV.
- Time seek header must be locale-independent.
- Correct supported SeekMode values.
- Support 'background' mode for all streams.
- More complete DOAP file.
- Don't offer audio transcoding for videos.
- Expose 'dc:date' for items when available.
- Add some more check.
- Add support for 'refID' attribute. Although currently no plugin uses this, we
  are already adding this basic support to satisfy DLNA.
- Throw error if 'dlnaManaged' attribute or wrong DLNA profile is provided in an
  item creation request.
- Throw error with correct code on creation of item of wrong class.
- Prevent a crash in 'ImportResource' action handling.
- Report slightly more accurate time seek range.
- Don't error out on attempt to delete an inexistent file.
- MediaExport:
  - Avoid crawling $HOME by default.
  - Query user folders only once.
  - Remove huge cache directive.
  - Implement search by duration.
  - Properly cancel the file monitor.
  - Fix crash on file removal.
- Tracker:
  - Mark newly added items as available.
  - Set 'nie:contentCreated' on created items.
  - Take mime-type from gupnp-dlna to work-around bug#647575.
  - Properly escape regular expression in title containers.
  - Create a unique URI for new items.
  - Mark resources we created as ours.
- More DLNA requirements satisfied:
  - 7.3.25.1
  - 7.3.50.1
  - 7.3.67.1
  - 7.3.133.6
  - 7.3.134.3
- Localization:
  - Add more translations:
    - Bengali India translation
    - Indonesian translation
    - Latvian translation
  - Translation updates:
    - Japanese
    - Russian
    - French
    - Korean
    - Slovenian
    - Norwegian bokmål
    - Swedish
    - Bulgarian
    - Thai
    - Simplified Chinese
    - Kannada
    - Catalan
    - Portuguese
    - British English
    - Polish
    - Czech
    - Romanian
    - German
    - Galician
    - Hungarian
    - Serbian
    - Dutch
    - Spanish
    - UG
- Many other non-functional and/or minor improvements and fixes.

Dependency-related changes:

- Require gst-plugins-base.
- Require gstreamer-pbutils.

Bugs fixed in this release:

647551 - Improperly escaped regexes in tracker plugin
643854 - Rygel is not shown as media source on a Philips TV
644985 - TimeSeekRange.dlna.org HTTP header is locale dependent
645159 - PS3 doesn't recognize transcoded MP3 content

All contributors to this release:

Jens Georg <mail@jensge.org>
Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Luis de Bethencourt <luis@debethencourt.com>
Topi Santakivi <topi.santakivi@digia.com>
Abduxukur Abdurixit <abdurixit@gmail.com>
Akom Chotiphantawanon <knight2000@gmail.com>
Alexander Shopov <ash@kambanaria.org>
Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Aron Xu <aronxu@gnome.org>
Bruce Cowan <bruce@bcowan.me.uk>
Bruno Brouard <annoa.b@gmail.com>
Changwoo Ryu <cwryu@debian.org>
Daniel Mustieles <daniel.mustieles@gmail.com>
Daniel Nylander <po@danielnylander.se>
Dirgita <dirgitadevina@yahoo.co.id>
Duarte Loreto <happyguy_pt@hotmail.com>
Fran Diéguez <fran@openhost.es>
Gabor Kelemen <kelemeng@gnome.hu>
Joan Duran <jodufi@gmail.com>
Kentaro KAZUHAMA <kazken3@gmail.com>
Kjartan Maraas <kmaraas@gnome.org>
Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Marek Černocký <marek@manet.cz>
Mario Blättermann <mariobl@gnome.org>
Matej Urbančič <mateju@svn.gnome.org>
Piotr Drąg <piotrdrag@gmail.com>
Rudolfs Mazurs <rudolfs.mazurs@gmail.com>
Runa Bhattacharjee <runab@redhat.com>
Shankar Prasad <svenkate@redhat.com>
Wouter Bolsterlee <wbolster@gnome.org>
Yuri Myasoedov <omerta13@yandex.ru>
Мирослав Николић <miroslavnikolic@rocketmail.com>

0.9.9
=====

A new release in the current unstable 0.9.x series for upcoming GNOME 2.91.90
release.

- Define separate log domains for core and each plugin.
- Improved log output control: We now allow you to specify log levels separately
  for each log domain.
- HTTP Connection stalling supported for ALL streams.
- Entertain priority in GStreamer-based HTTP streams.
- Rename 'upnp_enabled' in configuration to 'upnp-enabled'.
- Add section about MPRIS plugin to manpage.
- Several fixes/improvements to manpages.
- Fix some environment variables' names.
- Use both user & system configuration. So far, we have been ignoring the system
  configuration file when the user configuration file exists. This leads into
  problems whenever our configuration keys change. Now we load configuration
  from both sources and get the config value from system configuration if user
  configuration doesn't offer a value for it.
- Use 'data' directory in source tree as the system config location when
  configured to run uninstalled.
- Configure option to enable fatal valac warings. Also make this default when
  running autogen.sh.
- Make configure --help less ugly.
- Make use of modern autotools.
- Show VALA flags in configure summary.
- Remove special configure flag to enable maemo configuration as it should just
  be the default in maemo-specific branch.
- Clear the ChangeLog file content.
- UI:
  - Trim-down the UI to only provide options that end-user needs.
  - Use the correct key for 'UPnP enabled' option.
  - All widgets must be disabled when sharing is.
  - Option to use 'any' network.
- MediaExport:
  - Hide empty virtual folders.
  - Don't keep empty containers in DB.
  - More debug output.
- Tracker:
  - Only share available files: As tracker also indices removable media we need
    to filter out those files that are currently unavailable.
- Localization:
  - Add Kannada translation.
  - Update UG translation.
  - Update German translation.
  - Update UK translation.
  - Update Gujarati translations.
  - Update Ukranian translation.
  - Update Hebrew translation.
  - Update Norwegian bokmål translation.
  - Update Spanish translation.
  - Update Estonian translation.
- Many other non-functional and/or minor improvements and fixes.

Dependency-related changes:

- Require & adapt to Vala 0.11.6
- Explicitly require gssdp >= 0.9.2

Bugs fixed in this release:

641882 - 0.9.8 does not build

All contributors to this release:

Jens Georg <mail@jensge.org>
Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Luis de Bethencourt <luis@debethencourt.com>
Abduxukur Abdurixit <abdurixit@gmail.com>
Daniel Korostil <ted.korostiled@gmail.com>
Ivar Smolin <okul@linux.ee>
Jorge González <jorgegonz@svn.gnome.org>
Kjartan Maraas <kmaraas@gnome.org>
Mario Blättermann <mariobl@gnome.org>
Shankar Prasad <svenkate@redhat.com>
Sweta Kothari <swkothar@redhat.com>
Yaron Shahrabani <sh.yaron@gmail.com>

0.9.8
=====

Another micro release that fixes the broken Vala check.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>

0.9.7
=====

A new release in the current unstable 0.9.x series for upcoming GNOME 2.91.6
release.

- Ability to bind to specific networks.
- Prevent possible crash on SIGINT.
- Remove encoding information from .desktop file.
- Fix build against Vala 0.11.4.
- Don't initialize/create disabled plugin.
- Explicitly unregister D-Bus service on shutdown.
- Mediathek:
  - Don't block the rest of rygel while waiting on network.
  - Plug libXml memory leaks.
  - Workaround for bgo#639702.
  - Make update-interval configurable.
  - Add option to choose between H.264 and WMV videos.
- Localization:
  - Update Bulgarian translation.
  - Update Greek translation.
  - Update Traditional Chinese translation (Hong Kong and Taiwan).
  - QA of Galician translations.

Dependency-related changes:

- Require gupnp-vala >= 0.7.5

Bugs fixed in this release:

638269 - Mediathek plugin breaks streaming during update
639534 - Remove encoding info from .desktop file
639738 - build failure: rygel-item-creator.vala: error: syntax error, expected
         method call

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Alexander Shopov <ash@kambanaria.org>
Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Fran Diéguez <fran.dieguez@mabishu.com>
Marios Zindilis <m.zindilis@dmajor.org>
radykal <radykal_dj@hotmail.com>

0.9.6
=====

Another micro release to mainly fix a critical bug in 0.9.5. Other changes:

- Correct meaning for 'upnp_enabled' configuration option. Its now set to 'true'
  by default and if you set this to 'false' and run rygel, you can still stream
  media (currently only over HTTP) from it.
- Add option to disable UPnP to all configuration sources.
- Environment variables for boolean options now follow general unix conventions.
- Localization:
  - New partial translation for Afrikaans (af).

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Friedel Wolff <friedel@translate.org.za>

0.9.5
=====

Changes since 0.9.4:

- Only advertize searchable containers as such.
- Do not execute search in non-searchable containers.
- Only refuse to advertise a transcoder for an item if it's DLNA profile
  is the same as that of the item in question.
- Don't wait for new item if its already available under the container.
- Add timeouts to container update waiting code.
- Sort in ascending order by default. I had gotten the idea of ascending and
  descending reversed in my head so ended-up sorting by title in wrong order.
- Empty sort criteria in browse/search requests means no sort criteria.
- Use shorter HTTP URLs.
- Add support for search of media containers by their child count.
- Delay addition of child containers to actual (exposed) hierarchy until they
  produce some offspring. Very often it happens that we don't have enough
  metadata available to populate our hierarchies and we end-up exposing empty
  containers. Not only its contrary to user's expectations but apparently DLNA
  CTT isn't able to digest them.
- Move magic '@ADDRESS@' substitution from external plugin to core so all
  plugins can use it.
- If the root container of a MediaServer plugin is empty, deactivate the plugin
  until the situation changes.
- Tracker:
  - Add title-based hierarchies: One container for each unique starting
    character of all the titles available for the contegory in question.
  - Add "New" container: Under each category container, add a child container
    that lists all items of that category that were added (to tracker-store)
    less than 3 days ago.
  - Use property function for sorting. Tracker claims to be more efficient when
    using property functions instead of variables.
- MediaExport:
  - More reliable fallback extraction.
  - Speed-up browse and search handling.
- Localization:
  - Add Vietnamese translation.
  - Update Slovenian translation.
  - Update Norwegian bokmål translation.
  - Update Estonian translation.
  - Update Hebrew translation.
  - Update Spanish translation.
  - Update UG translation.
  - Update Czech translation.
  - Update Swedish translation.
  - Update Punjabi Translaiton.
  - Update Galician translation.
- Many other non-functional and/or minor improvements and fixes.

Dependency-related changes:

- Require & adapt to gupnp-dlna >= 0.5.
- Require gupnp-vala >= 0.7.2.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Arun Raghavan <arun.raghavan@collabora.co.uk>
Sunil Mohan Adapa <sunil@medhas.org>
A S Alam <aalam@users.sf.net>
Daniel Nylander <po@danielnylander.se>
Gheyret T.Kenji <gheyret@gmail.com>
Ivar Smolin <okul@linux.ee>
Jorge González <jorgegonz@svn.gnome.org>
Kjartan Maraas <kmaraas@gnome.org>
Matej Urbančič <mateju@svn.gnome.org>
Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Petr Kovar <pknbe@volny.cz>
Yaron Shahrabani <sh.yaron@gmail.com>
Fran Diéguez <fran.dieguez@mabishu.com>
Marek Cernocky

0.9.4
=====

A new release in the current unstable 0.9.x series for upcoming GNOME 2.91.3
release.

- After adding a new item in a container, wair for it to actually appear under
  the container in the hierarchy. This is needed to satisfy DLNA CTT testcase
  7.3.26.4,5.
- Wait for updated signal from the parent container after pushing content to a
  child item before returning an 'OK' to the client. This is needed to satisfy
  the bogus check at the end of the DLNA CTT testcase 7.3.136.4.
- If the template device description was modified after cached description was
  modified/created, use the template device description. Without this change,
  user had to manually remove the cached description documents each time we
  modified the templates.
- Only set dlnaManaged flags if any of the contained flag is set. This is
  needed to comply with DLNA requirements 7.3.118.2-3.
- Use correct resolution for MPEG_TS_SD_EU_ISO transcoded streams.
- Remove now redundant vala work-arounds.
- MediaExport:
  - Fix update signal emission.
  - Disable plugin on error during it's initialization.
  - Only on-disk container should be marked as writable. That excludes both
    special containers like "Filesystem" and virtual/metadata containers.
  - Optimize searches by preventing a full-table scan and custom function.
- Tracker:
  - Adapt to new update signals API.
  - Handle update signals (only) in All* containers. In these containers we can
    easily know if the update affect the container or not. This is is not true
    for other containers and we end-up launching a lot of redundant Tracker
    queries and network traffic.
  - Keep a single hierarchy for all network interfaces to reduce resource
    consumption.
- Localization:
  - Update Simplified Chinese translation.
  - Update Thai Translation.
  - Update Romanian translation.
  - Update UG translation.
  - Update Hebrew translation.
  - Update Estonian translation.
  - Update Galician translations.
- Many other non-functional and/or minor improvements and fixes.

Dependency-related changes:

- Require vala 0.11.2.

Bugs fixed in this release:

635957 - Typo in copyright year in some source files.
635598 - Rygel 0.8.x does not remove deleted files.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Aron Xu <aronxu@gnome.org>
Akom Chotiphantawanon <knight2000@gmail.com>
Gheyret T.Kenji <gheyret@gmail.com>
Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Daniel Șerbănescu <cyber19rider@gmail.com>
Fran Diéguez <fran.dieguez@mabishu.com>
Ivar Smolin <okul@linux.ee>
Yaron Shahrabani <sh.yaron@gmail.com>

0.9.3
=====

Another micro release to fix the build against gtk+-3.0. Other changes:

- Ability to enable/disable upload of media.
- Ability to enable/disable deletion of media.
- Localization:
  - Update Spanish translation.

Dependency-related changes:

- Drop support for gtk+-2.0 and require gtk+-3.0.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>

0.9.2
=====

A new release in the current unstable 0.9.x series for upcoming GNOME 2.91.2
release.

- Add support for destruction of media objects.
- Implement DLNA's 'auto-destroy' requirement.
- Set dlnaManaged attribute on DIDL-Lite objects. This along with some other
  recent changes, allows us to pass the following DLNA CTT testcases:
  - 7.3.118.2,3
  - 7.3.121.1
  - 7.3.139.1
- Sort Search and Browse results alphabetically (in descending order) by title
  when no sorting criteria is specified by the client.
- Use URI when provided in item creation requests.
- There is no need to actually create the file for new items. The file will
  automatically be created when/if contents are copied to the new empy item.
- Only allow pushing content to our own items that are place-holder (empty).
- Remove redundant call to Gst.init().
- Unique short commandline argument for disabling WMV transcoding.
- Make use of new gupnp-av APIs.
- Port to vala 0.11.1 and 0.11.2.
- Tracker:
  - Tracker keeps the size set by us originally even after the size changes. A
    simple work-around is to just not set the size if its an empty file.
  - Save title when adding item to store.
  - Update container upon item addition.
- MediaExport:
  - Export media even if metadata extraction fails for it.
  - Improved debug log.
- MPRIS:
  - Fix service destination.
- Localization:
  - Add Catalan (Valencian) translation.
  - Add Thai translation.
  - Update British English translation.
  - Update Simplified Chinese translation.
- Many other non-functional and/or minor improvements and fixes.

Dependency-related changes:

- Require vala >= 0.11.1.
- Require gupnp-av & gupnp-vala >= 0.7.0.

0.9.1
=====

A new release in the current unstable 0.9.x series for upcoming GNOME 2.91.1
release.

- Don't assume user's config folder to be present everywhere. This assumption is
  only true for modern (free)desktops and fails us badly on headless machines.
- Properly require automake 1.11.
- Custom rule to remove .stamp files to enforce rebuild from vala sources.
- Destroy the device list before quiting main loop. For some reason, the SSDP
  'BYE' message doesn't get sent out for all devices before rygel exits. This
  change makes sending of these packet a lot more (could actually be 100%)
  reliable.
- Tracker:
  - Make sure we only expose items that are either explicity marked to be shared
    over UPnP network or not marked at all.
  - Assume UPnP-created items to be shared. We create items on demand from UPnP
    clients so its logical to assume that the client would want it to be
    available on the UPnP network immediately after their creation.
  - Some non-functional changes.
  - URI escape metadata titles for IDs to correctly handle titles that have
    charachters like ',' and ':' in them.
- Localization:
  - Update Slovenian translation.
  - Update Korean translation.
  - Update Estonian translation.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Changwoo Ryu <cwryu@debian.org>
Ivar Smolin <okul@linux.ee>
Jorge González <jorgegonz@svn.gnome.org>
Matej Urbančič <mateju@svn.gnome.org>

0.9.0
=====

This release marks the start of the new unstable release-cycle. This is also the
release cycle that will be integrated into GNOME 3. Changes since 0.7.8 that
were not present in subsequent stable (0.8.x) releases:

- Port from dbus-glib and GValue usage to GDBus and GVariant.
- Do not offer HTTP GET/HEAD URIs for place-holder (0-sized) items. This is
  needed to avoid crashes when a newly created item is fetched before the client
  pushes any contents to it.
- Hack XBox search for upnp:class to make it happy.
- Direct XBox's genre search to root container.
- Set item's size on creation.
- Always set VAPIDIR to ${datadir}/vala/vapi.
- Tracker:
  - Add 'Genre' hierarchy.
  - Provide specific UPnP class for artist and album containers so that they
    could be searched by this property. This fixes music browsing on XBox 360.
  - Fix item ID creation logic.
  - Optimize handling of invalid searches and in turn searches in general.
  - Improved handling of search by "upnp:class".
  - Unknown size means size of 0.
  - Expose more information for music items:
    - sample rate
    - number of channels
    - bits per sample
    - bitrate
- MediaExport:
  - Proper default values for item metdata. This fixes the misterious "0" Album
    and Artist on XBox.
  - Handle requests for audio and image item types, not just music and pictures.
- Localization:
  - Add Brazilian Portuguese translation.
  - Add Catalan translation.
  - Add Italian translation.
  - Update Traditional Chinese translation (Hong Kong and Taiwan).
  - Update simplified Chinese translation.
  - Update Estonian translation.
  - Update Danish translation.
  - Update Bulgarian translation.
  - Update Czech translation.
  - Update Galician translations.
  - Update Hebrew translation.
  - Update French translation.
  - Update Hungarian translation.
  - Update Japanese translation.
  - Update Polish translation.
  - Update Dutch translation.
  - Update Greek translation.
  - Update Lithuanian translation
- Some other non-functional and/or minor improvements and fixes.

Dependency-related changes:

- Require gio >= 2.26.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Aron Xu <aronxu@gnome.org>
Bruno Brouard <annoa.b@gmail.com>
Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Djavan Fagundes <djavan@comum.org>
Fran Diéguez <fran.dieguez@mabishu.com>
Gabor Kelemen <kelemeng@gnome.hu>
Gil Forcada <gforcada@gnome.org>
Ivar Smolin <okul@linux.ee>
Joan Duran <jodufi@gmail.com>
Kenneth Nielsen <k.nielsen81@gmail.com>
Marek Černocký <marek@manet.cz>
Mario Blättermann <mariobl@gnome.org>
Mattias Põldaru <mahfiaz gmail com>
Milo Casagrande <milo@ubuntu.com>
Piotr Drąg <piotrdrag@gmail.com>
Rosi Dimova <pocu@bk.ru>
Simos Xenitellis <simos@gnome.org>
Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Yaron Shahrabani <sh.yaron@gmail.com>
Žygimantas Beručka <zygis@gnome.org>

0.7.8
=====

A new release in the current unstable 0.7.x series for upcoming GNOME 2.31.92
release.

- If the client didn't pass a Range header in the request, don't append
  Accept-Ranges and Content-Range headers to response. This fixes picture
  browsing on XBox 360 (again).
- Don't put empty nodes in device description.
- Use '\r\n' instead of '\n' in XML files. Some UPnP devices in the market are
  apparently unable to handle the unix EOL character so we better provide the
  XML files in DOS format.
- MediaExport:
  - Fix an assertion failure.
- Localization:
  - Remove markup from a translatable string in preferences UI.
  - Don't build translatable strings by substitution.
  - Prefer the term 'folder' over 'directory' in translated strings.
  - Miscellaneous string fixes.
  - Don't translate debug messages.
  - Add Serbian translation.
  - Add Korean translation.
  - Add Japanese translation.
  - Add Hungarian translation.
  - Update Spanish translation.
  - Update Galician translation.
  - Update British English translation.
  - Update Hebrew translation.
  - Update Norwegian bokmål translation.
  - Update Tamil translation.
  - Update Slovenian translation.
  - Update Swedish translation.
  - Update Punjabi translation.
  - Update French translation.
  - Update Polish translation.
  - Update Greek translation.
  - Update Czech translation.
  - Update Portuguese translation.
  - Update German translation.

Bugs fixed in this release:

626196 - OPPO DBP-80/83
629348 - Do not mark debug messages for translation

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Philip Withnall <philip@tecnocode.co.uk>
Andrej Žnidaršič <andrej.znidarsic@gmail.com>
A S Alam <aalam@users.sf.net>
Bruce Cowan <bruce@bcowan.me.uk>
Christian Kirbach <Christian.Kirbach@googlemail.com>
Claude Paroz <claude@2xlibre.net>
Daniel Nylander <po@danielnylander.se>
drtv <vasudeven@git.gnome.org>
Duarte Loreto <happyguy_pt@hotmail.com>
Fran Diéguez <fran.dieguez@mabishu.com>
Gabor Kelemen <kelemeng@gnome.hu>
Homin Lee <ff4500@gmail.com>
Jorge González <jorgegonz@svn.gnome.org>
Kentaro KAZUHAMA <kazken3@gmail.com>
Kjartan Maraas <kmaraas@gnome.org>
Michael Kotsarinis <mk73628@gmail.com>
Petr Kovar <pknbe@volny.cz>
Piotr Drąg <piotrdrag@gmail.com>
Tomasz Dominikowski <dominikowski@gmail.com>
Yaron Shahrabani <sh.yaron@gmail.com>
Милош Поповић <gpopac@gmail.com>
Marek Cernocky
Gabor Kelement

0.7.7
=====

A new release in the current unstable 0.7.x series for upcoming GNOME 2.31.91
release.

- Add manpages for rygel and rygel.conf.
- Add support for search by album and artist.
- Don't advertize support for search by '@refID' as we don't really support
  and use it at all.
- Drop support for search by 'res' and 'res@protocolInfo'. Since we didn't
  handle proxy and transcoding resources this gave wrong impression to the
  clients and was causing rygel to fail DLNA test cases.
- Don't error out on empty search results.
- Error out on HTTP request for invalid transfer mode.
- Fix typo in serialization of "upnp:createClass".
- Case-insensitive string comparisons.
- 'TransferIDs' state variable should list IDs for all transfers we have, even
  the ones that are complete.
- Correct sending of error to client when import of resource fails.
- Make sure we don't make invalid comparisons during the search.
- Do not set the 'sp-flag' as we never really are the clock source for the
  content, even in case of live/transcoded streams.
- Add MPRIS2 plugin. This plugin turns any media player that implements
  MPRIS2[1] D-Bus interface into a UPnP MediaRenderer.
- MediaExport:
  - Don't forget containers in children count.
  - Fix handling of "exists" operator in search.
  - Add m4v, m4a and png to list of file extensions to entertain.
  - Apply filter to monitoring of files as well.
  - Add support for the "Genre" folder of XBox.
  - Fix IOP with Windows Media Player 12.
  - Allow user to specify standard XDG media directories using variables.
  - Export XDG standard media directories by default but this time through
    default user configuration.
- Tracker:
  - Correct some checks.
  - Escape regex for SPARQL.
- GstLaunch:
  - Use '-' instead of '_' in user configrution options.
- Playbin:
  - Had forgotten to rename the plugin in the user configuration.
  - Remove last remaining "all rights reserved" from copyright headers.
- Localization:
  - Add Greek translation.
  - Add British English translation.
  - Update French translation.
  - Update Traditional Chinese translation (Hong Kong and Taiwan).
  - Update Czech translation.
  - Update Danish translation.
- DLNA test cases fixed in this release:
  - 7.3.41.1 (now N.A)
  - 7.3.66.2
  - 7.3.66.3,4
  - 7.4.49.4
- Various other performance, plugin API and non-functional improvements.

Dependency-related changes:
  - Lower gtk+-2.0 requirement to 2.20.0.

Bugs fixed in this release:

627243 - String operators during Search() should be case insensitive.
627982 - All Playbins on a network have the same hard coded name.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Philip Withnall <philip@tecnocode.co.uk>
Ask H. Larsen <asklarsen@gmail.com>
Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Claude Paroz <claude@2xlibre.net>
Giannis Katsampirhs <juankatsamprishs@gmail.com>
Kenneth Nielsen <k.nielsen81@gmail.com>
Marek Černocký <marek@manet.cz>
Petr Kovar <pknbe@volny.cz>

[1] http://www.mpris.org/2.0/spec/

0.7.6
=====

Another micro release to fix the critical regression in 'Year' hierarchy of
Tracker plugin.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>

0.7.4
=====

A new release in the current unstable 0.7.x series for upcoming GNOME 2.32.0
release.

- Fix wildcard handling in search request.
- Distribute correct copy of scallable icons.
- Provide icons in DLNA standard sizes.
- Provide icons in JPEG format as well.
- Don't offer transcoding from video to audio and viceversa. This makes sense
  anyway and reduces network traffic.
- Only offer time seeking if duration is known.
- Report correct DLNA profile for MPEG-TS HD and WMV transcoder.
- List DLNA formats first in the list of supported formats.
- Provide correct values for out parameters of GetCurrentConnectionInfo action.
- Correctly handle HTTP 'POST' requests.
- Correct checks for vala bindings.
- Use new 64-bit size property in GUPnP resource API so that we can deal with
  resources bigger than 2GB.
- Fix some (potential) crashes.
- Correctly handle a translated string involving plurals.
- Don't use deprecated libsoup API.
- Correct flaws in code related to search for media object by ID. This combined
  with some changes in Tracker plugin (see below) improves the reliability and
  especially the performance of Tracker plugin a lot.
- Use the mime-type and DLNA profile when provided in item creation requests.
- Advertize byte-seek support for thumbnails.
- Correct algorithm to decide whether to seek or not.
- Set standard header on XML files.
- Prefix service URLs with a "/". This seems like the right way to do it and it
  might actually improve our IOP.
- Make use of new APIs to report all known DLNA profiles in list of supported
  formats (MediaServer only).
- Add support for the "Genre" tag in music items.
- External:
  - Handle AlbumArt property.
  - Fix a few crashes.
  - Remove workaround for bug#602003.
Tracker:
  - Make sure metadata container get unique IDs.
  - Performance improvements to search for media object by ID.
  - Make use of DLNA profile when provided.
  - Don't use Tracker's logo as icon.
  - Ignore duration of '0'.
  - Print debug after item creation in store.
MediaExport:
  - Disable plugin when Tracker plugin is/becomes available.
  - Require sqlite3 VAPI only for this plugin.
  - Code clean-up and general speed improvements
  - Extract embedded album art
  - Remove the ability for user-defined virtual folders, providing a set of
    built-in folders similar to that of tracker's.
  - Fix some minor regressions introduced by the switch to gupnp-dlna metadata
    extraction
  - Move configured files and folders into their own "Files & Folders" container
    to de-clutter root.
- Localization:
  - Add ta translation.
  - Update Galician translations.
  - Update Hebrew translation.
  - Update Spanish translation.
  - Update Romanian translation.
  - Update Slovenian translation.
- DLNA test cases fixed in this release:
  - 7.2.14.2
  - 7.2.28.1
  - 7.3.25.1
  - 7.3.26.3
  - 7.3.26.4
  - 7.3.29.3
  - 7.3.29.4
  - 7.3.33.4
  - 7.3.33.5

Dependency-related changes:
  - Require and adapt to Vala 0.9.5.
  - Require gupnp-av >= 0.5.9.
  - Require gupnp-dlna >= 0.3.0.
  - MediaExport
    - Require gstreamer-tag >= 0.10.28.
    - Require gstreamer-app >= 0.10.28.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Yaron Shahrabani <sh.yaron@gmail.com>
Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Kjartan Maraas <kmaraas@gnome.org>
Jorge González <jorgegonz@svn.gnome.org>
Fran Diéguez <fran.dieguez@mabishu.com>
drtv <vasudeven@git.gnome.org>
Claude Paroz <claude@2xlibre.net>
Andrej Žnidaršič <andrej.znidarsic@gmail.com>

0.7.3
=====

A new release in the current unstable 0.7.x series for upcoming GNOME 2.31.6
release.

- Add Album-art support.
- Add support for sorted Browse/Search.
- Don't push data after HTTP response is cancelled.
- Advertise support for search by "createClass".
- Revive accidently removed XBox hacks.
- Fix icon export for uninstalled case.
- Simplify plugin APIs to further abstract plugin developers from UPnP details.
- Add convenient MediaRenderer APIs for plugins. This involved moving most of
  the GstRenderer code to core.
- Fix seeking once again.
- Improve error handling in HTTP request handling code.
- Port to new DIDL-Lite contributor APIs.
- Port to Vala 0.9.3 and 0.9.4.
- Clean-up README and specify build and run-time dependencies.
- More debug output.
- MediaExport:
  - Make use of gupnp-dlna for faster, more complete and reliable metadata
    extraction.
  - Print a debug message if extraction fails for a file.
  - Add windows formats to positive list of file extensions to include in the
    metadata extraction.
  - Don't share anyt folder by default.
  - Fix url-escaped folder names on PS3.
  - Fix issue of empty title of top-level virtual folders on PS3.
  - Process 256 children at a time. This improves performance of harvesting of
    large folders.
- GstRenderer:
  - Rename to Playbin.
  - Advertize support for 'video/mp4'
  - Advertize support for RTSP
  - Handle error from playbin.
  - Don't claim support for unsupported UPnP actions and state variables.
- External:
  - Fix a crasher bug.
- Localization:
  - Add French translation.
  - Update Simplified Chinese translations.
  - Update German translation.
  - Update Galician translation.
  - Update Swedish translation.
  - Update Slovenian translation.
- Lots of other non-functional and/or minor improvements and fixes.

Dependency-related changes:

- Require Vala >= 0.9.3
- Require gupnp >= 0.13.4
- Require gupnp-av >= 0.5.8
- Require gupnp-dlna >= 0.2.1 (new dependency)
- Require libgee >= 0.5.2
- Use gtk+-2.0 (>= 2.21.5) if available rather than gtk+-3.0

Bugs fixed in this release:

607411 - Need to mention non-compile time deps.
624445 - Samsung can't FF/REW/PAUSE when playing video/avi from Rygel.
625556 - New configure flag to switch GTK+ version.

All contributors to this release:

Aron Xu <aronxu@gnome.org>
Arun Raghavan <arun.raghavan@collabora.co.uk>
Claude Paroz <claude@2xlibre.net>
Eleanor Chen <chenyueg@gmail.com>
Frédéric Péters <fpeters@0d.be>
Javier Jardón <jjardon@gnome.org>
Jens Georg <mail@jensge.org>
Mario Blättermann <mariobl@gnome.org>
Zeeshan Ali (Khattak) <zeeshanak@gnome.org>

0.7.2
=====

A new release in the current unstable 0.7.x series for upcoming GNOME 2.31.5
release.

* MediaExport:
  * Support DLNA's 'AnyContainer' upload extenstion.
  * Only harvest media files. We use a positive list for file extensions to
    include in the metadata extraction.
  * Implement fallback to the default (slow) search implementation.
  * Lower severity for some of the console messages.
  * Update code according to latest GStreamer Vala API fixes.
* Tracker:
  * Improve Sparql query builder to achieve much better performance and reduced
    D-Bus traffic.
* GstRenderer:
  * Relicense from GPL to LGPL.
  * More descriptive default title.
- Localization:
  - Add Simplified Chinese translation.
  - Add Traditional Chinese translation (Hong Kong and Taiwan).
  - Updated Spanish translation.
- Various non-functional improvements to core and plugins.

All contributors to this release:

Aron Xu <aronxu@gnome.org>
Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Jens Georg <mail@jensge.org>
Jorge González <jorgegonz@svn.gnome.org>
Zeeshan Ali (Khattak) <zeeshanak@gnome.org>

0.7.1
=====

A new release in the current unstable 0.7.x series for upcoming GNOME 2.31.4
release.

- Implement DLNA's 'AnyContainer' upload extenstion. This allows clients to
  upload items without having to specify target container. Currently it only
  works for the Tracker backend.
- Report types of items that could be created/uploaded in a container and allow
  clients to search containers by this property.
- Port last bits of C code to Vala. Now Rygel is completely written in Vala.
- Make Rygel build/work against both current stable and unstable Vala releases.
- Offer SD transcoding in EU profile. Seems certain Sony Bravia TVs only
  support EU profiles. With this change, they should at least be able to use the
  SD transcoding.
- Two more unit tests.
- Provide default configuration for WMV transcoding.
- Correctly handle boolean commandline option for disabling WMV transcoder.
- External:
  - Port the external plugin to use the new D-Bus MediaServer specification:
    http://live.gnome.org/Rygel/MediaServer2Spec. The new specification is meant
    to be very generic and scale well to large media hierarchies.
  - Make use of search API when implemented by the external application.
  - Various other performance improvements.
- Preferences UI:
  - Improve resize behavior.
  - Add missing bevel to URI tree view.
  - Replace GtkVBox by GtkVButtonBox where appropriate.
- Localization:
  - Added Punjabi Translation.
  - Updated Norwegian bokmål translation.
  - Updated Galician translations.
  - Updated Spanish translation.
  - Updated Hebrew translation.
- Various non-functional improvements.

Dependency-related changes:

- Require gtk+-3.0 >= 2.90.3.
- Require gupnp-av >= 0.5.7.
- Require gupnp-vala >= 0.6.7.

Bugs fixed in this release:

593628 - mp2ts transcoder not working with certain Bravia TV models.
596214 - URI table is missing bevel.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Eric Anderson <ejona86@gmail.com>
A S Alam <aalam@users.sf.net>
Fran Diéguez <fran.dieguez@mabishu.com>
Jorge González <jorgegonz@svn.gnome.org>
Kjartan Maraas <kmaraas@gnome.org>
Yaron Shahrabani <sh.yaron@gmail.com>

0.7.0
=====

This release marks the start of the new unstable release-cycle. This is also the
release cycle that will be integrated into GNOME 2.31 (and 3.0 eventually).
Changes since 0.6.0:

- Exit on failure to load any plugins in 5 seconds.
- Add icon to preferences UI's desktop file.
- Correct error on missing 'Elements' node in 'CreateObject' action from client.
- Advertize upload features in 'X_DLNACAP' in device description.
- Remove comments from description files as per DLNA requirement (7.2.30.1).
- Don't allow comments in DIDL-Lite from client either. This is to satisfy the
  DLNA Confirmation Test Tool rather than DLNA itself.
- Don't advertize unimplemented actions.
- autogen.sh should create m4 directory if it doesn't exist already.
- Correct Icon path in preferences UI for uninstalled case.
- Specify on debug log where rygel is currently looking for plugins.
- Localization:
  - Don't translate all strings in media-export plugin.
  - No need to translate Mediathek plugin.
  - Add Hebrew translation.
  - Add Swedish translation.
  - Add Czech translation.
  - More Spanish translations.
  - More Slovenian translations.
  - More German translations.
- MediaExport:
  - Fix search result. Search was returning the the result for the current
    limits, not the overall result count. This lead to strange behaviour on
    e.g. XBox 360.
  - Optimize searches. Noticable speed improvements on XBox music browsing.
  - Fix broken SQL query to get object by path.
  - Remove redundant custom tag for duration.
  - Make harvesting of metadata optional.
  - Re-enable simple mode which means we exporting media on the UPnP network
    even if no meta-data extractor is available.
  - Remove redundant URI table from database.
  - Work around a problem in GStreamer element playbin2.
  - Explain the term 'harvest' for translators.
  - Many non-functional improvements.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Daniel Nylander <po@danielnylander.se>
Fran Diéguez <fran.dieguez@mabishu.com>
Jorge González <jorgegonz@svn.gnome.org>
Mario Blättermann <mariobl@gnome.org>
Petr Kovar <pknbe@volny.cz>
Yaron Shahrabani <sh.yaron@gmail.com>

0.6.0
=====

This release marks the start of the new stable release-cycle. Changes since
0.5.2:

- Localization:
  - Fix translation framework.
  - Mark all (possibly) user-visible string for translation.
  - Use more translator-friendly language.
  - Provide comments for translators.
  - Correctly case abbreviations.
  - Translations:
    - German (de) 100%
    - Slovenian (sl): 100%
    - Spanish (es): 57%
- Fix time-seeking.
- Fix a potential race-condition in aborted HTTP requests.
- Don't stream if request is for subtitles.
- Use bigger (64Ki) buffers when streaming from gstreamer source element.
- Remux only if transcoding is not needed.
- Configuration option for specifying plugin load path.
- Add configuration from Environment.
- Fix port specification through commandline.
- Add and expose Rygel logo.
- Pause streaming pipeline when/if client isn't reading fast enough.
- Add more unit tests.
- Use gnome-autogen.sh.
- Add missing libuuid to build and linker flags for all plugins.
- Plugins are now able to provide a model description.
- MediaExport:
  - File size change suggests file change.
  - Move media DB and metadata harvesting code from core to module as this is
    the only module that is using it.
- External plugin now sets model description.
- Lots of non-functional improvements and fixes.

Dependency-related changes:

- Sqlite now only needed for media-export plugin.

Bugs fixed in this release:

617762 Wrong file size exported to PS3
590649 LiveResponse does not rate limit the GStreamer pipeline
615834 Uses ALL_LINGUAS in configure.ac
616189 Translation issues
617750 Only re-encode audio and video when necessary

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Mario Blättermann <mariobl@gnome.org>
Jorge González <jorgegonz@svn.gnome.org>
Andrej Žnidaršič <andrej.znidarsic@gmail.com>

0.5.2
=====

Another release in the unstable 0.5.x series. Changes since 0.5.0:

- Add support for Xbox 360 and Window Media Player 11.
- Add support for subtitles. Currently only useful for certain Samsung DLNA TVs.
- Add Windows Media Video (WMV) transcoder.
- Add unit tests for a few modules.
- Fix some (potential) crashes.
- Make database operations cancellable.
- Throw error on database creation failure.
- Simpler (hopefully) build rules.
- Fix race-condition in streaming code so we don't terminate the connection
  before all the bytes are sent to the client.
- Fix leaking of HTTP messages of live streams on termination.
- Fix 'Content-Length' header values for partial requests.
- Fix parsing of search expression containing characters not within the original
  latin1 range.
- Use bigger (64Ki) buffers when streaming media to reduce cpu usage and
  therefore improve battery life.
- Include spec version in description document.
- Remove now unneeded work-around for vala bug#568972.
- Advertize photos with their specific class, i-e 'photo' rather than 'image'.
- MediaExport:
  - Implement search by URIs.
  - Implement search by album.
  - Error-out on invalid search expression.
  - Add support for virtual containers. This allows creation of metadata-based
    hierarchies in the user-config.
  - Fix deletion of containers.
  - URI-escape meta-data fields.
  - Catch previously uncaught exceptions.
  - Fix upgrade of database from older schemas.
- Lots of code clean-ups and documentation fixes.

Dependency-related changes:

- Require gupnp >= 0.13.3.
- Require gupnp-av >= 0.5.5.
- Require gupnp-vala >= 0.6.5.
- Require valac >= 0.8.0.

Bugs fixed in this release:

608886 - media export plugin corrupts its database when you change directories
609944 - Files not harvested on update
606305 - Samsung subtitles

All contributors to this release:

Jens Georg <mail@jensge.org>
Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Cyrille Chepelov <cyrille.chepelov@keyconsulting.fr>

0.5.0
=====

The first release in the unstable 0.5.x series. Changes since 0.4.6 that were
not provided by any subsequent 0.4.x releases:

- New URI generation scheme that avoids problematic characters which makes some
  crappy renderers choke.
- Allow creation of new media items and tranfering data into existing ones (
  upload). This is relavent to, and works for both MediaExport and Tracker.
- Implement GetTransferProgress and StopTransferResource actions.
- Advertise:
  - support for connection stalling.
  - live response to be sender-paced.
- Rewrite SearchCriteria parser to make it more reliable.
- Tracker:
  - Port to the Tracker 0.7 APIs.
  - Provide richer & more intuitive media hierarchy.
  - Signal container update on changes to subjects.
  - Act on config options allowing user to define which categories to share.
  - Support for search by URI.
  - Descriptive IDs for containers.
- MediaExport
  - Implement custom search that translates to an SQLite query and therefore
    performs much faster than before.
  - Print message on console when harvesting is done.
  - Don't modify DB if harvester was cancelled.
  - Cancel harvester before starting new one.
- Lots of non-functional improvements and fixes.

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>

0.4.6
=====

Brief summary of changes since 0.4.4:

- Implement optional UPnP Search action. This is not only a must have feature
  for a commercial MediaServer but is also a big first step towards proper
  XBox 360 support.
- Simplify Browse action handling.
- Simplify MediaServer plugin implementation.
- Make sure autostart dir exists before attempting to write to it.
- Fix a potential crash that is trigered by MediaContainer reporting incorrect
  (higher) number of children.
- External:
  - Work around (vala) bug#602003.
  - Optimizations and code clean-ups.
- Tracker:
  - Provide an efficient Search implementation using Tracker's search API.
  - Minor code clean-ups.

Dependency-related changes:

- Require gupnp-av >= 0.5.2.
- Require gupnp-vala >= 0.6.2.
- Require valac >= 0.7.9.

Bugs fixed in this release:

600256 - Segfault when trying to access a stream

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>

0.4.4
=====

Brief summary of changes since 0.4.2:

- Provide a gstreamer-based MediaRenderer plugin. This is mostly code stolen (
  and heavily adapted) from gupnp-media-renderer except that it doesn't depend
  on libowl-av and/or gtk+.
- More ease for MediaServer implementors.
- Better error handling.
- Make sure no message is suppressed until we know what level of console output
  user wants.
- Make use of vala's async support to simplify code quite a bit.
- Plugins should load xml files from source tree when built with
  '--enable-uninstalled' configure flag.
- Build with no optimizations in debug mode.
- Use closure table to speed up object lookup and deletion.
- Add build option for SQL debugging.
- Workaround a crasher bug (#3774) in sqlite 3.6.12.
- Use vala's static client D-Bus syntax.
- Early ignorance of disabled plugins. This not only speeds-up startup a bit but
  also rids us of redundant debug messages.
- MediaExport:
  - Nicely handle unavailability of gstreamer's playbin(2) element.
  - Fix a potential crasher.
- Tracker:
  - Use multidimensional arrays to deal with search results. This combined with
    static client D-Bus syntax gives us quite a speed boost.
  - Handle item creation error.
- External:
  - Allow applications to provide custom thumbnails for items.
  - Support pixel-aspect-ratio properties.
  - All D-Bus operations are now done asynchronously.
  - Make use of plugin icon if provided.
  - Move magic string substitution to core so other plugins can benefit from it.
- Lots of other improvements and bug fixes.

Dependency-related changes:

- Require and adapt to libgee >= 0.5.
- Require and adapt to valac >= 0.7.8.

Bugs fixed in this release:

597276 - Rygel crash on startup
587649 - thumbnails not published for external media servers
589959 - External plugin should query media servers on demand
598005 - unable to load media-tracker plugin

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Thijs Vermeir <thijsvermeir@gmail.com>

0.4.2
=====

Brief summary of changes since 0.4.1:

- Ability to specify verbosity of console messages by a number between 0 to 5.
- Be able to survive unavailability of D-Bus session bus. This should make it
  easier to setup Rygel on headless NAS machines.
- MediaExport:
  - Provide duration and date of media.
  - Improved guessing for type (UPnP class) of media.
  - Re-harvest metadata when a file/directory is modified.
  - Speed-up browsing (twice as before).
- rygel-preferences:
  - Fix enabling/disabling of widgets.
  - Copy the desktop file from correct location.
- Mediathek and GstLaunch disabled by default in the user configuration.
- Add GstLaunch to maemo configuration (disabled by default though).
- Put dbus-glib-1 to the list of vala API dependencies.
- Fix seek headers.
- Be more verbose at the end of configure.

Bugs fixed in this release:

596500 - Mpeg TS video files are mistaken for audio files
596213 - Wrong state for checkboxes
596327 - Enables some weird plugins by default
596330 - Missing some metadata

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>

0.4.1
=====

A micro release that fixes some important issues found in the previous release:

- Update the Rygel D-Bus service paths everywhere.
- Ignore two ignorable errors.
- Initialize sensitivity of trancoding checkboxes to the same value as that of
  "Transcoding Support" checkbox.
- Fix seeking in transcoded streams. Without this fix, the success of seeking
  was based on pure luck.
- Correct headers in some files to reflect the correct license: LGPL.
- No need for DVB configuration anymore.

Bugs fixed in this release:

596211 - Error exiting the prefs
596213 - Wrong state for checkboxes

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
René Stadler <mail@renestadler.de>

0.4
===

Brief summary of changes since 0.3:

- Rygel is no more just a MediaServer but rather a collection of DLNA (UPnP AV)
  services (devices in UPnP speak).
- Port to new GUPnP APIs. The biggest advantage of that is that we now have
  dynamic network support, i-e Rygel can attach/detach to/from a network
  interface as it goes up/down.
- Support for time-based seeking in transcoded streams.
- Random tweaks to transcoding pipelines.
- Provide a DBus service providing two functionalities:
   * Ability to tell Rygel to shutdown. Starting of Rygel is automatically
     handled by D-Bus since a .service file is provided by Rygel.
   * Ability to tell Rygel (MediaExport plugin actually) to (un)export URIs on
     the fly.
- Implement enabling/disabling of UPnP in the preferences.
- Configuration through command-line options.
- Use a .ini configuration file rather than gconf.
- Special default configuration for Maemo.
- Don't spam the user's config directory and instead keep the description files
  into a separate subdirectory.
- `make clean` doesn't clean the generated C files anymore.
- Remove "all rights reserved" part from all copyright headers.
- Remove integrated DVB plugin as DVBDaemon now implements the external plugin
  interface and hence dynamically glues to Rygel, just like PulseAudio.
- New classes to further ease the plugin implementation.
- (Un)pause the SoupMessage at the right time. This was causing a lot of delays
  when playing media on Sony PS3.
- Bitrate is supposed to be in bytes/second. Not really but tell that to writers
  of UPnP specification.
- Expose transcode formats in the GetProtocolInfo's source argument. This should
  make Sony Bravia TVs happy.
- Transcoder URIs are now sorted according to their distance from the original
  format.
- Provide "contentFeatures.dlna.org" header in the HTTP responses.
- Provide DLNA transferMode header in the HTTP responses.
- Only advertise internal URIs on local loopback interface.
- Replace 'ip' config by 'interface' so users can bind Rygel to interfaces
  rather than IP.
- Allow plugins to provide thumbnails.
- Add thumbnails (if available) for each item if none provided by plugins. This
  works both on the desktop and Maemo.
- Suppress all C compiler warnings by default. These warnings are mostly useless
  for us since almost all C code is generated.
- Preference dialog is now more like a GNOME preferences dialog.
- Provide .desktop file for preferences dialog.
- Shave the build output.
- GstLaunch: New plugin that exposes gstreamer pipelines described using
  familiar gst-launch syntax in the user configuration.
- Tracker plugin:
  - Nicer default title.
  - Better detection of Tracker availability. Apparently ubuntu folks think that
    providing a .service file is wrong.
  - Better titles for top-level folders.
  - More usable hierarchy: Browsing by artists, albums and tags.
- Folder plugin:
  - Rename to MediaExport.
  - Nicer default title.
  - Use the new Rygel classes to extract, export and save media metadata.
  - notify about updates to containers.
  - Skip files/folders starting with '.'.
  - Avoid crash if unknown file is found.
  - Delete gone directories on new start.
  - React on deletion of files.
  - Add recursive file monitoring.
  - Provide simple and easy options to add and remove files and folders from the
    preferences UI.
- External plugin:
  - actually use 'DLNAProfile' property.
  - Don't load the plugin more than once.
  - Utilise optional MediaItem properties.
  - Fetch items on demand.
  - Fix critical warnings.
- Mediathek plugin:
  - Fix crash if no config is available.

Dependency-related changes:

- Require gupnp >= 0.13
- Require gupnp-av >= 0.5
- Require GStreamer >= 0.10.23
- Require libgee >= 0.3.0

Bugs fixed in this release:

584649 - Folder plugin should not export dot files and directories
586108 - ID3 information not exported on mp3 files
588034 - Bad durations for audio video files with media export plugin
585986 - Some copyright headers claim "all rights reserved"
585989 - Running "make clean" should leave generated C files in place.
586134 - Tracker plugin fails if org.freedesktop.Tracker can't be activated,
         even if tracker is already running
586243 - GStreamer 0.10.23 required for correct operation of transcoder
587651 - Support for some MediaItem properties missing
587855 - HTTP Error responses not sent
587866 - No way to notify about new sub-containers
588030 - rygel-preferences crashes if user's config file is missing
588162 - Support seeking in transcoded content
589955 - dc:creator never included in DIDL output
589956 - git ignore rules
589974 - Set the bitrate for transcoded resources correctly.
589977 - Rygel not recognised by Sony Bravia televisions
590643 - refactor HTTP request handling code
590702 - Rygel should provide thumbnails for items
591580 - not compatible with Samsung UE46B7070
593228 - [plugin] new gstlaunch plugin

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
James Henstridge <james@jamesh.id.au>
Thijs Vermeir <thijsvermeir@gmail.com>
Ole André Vadla Ravnås <oleavr@gmail.com>

0.3
===

Brief summary of changes since 0.2.2:

- Transcoding from any format (that gstreamer's decodebin2 can handle) to mp3,
  linear PCM and mpeg transport stream containing mpeg 2 video and mp2 audio.
- Plugin API to deal with user preferences.
- User preferences UI: rygel-preferences.
- New plugins:
   * Folder: Recursively exports folders specified in the user preferences.
   * ZDFMediathek: Exports online media from 2nd German TV station.
   * External: Exports media hierarchies provided by external applications
     through implementation of this spec:
     http://live.gnome.org/Rygel/MediaServer. The first application
     that utilizes this feature is PulseAudio.
- Drop xbox support. It didn't work anyway and we better concentrate on
  implementing standard stuff that it at least worthy of being called "UPnP" (
  at least for now).
- Tracker and DVB plugins are only loaded if their corresponding services are
  available.
- Export of duration for music and video items from Tracker.
- Use HTTP EOF encoding rather the CHUNKED for live streams.
- Ability to build rygel plugins outside it's source tree.
- HTTP proxying only if needed.
- Now that gupnp-av does DLNA profile guessing for us, no need to lie about
  DLNA profile anymore.
- Add a summary after configure.
- HTTServer is now internal API.
- Use git-version-gen to generate package version.
- Differentiate between modules and plugins
- Passive, asynchronous plugin loading. A side-effect of which is that modules
  can now load more than one plugin.
- Differentiate between name and title of the plugin.
- Plugins can now dynamically change their availability.
- Add API to get/list plugins.
- Re-use existing description from user's home directory. This not only speeds
  the start-up but also obsoletes the necessity to keep immutable data (e.g UDN)
  in user preferences.
- Provide gconf schemas.
- Lots of other improvements and bug fixes.

Dependency-related changes:

- Explicitly require and link to libsoup-2.4 >= 2.26.0.
- Don't require Vala (and bindings) in distribution tarball.
- Require gupnp-av >= 0.4.
- Require Vala >= 0.7.3.
- Require Gtk+ >= 2.16 if preferences UI is not disabled.

Bugs fixed in this release:

582173 - git-version-gen: generate versions with - instead of .
577000 - gupnp-av-cp does not like & in uris
576998 - Rygel wants to transcode audio files to video/mpeg
575935 - Add support for duration metadata field
574604 – bug connecting to PS3

All contributors to this release:

Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Jens Georg <mail@jensge.org>
Henrique Ferreiro <henrique.ferreiro@gmail.com>
Lennart Poettering <lennart@poettering.net>
Marc-André Lureau <marcandre.lureau@gmail.com>
Rob Taylor <rob.taylor@codethink.co.uk>

0.2.2
=====

Changes since 0.2:

- Use the new (0.6.9) Tracker API.
- Priority of gio-based streams are based on requested DLNA transfer mode.
- GIO-based/like asynchronous plugin API.
- Adapt to latest changes in gupnp-vala API.
- Serialization of media objects isn't done by media objects themselve
  anymore, but by a new separate class, Rygel.DIDLLiteWriter.
- Internal API is marked 'internal' so it doesn't get to our (Vala) API.
- MediaObject now derives from GLib.Object.
- Generic AsyncResult implementation, SimpleAsyncResult.
- StateMachine interface that all state machines classes implement.
- Visible performance improvements in Tracker plugin by proper use of Tracker
  APIs.
- Use Filename.to_string() and therefore make Bastien happy.
- Require lastest version (0.1.5) of libgee to use List.slice().
- Don't limit the number of objects returned to a client, let it decide
  that on it's own.
- Proper handling of update notification to the client by use of a very simple
  bubble-up mechanism for containers to signal updates.
- Decrease needed gconf version to 2.16.
- Set application name and therefore make Lennart happy.
- Require latest version of vala (0.5.7) and gupnp-vala (0.5.3).
- Allow multiple URIs for each media items.
- Response for seekable media request is now sent buffer by buffer so the whole
  file is not put into memory.
- Some improvements to build system.
- Lots of other improvements and bugfixes.

0.2
===

The major change after last release (as gupnp-media-server) is the introduction
of a simple yet powerful plugin-based architecture/api: Every plugin:
- is loaded into a separate MediaServer instance.
- can implement any kind and number of resources (currently only services).
- can export an icon file.
- inherit it's ContentDirectory implementation from a base class that does most
  of the UPnP-related work. More improvements on this planned for next release.
- use an intuitive API to easily export media from URIs and live GStreamer
  source elements over HTTP.

Other changes:

- Relicense under LGPL to allow proprietary plugins and ease of moving code
  from/to gupnp libraries.
- DVB Daemon integration though a plugin. Now you can watch live channels from
  your PC on your PS3 for example.
- Test plugin that exports one audio and video item, streaming contents from
  GStreamer's audiotestsrc and videotestsrc elements respectively.
- Better interoperability with Sony playstation 3.
- Announce unavailability to UPnP world on exit.
- Loads of other improvements.

0.1
===

- Initial release.