File: NEWS

package info (click to toggle)
vino 3.22.0-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 6,680 kB
  • sloc: ansic: 21,721; sh: 4,107; makefile: 300; xml: 157
file content (2888 lines) | stat: -rw-r--r-- 61,698 bytes parent folder | download | duplicates (3)
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
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
Vino 3.22.0
===========

David King (1):
      Update NEWS for 3.22.0 release

Vino 3.21.92
============

Alberts Muktupāvels (1):
      build: Fix syntax error introduced in 27785a2

Bastien Nocera (2):
      server: Add a way for Vino to be started via user systemd
      build: Use AM_DISTCHECK_CONFIGURE_FLAGS

Cédric Valmary (2):
      Updated Occitan translation
      Updated Occitan translation

Daniel Mustieles (1):
      Updated Spanish translation

David King (4):
      Update British English translation
      Allow building on non-systemd systems
      Check for sm and ice in configure
      Remove unused --with-network-manager option

Eric R. Schulz (1):
      Fix two memory leaks

Fabio Tomat (3):
      Updated Friulian translation
      Updated Friulian translation
      Updated Friulian translation     (cherry picked from commit 02c55160b2703675f55880dd8238c84342405532)

Piotr Drąg (4):
      Updated Polish translation
      Add Language headers to po files
      Updated Polish translation
      Updated Polish translation

Tiago Santos (1):
      Updated Portuguese translation

Vino 3.20.0
===========

Ask Hjorth Larsen (1):
      Updated Danish translation

Cédric Valmary (1):
      Updated Occitan translation

Sveinn í Felli (3):
      Updated Icelandic translation
      Updated Icelandic translation
      Updated Icelandic translation

Vino 3.18.1
===========

David King (1):
      Avoid a crash when showing the preferences

Vino 3.18.0
===========

Piotr Drąg (1):
      Fix FSF address in Polish translation

Vino 3.17.91
============

Chao-Hsiung Liao (1):
      Updated Chinese (Taiwan) translation

Cédric Valmary (2):
      Updated Occitan translation
      Updated Occitan translation

Dimitri Tarassenko (1):
      Improve handling of name resolution failure

Fabio Tomat (2):
      Added Friulian translation
      Updated Friulian translation

Jordi Mas (1):
      Fixes to Catalan transation

Pedro Albuquerque (1):
      Updated Portuguese translation

Piotr Drąg (1):
      Updated Polish translation

Sveinn í Felli (1):
      Added Icelandic translation

Vino 3.16.0
===========

David King (1):
      Update NEWS for 3.16.0 release

Vino 3.15.92
============

Alexander Shopov (1):
      Updated Bulgarian translation

Baurzhan Muftakhidinov (1):
      Updated Kazakh translation

Josef Andersson (1):
      Updated Swedish translation

Samir Ribic (1):
      Updated Bosnian translation

Vino 3.15.91
============

David King (1):
      Avoid a critical EggSMClient warning on startup

Ondrej Holy (1):
      Handle closed signal properly on notification prompt

Vino 3.15.90
============

Dan Winship (1):
      vino-upnp: Use GNetworkMonitor

Vino 3.15.4
===========

David King (6):
      Remove obsolete GSettings conversion file
      Fix Turkish desktop keywords translation
      Remove obsolete intltool scripts from Makefile
      Skip intermediate file with Automake 1.15
      Do not set obsolete PKG_NAME variable
      Update NEWS for 3.15.4 release

Emin Tufan (1):
      Updated Turkish translation

Muhammet Kara (1):
      Updated Turkish translation

Timo Jyrinki (1):
      Change Finnish translation team web page to l10n.gnome.org

Trần Ngọc Quân (1):
      Updated Vietnamese translation

Vino 3.14.0
===========

Maria  Mavridou (1):
      Updated Greek translation

Pawan Chitrakar (1):
      Updated Nepali translation

Saibal Ray (1):
      Updated Bengali (India) translation

Vino 3.13.90
============

Kjartan Maraas (1):
      Updated Norwegian bokmål translation from Åka Sikrom.

Mihai Capotă (1):
      Remove all HTTP server code

Olav Vitters (1):
      doap category core

Piotr Drąg (1):
      doap: add <programming-language>

Vino 3.13.3
===========

Anders Jonsson (1):
      Updated Swedish translation

Bastien Nocera (1):
      Get started by the g-s-d sharing plugin

Vino 3.12.0
===========

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Vino 3.11.92
============

Daniel Mustieles (2):
      Updated FSF's address
      Revert "Updated FSF's address"

Kjartan Maraas (3):
      Updated Norwegian bokmål translation
      Updated Norwegian bokmål translation
      Updated Norwegian bokmål translation

Piotr Drąg (1):
      Add a trailing semicolon to keywords in Kannada translation

Ryan Lortie (1):
      libvncserver: fix non-literal format string issue

Shankar Prasad (1):
      updated kn.po

Vino 3.11.4
===========

Antoine Jacoutot (1):
      remove dependency on libsoup

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

David King (6):
      Post-release version bump to 3.11.1
      Remove vino-passwd
      Update links to GNOME wiki
      Use correct wiki link
      Add dependencies on generated files, bug 720956
      Move dbus code under server/ directory

Søren Sandmann (1):
      vino_background_draw: Make 'initialised' static

Victor Ibragimov (3):
      Tajik translation updated
      Tajik translation updated
      Tajik translation updated

eternalhui (1):
      Update Chinese simplified translation

Vino 3.10.0
===========

Daniel Martinez (1):
      Added Aragonese translation

David King (1):
      Post-release bump to 3.10.0

Khaled Hosny (1):
      Update Arabic translation

Vino 3.9.92
===========

Daniel P. Berrange (1):
      Fix reading of TLS data to account for cached data

David King (2):
      Post-release version bump to 3.9.5
      Reject new clients if in the deferred state

Jiro Matsuzawa (1):
      l10n: Update Japanese translation

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Vino 3.9.3
==========

David King (2):
      Update NEWS for 3.9.3 release
      Post-release bump to 3.9.3

Jonh Wendell (1):
      Move tube declaration to the right place

Vino 3.9.2
==========

Andika Triwidada (1):
      Updated Indonesian translation

Daniel Korostil (1):
      Update uk translation

David King (4):
      Update NEWS for 3.9.2 release
      Post-release version bump to 3.9.1
      Back out "authentication-method" setting change
      Remove preferences dialog, bug 700070

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Matthias Clasen (1):
      Be more careful with memory allocation

Vino 3.8.0
==========

Arash Mousavi (1):
      L10N: Updated Persian Translation

Ask H. Larsen (1):
      Updated Danish translation

David King (2):
      Post-release version bump to 3.8.0
      Update NEWS for 3.8.0 release

Dr.T.Vasudevan (1):
      Updated Tamil translation

Khaled Hosny (1):
      Update Arabic translation

Krishnababu Krothapalli (1):
      Updated Telugu Translations

ManojKumar Giri (1):
      Updated Odia Language along with FUEL implementation

Rajesh Ranjan (1):
      hindi translation

Sandeep Sheshrao Shedmake (1):
      Updated Marathi Translations

Shankar Prasad (1):
      Updated kn translations

Victor Ibragimov (1):
      [l10n] Added Tadjik translation

Vino 3.7.92
===========

Balázs Úr (1):
      Updated Hungarian translation

Carles Ferrando (1):
      [l10n] Updated Catalan (Valencian) translation

Changwoo Ryu (1):
      Updated Korean translation

Claude Paroz (1):
      Updated French translation

Claudio Arseni (1):
      [l10n] Updated Italian translation.

David King (3):
      Post-release version bump to 3.7.92
      Remove choices from authentication-methods setting
      Update NEWS for 3.7.92 release

Duarte Loreto (1):
      Updated Portuguese translation and converted to New Spelling (Novo AO)

Enrico Nicoletto (1):
      Updated Brazilian Portuguese translation

Ihar Hrachyshka (1):
      Updated Belarusian translation.

Joan Duran (1):
      [l10] Updated Catalan translation

Joe Hansen (1):
      Updated Danish translation

Jonathan Kamens (1):
      Reset sockets when changing ports, bug 668187

Mattias Põldaru (1):
      [l10n] Updated Estonian translation

Nilamdyuti Goswami (1):
      Assamese translation updated for gnome 3.8

Richard Stanislavský (1):
      Updated slovak translation

Rūdolfs Mazurs (1):
      Updated Latvian translation

Sweta Kothari (1):
      Updated gujarati file

Ville-Pekka Vainio (1):
      Finnish translation update by Jiri Grönroos

Vino 3.7.91
===========

A S Alam (1):
      Punjabi: Translation updated (aalam)

David King (2):
      Post-release version bump to 3.7.91
      Update NEWS for 3.7.91

Dimitris Spingos (1):
      Updated Greek translation

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Marek Černocký (1):
      Updated Czech translation

Mario Blättermann (1):
      [l10n] Updated German translation

Yuri Myasoedov (1):
      Updated Russian translation

Vino 3.7.90
===========

Anish A (1):
      Updated Malayalam Localization

Aurimas Černius (1):
      Updated Lithuanian translation

Bastien Nocera (4):
      Export whether the server is connected to through D-Bus
      server: Make libnotify a hard dependency
      Use notifications to prompt
      Fix notification desktop hint

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

Daniel Mustieles (1):
      Updated Spanish translation

David King (2):
      Post-release version bump to 3.7.5
      Update NEWS for 3.7.90 release

Fran Diéguez (1):
      Updated Galician translations

Gheyret Kenji (3):
      Updated Uyghur translation
      Updated Uyghur translation
      Updated Uyghur translation

Ihar Hrachyshka (1):
      Updated Belarusian translation.

Inaki Larranaga Murgoitio (1):
      Updated Basque language

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Matej Urbančič (2):
      Updated Slovenian translation
      Updated Slovenian translation

Matthias Clasen (2):
      Don't show vino-preferences in GNOME
      Bring up the sharing panel when available

Piotr Drąg (3):
      Updated POTFILES.in
      Updated Polish translation
      Updated Polish translation

Robert Ancell (1):
      Change schema path to standard format

Wouter Bolsterlee (1):
      Updated Dutch translation

Yaron Shahrabani (1):
      Updated Hebrew translation.

Мирослав Николић (2):
      Updated Serbian translation
      Updated Serbian translation

Vino 3.7.4
==========

Adrián Arévalo (1):
      Updated Spanish translation

Alexander Shopov (1):
      Updated Bulgarian translation

Aurimas Černius (1):
      Updated Lithuanian translation

Daniel Mustieles (1):
      Added keywords to .desktop file, bug 691062

David King (3):
      Post-release version bump to 3.7.4
      Add "desktop-entry" notification hint, bug 691045
      Update NEWS for 3.7.4 release

Dimitris Spingos (1):
      Updated Greek translation

Fran Diéguez (1):
      Updated Galician translations

Gheyret Kenji (1):
      Updated Uyghur translation

Khaled Hosny (1):
      Update Arabic translation

Kjartan Maraas (2):
      Updated Norwegian bokmål translation
      Updated Norwegian bokmål translation

Mattias Põldaru (1):
      [l10n] Updated Estonian translation

Piotr Drąg (1):
      Updated Polish translation

Shankar Prasad (1):
      Updated Kannada Translations

Yaron Shahrabani (1):
      Updated Hebrew translation.

Vino 3.7.3
==========

Alexandre Rostovtsev (1):
      Consistently use SECRET_DEPS, not LIBSECRET_DEPS

David King (4):
      Post-release version bump to 3.7.1
      Update GSettings schema descriptions and summaries
      Use https URLs where possible in DOAP file
      Update NEWS for 3.7.3 release

Dr.T.Vasudevan (1):
      Updated Tamil translation

Fran Diéguez (1):
      Updated Galician translations

Huzaifa Sidhpurwala (1):
      Do not leak clipboard to unauthenticated clients

Ihar Hrachyshka (1):
      Updated Belarusian translation.

Khoem Sokhem (1):
      [l10n] Added Khmer translation

ManojKumar Giri (1):
      Updated Odia Translation with FUEL implementation.

Nilamdyuti Goswami (1):
      Assamese translation updated

Richard Stanislavský (3):
      Updated Slovak translation
      Updated Slovak translation
      Updated slovak translation

Ryan Lortie (1):
      server/miniupnp/: -Wmissing-prototypes fixups

Rūdolfs Mazurs (1):
      Updated Latvian translation

Wolfgang Stoeggl (1):
      Updated German translation

ozu17928 (1):
      Set quality level if JPEG support is enabled

Vino 3.6.0
==========

Alexander Shopov (1):
      Updated Bulgarian translation

Carles Ferrando (1):
      [l10n]Updated Catalan (Valencian) translation

Daniel Korostil (1):
      Uploaded Ukranian

David King (2):
      Add a translation comment for tube mode
      Update NEWS for 3.6.0 release

Ihar Hrachyshka (2):
      Updated Belarusian translation.
      Updated Belarusian translation.

Joan Duran (1):
      [l10n] Updated Catalan translation

Krishnababu Krothapalli (1):
      Updated Telugu Translations

Mattias Põldaru (1):
      [l10n] Updated Estonian translation

Milo Casagrande (1):
      [l10n] Updated Italian translation.

Rajesh Ranjan (1):
      hindi update by Chandan Kumar

Runa Bhattacharjee (1):
      Updated Bengali India Translation

Rūdolfs Mazurs (1):
      Updated Latvian translation

YunQiang Su (1):
      update Simplified Chinese (zh_CN) translation

Vino 3.5.92
===========

A S Alam (1):
      update Punjabi Translation

Ani Peter (1):
      Updated Malayalam file

Ask H. Larsen (1):
      Updated Danish translation

Aurimas Černius (1):
      Updated Lithuanian translation

Changwoo Ryu (2):
      Updated Korean translation
      Updated Korean translation

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

Chris Leonard (1):
      Updated British English translation

Claude Paroz (1):
      Updated French translation

Daniel Mustieles (1):
      Updated Spanish translation

Daniel Nylander (1):
      Updated Swedish translation

David King (1):
      Post-release version bump to 3.5.91
      Update NEWS for 3.5.92 release

Dirgita (1):
      Updated Indonesian translation

Dr.T.Vasudevan (1):
      updated Tamil translation

Duarte Loreto (1):
      Updated Portuguese translation

Fran Diéguez (1):
      Updated Galician translations

Gabor Kelemen (1):
      Updated Hungarian translation

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Marek Černocký (1):
      Updated Czech translation

Matej Urbančič (1):
      Updated Slovenian translation

Muhammet Kara (1):
      [l10n]Updated Turkish translation

Nguyễn Thái Ngọc Duy (2):
      po/vi: import from Damned Lies
      Updated Vietnamese translation

Nilamdyuti Goswami (2):
      Assamese translation updated
      Implemented FUEL entries to Assamese translation

Piotr Drąg (2):
      Updated Polish translation
      Updated Polish translation

Rafael Ferreira (1):
      Updated Brazilian Portuguese translation

Sandeep Sheshrao Shedmake (1):
      Updated Marathi Translations

Sweta Kothari (1):
      Updated gujarati file

Takayuki KUSANO (1):
      [l10n] Update Japanese translation

Theppitak Karoonboonyanan (1):
      Updated Thai translation.

Timo Jyrinki (1):
      Finnish translation update by Jiri Grönroos

Tom Tryfonidis (1):
      Updated Greek translation

Vincent Untz (1):
      Fix license headers of a few files

Yaron Shahrabani (2):
      Updated Hebrew translation.
      Updated Hebrew translation.

Yuri Myasoedov (1):
      Updated Russian translation

Мирослав Николић (1):
      Updated Serbian translation

Vino 3.5.90
===========

Alexander Shopov (1):
      Updated Bulgarian translation

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

Daniel Mustieles (1):
      Updated Spanish translation

David King (5):
      Post-release version bump to 3.5.3
      Post-release version bump to 3.5.90
      Rename defines from gnome-keyring to secret
      Update POTFILES.in
      Update NEWS for 3.5.90 release

Duarte Loreto (1):
      Updated Portuguese translation

Fran Diéguez (2):
      Updated Galician translations
      Updated Galician translations

Jiro Matsuzawa (1):
      [l10n] Update Japanese translation

Kjartan Maraas (2):
      Updated Norwegian bokmål translation
      Updated Norwegian bokmål translation

Matej Urbančič (1):
      Updated Slovenian translation

Mattias Põldaru (2):
      [l10n] Updated Estonian translation
      [l10n] Updated Estonian translation

Mitsuya Shibata (1):
      [l10n] Update Japanese translation

Nilamdyuti Goswami (1):
      Assamese translation reviewed

Sandeep Sheshrao Shedmake (1):
      Updated Marathi Translations

Stef Walter (1):
      Migrate from libgnome-keyring to libsecret

Sweta Kothari (2):
      Updated gujarati file
      Updated gujarati file

Tom Tryfonidis (1):
      Updated Greek translation

Yaron Shahrabani (1):
      Updated Hebrew translation.

Мирослав Николић (1):
      Updated Serbian translation

Vino 3.5.2
==========

Bruno Brouard (2):
      Updated French translation
      Updated French translation

David King (3):
      Depend on intltool 0.50 for GSettings translations
      Post-release version bump to 3.5.2
      Update NEWS for 3.5.2 release

Fabrice Bellet (3):
      Use XFixes to provide RFB cursor image
      Fix the cursor bounds computation
      Fix iteration of the cursor->source[] array

Kostas Papadimas (2):
      Updated Greek translation
      Updated Greek translation

Luca Ferretti (1):
      l10n: updated Italian translation

Mantas Kriaučiūnas (1):
      Updated Lithuanian translation

Vino 3.5.1
==========

Carles Ferrando (1):
      [l10n]Updated Catalan (Valencian) translation

Daniel Mustieles (1):
      Updated Spanish translation

David King (3):
      Post-release version bump to 3.5.1
      Add vino_server_set_notify_on_connect()
      Update NEWS for 3.5.1 release

Fran Diéguez (1):
      Updated Galician translations

Guillaume Desmottes (13):
      Add vino_dbus_listener_get_server()
      Add VinoServer:reject-incoming property
      Add --tube arg to launch Vino in ‘tube only’ mode
      VinoTubeServersManager::tube-disconnected signal
      Relay tube-disconnected signal in VinoDbusListener
      Exit when tube is closed if run in tube mode
      Depend on telepathy-glib 0.18.0
      Use tp_simple_handler_new_with_factory()
      Rely on the factory to prepare the TpContact
      Rename VinoTubeServer.tp_channel to .tube
      Remove VinoTubeServer::connection property
      Use TP_CONTACT_FEATURE_AVATAR_DATA
      Use tp_stream_tube_channel_get_service()

Jordi Serratosa (1):
      [l10n] Fixes on Catalan translation

Khaled Hosny (1):
      Updated Arabic translation

Mitsuya Shibata (1):
      [l10n] Update Japanese translation

Yaron Shahrabani (1):
      Updated Hebrew translation.

Vino 3.4.0
==========

Alexander Shopov (1):
      Updated Bulgarian translation

David King (2):
      Post-release version bump to 3.4.0
      Update NEWS for 3.4.0 release

Krishnababu Krothapalli (1):
      Translations Updated with FUEL

Sweta Kothari (1):
      Updated Gujarati Translations

YunQiang Su (1):
      update Simplified Chinese (zh_CN) translation

Vino 3.3.92
===========

A S Alam (1):
      update Punjabi Translation

Alexander Shopov (1):
      Updated Bulgarian translation

Anita Reitere (1):
      Updated Latvian translation.

Antonio Fernandes C. Neto (1):
      Updated Brazilian Portuguese translation

Arash Mousavi (1):
      Updated Persian Translation

Ask H. Larsen (1):
      Updated Danish translation

Bruce Cowan (1):
      Updated British English translation

Carles Ferrando (1):
      [l10n]Updated Catalan (Valencian) translation

Changwoo Ryu (1):
      Updated Korean translation

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

Claudio Arseni (1):
      [l10n] Updated Italian translation

Daniel Korostil (1):
      Uploaded Ukranian

Daniel Nylander (1):
      Updated Swedish translation

David King (3):
      Post-release version bump to 3.3.4
      Version bump to 3.3.92
      Update NEWS for 3.3.92 release

Dr.T.Vasudevan (1):
      updated Tamil translation

Duarte Loreto (1):
      Updated Portuguese translation

Fran Diéguez (1):
      Updated Galician translations

Gabor Kelemen (1):
      Updated Hungarian translation

Inaki Larranaga Murgoitio (1):
      Updated Basque language

Joan Duran (1):
      [l10n] Updated Catalan translation

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Krishnababu Krothapalli (1):
      Updated Telugu Translations

Kristjan SCHMIDT (1):
      Updated Esperanto translation

Marek Černocký (1):
      Updated Czech translation

Mario Blättermann (1):
      [l10n] Updated German translation

Mattias Põldaru (1):
      [l10n] Updated Estonian translation

Nilamdyuti Goswami (1):
      Assamese translation completed

Piotr Drąg (1):
      Updated Polish translation

Rajesh Ranjan (3):
      hindi translation by Chandan Kumar
      hindi translation by Chandan Kumar
      hindi translation by Chandan Kumar, correcting and commiting right file

Timo Jyrinki (1):
      Updated Finnish translation by Jiri Grönroos

Yuri Myasoedov (1):
      Updated Russian translation

Мирослав Николић (1):
      Updated Serbian translation

Vino 3.3.3
==========

Alexandre Franke (1):
      Update French translation

Daniel Mustieles (1):
      Updated Spanish translation

David King (2):
      Post-release version bump to 3.3.2
      Update NEWS for 3.3.3 release

Hideki Yamane (1):
      Updated Japanese translation

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Matej Urbančič (1):
      Updated Slovenian translation

Mateusz Maćkowski (1):
      Added option to disable connect notifications

Mattias Põldaru (1):
      [l10n] Updated Estonian translation

Muhammet Kara (1):
      [l10n]Updated Turkish translation

Yaron Shahrabani (1):
      Updated Hebrew translation.

Vino 3.3.1
==========

David King (3):
      Post-release version bump to 3.3.1
      Update smclient to latest libegg version
      Update NEWS for 3.3.1 release

Ihar Hrachyshka (1):
      Updated Belarusian translation.

krishnababu k (1):
      Updated Telugu Translations

Vino 3.2.0
==========

Carles Ferrando (1):
      [l10n]Updated Catalan (Valencian) translation

Changwoo Ryu (1):
      Updated Korean translation

David King (2):
      Post-release version bump to 3.2.0
      Update NEWS for 3.2.0 release

Gabor Kelemen (1):
      Updated Hungarian translation

Inaki Larranaga Murgoitio (1):
      Updated Basque language

Nilamdyuti Goswami (1):
      Update Assamese translation

Piotr Drąg (2):
      Updated Polish translation
      Updated Polish translation

Vino 3.1.92
===========

Bruce Cowan (1):
      Updated British English translation

Claudio Arseni (1):
      l10n: Updated Italian translation

David King (3):
      Post-release version bump to 3.1.92
      Enable AM_MAINTAINER_MODE in configure.ac
      Update NEWS for 3.1.92 release

Duarte Loreto (1):
      Updated Portuguese translation

Ihar Hrachyshka (1):
      Updated Belarusian translation.

Jeremy Bicha (1):
      Corrected new help links

Jiro Matsuzawa (1):
      Updated Japanese translation

Joan DUran (1):
      [l10n]Updated Catalan translation

Joe Hansen (1):
      Updated Danish translation

Piotr Drąg (1):
      Updated Polish translation

Wouter Bolsterlee (1):
      Updated Dutch translation by Wouter Bolsterlee

Yinghua Wang (1):
      update Simplified Chinese (zh_CN) translation

Vino 3.1.91
===========

David King (4):
      Post-release version bump to 3.1.91
      Use new location for Mallard help, bug 657927
      Make all targets use compiler warning flags
      Update NEWS for 3.1.91 release

Dr.T.Vasudevan (1):
      updated Tamil translation

Og B. Maciel (1):
      Updated Brazilian Portuguese translation.

Yuri Myasoedov (1):
      Updated Russian translation

Vino 3.1.90
===========

A S Alam (1):
      update translation for Punjabi

David King (2):
      Post-release version bump to 3.1.90
      Update NEWS for 3.1.90 release

Marek Černocký (1):
      Updated Czech translation

Mario Blättermann (1):
      [l10n] Updated German translation

Vino 3.1.5
==========

Alexander Shopov (1):
      Updated Bulgarian translation

Aurimas Černius (1):
      Updated Lithuanian translation

Claude Paroz (1):
      Updated French translation

Daniel Nylander (1):
      Updated Swedish translation

David King (3):
      Post-release version bump to 3.1.5
      Use GtkBox rather than GtkHBox or GtkVBox
      Update NEWS for 3.1.5 release

Theppitak Karoonboonyanan (1):
      Updated Thai translation.

Vino 3.1.4
==========

Abduxukur Abdurixit (1):
      Added UG translation

Bastien Nocera (1):
      Add GConf to GSettings convert file, bug 654901

David King (3):
      Post-release version bump to 3.1.4
      Only call g_settings_sync() when necessary
      Update NEWS for 3.1.4 release

Rudolfs Mazurs (1):
      Updated Latvian translation.

Tommi Vainikainen (1):
      Updated Finnish translation

Vino 3.1.3
==========

David King (2):
      Post-release version bump to 3.1.3
      Add more categories to preferences desktop file

Javier Jardón (1):
      Use const instead deprecated G_CONST_RETURN

Michael Terry (1):
      Make desktop files appear in Unity too, bug 653802

Vino 3.1.2
==========

Abduxukur Abdurixit (1):
      Added UG translation

Andika Triwidada (1):
      Updated Indonesian translation

Arash Mousavi (1):
      Updated Persian translation

Carles Ferrando (1):
      [l10n]Updated Catalan (Valencian) translation

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

David King (2):
      Post-release version bump to 3.1.2
      Remove gettext macros from configure.ac

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Kristjan SCHMIDT (1):
      Updated Esperanto translation

Sjoerd Simons (2):
      Fix _TELEPATHY_GLIB mistyped as _TELEPATHY_GLUB
      Do not set non-existent use-dbus-listener property

Мирослав Николић (1):
      Updated Serbian translation

Vino 3.1.1
==========

Abduxukur Abdurixit (2):
      Added UG translation
      Added UG translation

Daniel Korostil (1):
      Uploaded Ukranian

Daniel Mustieles (3):
      Updated Spanish translation
      Updated Spanish translation
      Updated Spanish translation

David King (8):
      Improve description of UPnP feature, bug 594521
      Improve status icon tooltip string, bug 594253
      Post-release version bump to 3.1.1
      Update copyright information in about dialog
      Do not use deprecated GnuTLS functions, bug 648606
      Use ‘Desktop Sharing’ rather than ‘Remote Desktop’
      Avoid out-of-bounds memory accesses
      Change *.tar.gz to *.tar.xz in .gitignore

Fran Diéguez (1):
      Updated galician translations

Jordi Mallach (1):
      Fix defines to match configure script output

Jordi Serratosa (1):
      [l10n]Fixes on Catalan translation

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Marek Černocký (1):
      Updated Czech translation

Matej Urbančič (2):
      Updated Slovenian translation
      Updated Slovenian translation

Muhammet Kara (2):
      Updated Turkish translation
      Updated Turkish translation

Oliver Gerlich (2):
      Fix cursor update logic, bug 617436
      Only send a motion event when the pointer moved

Theppitak Karoonboonyanan (1):
      Updated Thai translation.

Thorsten Glaser (1):
      Bind both an IPv4 and an IPv6 socket

Travis B. Hartwell (1):
      String improvements in preferences capplet

Yaron Shahrabani (1):
      Updated Hebrew translation.

Vino 3.0.0
==========

Abduxukur Abdurixit (1):
      Added UG translation

Ask H. Larsen (1):
      Updated Danish translation

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

David King (4):
      Add description to DOAP file
      Require automake 1.11.1 and dist as .xz only
      Add dbus-glib-1 to telepathy-glib pkg-config check
      Add translator comments from eggsmclient

Dr.T.Vasudevan (1):
      Updated Tamil translation

Inaki Larranaga Murgoitio (1):
      Updated Basque language

Kjartan Maraas (1):
      Include config.h where necessary

Vino 2.99.5
===========

Brett Witherspoon (1):
      Use GSettings autostart condition

Claudio Arseni (1):
      Updated Italian translation

David King (1):
      Post-release version bump to 2.99.5

Rodrigo Padula de Oliveira (1):
      Updated Brazilian Portuguese translation

Runa Bhattacharjee (1):
      Updated Bengali India Translation

==============
Version 2.99.4
==============

Amitakhya Phukan (1):
      Updated Assamese translations

Bruce Cowan (1):
      Updated British English translation

Claudio Arseni (1):
      Updated Italian translation

David King (13):
      Post-release bump to 2.99.4
      Fix configure options containing extra dashes
      Fix underlinking with libX11 and libz
      Fix non-functional PKG_CHECK_EXISTS checks
      Correct gcrypt CFLAGS and LIBS variable usage
      Add website to AC_INIT and use in about dialog
      Check for the inline keyword with AC_C_INLINE
      Generate ChangeLog from commit log during 'dist'
      Tidy the marshal and enums generation rules
      Update README for upcoming release
      Remove some unnecessary code in the capplet
      Generate enums and marshalers before they are used
      Remove server reachability message from the UI
        This is a workaround that addresses CVE-2011-1164.

Dirgita (1):
      Updated Indonesian translation

Duarte Loreto (1):
      Updated Portuguese translation

Fran Diéguez (1):
      Updated Galician translations

Gabor Kelemen (1):
      Updated Hungarian translation

Joan Duran (1):
      [l10n] Updated Catalan translation

Lucian Adrian Grijincu (2):
      Updated Romanian translation
      Updated Romanian translation

Marek Černocký (1):
      Updated Czech translation

Mario Blättermann (1):
      [l10n] Updated German translation

Mattias Põldaru (1):
      [l10n] Updated Estonian translation

Piotr Drąg (1):
      Updated Polish translation

Priit Laes (1):
      [l10n] Updated Estonian translation

Rudolfs Mazurs (1):
      Updated Latvian translation.

Wouter Bolsterlee (1):
      Updated Dutch translation by Wouter Bolsterlee

Yunqiang Su (1):
      Update Simplified Chinese translation.

Yuri Myasoedov (1):
      Updated Russian translation

==============
Version 2.99.3
==============

  Fixes:

	+ Overhaul build system. (David King)
	  Note to packagers: Arguments to the configure script were changed.
	  All functionality is now automagically enabled, and can be disabled
	  or explicitly enabled with the appropriate configure arguments.
	  Please check `configure --help`.

  Translations:

	+ Bruno Brouard (fr)
	+ Sweta Kothari (gu)
	+ Changwoo Ryu (ko)
	+ Manoj Kumar Giri (or)
	+ A S Alam (pa)
	+ Matej Urbančič (sl)

==============
Version 2.99.2
==============

  Fixes:

	+ Added back telepathy functionality. (Pierre Wieser)
	+ Added DISTCHECK_CONFIGURE_FLAGS to Makefile.am. (Chris Kühl)

==============
Version 2.99.1
==============

  Fixes:

	+ Added back basic mdns functionality. (Chris Kühl)
	+ Fixed typo in configure.in (Chris Kühl)

  Translations:

	+ Daniel Mustieles (es)
	+ Kjartan Maraas (nb)
	+ Daniel Nylander (sv)
	+ Alexander Shopov (bg)

==============
Version 2.99.0
==============

  Fixes:

	+ Port to Gtk3 (Ryan Lortie, Matthias Clasen)
	+ Port to GSettings (Ryan Lortie, Chris Kühl)
	+ Port to GtkApplication (Ryan Lortie, Chris Kühl)
	+ Port to GDBus (Ryan Lortie)

  Translations:

	+ Daniel Korostil (uk)
	+ Yaron Shahrabani (he)

==============
Version 2.32.1
==============

  Fixes:

	+ Be compatible with old (< 0.7.0) and new (>= 0.7.0) libnotify

  Translations:

	+ Joan Duran (ca@valencia)
	+ Thanos Lefteris (el)
	+ Priit Laes (et)
	+ Takayuki KUSANO (ja)
	+ Changwoo Ryu (ko)
	+ Sahran (ug)

Vino 2.32.0
===========

  Translations:

	+ Baurzhan Muftakhidinov (kk)
	+ Takayuki KUSANO (ja)

Vino 2.31.91
============

  Translations:

	+ Fran Diéguez (gl)
	+ krishnababu k (te)
	+ Kristjan Schmidt (eo)
	+ Petr Kovar (cs)

Vino 2.31.4
===========

  Features:

	+ Improvements on Telepathy tubes stuff
	+ Various internal work on replacing deprecated stuff

  Translations:

	+ Andika Triwidada (id)
	+ Carles Ferrando (ca@valencia)
	+ Leonid Kanter (ru)
	+ Luca Ferretti (it)
	+ Matej Urbančič (sl)
	+ Priit Laes (et)
	+ Sira Nokyoongtong (th)
	+ Theppitak Karoonboonyanan (th)
	+ Thomas Thurman (en@shaw)

Vino 2.28.2
===========

  Fixes:

	- Check if mDNS is active before asking for a local hostname.


  Translations:

	+ Fran Diéguez (gl)
	+ Inaki Larranaga Murgoitio (eu)
	+ Jamil Ahmed (bn)
	+ Jordi Serratosa (ca)
	+ Kenneth Nielsen (da)
	+ Kjartan Maraas (nb)
	+ Peteris Krisjanis (lv)
	+ Piotr Drąg (pl)
	+ Sweta Kothari (gu)
	+ Tao Wei (zh_CN)
	+ Thomas Thurman (en@shaw)
	+ Torstein Adolf Winterseth (nn)
	+ Wouter Bolsterlee (nl)
	+ Xandru Armesto Fernandez (ast)
	+ Yaron Shahrabani (he)

Vino 2.28.1
===========

  Fixes

	- Fix build in OpenBSD
	- Don't use restart feature of session manager

  Translations:

	+ Leonid Kanter (ru)
	+ Takeshi AIHANA (ja)
	+ Tomasz Dominikowski (pl)

Vino 2.28.0
===========

  Translations

	+ Adi Roiban (ro)
	+ Amitakhya Phukan (as)
	+ Ani (ml)
	+ Ask H. Larsen (da)
	+ Bruce Cowan (en_GB)
	+ Carles Ferrando (ca@valencia)
	+ Christian Kirbach (de)
	+ Fábio Nogueira (pt_BR)
	+ Gabor Kelemen (hu)
	+ Joan Duran (ca)
	+ Kjartan Maraas (nb)
	+ Kostas Papadimas (el)
	+ krishnababu k (te)
	+ Luca Ferretti (it)
	+ Manoj Kumar Giri (or)
	+ Matej Urbančič (sl)
	+ Maxim V. Dziumanenko (uk)
	+ Pavel Šefránek (cs)
	+ Rajesh Ranjan (hi)
	+ Rajesh Ranjan (mai)
	+ Shankar Prasad (kn)

Vino 2.27.92
============

  Fixes

	+ Fix a regression that allows more than one instance of the server to run.
	+ Use vino's debug framework instead of g_printerr (mainly in tube code).
	+ Make Avahi use the network interface defined in vino preferences.
	+ Use integer (instead of double) as the port parameter in dbus calls.
	  (This fix 'localhost' appearing in preferences applet)
	+ Fixed a warning in libgcrypt initialization.

  Translations
	+ A S Alam (pa)
	+ Baris Cicek (tr)
	+ Changwoo Ryu (ko)
	+ Chao-Hsiung Liao (zh_HK) (zh_TW)
	+ Duarte Loreto (pt)
	+ G Karunakar (hi)
	+ ifelix (ta)
	+ Inaki Larranaga Murgoitio (eu)
	+ Ivar Smolin (et)
	+ Jamil Ahmed (bn)
	+ Jonh Wendell (pt_BR)
	+ Khaled Hosny (ar)
	+ Kjartan Maraas (nb)
	+ Miloš Popović (sr) (sr@latin)
	+ Sandeep Shedmake (mr)
	+ Sweta Kothari (gu)
	+ Tomasz Dominikowski (pl)

Vino 2.27.91
============

  Fixes
	+ (vino-passwd): Do not crash if a GConf server is not available.
	+ Improvements in Telepathy tubes (Arnaud Maillet).

  Translations:
	+ Alexander Shopov (bg)
	+ Antón Méixome (gl)
	+ Claude Paroz (fr)
	+ Daniel Nylander (sv)
	+ Gintautas Miliauskas (lt)
	+ Jochen Skulj (de)
	+ Jorge González (es)
	+ Mattias Põldaru (et)
	+ Runa Bhattacharjee (bn_IN)
	+ Seán de Búrca (ga)
	+ Tommi Vainikainen (fi)


Vino 2.27.90
============

  Fixes
	+ Minor fixes

  Translations

	+ Chao-Hsiung Liao (zh_HK) (zh_TW)
	+ Daniel Nylander (sv)
	+ Fran Dieguez (gl)
	+ Jorge González (es)
	+ Kjartan Maraas (nb)
	+ Mattias Põldaru (et)

Vino 2.27.5
===========

  Features and Fixes
	+ Added an (GConf) option to disable XDamage extension. See #533613.
	+ Added Telepathy tubes support, allowing you to share the desktop
	with an IM buddy. (Arnaud Maillet)
	+ Dropped libgnome dependency. Using EggSmClient.
	+ Migrate from libglade to GtkBuilder. (Javier Jardón)
	+ Many small bug fixes.

  Translations

	+ Alexander Shopov (bg)
	+ A S Alam (pa)
	+ Ask H. Larsen (da)
	+ Chao-Hsiung Liao (zh_HK) (zh_TW)
	+ Claude Paroz (fr)
	+ Daniel Nylander (sv)
	+ drtvasudevan (ta)
	+ Gabor Kelemen (hu)
	+ Ihar Hrachyshka (be)
	+ Ivar Smolin (et)
	+ Jonh Wendell (pt_BR)
	+ Jorge Gonzalez (es)
	+ Laurent Coudeur (fr)
	+ Luca Ferretti (it)
	+ Marios Zindilis (el)
	+ Matej Urban (sl)
	+ Mattias Põldaru (et)
	+ Maxim V. Dziumanenko (uk)
	+ Yaron Shahrabani (he)

Vino 2.26.1
===========

  Fixes

	+ #575860 – Regenerating autotools always tries to compile local
	libifaddr. Thanks to Patryk Zawadzki.

  Translations

	+ Usama Akkad (ar)
	+ Suso Baleato (gl)
	+ Shankar Prasad (kn)
	+ Kjartan Maraas (nb)
	+ Ray Wang (zh_CN)

Vino 2.26.0
===========

  Translations

	+ Amitakhya Phukan (as)
	+ Alexander Shopov (bg)
	+ Runa Bhattacharjee (bn_IN)
	+ Pavel Šefránek (cs)
	+ Hendrik Richter (de)
	+ Jennie Petoumenou (el)
	+ Jorge González (es)
	+ Sweta Kothari (gu)
	+ Yaron Shahrabani (he)
	+ Takeshi AIHANA (ja)
	+ Žygimantas Beručka (lt)
	+ Sandeep Shedmake (mr)
	+ Manoj Kumar Giri (or)
	+ Duarte Loreto (pt)
	+ Yuriy Penkin (ru)


Vino 2.25.92
============

  Fixes

	+ Added dependency on NetworkManager for monitoring when network
	state changes. New configure flag: --enable-network-manager. If not
	set, enable it anyway if NetworkManager libraries are found.
	Requires NM 0.7.
	+ #330691 – show .local hostname if avahi is present.

  Translations

	+ Ihar Hrachyshka (be@latin)
	+ Joan Duran (ca)
	+ David Lodge (en_GB)
	+ Mattias Põldaru (et)
	+ Iñaki Larrañaga Murgoitio (eu)
	+ Ilkka Tuohela (fi)
	+ Claude Paroz (fr)
	+ Gabor Kelemen (hu)
	+ Milo Casagrande (it)
	+ Changwoo Ryu (ko)
	+ Kjartan Maraas (nb)
	+ Dr.T.vasudevan (ta)
	+ Baris Cicek (tr)
	+ 甘露(Gan Lu) (zh_CN)
	+ Chao-Hsiung Liao (zh_HK)
	+ Chao-Hsiung Liao (zh_TW)

Vino 2.25.91
============

  Fixes

	+ Install autostart file in $sysconfdir/xgd/autostart. Usually you
	should pass the argument --sysconfdir=/etc to configure (or autogen.sh)
	script.
	+ i18n related fixes.
	+ Minor fixes.

  Translations

	+ xa (ast)
	+ Alexander Shopov (bg)
	+ Joan Duran (ca)
	+ Ask Hjorth Larsen (da)
	+ Jorge González (es)
	+ Mattias Põldaru (et)
	+ Iñaki Larrañaga Murgoitio (eu)
	+ Gabor Kelemen (hu)
	+ Wouter Bolsterlee (nl)
	+ Manoj Kumar Giri (or)
	+ Tomasz Dominikowski (pl)
	+ Jonh Wendell (pt_BR)
	+ Duarte Loreto (pt)
	+ Adi Roiban (ro)
	+ Daniel Nylander (sv)
	+ Theppitak Karoonboonyanan (th)
	+ Clytie Siddall (vi)
	+ Chao-Hsiung Liao (zh_HK)
	+ Chao-Hsiung Liao (zh_TW)

Vino 2.25.90
============

  Fixes

	+ Only show notification if the status icon is visible.
	+ Fix drawing issues in the connectivity label.
	+ Uses a file containing links to webservices, instead of use a hard
	coded one.
	+ Shows an IP address instead of the local hostname in the connectivity
	label.

  Translations

	+ Runa Bhattacharjee (bn_IN)
	+ Jorge González (es)
	+ Changwoo Ryu (ko)
	+ Kjartan Maraas (nb)
	+ Daniel Nylander (sv)

Vino 2.25.5
===========

  Features

	+ New capplet.

  Translations

	+ Runa Bhattacharjee (bn_IN)
	+ Andre Klapper (de)
	+ Jorge González (es)
	+ Claude Paroz (fr)
	+ Oldie (he)
	+ Kjartan Maraas (nb)

Vino 2.25.4
===========

  Features

	+ Added UPnP support. Created a new boolean gconf key called use_upnp.
	For now, no GUI changes

  Translations

	+ Jorge González (es)
	+ Mattias Põldaru (et)
	+ Kjartan Maraas (nb)


Vino 2.25.3
===========

  Features

	+ Removed local_only preference, and allow you to specify the network
	interface to listen.

  Fixes

	+ Some minor fixes

  Translations

	+ Jorge González (es)
	+ Mattias Põldaru (et)
	+ Iñaki Larrañaga Murgoitio (eu)
	+ Oldie (he)
	+ Gabor Kelemen (hu)

Vino 2.24.1
===========

  Fixes
	+ Bug #555105: Propagates port changes via avahi.
	+ Update label in vino-preferences when the port changes.
	+ Bug #161180: Hopefully fix an window empty bug.
	+ LP: #266932: Only restore the wallpaper when the last
	client disconnects.

  Translations

	+ Usama Akkad (ar)
	+ Ihar Hrachyshka (be@latin)
	+ Alexander Shopov (bg)
	+ Milo Casagrande (it)

Vino 2.24.0
===========

  Translations

	+ Usama Akkad (ar)
	+ Joan Duran (ca)
	+ Pavel Šefránek (cs)
	+ Ask Hjorth Larsen (da)
	+ Andre Klapper (de)
	+ Ankit Patel (gu)
	+ Ante Karamatić (hr)
	+ Gabor Kelemen (hu)
	+ Milo Casagrande (it)
	+ Shankar Prasad (kn)
	+ Young-Ho Cha (ko)
	+ Žygimantas Beručka (lt)
	+ പ്രവീണ്‍ (ml)
	+ Dan Damian (ro)
	+ Alexandre Prokoudine (ru)
	+ Laurent Dhima (sq)
	+ Данило Шеган (sr)
	+ Baris Cicek (tr)
	+ Chao-Hsiung Liao (zh_HK)
	+ Chao-Hsiung Liao (zh_TW)

Vino 2.23.92
============

  Fixes

	+ Added an icon to session desktop file.

  Translations

	+ Alexander Shopov (bg)
	+ Runa Bhattacharjee (bn_IN)
	+ David Lodge (en_GB)
	+ Takeshi AIHANA (ja)
	+ Kjartan Maraas (nb)
	+ Wouter Bolsterlee (nl)
	+ Manoj Kumar Giri (or)
	+ Tomasz Dominikowski (pl)
	+ Duarte Loreto (pt)

Vino 2.23.91
============

  Fixes

	+ Make vino work correctly with new gnome-session. (Jonh Wendell)

  Translations

	+ Jorge González (es)
	+ Ivar Smolin (et)
	+ Iñaki Larrañaga Murgoitio (eu)
	+ Ilkka Tuohela (fi)
	+ Claude Paroz (fr)
	+ Oldie (he)
	+ Arangel Angov (mk)
	+ Sandeep Shedmake (mr)
	+ Kjartan Maraas (nb)
	+ Og Maciel (pt_BR)
	+ Daniel Nylander (sv)
	+ Tirumurthi Vasudevan (ta)
	+ Theppitak Karoonboonyanan (th)

Vino 2.23.90
============

  Features

	+ Added the ability to hide the background on connections. (Jorge Pereira)
	+ New compile-time option (--enable-libunique), allows only one
	instance of capplet running. (Jorge, Jonh Wendell)
	+ Added vino-server.desktop file required by new gnome-session. (Halton Huo)
	+ Get rif of libgnome[ui] in the capplet. (Jonh)

  Fixes

	+ Minor bug fixes

  Translations

	+ Djihed Afifi (ar)
	+ Jorge González (es)
	+ Ivar Smolin (et)
	+ Ilkka Tuohela (fi)
	+ Claude Paroz (fr)
	+ Ignacio Casal Quinteiro (gl)
	+ Oldie (he)
	+ Arangel Angov (mk)
	+ Kjartan Maraas (nb)
	+ Wouter Bolsterlee (nl)
	+ Enrico Nicoletto (pt_BR)
	+ Duarte Loreto (pt)
	+ Daniel Nylander (sv)
	+ Theppitak Karoonboonyanan (th)

Vino 2.23.5
============

  Features

	+ New command-line tool, vino-passwd, which allows you to change
	vino password. Similar to Unix passwd command. (Jorge Pereira)

  Fixes

	+ Bug #534262 - cyclic clipboard propagation (Jonh Wendell)
	+ Minor bug fixes

  Translations

	+ Djihed Afifi (ar)
	+ Rostislav "zbrox" Raykov (bg)
	+ Jorge González (es)
	+ Ivar Smolin (et)
	+ Ignacio Casal Quinteiro (gl)
	+ Oldie (he)
	+ Kjartan Maraas (nb)
	+ Wouter Bolsterlee (nl)
	+ Yannig Marchegay (Kokoyaya) (oc)
	+ Matej Urbančič (sl)
	+ Laurent Dhima (sq)
	+ Daniel Nylander (sv)
	+ Theppitak Karoonboonyanan (th)

Vino 2.22.1
============

  Fixes

	+ Don't lock the screen in fake connections (Jonh Wendell)

  Translations

	+ Kostas Papadimas (el)
	+ Ivar Smolin (et)
	+ Eskild Hustvedt (nn)
	+ Marcel Telka (sk)
	+ Baris Cicek (tr)

Vino 2.22.0
===========

  Translations

	+ Djihed Afifi (ar)
	+ Ihar Hrachyshka (be@latin)
	+ Runa Bhattacharjee (bn_IN)
	+ Kenneth Nielsen (da)
	+ David Lodge (en_GB)
	+ Jorge González (es)
	+ Stéphane Raimbault (fr)
	+ Gabor Kelemen (hu)
	+ Milo Casagrande (it)
	+ Takeshi AIHANA (ja)
	+ Žygimantas Beručka (lt)
	+ I. Felix (ta)
	+ Maxim Dziumanenko (uk)
	+ Chao-Hsiung Liao (zh_HK)
	+ Chao-Hsiung Liao (zh_TW)

Vino 2.21.92
============

  Fixes

	+ Fix a crash with the vinagre client. (Mark McLoughlin)
	+ Fix a crash when client disconnects just after connecting. (Jonh Wendell)
	+ Fix the build with recent	glibc. (Matthias Clasen)

  Translations

	+ Josep Puigdemont (ca)
	+ Pavel Šefránek (cs)
	+ Ilkka Tuohela (fi)
	+ Robert-André Mauchin (fr)
	+ Nyitrai István (hu)
	+ Shankar Prasad (kn)
	+ Young-Ho Cha (ko)
	+ Arangel Angov (mk)
	+ Badral (mn)
	+ Shyam Krishna Bal (ne)
	+ Duarte Loreto (pt)
	+ Clytie Siddall (vi)

Vino 2.21.91
============

  Translations

	+ Djihed Afifi (ar)
	+ Amitakhya Phukan (as)
	+ Petr Kovar (cs)
	+ Andre Klapper (de)
	+ Arangel Angov (mk)
	+ Wouter Bolsterlee (nl)
	+ Tomasz Dominikowski (pl)
	+ Vladimir Melo (pt_BR)
	+ Zhovner Pavel (ru)
	+ Theppitak Karoonboonyanan (th)

Vino 2.21.90
============

  Translations

	+ Runa Bhattacharjee (bn_IN)
	+ Andre Klapper (de)
	+ Iñaki Larrañaga Murgoitio (eu)
	+ sandeep shedmake (mr)
	+ Kjartan Maraas (nb)
	+ Yannig Marchegay (Kokoyaya) (oc)
	+ Marcel Telka (sk)
	+ Daniel Nylander (sv)
	+ Clytie Siddall (vi)

Vino 2.21.3
============

  Fixes

    + Minor fixes

  Translations

	+ Ivar Smolin (et)
	+ Ignacio Casal Quinteiro (gl)
	+ Matapathi Pramod (te)
	+ Zhovner Pavel, Vasiliy Faronov (ru)

Vino 2.21.2
============

  Features

    + New gconf key to control the status icon behaviour
    + Added more options in the configuration applet

  Translations

	+ Jorge González (es)
	+ Matej Urbančič (sl)
	+ Daniel Nylander (sv)

Vino 2.21.1
============

  Features

    + Handles clipboard copy and paste (Jonh)
    + Don't ship icons/ directory anymore (Jaap A. Haitsma)

  Fixes

    + Fixes some key presses issues (Dan Winship)
    + Only show 'disconnect all' popup item in status icon if we have
	  more than one client connected (Jonh)
	+ Better handles disconnection from avahi-daemon (Sebastien Estienne)

  Translations

    + Djihed Afifi (ar)
    + Oldie (he)
    + Matej Urbančič (sl)

Vino 2.20.1
===========

  Translations

    + Djihed Afifi (ar)
    + Rostislav "zbrox" Raykov (bg)
    + Iñaki Larrañaga Murgoitio (eu)
    + Young-Ho Cha (ko)
    + Dr.T.Vasudevan (ta)

Vino 2.20.0
===========

  Translations

    + Khaled Hosny (ar)
    + Iñaki Larrañaga Murgoitio (eu)
    + Gabor Kelemen (hu)
    + Arangel Angov (mk)
    + Wouter Bolsterlee (nl)
    + Og Maciel (pt_BR)
    + Duarte Loreto (pt)
    + Nickolay V. Shmyrev (ru)
    + Laurent Dhima (sq)
    + Данило Шеган (sr)
    + Maxim Dziumanenko (uk)
    + Clytie Siddall (vi)

Vino 2.19.92
============

  Fixes

    + Bug #353304 - using Alt-Gr from a Windows VNC client to vino
    + Bug #383147 - beryl windows manager does not support vino only metacity

  Translations

    + Josep Puigdemont (ca)
    + Ask Hjorth Larsen (da)
    + Hendrik Richter (de)
    + Ivar Smolin (et)
    + Stéphane Raimbault (fr)
    + Takeshi AIHANA (ja)
    + Young-Ho Cha (ko)
    + Žygimantas Beručka (lt)
    + Arangel Angov (mk)
    + Tomasz Dominikowski (pl)
    + Og Maciel (pt_BR)

Vino 2.19.90
============

  Features

    + Included hostname in Avahi service name
    + Show the configure summary

  Fixes

    + Minor fixes

  Translations

    + Runa Bhattacharjee (bn_IN)
    + Denis Radovanović (bs)
    + Hendrik Richter (de)
    + Athanasios Lefteris (el)
    + David Lodge (en_GB)
    + Jorge González (es)
    + Ivar Smolin (et)
    + Iñaki Larrañaga Murgoitio (eu)
    + Ilkka Tuohela (fi)
    + Ankit Patel (gu)
    + Rajesh Ranjan (hi)
    + Takeshi AIHANA (ja)
    + Vladimer Sichinava (ka)
    + Raivis Dejus (lv)
    + Hasbullah Bin Pit (ms)
    + Kjartan Maraas (nb)
    + Wouter Bolsterlee (nl)
    + Gora Mohanty (or)
    + Og Maciel (pt_BR)
    + Leonid Kanter (ru)
    + Daniel Nylander (sv)
    + Theppitak Karoonboonyanan (th)
    + Baris Cicek (tr)
    + Maxim Dziumanenko (uk)

Vino 2.19.5
===========

  Features

    + Show http server address in vino-preferences if vino is compiled
      with http support (Halton Huo)
    + Added a new configuration option (gconf key)
	  'lock_screen_on_disconnect', which locks the screen when last
	  user disconnects (Jonh)
    + Build against libnotify, if it's available (added
	  --enable-libnotify=auto and make it the default)

  Fixes

    + Only publish VNC service under Avahi when server is enabled,
      bug #330690 (Jonh)
    + Don't assert on a NULL find result from gnome-keyring,
      bug #450074 (Stef Walter)
    + Fix a crash when dbus Introspect() method is called,
      bug #445525 (Jonh)
    + Fix keyboard mapping problem, bug #440429 (Jonh)
    + Use $prefix/share/vino for data in favor of $prefix/share/gnome/vino,
      bug #436460 (Matthias Clasen)
    + Fix gtk-update-icon-cache	for install and uninstall-hook (David Farning)
    + Fix crash in mouse wheel movement on non-Xorg system,
      bug #431627 (Halton Huo)

  Translations

    + Khaled Hosny (ar)
    + Jakub Friedl (cs)
    + Tshewang Norbu (dz)
    + David Lodge (en_GB)
    + Jorge González (es)
    + Ivar Smolin (et)
    + Ignacio Casal Quinteiro (gl)
    + Oldie (he)
    + Espen Stefansen (nb)
    + Danishka Navin (si)
    + Daniel Nylander (sv)
    + Dr.T.Vasudevan (ta)
    + Theppitak Karoonboonyanan (th)
    + Clytie Siddall (vi)
    + Yang Zhang (zh_CN)

Vino 2.18.1
===========

  Fixes

    + Fix the non-XDAMAGE, non-XSHM support, bug #423887 (Mark)
    + Fix crash on vino_input_init(), bug #425863 (Jonh, Mark)
    + Fix crashes on critical warning in vino-preferences applet,
      bug #418836 and bug #423027 (Halton Huo, Jonh)

  Translations

    + Peter Bach (da)
    + Maria Majadas (es)
    + Iñaki Larrañaga Murgoitio (eu)
    + Ignacio Casal Quinteiro (gl)

Vino 2.18.0
===========

  Fixes

    + Fix build fail with --enable-http-server (Halton Huo)
    + Fix crash when 'disconnect client' menu item is called twice (Jonh, Mark)
    + Adjusts in .desktop file, making it valid according with freedesktop.org (Jonh)

  Translations

    + norbu (dz)
    + Athanasios Lefteris (el)
    + Ankit Patel (gu)
    + Milo Casagrande (it)
    + Takeshi AIHANA (ja)
    + Žygimantas Beručka (lt)
    + Kjartan Maraas (nb)
    + Reinout van Schouwen (nl)
    + Gnome PL Team (pl)
    + Leonardo Ferreira Fontenelle (pt_BR)
    + Данило Шеган (sr)
    + Maxim Dziumanenko (uk)

Vino 2.17.92
===========

  Fixes

    + A few issues related to new Vino Status Icon (Jonh, Christian Persch)
    + Adjust Categories in desktop file according with new Control Center (Denis Washington)
    + Fix minor issues about GnomeIconTheme usage (Jani Monoses)
    + Updates port number in preferences window when server starts (Jonh)

  Translations

    + Khaled Hosny (ar)
    + Rostislav Raykov (bg)
    + Josep Puigdemont (ca)
    + Hendrik Richter (de)
    + David Lodge (en_GB)
    + Ivar Smolin (et)
    + Ilkka Tuohela (fi)
    + Jonathan Ernst (fr)
    + Oldie (he)
    + Gabor Kelemen (hu)
    + Young-Ho Cha (ko)
    + Jovan Naumovski (mk)
    + Kjartan Maraas (nb)
    + Reinout van Schouwen (nl)
    + Leonardo Ferreira Fontenelle (pt_BR)
    + Duarte Loreto (pt)
    + Leonid Kanter (ru)
    + Daniel Nylander (sv)
    + Theppitak Karoonboonyanan (th)
    + Nguyễn Thái Ngọc Duy (vi)
    + Chao-Hsiung Liao (zh_HK, zh_TW)

Vino 2.17.5
===========

  Features

    + Add D-Bus support so that capplet can find out the port number
      from the server (Jonh, Mark)
    + Display a notification bubble when someone connects if we
      haven't already prompted the user for authorization (Jonh, Mark)

  Fixes

    + Replace deprecated GnomeIconTheme usage with GtkIconTheme (Christian Persch)
    + Don't mark GObject property descriptions for translation (Mark)

  Translations

    + Khaled Hosny (ar)
    + Hendrik Richter (de)
    + David Lodge (en_GB)
    + Francisco Javier F. Serrador (es)
    + Satrou SATOH (ja)
    + Raivis Dejus (lv)
    + Kjartan Maraas (nb)
    + Daniel Nylander (sv)
    + Theppitak Karoonboonyanan (th)

Vino 2.17.4
===========

  Features

    + Add a status icon allowing you to disconnect users
      (Jonh Wendell, Christian Persch, Mark, Calum, Andre Klapper)

  Fixes

    + Hide the help button in the prompt dialog (Mark)
    + Fix broken keyboard under Xsun (Halton Huo, Mark)
    + Fix the desktop name remoted to the client (Jonh Wendell)
    + Fix the stringification of the client hostname (Jonh Wendell)

  Translators

    + Khaled Hosny (ar)
    + Francisco Javier F. Serrador (es)
    + Mohammad DAMT (id)
    + Kjartan Maraas (nb)
    + Daniel Nylander (sv)
    + Theppitak Karoonboonyanan (th)
 
Vino 2.17.2
===========

  Features

    + Add "local_only" GConf key for use with SSH tunnels (Mark, Shaya Potter)
    + Add "alternative_port" GConf key (Mark, John Wendell)
    + Add ability to use gnome-keyring to store VNC password (Mark, Steven Zhang)
    + Add IPv6 support (Mark, Srirama Sharma)

  Fixes

    + Update for RFB 3.8 (Dan Winship)
    + Fix for X servers which don't support XShm (Dan Winship)
    + Fix CoRRE encoding problem (Mark)
    + Back-port some fixes from upstream libvncserver (Mark)
    + Add GTK category to .desktop file (Mark)
    + Mark some weird glade strings as non-translatable (Mark)
    + Fix icons not changing when icon theme changes (Mark)
    + Use glib's base64 functions instead of our own (Mark)
    + Use GtkLinkButton instead of VinoURL (Mariano Suárez-Alvarez)

  Translators

    + Rostislav \"zbrox\" Raykov (bg)
    + Francisco Javier F. Serrador (es)
    + Ivar Smolin (et)
    + Ilkka Tuohela (fi)
    + Christophe Merlet (RedFox) (fr)
    + Ankit Patel (gu)
    + Satrou SATOH (ja)
    + Jovan Naumovski (mk)
    + Shiva Prasad Pokharel (ne)
    + Marcel Telka (sk)
    + Daniel Nylander (sv)
    + Clytie Siddall (vi)

Vino 2.16.0
===========

  Fixes

    + Fix hang on wrong login (Gary Coady)
    + Build fixes for FreeBSD (Diego Pettenò) 
    + Build fixes (Leonardo Boshell)

Vino 2.13.5
===========

  Features

    + Publish services over mDNS (Sebastien Estienne, Mark McLoughlin)

  Fixes

    + Fix keyboard brokeness with some X server configurations (Alexandre Oliva)
    + Fix crash with unicode mapped keysyms (Gary Coady)

  Translators

    + Rostislav Raykov (bg)
    + Iñaki Larrañaga Murgoitio (eu)
    + Alessio Frusciante (it)
    + Erdal Ronahi (ku)

Vino 2.12.0
===========

  Translators

   + Rhys Jones (cy)
   + Hendrik Richter (de)
   + Meelad Zakaria (fa)
   + Christophe Merlet (RedFox) (fr)
   + Satrou SATOH (ja)
   + Young-Ho Cha (ko)
   + Žygimantas Beručka (lt)
   + Leonid Kanter (ru)
   + Андрија Зарић (sr)
   + Baris Cicek (tr)

Vino 2.11.92
============

  Translators

   + Josep Puigdemont (ca)
   + Ivar Smolin (et)
   + Gabor Kelemen (hu)
   + Gnome PL Team (pl)
   + Raphael Higino (pt_BR)
   + Duarte Loreto (pt)
   + Dan Damian (ro)
   + Maxim Dziumanenko (uk)
   + storm (zh_CN)
   + Chi-Wei Chen (zh_TW)

Vino 2.11.90
============

  Fixes

   + Performance improvement using DamageReportDeltaRectangles (Mark)
   + Plug a leak (Kjartan Maraas)

  Translators

   + Rostislav "zbrox" Raykov (bg)
   + Miloslav Trmac (cs)
   + Martin Willemoes Hansen (da)
   + Hendrik Richter (de)
   + Adam Weinberger (en_CA)
   + Francisco Javier F. Serrador (es)
   + Priit Laes (et)
   + Ilkka Tuohela (fi)
   + Ignacio Casal Quinteiro (gl)
   + Ankit Patel (gu)
   + Oldie (he)
   + Kjartan Maraas (nb, no)
   + Ronald van Engelen (nl)
   + Marcel Telka (sk)
   + Elian Myftiu (sq)
   + Theppitak Karoonboonyanan (th)
   + Clytie Siddall (vi)
   + Chi-Wei Chen (zh_TW)

Vino 2.11.1.2
=============

  Fixes

   + Fix Caps Lock not working (Mark)
   + Fix Shift not working for some keys (Mark)
   + Fix over-eager key repeat issue (Mark)

Vino 2.11.1.1
=============

  Fixes

   + Fix build failure with not-CVS-HEAD ORBit2 (Mark)

Vino 2.11.1
===========

  Fixes

   + Fix crasher when changing screen size (Leena Gunda, Mark)
   + Fix accumulation of signal handlers with ever screen size change (Leena Gunda)
   + Don't let the help button on the prompt dialog terminate it (Mark)
   + Fix warning spew when deleting password in capplet (Mark)

  Translators

   + Adam Weinberger (en_CA)
   + Priit Laes (et)
   + Gabor Kelemen (hu)
   + Jyotsna Shrestha (ne)
   + Steve Murphy (rw)
   + Abduxukur Abdurixit (ug)
   + Pablo Saratxaga (wa)
   + Canonical Ltd (xh)

Vino 2.10.0
===========

  Translators

   + Rostislav Raykov (bg)
   + Josep Puigdemont (ca)
   + Rhys Jones (cy)
   + Priit Laes (et)
   + Rajesh Ranjan (hi)
   + Žygimantas Beručka (lt)
   + Kjartan Maraas (nb)
   + Rajeev Shrestha (ne)
   + Åsmund Skjæveland (nn)
   + Kjartan Maraas (no)
   + Leonid Kanter (ru)
   + Elian Myftiu (sq)
   + Chi-Wei Chen (zh_TW)

Vino 2.9.2
==========

  Fixes

   + New icon (Jakub Steiner)
   + Add X-GNOME-Bugzilla-Version to .desktop file for bug-buddy (Christoffer Olsen)
   + Install icon into hicolor icon theme (Mark)
   + Update to automake 1.7 (Mark)
   + Install .desktop file in $(datadir)/applications (Mark)

  Translators

   + Rostislav Raykov (bg)
   + Alessio Frusciante (it)
   + Žygimantas Beručka (lt)
   + Badral (mn)
   + Kjartan Maraas (nb)
   + Gora Mohanty (or)
   + Marcel Telka (sk)

Vino 2.8.1
==========

  Fixes

   + Improve the key repeat rate situation a lot (Mark)
   + Don't get screwed up with Metacity's reduced_resources mode (Mark)

  Translators

   + Mohammad DAMT (id)

Vino 2.8.0.1
============

  Fixes

   + Fix typo which caused problems at 800x600 (Gregory Thiemong)
   + Hook up help dialog to docs in gnome-user-docs (Mark)

  Translators

   + Adam Weinberger (en_CA)
   + Åsmund Skjæveland (nn)
   + Gora Mohanty (or)

Vino 2.8.0
==========

  Translators

   + Ayman Hourieh (ar)
   + Mətin Əmirov (az)
   + Josep Puigdemont (ca)
   + Miloslav Trmac (cs)
   + Nikos Charonitakis (el)
   + Luca Ferretti (it)
   + Mişu Moldovan (ro)
   + Jayaradha N (ta)
   + Baris Cicek (tr)
   + Chi-Wei Chen (zh_TW)

Vino 2.7.92
===========

  Translators

   + Denis Radovanović (bs)
   + Ole Laursen (da)
   + Christian Neumair (de)
   + Kostas Papadimas (el)
   + Iñaki Larrañaga Murgoitio (eu)
   + Sami Pesonen (fi)
   + Audrey Simons (fr)
   + Satrou SATOH (ja)
   + Young-Ho Cha (ko)
   + Hasbullah Bin Pit (ms)
   + Kjartan Maraas (nb)
   + Elian Myftiu (sq)
   + Christian Rose (sv)
   + Maxim Dziumanenko (uk)

Vino 2.7.91
===========

  Fixes

   + Make the DAMAGE support actually work (Mark)
   + Link against Xfixes when building DAMAGE support (Mark)

  Translators

   + Gnome PL Team (pl)
   + Duarte Loreto (pt)

Vino 2.7.90
===========

  Fixes

   + Remove the Java client (Mark)
   + Don't build the http server by default but add a --enable-http-server arg (Mark)

  Translators

   + Rostislav Raykov (bg)
   + Runa Bhattacharjee (bn)
   + Adam Weinberger (en_CA)
   + Gareth Owen (en_GB)
   + Francisco Javier F. Serrador (es)
   + Ankit Patel (gu)
   + Gabor Kelemen (hu)
   + Vincent van Adrighem (nl)
   + Kjartan Maraas (no)
   + Amanpreet Singh Alam (pa)
   + Duarte Loreto (pt)
   + Elian Myftiu (sq)
   + Данило Шеган (sr)
   + storm (zh_CN)

Vino 2.7.4
==========

  Fixes

    + Don't crash with an RFB 3.3 client when require_encryption is set (Mark)
    + Change the layout of the preferences dialog to be HIG compliant (Dennis Cranston)

  Translators

    + Miloslav Trmac (cs)
    + Raphael Higino (pt_BR)
    + Christian Rose (sv)

Vino 2.7.3.1
============

  Build Stuff

    + Add --disable-gnutls and --disable-gcrypt configure args (Mark)

Vino 2.7.3
==========

  Server

    + Add support for XDAMAGE (Federico Mena, Mark)
    + Don't require clients to support encryption by default (Mark)
    + Fix a shared memory leak (Mark)

  Capplet

    + Remove the require encryption toggle (Mark)
    + Display a vncviewer command line instead of a url (Mark)

  Build Stuff

    + Make GNU TLS a conditional build requirement (Mark)
    + Add a --enable-java configure arg (Mark)

  Translators

    + Rostislav Raykov (bg)
    + Miloslav Trmac (cs)
    + Adam Weinberger (en_CA)
    + Gareth Owen (en_GB)
    + Elros Cyriatan (nl)
    + Raphael Higino (pt_BR)
    + Duarte Loreto (pt)
    + Christian Rose (sv)
    + storm (zh_CN)

Vino 0.14
=========

  Server

    + Modify the way the protocol uses TLS

  Client

    + Update for protocol changes
    + Fix compile failure

  Preferences Dialog

    + Use new gtk+ APIs rather than egg_screen_blah()

Vino 0.12
=========

  Server

    + Don't leave the client on hold after user accepts them (Leena Gunda)

  Preferences Dialog

    + Display the correct hostname in the URL (Mark)

Vino 0.11
=========

  Server

    + Fix inefficiency when clients are on hold
    + After an unsuccessful authentication attempt, defer the next one for 5 seconds
    + Use libgcrypt to generate a wholly unpredictable challenge
    + Properly manage the prompt dialog when multiple clients connect


  Preferences Dialog

    + Fix some mnemonic conflicts
    + Put HTTP URL for the server in the dialog based on Calum's feedback

Vino 0.10
=========

  Server

    + Implement a HTTP server which returns a web page with the applet
    + Handle RandR screen size changes
    + Register with bonobo-activation-server to support activation
    + Don't poll the screen/pointer unless a client is connected
    + Fix cursor updates for clients that don't support CursorShape encoding
    + Re-do the prompt dialog incorporating suggestions from Calum
    + Fix problem with blocking during the TLS handshake

  Preferences Dialog

    + Completely new look designed by Calum
    + Add back the "Allow encrypted connections" preference

  Client

    + Support 24-bit color instead of 8-bit color
    + Focus the window on startup
    + Show the security type in the info dialog
    + Make the applet draw our icon instead of a RealVNC blurb

  Misc

    + Add a session managed client to handle activating the server

Vino 0.9
========

  Server

    + VNC server based on the same concepts as x0rfbserver, krfb etc.
    + TLS/SSL support for encrypted communication
    + Preferences in GConf
    + User may authorize each connection individually
    + Uses GTK+, GDK, GObject and glib

  Preferences Dialog

    + GNOME HIG compliant preferences dialog

  Client

    + Java client from RealVNC's distribution
    + Support for TLS/SSL