~ubuntu-branches/debian/sid/cheese/sid

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
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
# Generated by Makefile. Do not edit.

commit a742ba0ae74bce8f5b4fd0cc83ff66ddf3d311b1
Author: daniel g. siegel <siegel@in.tum.de>
Date:   Mon Oct 19 21:07:54 2009 +0200

    update NEWS file

M	NEWS

commit f9cdaa0aefc63f002c8d7be2664efacc166b8cc9
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:	Fri Oct 16 19:44:26 2009 +0700

    Undo previous commit, wrong branch. Updated some translations.

M	po/th.po

commit 4353fb2c339808e7cadb445c735444e7780151f5
Author: Akom C <knight2000@gmail.com>
Date:	Fri Oct 16 19:33:47 2009 +0700

    Updated Thai translation.

M	po/th.po

commit 2b6fe6d8d872567710a6f40e4022a2096836a82c
Author: Mattias Põldaru <mahfiaz gmail com>
Date:	Fri Oct 16 11:38:47 2009 +0300

    Updating Estonian translation

M	po/et.po

commit 61bec8a89a06d593f1ff8f23fc1ccd38c8952b76
Author: kentaro kazuhama <kazken3@gmail.com>
Date:	Tue Oct 13 01:48:01 2009 +0900

    Updated Japanese translation

M	po/ja.po

commit c20f3b27f8a6e05803eca8ee42dd2cd50c06b812
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	Sun Oct 11 15:24:29 2009 +0200

    Updated Norwegian bokmål translation

M	po/nb.po

commit b06fe3236998559d9506a25779082f357c86bfbb
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Sun Oct 11 12:39:40 2009 +0200

    Updated Spanish translation

M	help/es/es.po

commit 526752d899a94565e24f6f4d3ce9bbe756e3b7fe
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Sat Oct 10 19:40:30 2009 +0200

    Updated Spanish translation

M	po/es.po

commit 3e74a07c60fc9c57b24adbf6ad48ddfa29f98473
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Sat Oct 10 12:06:18 2009 +0200

    Updated Spanish translation

M	po/es.po

commit b80b83efd86758770df104a2fbffd8e9401dc37a
Author: Claude Paroz <claude@2xlibre.net>
Date:	Thu Oct 8 14:22:41 2009 +0200

    Updated French help translation

    Contributed by Bruno Brouard and Claude Paroz

D	help/fr/figures/cheese-effects-screenshot.png
A	help/fr/figures/cheese-effects.jpg
A	help/fr/figures/cheese-fullscreen.jpg
A	help/fr/figures/cheese-main.jpg
A	help/fr/figures/cheese-preferences.jpg
D	help/fr/figures/cheese-screenshot.jpg
A	help/fr/figures/cheese-share.jpg
A	help/fr/figures/cheese-wide.jpg
M	help/fr/fr.po

commit 31132a291bdec3b847c5ff9b6855697a76f93741
Author: Claude Paroz <claude@2xlibre.net>
Date:	Thu Oct 8 13:08:22 2009 +0200

    [help] Remove version number in figures filename

M	help/C/cheese.xml
R100	help/C/figures/cheese-2.28.0-effects.jpg
help/C/figures/cheese-effects.jpg
R100	help/C/figures/cheese-2.28.0-fullscreen.jpg
help/C/figures/cheese-fullscreen.jpg
R100	help/C/figures/cheese-2.28.0-main.jpg
help/C/figures/cheese-main.jpg
R100	help/C/figures/cheese-2.28.0-preferences.jpg
help/C/figures/cheese-preferences.jpg
R100	help/C/figures/cheese-2.28.0-share.jpg
help/C/figures/cheese-share.jpg
R100	help/C/figures/cheese-2.28.0-wide.jpg
help/C/figures/cheese-wide.jpg
M	help/Makefile.am
M	help/de/de.po
R100	help/de/figures/cheese-2.28.0-preferences.jpg
help/de/figures/cheese-preferences.jpg
R100	help/de/figures/cheese-2.28.0-wide.jpg
help/de/figures/cheese-wide.jpg

commit 391fb7488f03e905fc68ff7bc2466b669d1827da
Author: Leonid Kanter <leon@asplinux.ru>
Date:	Mon Oct 5 13:47:52 2009 +0300

    Updated Russian translation by dmitry.koroban@gmail.com

M	po/ru.po

commit 583a1830794667bd6077ae84b5a2bdafbe24cff0
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Thu Sep 24 22:56:22 2009 +0200

    post release version bump

M	configure.ac
M	wscript

commit 0f62b43a15941aef1d56875dfc2d04574248a4f6
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Thu Sep 24 22:49:12 2009 +0200

    prepare for emergency release 2.28.0.1

M	NEWS
M	configure.ac
M	wscript

commit c0235cb507c0a2be06ff360d2daeedbedeaeb901
Author: Frédéric Péters <fpeters@0d.be>
Date:	Wed Sep 23 22:16:31 2009 +0200

    Update references to DOC_FIGURES

M	help/Makefile.am

commit 2290cde3d4b22462f7f62691f23bf05391a6bd96
Author: Gintautas Miliauskas <gintautas@miliauskas.lt>
Date:	Thu Sep 24 10:54:04 2009 +0300

    Updated Lithuanian translation.

M	po/lt.po

commit d8e2ddbf5a2ac64419c83a66b71b4d3ebec9fd7a
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Tue Sep 22 07:52:08 2009 +0200

    Updated Spanish translation

M	help/es/es.po

commit f93bb6eb7206b51e18698a8c514b4f15a886358e
Author: Mario Blättermann <mariobl@gnome.org>
Date:	Mon Sep 21 22:59:30 2009 +0200

    Updated German translation

M	help/de/de.po

commit e0c78db780bd4cf54558ff6f6bded56c6fb5ad89
Author: Mario Blättermann <mariobl@gnome.org>
Date:	Mon Sep 21 22:55:42 2009 +0200

    Added screenshot

A	help/de/figures/cheese-2.28.0-preferences.jpg

commit e78306caf2fa455324f9502fbe4efc9e7b2c7188
Author: Mario Blättermann <mariobl@gnome.org>
Date:	Mon Sep 21 22:54:14 2009 +0200

    Added screenshot

A	help/de/figures/cheese-2.28.0-wide.jpg

commit df61d7ac197500d17f450b4d0a5aca4da94c83f0
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Sep 21 11:15:16 2009 +0200

    fix some validation errors inside the documentation

M	help/C/cheese.xml

commit b0e0d93905379e430163ed1813ec9fa66030eed9
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Sep 21 10:57:39 2009 +0200

    update NEWS file

M	NEWS

commit b9ddc7fccfe8e3bb3a5a16c0fc993f0177f1f9af
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Sep 21 10:51:25 2009 +0200

    update screenshot

M	help/C/figures/cheese-2.28.0-fullscreen.jpg

commit 6656dd8fdc1529d9dc8eea95717e9bf089f55300
Author: Petr Kovar <pknbe@volny.cz>
Date:	Mon Sep 21 00:11:56 2009 +0200

    Updated Czech translation by Lucas Lommer

M	po/cs.po

commit 55f8b2cb0fe537d4bf9d1ea271e73ee05cec127b
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Sun Sep 20 14:15:01 2009 +0200

    Updated Spanish translation

M	help/es/es.po

commit 6c6d73165b5da63d38cc9ed3e19c4d4c651ea1f0
Author: Amitakhya Phukan <aphukan@fedoraproject.org>
Date:	Sun Sep 20 15:26:04 2009 +0530

    Updating Assamese translations

M	po/as.po

commit 4a9c1829d7657c93c2457094346a2ebd0fe7309a
Author: Alessandro Falappa <alessandro@falappa.net>
Date:	Sun Sep 20 10:59:58 2009 +0200

    Updated Italian translation

M	po/it.po

commit a161dadb0d7981a31c907d545994d3f59418ae3c
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Sat Sep 19 21:57:03 2009 +0200

    Updated Spanish translation

M	help/es/es.po

commit 27c257ff286f1c3ad90f3cf8dd4cd5ce69b3c027
Author: Gil Forcada <gforcada@gnome.org>
Date:	Sat Sep 19 18:01:56 2009 +0200

    Updated Catalan translation

M	po/ca.po

commit 6616960514ad60deaffcbacb4ed13e93786f8f0e
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Sat Sep 19 16:50:03 2009 +0200

    Updated Spanish translation

M	help/es/es.po

commit 3d98759d9012d53a13c0a59da2d85a1d47b3e94e
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Sat Sep 19 15:32:52 2009 +0200

    Updated Spanish translation

M	help/es/es.po

commit 6c7face3a47f90a8dadf8ca30dfc6677be5b656e
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:	Sat Sep 19 20:36:28 2009 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

M	po/zh_HK.po
M	po/zh_TW.po

commit 259198e30a5daf80cb7b8b363792be10284385e4
Author: Mario Blättermann <mariobl@gnome.org>
Date:	Sat Sep 19 11:26:52 2009 +0200

    Updated German doc translation

M	help/de/de.po
D	help/de/figures/cheese-effects-screenshot.jpg
D	help/de/figures/cheese-screenshot.jpg

commit 0a5688fc64ee2a7f07ca3c10e330480339810115
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:	Sat Sep 19 01:44:17 2009 +0200

    Fix 2 spelling mistakes in the help document

M	help/C/cheese.xml

commit ea46d14ddc3dcc89c0ba70387a4b28baf260640d
Author: Frédéric Péters <fpeters@0d.be>
Date:	Wed Aug 26 21:27:52 2009 +0200

    Fix .desktop file (GNOME bug 590182)

M	data/cheese.desktop.in.in

commit 0c04938c5efee5d396ea620d65f573772cf0bc1b
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:	Fri Sep 18 17:20:13 2009 +0530

    maithili update

M	po/LINGUAS
A	po/mai.po

commit 58cc940b526835052445842586b86e385d4b57f1
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:	Wed Sep 16 17:09:31 2009 +0300

    Added Ukrainian translation

M	po/uk.po

commit fa4a1bf933fb5778db7d0dec75b51fc3509f95ce
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Wed Sep 16 12:36:36 2009 +0200

    Updated Slovenian translation

M	po/sl.po

commit 4cc3c1acdf84592e8aedba74d2918387b4cd70c7
Author: Og B. Maciel <ogmaciel@gnome.org>
Date:	Mon Sep 14 22:59:49 2009 -0400

    Some serious word smithing and general clean up.

M	help/C/cheese.xml

commit c4735108b26a286e1ea6833f4896e4a81e797db2
Author: Gintautas Miliauskas <gintautas@miliauskas.lt>
Date:	Tue Sep 15 02:41:58 2009 +0300

    Updated Lithuanian translation.

M	po/lt.po

commit f67dfcb18aae60ef2dc80c7049492626de0c5964
Author: Adi Roiban <adi@roiban.ro>
Date:	Mon Sep 14 23:28:35 2009 +0300

    Added Romanian translation

M	po/ro.po

commit 959dc154397d5ebeca8c6d08c99888ed75c2e9c9
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Sep 14 20:06:47 2009 +0200

    ignore vim's .swp files

M	.gitignore

commit df5539e68974f9cbd7d86e231cb33ae9aaf534e1
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Sep 14 19:59:46 2009 +0200

    fix some grammar errors in the documentation

M	help/C/cheese.xml

commit 6e4a328bcc587f356e7be91b51817c28e8a7a1b7
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Mon Sep 14 19:10:29 2009 +0200

    Updated Spanish translation

M	help/es/es.po

commit f7f7f1386dee8dbe4926be56b17e0cff3af26723
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Sun Sep 13 23:31:47 2009 +0200

    Updated Spanish translation

M	help/es/es.po

commit f991a288f915faf55b04cc23d65472c376494e8f
Author: Felix Kaser <f.kaser@gmx.net>
Date:	Sun Sep 13 22:52:49 2009 +0200

    updated documentation

    added information for burst mode, webcam capture button, wide(screen)
    view and pref dialog. updated some older stuff, the screenshots have
    been made by daniel, thx a lot._

M	help/C/cheese.xml
A	help/C/figures/cheese-2.28.0-effects.jpg
A	help/C/figures/cheese-2.28.0-fullscreen.jpg
A	help/C/figures/cheese-2.28.0-main.jpg
A	help/C/figures/cheese-2.28.0-preferences.jpg
A	help/C/figures/cheese-2.28.0-share.jpg
A	help/C/figures/cheese-2.28.0-wide.jpg
D	help/C/figures/cheese-effects-screenshot.jpg
D	help/C/figures/cheese-screenshot.jpg

commit 7091839d480be2736301df075a30a2f86767f18e
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Sun Sep 13 18:59:21 2009 +0200

    update README

M	README

commit 3023a0f3202349555e9e2a22b6e79bd6ae7814cf
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Sun Sep 13 18:52:25 2009 +0200

    bump dependency requirements

M	README
M	configure.ac
M	wscript

commit 70e679bf1cb955efa8a9b69b351b99f375a4fea6
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Sun Sep 13 18:39:44 2009 +0200

    reindent cheese source code

M	src/cheese-prefs-dialog.c
M	src/cheese-thumb-view.c
M	src/cheese-window.c
M	src/cheese.c

commit 19846e6b44d41053b90e46801093f4a0678fc231
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Sun Sep 13 18:20:01 2009 +0200

    fix the abortion of burst mode with the escape key, fixes bug #595073

    burst mode can now be aborted with the Escape key, no matter if
    the countdown is active or not.
    when burst mode is running you could start it again with spacebar,
    this has been disabled during the burst session.

M	src/cheese-flash.c
M	src/cheese-window.c

commit b292fa04e660dac6f1e0c040174d47c414e2b184
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Sun Sep 13 17:47:35 2009 +0200

    ignore all help/*/cheese.xml except C/cheese.xml (2nd try)

M	.gitignore

commit dc3e7c537b3cb08a58df2134be7c26b9b7d39e66
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Sun Sep 13 16:18:41 2009 +0200

    ignore all help/*/cheese.xml except C/cheese.xml

M	.gitignore

commit 366e148587cbded001e8400e0a5a60434d9c2321
Author: A S Alam <aalam@users.sf.net>
Date:	Sun Sep 13 08:27:23 2009 +0530

    Updating Translation for Punjabi

M	po/pa.po

commit 160b2c52b3faa83c4f7b9b548bb86c8aa572331a
Author: Bruce Cowan <bcowan@fastmail.co.uk>
Date:	Sat Sep 12 21:47:05 2009 +0100

    Updated British English translation

M	po/en_GB.po

commit 51db2ef4561418d2b2d8a6d0acac34a9b4ebcbc6
Author: Kenneth Nielsen <k.nielsen81@gmail.com>
Date:	Sat Sep 12 16:55:01 2009 +0200

    Updated Danish translation

M	po/da.po

commit 864bd6d338e4259f9a9ed3eb78d89d15d32b04cd
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:	Fri Sep 11 15:21:27 2009 +0530

    hindi update by Rajesh Ranjan

M	po/hi.po

commit 5e70974c6f88777760a3ad015a37f1fe4f10453f
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:	Fri Sep 11 15:20:04 2009 +0530

    hindi update by Rajesh Ranjan

M	po/hi.po

commit 472f0773356e955c2e23f1700eb5db0abb54a735
Author: krishnababu k <kkrothap@redhat.ocm>
Date:	Thu Sep 10 12:49:51 2009 +0530

    Updated Telugu Translation

M	po/te.po

commit b036390c842005d13d341baf29c3fda75e2dfd62
Author: Mario Blättermann <mariobl@gnome.org>
Date:	Wed Sep 9 21:30:24 2009 +0200

    Updated German translation

M	po/de.po

commit f171adb7219a1a7396d3a19066c899bedfa1c2d5
Author: Aron Xu <aronxu@gnome.org>
Date:	Wed Sep 9 20:59:39 2009 +0800

    Updated Simplified Chinese translation.

M	help/Makefile.am
A	help/zh_CN/zh_CN.po

commit f452ba45b2e964d8117267c857e4b727e51b4cd4
Author: Kostas Papadimas <pkst@gnome.org>
Date:	Tue Sep 8 18:34:45 2009 +0300

    Updated Greek translation.

M	po/el.po

commit 848352b9350fb51a37ba8695b8f1661633a58925
Author: Sandeep Shedmake <sshedmak@redhat.com>
Date:	Tue Sep 8 13:07:27 2009 +0530

    Updated Marathi Translations

M	po/mr.po

commit 9450e19857bba5f96d4caa6dd5a695c73a92cf41
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Sep 7 23:22:18 2009 +0200

    change my mail address to dgsiegel at gnome dot org

M	AUTHORS
M	MAINTAINERS
M	cheese.doap
M	data/wscript_build
M	help/C/cheese.xml
M	help/ca/ca.po
M	help/de/de.po
M	help/el/el.po
M	help/en_GB/en_GB.po
M	help/es/es.po
M	help/fr/fr.po
M	help/it/it.po
M	help/nl/nl.po
M	help/oc/oc.po
M	help/pt_BR/pt_BR.po
M	help/ru/ru.po
M	help/sv/sv.po
M	help/th/th.po
M	help/wscript_build
M	po/ChangeLog.pre-git
M	po/cs.po
M	po/da.po
M	po/de.po
M	po/es.po
M	po/fr.po
M	po/gl.po
M	po/it.po
M	po/ja.po
M	po/oc.po
M	po/ro.po
M	po/sl.po
M	po/wscript_build
M	src/cheese-countdown.c
M	src/cheese-countdown.h
M	src/cheese-dbus.c
M	src/cheese-dbus.h
M	src/cheese-effect-chooser.c
M	src/cheese-effect-chooser.h
M	src/cheese-fileutil.c
M	src/cheese-fileutil.h
M	src/cheese-gconf.c
M	src/cheese-gconf.h
M	src/cheese-no-camera.c
M	src/cheese-no-camera.h
M	src/cheese-prefs-burst-spinbox.c
M	src/cheese-prefs-dialog.c
M	src/cheese-prefs-webcam-combo.c
M	src/cheese-thumb-view.c
M	src/cheese-thumb-view.h
M	src/cheese-webcam.c
M	src/cheese-webcam.h
M	src/cheese-window.c
M	src/cheese-window.h
M	src/cheese.c
M	src/wscript_build
M	wscript

commit c2135ae67e3c9ceb54bc178e4088aa88baf075c0
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Sep 7 23:09:08 2009 +0200

    add all authors of cheese to the about window

M	AUTHORS
M	src/cheese-window.c

commit ecaba01623ddc48445749f28dc383d4b4f31da9a
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Sep 7 22:55:52 2009 +0200

    post release version bump

M	configure.ac
M	wscript

commit 711b9434c0420ae48d4b1251dbb929b39914f978
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Sep 7 22:44:12 2009 +0200

    update NEWS file

M	NEWS

commit 324de5c7325af76521b5dddc58d89cacd1ab1338
Author: Μάριος Ζηντίλης <m.zindilis@dmajor.org>
Date:	Sun Sep 6 01:04:05 2009 +0300

    Updated Greek translation

M	help/el/el.po

commit bd846db35680579823268dc2df81c52da06748b3
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:	Fri Sep 4 01:42:55 2009 +0200

    Hungarian translation updated

M	po/hu.po

commit 1225efa89bec5fe09b9bc96d3a933de483814db5
Author: Jamil Ahmed <itsjamil@gmail.com>
Date:	Fri Sep 4 04:04:45 2009 +0700

    Added Bengali translation

M	po/LINGUAS
A	po/bn.po

commit 6b6606edf7786cd5ac4cc73a5bb1f2fe68796652
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:	Wed Sep 2 16:35:15 2009 +0200

    Updated Arabic translation

M	po/ar.po

commit 97c704503db52fb6772de716dfed39d7c2c876b3
Author: Runa Bhattacharjee <runab@redhat.com>
Date:	Mon Aug 31 17:13:42 2009 +0530

    Updated Bengali India Translations

M	po/bn_IN.po

commit 392c71816a4be065d7f0daa84fda9bcc88e38b6f
Author: Branko Kokanović <branko.kokanovic@gmail.com>
Date:	Sun Aug 30 15:32:18 2009 +0200

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit 10a87d9bde421d17ca1252324f6acdfc1d911bcf
Author: Baris Cicek <baris@teamforce.name.tr>
Date:	Fri Aug 28 22:37:22 2009 +0300

    Updated Turkish translation from Askin Yollu

M	po/tr.po

commit 18fde9a1a1e2549f830608a9e68c9c66a485912e
Author: Claude Paroz <claude@2xlibre.net>
Date:	Fri Aug 28 20:38:51 2009 +0200

    Updated French translation

M	po/fr.po

commit fc1f70dac9bb1d8ec8b63a3cdc2c8c7cc7ed3f91
Author: Changwoo Ryu <cwryu@debian.org>
Date:	Sat Aug 29 03:12:10 2009 +0900

    Update Korean translation

M	po/ko.po

commit 7aec30b97a79edb02acdfe69ea932d85b020ecbb
Author: Ani <peter.ani@gmail.com>
Date:	Wed Aug 26 15:51:08 2009 +0530

    Updated Malayalam Translations

M	po/ml.po

commit e5d934a1cb764d3f1b6cb1a6367ba49de2640b67
Author: Sweta Kothari <swkothar@redhat.com>
Date:	Wed Aug 26 12:04:18 2009 +0530

    Updated Gujarati Translations

M	po/gu.po

commit 94782ef4fdb90046f78186cd0d64ba17a5488edb
Author: Djavan Fagundes <dnoway@gmail.com>
Date:	Tue Aug 25 20:43:59 2009 -0400

    Updated Brazilian Portuguese translation.

M	po/pt_BR.po

commit bab09db27f8fc590274c870f59edbb11d2ea79d9
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:	Tue Aug 25 16:18:59 2009 +0530

    Updated Oriya Translation

M	po/or.po

commit f4b214234813021e4d32424620ee0a221b9934a7
Author: ifelix <ifelix@redhat.com>
Date:	Tue Aug 25 16:02:59 2009 +0530

    Updated Tamil Translations

M	po/ta.po

commit e481ae3dd7cad94154225c022a0a804a5e06489f
Author: Shankar Prasad <svenkate@redhat.com>
Date:	Tue Aug 25 15:21:30 2009 +0530

    Updated Kannada(kn) translation

M	po/kn.po

commit feaae47cbe81ad9ae4ba7f647a86eb8be1852887
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:	Tue Aug 25 00:03:13 2009 +0100

    Updated Portuguese translation

M	po/pt.po

commit ace6b97822a89ef75e6ac70abdefbd6a3f124452
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Tue Aug 25 00:00:59 2009 +0200

    post release version bump

M	configure.ac
M	wscript

commit 6536f8b4c5c1a6ea48c5c36de612c9aeddedc4c3
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 24 23:47:57 2009 +0200

    Update NEWS file

M	NEWS

commit 84f5e214e772d0f81476069d487be34a8ef6c77f
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:	Mon Aug 24 06:34:09 2009 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

M	po/zh_HK.po
M	po/zh_TW.po

commit f9ff8f5beda235894ce0cb02c1321c57279aa7d3
Author: F Wolff <friedel@translate.org.za>
Date:	Sat Aug 22 06:57:55 2009 -0600

    Added Afrikaans translation

M	po/LINGUAS
A	po/af.po

commit 1cd07f38c4fea8765612b3c8b2e00de5d92b7643
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:	Fri Aug 21 20:48:05 2009 +0300

    Updated Hebrew translation

M	po/he.po

commit 0eb3f79f5d044f9d1953ebba7fa8fdc8e49a4ee0
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	Fri Aug 21 14:17:02 2009 +0200

    Updated Norwegian bokmål translation.

M	po/nb.po

commit 07bd08667779a184d479834350eb2fb5112ff5f1
Author: Akom C <knight2000@gmail.com>
Date:	Thu Aug 20 12:07:35 2009 +0700

    Updated Thai translation.

M	po/th.po

commit 957ee3bced84c9d7632bcde27b286ffb1ec21ce7
Author: Alexander Shopov <ash@contact.bg>
Date:	Wed Aug 19 23:31:09 2009 +0300

    Updated Bulgarian translation

M	po/bg.po

commit d48d16ab07085c5c417eb1da4e05c9310fc5d6c2
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Mon Aug 17 20:45:02 2009 +0200

    Updated Polish translation

M	po/pl.po

commit 22bfcf3fbbdeb26ac8714b772b15d518874f2b55
Author: Ivar Smolin <okul@linux.ee>
Date:	Mon Aug 17 20:57:19 2009 +0300

    Updating Estonian translation

M	po/et.po

commit 441734ffced4b47df874ee44d0a53edf85a342c6
Author: Antón Méixome <meixome@mancomun.org>
Date:	Mon Aug 17 14:28:55 2009 +0200

    Updated Galician Translation

M	po/gl.po

commit 8bc15a6eb447485f13fc35df937cfb62b78ac4eb
Author: Tommi Vainikainen <thv@iki.fi>
Date:	Fri Aug 14 14:41:11 2009 +0300

    Updated Finnish translation

M	po/fi.po

commit dbb59836879367beebea3ac74b0cbdb99b6054d1
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:	Fri Aug 14 14:41:03 2009 +0530

    hindi update

M	po/hi.po

commit d633e623931d20df32bee8e80c62b5a24dbddb90
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Wed Aug 12 11:36:12 2009 +0200

    Revert "window: reduce default window size a little bit"

    This reverts commit dfb6f95b73e09a588e6235786dcf71edb2d7147c.

M	src/cheese-window.c

commit 32091008ea42163f1752ef45762242bd85493420
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:	Wed Aug 12 14:26:35 2009 +0530

    Updated Oriya Translation

M	po/or.po

commit 434bad12476979e2d47c9561c7bea35ad5be5f88
Author: Daniel Nylander <po@danielnylander.se>
Date:	Wed Aug 12 09:56:20 2009 +0200

    Updated Swedish translation

M	po/sv.po

commit 0ff0a4089e3212dc466943115e382a581b2f401b
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Aug 12 08:45:21 2009 +0200

    thumbview: set a minimum size to keep when empty

    Listen to "row-inserted" and "row-deleted" signals to keep track
    of how
    many items we have in the icon view. Force a size request when we have
    no more items.

M	src/cheese-thumb-view.c

commit 00fdab79947dbc4d80ed069e44b7a8a6c79d8c8b
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Tue Aug 11 21:59:27 2009 +0200

    widemode: remove a huge load of barely working hacks

    Turns out that gtk_container_resize_children was everything I needed
    to force a size renegotiation of the icon view right after switching
    mode. Remove all the hacks used to update widget sizes.
    Currently there is a regression, if the icon view is empty it shrinks
    down to its minimum size.

M	src/cheese-window.c
M	src/eog-thumb-nav.c

commit 149371e00e8fab995bdfc450211839a45c13e7f2
Author: Ivar Smolin <okul@linux.ee>
Date:	Tue Aug 11 22:09:35 2009 +0300

    Updating Estonian translation

M	po/et.po

commit 9d1c849ad193b29394f18fbd045d9126e111fab7
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:	Tue Aug 11 12:34:37 2009 +0200

    Updated Basque language

M	po/eu.po

commit 5d5df86654c3fd6402178d230c856e3540ae4327
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:	Mon Aug 10 17:54:30 2009 -0600

    Updated Irish translation

M	po/ga.po

commit a2c1a7ff3bba59cb517296a142a9854a71ed9893
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue Aug 11 01:49:44 2009 +0200

    add a <schema> that got lost, fixes bug #591389, courtesy of Koop Mast

M	data/cheese.schemas.in

commit d5ada1c2259b8d550fb149e51f4991453508b286
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Mon Aug 10 23:56:10 2009 +0200

    Updated Spanish translation

M	po/es.po

commit a6536fa1ef5190f17a6d67fe9366765d07e67339
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 23:27:05 2009 +0200

    post release version bump

M	configure.ac
M	wscript

commit dd8aa803760fa6741b0b66bd74ead996fb94a5b3
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 23:14:35 2009 +0200

    update NEWS file

M	NEWS

commit 6eed130081c5fa3fbb82840259948a14a6214e47
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 21:57:56 2009 +0200

    widemode: save wide mode state in gconf

    Enable wide mode at startup if wide_mode gconf is TRUE.

M	data/cheese.schemas.in
M	src/cheese-gconf.c
M	src/cheese-gconf.h
M	src/cheese-window.c

commit 344b068c60b7567f5a0653ddaa846480494ae843
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 21:38:52 2009 +0200

    schema: reindent gconf schema

M	data/cheese.schemas.in

commit 649a17f20f12fc9a5755192cf746b77fd7c84c55
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Mon Aug 10 21:23:39 2009 +0200

    Updated Spanish translation

M	po/es.po

commit dfb6f95b73e09a588e6235786dcf71edb2d7147c
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 18:42:52 2009 +0200

    window: reduce default window size a little bit

    Reduce default window size so that it doesn't take up the whole screen
    estate in my netbook.

M	src/cheese-window.c

commit 461812146a4ff02bd900abb5d4bc4330762faa40
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 18:26:46 2009 +0200

    widemode: disable super+w accelerator

    Doesn't work here, it seems to discard the Super modifier. Disable it
    while looking for a better shortcut. Not sure it's even needed given
    it is not a so common action.

M	src/cheese-window.c

commit ece4a7405a4dd6de7c4863b01a68449c23581502
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 18:23:04 2009 +0200

    widemode: add command line option to startup in wide mode

M	src/cheese-window.c
M	src/cheese-window.h
M	src/cheese.c

commit 326537600d95e2079f7f50ff25afaf1a0dc01049
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 17:38:52 2009 +0200

    hildon: drop last HILDON bits still alive

    Completely drop HILDON mode, it was partial and didn't work since some
    time. If we really want to support HILDON someone should step in and
    write a good patch.

M	configure.ac
M	src/Makefile.am
M	src/cheese-fileutil.c

commit 647a2ac8cbaf010b37b791d7ecc6740a27b73b6f
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 17:29:51 2009 +0200

    window: remove warnings and add some comment

M	src/cheese-window.c

commit 2b117ff2e8dae5deac2dc1e1fb3409e11b525343
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 17:19:54 2009 +0200

    thumbnav: update scrollbar policy in size-request callback

    See source code comments for a detailed explanation. This fixes the
    issue that caused the window to grow huge when switching mode.

M	src/cheese-window.c
M	src/eog-thumb-nav.c
M	src/eog-thumb-nav.h

commit cbe79ca5391817ee05a3ec11792319f0014d1450
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 16:51:05 2009 +0200

    window: prevent icon view to shrink down when empty

    Quite an hack, but didn't find any better way to do it. If you have
    better ideas please fix it.

M	src/cheese-window.c

commit 9ceb674e523a358c9d46b986a7af26baeef55015
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Aug 10 11:31:20 2009 +0200

    thumbview: let iconview pick up its optimal size

    Remove hard coded size constraints for the icon view so that it
    picks up
    the best size for the current children (i.e. centered items, even with
    no selection, with every thumbnail size).
    It's almost an hack but seems to work pretty well here. The
    alternative
    is to keep the current size request but it's quite ugly.
    Remove also extra spacing between and around thumbnails.

M	src/cheese-thumb-view.c
M	src/cheese-window.c
M	src/eog-thumb-nav.c

commit 287ce4c4e686bacd339556a8137214dbe0833ab7
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun Aug 9 12:40:05 2009 +0200

    thumbnav: correctly update up-down button sensitiveness

    Force an update on up and down button sensitiveness while swithching
    mode. Fix vadj "changed" handler.

M	src/eog-thumb-nav.c

commit d13315eb8322969f8ee31a1e102afdfc827ac7e0
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sat Aug 8 14:24:01 2009 +0200

    window: keep size of the notebook while switching mode

    Better to set size request on the notebook so that the trick
    works with
    the effect selector and while the throbber is shown too.

M	src/cheese-window.c

commit d17386df398975378ba5be3c47c67c59583fe860
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sat Aug 8 14:13:56 2009 +0200

    thumbnav: fix scroll-event handling

    The scroll event should affect only the horizontal adjustment in
    horizontal mode and vice versa in vertical mode.

M	src/eog-thumb-nav.c

commit 085e391b0f5d8e737340b65757228e2937ee0a6c
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sat Aug 8 11:48:42 2009 +0200

    window: keep size of the video screen while switching to wide mode

    This time for real, the previous method was utterly broken, this seems
    to work correctly.

M	src/cheese-window.c

commit e6db3a9efab1720ca311ac8ac6e58834e3673a18
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sat Aug 8 11:23:44 2009 +0200

    ui: add missing toolbar_alignment to the glade file

    Needed for toolbar padding in vertical mode. Didn't commit before
    because there were some merge conflicts with master to solve first.

M	data/cheese.ui

commit 6b1c72aca3a4834ed59c4001e01ce8ddaeb7ef46
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sat Aug 8 10:59:40 2009 +0200

    window: add ui for dynamically switching to and from wide mode

    Add a WideMode action that triggers widget reparenting and changes
    spacing the vertical mode.

M	data/cheese-ui.xml
M	src/cheese-window.c

commit f9c45bb43cd7a4036190bf8e30bb3ab6735d85ba
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sat Aug 8 10:58:50 2009 +0200

    thumbview: set default width for vertical thumbview

M	src/cheese-thumb-view.c

commit 1af6537bd24415645ca81c9095631f4f269490bb
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Fri Aug 7 21:18:58 2009 +0200

    thumbnav: first draft of dynamic vertical mode switching

    Add a function that sets the thumbnav in vertical mode reparenting
    widgets on the fly.

M	src/eog-thumb-nav.c
M	src/eog-thumb-nav.h

commit a75d8ba3c112d51de6bf5e86d57e78948a0ca6ce
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Aug 5 20:29:18 2009 +0200

    thumbnav: fix some box packing issue

M	src/cheese-thumb-view.c
M	src/eog-thumb-nav.c

commit c3fa71eed55790c14b0087cca09a1bd6b7e44b6d
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Aug 5 20:10:48 2009 +0200

    thumbnav: implement scrolling logic for vertical buttons

    Mostly reuse current logic smartly changing affected adjustment on
    the fly.

M	src/cheese-thumb-view.c
M	src/eog-thumb-nav.c

commit 9701f5f773e8e90a10286e878d528d2e06529c02
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Aug 5 19:41:16 2009 +0200

    thumbnav: add up and down buttons

    Add up and down buttons and separated horizontal and vertical
    adjustments. All control logic is still missing.

M	src/eog-thumb-nav.c

commit b4271d475d554c43f5271c391e17a138b7dd2687
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Jul 29 19:44:13 2009 +0200

    thumbnav: nuke whitespaces and reindent

M	src/eog-thumb-nav.c
M	src/eog-thumb-nav.h

commit 9c759cc866de1438504d837422e9f28fbfa7d42d
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Jul 29 18:59:00 2009 +0200

    window: forgot to drop some HILDON stuff

M	src/cheese-window.c

commit 3ad917ea830787552b1270dcc79a81d2b2ebe309
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Jul 29 08:54:04 2009 +0200

    window: reparent the icon view into the right aligment

    First experiment of an horizontal mode suited for netbooks, define
    NETBOOK to test. Completely drop obsolete HILDON mode, if anyone still
    wants it should provide an updated patch.

M	src/cheese-window.c

commit 03d91c4b20dd2254a0f6520bfaa8aa802b88adf0
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Jul 29 08:51:58 2009 +0200

    ui: make room for a vertical icon view in the right side

    Add an hbox and an alignment to contain the icon view in the yet
    to come
    netbook mode.

M	data/cheese.ui

commit 5edf793dfae0f3e4922f8369b10ee1a6ea7f783e
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:	Mon Aug 10 22:21:30 2009 +0200

    Updated Basque language

M	po/eu.po

commit 2cb188bfb8098e840e4cb1a41bcc37a62ace037e
Author: Mario Blättermann <mariobl@gnome.org>
Date:	Mon Aug 10 19:21:30 2009 +0200

    Updated German translation

M	po/de.po

commit 8c07b108fc716c09edfa8ddc700132907757e39b
Author: Antón Méixome <meixome@mancomun.org>
Date:	Mon Aug 10 16:23:56 2009 +0200

    Updated Galician translation

M	po/gl.po

commit d17821738bcc5c42ffeb228357fb9992fe6a3f29
Author: Ivar Smolin <okul@linux.ee>
Date:	Mon Aug 10 13:06:02 2009 +0300

    Updating Estonian translation

M	po/et.po

commit 44abb7ac8ec733909980d56f72b50e849a69b6d5
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun Aug 9 12:46:25 2009 +0200

    nocamera: set WARNING MessageType for the InfoBar

    Warning is certainly more suited since the missing webcam is not
    a fatal
    error. Also, the red color for the error type is really ugly. This
    lovely orange is much better.

M	src/cheese-no-camera.c

commit e5fa0fcc2331a53ad83d37ef71155d62f8066411
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Sun Aug 9 12:48:27 2009 +0200

    Updated Spanish translation

M	po/es.po

commit 7a9896f91871c1b98258e86f6313eed0f669a684
Author: Carles Ferrando <carles.ferrando@gmail.com>
Date:	Sun Aug 9 11:50:37 2009 +0200

    Added Catalan (Valencian) translation

M	po/LINGUAS
A	po/ca@valencia.po

commit 45b6ec4ebab36e872401e35a37656b142252cb1f
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:	Sat Aug 8 18:11:04 2009 -0600

    Updated Irish translation

M	po/ga.po

commit 3548a1c323490280a5f6bc36121245bae17c9792
Author: Claude Paroz <claude@2xlibre.net>
Date:	Sat Aug 8 23:21:33 2009 +0200

    Updated French translation

M	po/POTFILES.skip
M	po/fr.po

commit 81caf2f88ace761b75204d1cc9e7ec591e9d36d2
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Sat Aug 8 22:16:29 2009 +0200

    ui: remove markup from translatable strings

M	data/cheese-prefs.ui

commit af1d2fdb31de67249739be6c9aa5d9ec766e3ca4
Author: Jaap A. Haitsma <jaap@haitsma.org>
Date:	Sat Aug 8 20:30:51 2009 +0200

    Update .gitignore

M	.gitignore

commit c2d79cc7a5d380afb99fd9331d25a056eaa07929
Author: Jaap A. Haitsma <jaap@haitsma.org>
Date:	Sat Aug 8 20:26:42 2009 +0200

    Remove *.glade files

    It is not recommended to use gtk-builder-convert anymore but to use
    glade-3 directly on the .ui files

D	data/cheese-prefs.glade
M	data/cheese-prefs.ui
D	data/cheese.glade
M	data/cheese.ui

commit 6a6427726b4880c1681a935293796377209d7042
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:	Sat Aug 8 21:06:08 2009 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

M	po/zh_HK.po
M	po/zh_TW.po

commit 326ed4caecc8c29c1ceddf7ceed034238aceb010
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:	Sat Aug 8 03:02:59 2009 -0600

    Updated Irish translation

M	po/ga.po

commit d4903dff23408a649ee1043563241ee94279cc22
Author: Claude Paroz <claude@2xlibre.net>
Date:	Sat Aug 8 00:08:45 2009 +0200

    Updated French help translation

M	help/fr/fr.po

commit 000e82cf8b335dff65f41fb688cd1e31ce8aac03
Author: Wolfgang Stöggl <c72578@yahoo.de>
Date:	Fri Aug 7 19:21:51 2009 +0200

    Updated German translation

M	po/de.po

commit efa4b50b50f78441513115c1f8e9a4b34e49d8ef
Author: Mario Blättermann <mariobl@gnome.org>
Date:	Fri Aug 7 17:41:57 2009 +0200

    Updated German doc translation

M	help/de/de.po

commit e4060bab4bf84c4193ad6d215c76cbd3eb32b23e
Author: Antón Méixome <meixome@mancomun.org>
Date:	Thu Aug 6 19:20:05 2009 +0200

    Updated Galician Translation

M	po/gl.po

commit a6eb114ab16cbd323bb077f088894717a6c70df9
Author: Mario Blättermann <mariobl@gnome.org>
Date:	Thu Aug 6 17:01:30 2009 +0200

    Removed images

D	help/de/figures/cheese-effects-screenshot.png
D	help/de/figures/cheese-screenshot.png

commit 5fd7fca379203724497ec0b567df30236be5cec1
Author: Mario Blättermann <mariobl@gnome.org>
Date:	Thu Aug 6 16:59:24 2009 +0200

    Changed image format

A	help/de/figures/cheese-effects-screenshot.jpg
A	help/de/figures/cheese-screenshot.jpg

commit 101d7222213a186b58ec810b3fd564d2b3a69061
Author: Mario Blättermann <mariobl@gnome.org>
Date:	Thu Aug 6 16:55:31 2009 +0200

    Added screenshots to German translation

M	help/de/de.po
A	help/de/figures/cheese-effects-screenshot.png
A	help/de/figures/cheese-screenshot.png

commit a1de14fb5635552c3b31403d832b252e22e19f25
Author: Tomasz Dominikowski <dominikowski@gmail.com>
Date:	Wed Aug 5 23:13:00 2009 +0200

    Updated Polish translation

M	po/pl.po

commit 19e0cd6db2122001e94a4f458a5d79f0ab568fda
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Aug 5 12:46:37 2009 +0200

    burst: insensitize buttons and actions while "bursting"

M	src/cheese-window.c

commit 09c2bc1f4014f9b35a725dcd3040f2e26648f91b
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Aug 5 12:43:31 2009 +0200

    burst: don't delay the first shot

    Take the first photo of a burst right after button press. Rework a
    little bit burst mode to allow this.

M	src/cheese-window.c

commit 772f80799c726ff4046b9230d9a81f065e582a34
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Aug 5 11:31:43 2009 +0200

    window: use switch instead of if-else where better suited

M	src/cheese-window.c

commit 88a8827ef9b81f78db3266c2348b975801d81936
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Tue Aug 4 19:06:59 2009 +0200

    Updated Spanish translation

M	po/es.po

commit f002fe156796b001f239803c14b1cbd9807e041e
Author: Ivar Smolin <okul@linux.ee>
Date:	Tue Aug 4 10:31:14 2009 +0300

    Updating Estonian translation

M	po/et.po

commit 06322b3174f0e2daa2d9c787c6bf1ada369da76e
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Aug 3 22:35:14 2009 +0200

    add 256x256 cheese icons, courtesy of ulisse perusin

M	AUTHORS
M	configure.ac
A	data/icons/256x256/Makefile.am
A	data/icons/256x256/cheese.png
M	data/icons/Makefile.am
M	data/wscript_build

commit 35180e6a47c2e4ae4b691fba287a1c535e3cb941
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Aug 3 22:12:37 2009 +0200

    add tooltips to the buttons, which do not feature a label

M	data/cheese.glade
M	data/cheese.ui

commit 160ff1590587e12cda0f02f37ddd8e88c6853e48
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Aug 3 02:30:14 2009 +0200

    add preference dialog for the burst mode

    allow to configure the delay and the amount of photos, which should
    be taken in the burst mode.

M	data/cheese-prefs.glade
M	data/cheese-prefs.ui
M	src/Makefile.am
A	src/cheese-prefs-burst-spinbox.c
A	src/cheese-prefs-burst-spinbox.h
M	src/cheese-prefs-dialog.c
M	src/cheese-prefs-dialog.h

commit 679668c56cc180246371e249b175a86010727ebe
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	Mon Aug 3 00:24:27 2009 +0200

    Updated Norwegian bokmål translation.

M	po/nb.po

commit 998cdb1b0f1cc76e8cd5280dc0bb0518ca44a838
Author: Daniel Nylander <po@danielnylander.se>
Date:	Thu Jul 30 08:36:35 2009 +0200

    Updated Swedish translation

M	po/sv.po

commit bcbc3cc622d117e193e063620d79206d1d4eac29
Author: Gil Forcada <gforcada@gnome.org>
Date:	Wed Jul 29 12:30:48 2009 +0200

    Added ast to LINGUAS

M	po/LINGUAS

commit 6bdd8bc50f9cb174590fa6f20b62ac11b53ee803
Author: Mikel González <dangerous_piper@softastur.org>
Date:	Wed Jul 29 12:27:38 2009 +0200

    Added Asturian translation

A	po/ast.po

commit 3e16ffe10c4d943ce5c85cbe1a9c95ffc343a9ae
Author: Mattias Põldaru <mahfiaz gmail com>
Date:	Wed Jul 29 10:39:03 2009 +0300

    Updating Estonian translation

M	po/et.po

commit 8566d855997081ccba66720254d185f27766d8f0
Author: drtvasudevan <agnihot3@gmail.com>
Date:	Wed Jul 29 07:42:19 2009 +0530

    Updated Tamil translation

M	po/ta.po

commit 7fa24f677612bdbc196d7008c39f850a407357cb
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue Jul 28 23:20:55 2009 +0200

    remove icon-size attribute of button icons

    we used different icon-sizes depending on whether the icon was
    globally
    installed or provided by cheese. by removing this attribute, all
    icons have
    the same size, which is the button size (real size depending however
    on the gtk
    theme). furthermore, gtk theme settings about the button size do
    work now
    in cheese too.

M	data/cheese.glade
M	data/cheese.ui

commit eb6fbccbb9da9098960aba00fa14e66312959eb3
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue Jul 28 19:26:53 2009 +0200

    add the scalable version of the take photo and burst icons

M	data/icons/scalable/actions/Makefile.am
A	data/icons/scalable/actions/cheese-take-burst.svg
A	data/icons/scalable/actions/cheese-take-photo.svg
M	data/wscript_build

commit 9c8c348c0c568fc876104dae40ae520a1b84dcbc
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue Jul 28 13:32:52 2009 +0200

    add --version command line flag

M	src/cheese.c

commit ae7ef0cd0b88a6eabfbfd003f810f2e192abd632
Author: Daniel Nylander <po@danielnylander.se>
Date:	Tue Jul 28 01:58:44 2009 +0200

    Updated Swedish translation

M	po/sv.po

commit 8b3386aafb673e26cbef34547886eff404eb3835
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue Jul 28 01:03:44 2009 +0200

    post release version bump

M	configure.ac
M	wscript

commit 28463b8274fd622e0f2ad2ec1c3e8a4d61edfa09
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue Jul 28 00:56:26 2009 +0200

    reindent cheese source code

    the last patches did not match our style, now they do

M	src/cheese-gconf.c
M	src/cheese-no-camera.c
M	src/cheese-webcam.c
M	src/cheese-window.c

commit 243e4b87c8e4aa0803817cb931e23e220ed1177b
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue Jul 28 00:50:21 2009 +0200

    update NEWS file

M	NEWS

commit 641db58f99d33f53da9ff7e431effd947a7b6256
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue Jul 28 00:44:57 2009 +0200

    remove some stupid warnings about types

M	src/cheese-prefs-resolution-combo.c
M	src/cheese-prefs-webcam-combo.c

commit 2154e951c585b7ea9f05249dc8b957a47f15f917
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue Jul 28 00:35:17 2009 +0200

    change the photo and burst icons

    change the photo and burst icons to cheese-take-photo and
    cheese-take-burst, which were created for us.

M	AUTHORS
M	data/cheese.glade
M	data/cheese.ui
M	data/icons/16x16/actions/Makefile.am
A	data/icons/16x16/actions/cheese-take-burst.png
A	data/icons/16x16/actions/cheese-take-photo.png
M	data/icons/22x22/actions/Makefile.am
A	data/icons/22x22/actions/cheese-take-burst.png
A	data/icons/22x22/actions/cheese-take-photo.png
M	data/icons/24x24/actions/Makefile.am
A	data/icons/24x24/actions/cheese-take-burst.png
A	data/icons/24x24/actions/cheese-take-photo.png
M	data/icons/32x32/actions/Makefile.am
A	data/icons/32x32/actions/cheese-take-burst.png
A	data/icons/32x32/actions/cheese-take-photo.png
M	data/icons/48x48/actions/Makefile.am
A	data/icons/48x48/actions/cheese-take-burst.png
A	data/icons/48x48/actions/cheese-take-photo.png
M	data/wscript_build

commit e6e217944d93dec4c61cd0d70e07b25a0222e360
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue Jul 28 00:19:51 2009 +0200

    add ui for burst mode

    second part of the patch, which adds the button and menuentry for the
    burst mode.

M	data/cheese-ui.xml
M	data/cheese.glade
M	data/cheese.ui
M	src/cheese-gconf.c
M	src/cheese-window.c

commit f46c5c4a653cd339b8555edcb70be7956d88f3b5
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Jul 27 22:54:33 2009 +0200

    remove the label of the photo and video mode

    this looks nicer and will make some space for the burst mode, which
    will follow

M	data/cheese.glade
M	data/cheese.ui

commit 011ee85b039d307c8b670b4238127d7817ae349f
Author: Aidan Delaney <a.j.delaney@brighton.ac.uk>
Date:	Mon Jul 27 22:49:23 2009 +0200

    support taking a series of photos, partially fixes bug #581997

    this is the first part of the patch, which introduces a burst mode
    in cheese.
    the burst mode allows to take a series of photos, which are defined
    in a gconf
    entry for now and are not configurable yet.

M	AUTHORS
M	data/cheese.schemas.in
M	src/cheese-gconf.c
M	src/cheese-gconf.h
M	src/cheese-window.c

commit 063ed0abbd42c4f3cfabe3b819e5063ddb07ef0f
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Jul 27 01:53:59 2009 +0200

    Make webcam and resolution settings not sensitive if just 1 option
    is available

    If there are no options to choose, make the webcam and resolution
    combo box
    insensitive. Fixes bug #588353

M	src/cheese-prefs-resolution-combo.c
M	src/cheese-prefs-webcam-combo.c

commit 6feb3105c2a2ec05db0428a31007883b4fb729ab
Author: Luca Ferretti <elle.uca@libero.it>
Date:	Tue Jul 21 16:21:54 2009 +0200

    Unfuzzy some messages from previous commit

M	po/it.po

commit 9858795a40416a6c064fda5286cc5384d57a5d66
Author: Alessandro Falappa <alessandro@falappa.net>
Date:	Tue Jul 21 16:14:39 2009 +0200

    Updated Italian translation

M	po/it.po

commit 6eea1ec897c7ef2a6bf235c68f8429037b2b855b
Author: Djavan Fagundes <dnoway@gmail.com>
Date:	Mon Jul 20 00:09:39 2009 -0300

    Updated Brazilian Portuguese translation.

M	po/pt_BR.po

commit 916435ba25646b500a2fe1565476b944bd394148
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:	Sat Jul 18 13:45:08 2009 +0200

    Updated Spanish translation

M	help/es/es.po

commit e80771a9b32046da33461ac07380a2ef82640f6d
Author: Daniel S. Koda <danielskoda@gmail.com>
Date:	Wed Jul 15 21:54:28 2009 -0300

    Updated Brazilian Portuguese translation.

M	po/pt_BR.po

commit 2e33314be1aac8201ffbf9107686fffa4528261e
Author: Felix Kaser <f.kaser@gmx.net>
Date:	Wed Jul 15 21:37:01 2009 +0200

    Updated Help file

    Updated especially the section about where cheese stores the media,
    copyright set to 2009 and added myself as author. This fixes GNOME
    Bug #588354.

M	help/C/cheese.xml

commit 3461e5e14fe93ea991330625183cab9a30f417a4
Author: Erdal Ronahi <erdal.ronahi@gmail.com>
Date:	Wed Jul 15 02:49:36 2009 +0200

    Updated Kurdish translations

M	po/ku.po

commit 02491c2f7e2e3c0b7df5f61bce28d3cd9330ec81
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:	Tue Jul 14 22:08:09 2009 +0800

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

M	po/zh_HK.po
M	po/zh_TW.po

commit 8e6f607275a270d3601a90177264c2ac21de968f
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Jul 13 21:57:42 2009 +0200

    post release version bump

M	configure.ac
M	wscript

commit 5cc4b5c0745c9f19b91245eae136cf6f3f9f745a
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Jul 13 21:52:13 2009 +0200

    remove the gedit bar file from the translatable files as we removed
    it already

M	po/POTFILES.in

commit 1616af552af63064ff6244b4a81df3a1d6bca30a
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Jul 13 21:45:15 2009 +0200

    update NEWS file

M	NEWS

commit 274f7d7d56fd0d3a433c816178b43ddf6bd7492d
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Jul 13 07:42:46 2009 +0200

    build: bump gtk+ requirement to 2.17.3

    Needed for gdk_window_ensure_native

M	configure.ac
M	wscript

commit 545758023fe3ba850692a099078b015de356c0f7
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun Jul 12 08:08:26 2009 +0200

    window: ensure the drawing area has a native X11 window

    With the new client-side-window gtk+ widgets do not always have a
    native window anymore. We need an XID to give to GstXOverlay and embed
    video into the application. This temporarily works around the issue
    forcing a native window. Works around bug 588357

M	src/cheese-window.c

commit c07d90414076e9dc67f0508fc217170339298aae
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Fri Jul 10 20:43:59 2009 +0100

    use the camera-web icon instead of camera-video

    we are using camera-web in the project logo/icon but camera-video
    for the UI.
    it is more appropriate to use the camera-web icon as it's a) less
    likely people
    will use camcorders with cheese b) there is bigger visual distinction
    between
    camera-photo and camera-web than camera-photo and camera-video.

M	data/cheese.glade
M	data/cheese.ui

commit 703e4e171de5cb9fa9d63009fbb9ca4ad56865eb
Author: Milo Casagrande <milo@ubuntu.com>
Date:	Wed Jul 8 21:31:54 2009 +0200

    Added Italian translation
     * Added Italian translation of cheese manual
     * Modified Makefile.am to add it locale

M	help/Makefile.am
A	help/it/it.po

commit 454f82e73d902118b69f0dc26dd779591274dfde
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:	Tue Jul 7 16:15:05 2009 +0300

    Updated Hebrew translation

M	po/he.po

commit b1d6e7b3da09ed46f1dfd41a4378a6c4ebce0eb7
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sat Jul 4 09:29:00 2009 +0200

    webcam: manually expose the window if not PLAYING

    Draw a black background if the pipeline is starting up and the overlay
    is still not ready to expose the drawing area.

M	src/cheese-webcam.c

commit 3d7565f536d0d3014e65e4d9f6d97d4ef0e6ee09
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sat Jul 4 09:16:43 2009 +0200

    webcam: fix broken xoverlay management

    For some reason this went unnoticed for a long time. We were calling
    set_x_overlay right after setting PLAYING state (with no warranty that
    the state change succeeded nor that an overlay was really there). The
    only right way to do this is to wait for prepare-xwindow-id
    message. It
    worked until now just because we've been extremely lucky.

M	src/cheese-webcam.c

commit 71ee16c5a19deec83286e15f674f666ded0cb78f
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Jul 2 18:16:47 2009 +0200

    window: drop url and email handlers

    Drop url and email handlers used in the about dialog since gtk+ 2.17.2
    already provides that functionality built in.

M	src/cheese-window.c

commit c2473c4df9926dfd79fef8660b23c29f4ca2bd72
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Jul 2 18:03:54 2009 +0200

    nocamera: drop GEditMessageArea in favor of GtkInfoBar

    Drop GEditMessageArea since it recently entered gtk+. Fixes bug
    #586545

M	data/cheese.glade
M	data/cheese.ui
M	src/Makefile.am
M	src/cheese-no-camera.c
M	src/cheese-no-camera.h
M	src/cheese-window.c
D	src/gedit-message-area.c
D	src/gedit-message-area.h

commit 880b44b88e216df0e51ea9348dc49693fc8bfc63
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Jul 2 18:03:31 2009 +0200

    build: bump gtk dependency to 2.17.2

M	configure.ac

commit 487cf3c0e89b8837a4a7732503d0f8f180ad507f
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Jul 2 10:45:08 2009 +0200

    build: use AM_SILENT_RULES if available, fixes bug #587581

M	configure.ac

commit 0d332632b47da11b90af261297cbf55dcf269905
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:	Wed Jul 1 22:36:26 2009 +0300

    Updated Ukrainian translation

M	po/uk.po

commit 244f2bb6a50761c0e5529ec5056089fd5ef666dd
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:	Sat Jun 27 14:58:57 2009 +0200

    Updated Spanish translation

M	po/es.po

commit 9e4be98c0a512633fa1ffb1dc8b49cfbad564bea
Author: Ivar Smolin <okul@linux.ee>
Date:	Thu Jun 25 19:25:00 2009 +0300

    Updating Estonian translation

M	po/et.po

commit 44c6c73baf113e4e3d71a9f71baceaa309f9ffc9
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon Jun 22 12:56:30 2009 +0200

    reindent code to meet our standards

M	src/cheese-countdown.c
M	src/cheese-effect-chooser.c
M	src/cheese-gconf.c
M	src/cheese-prefs-balance-scale.c
M	src/cheese-prefs-balance-scale.h
M	src/cheese-prefs-dialog.c
M	src/cheese-thumb-view.c
M	src/cheese-webcam.c
M	src/cheese-webcam.h
M	src/cheese-window.c
M	src/cheese.c

commit 42656fb9c758f1a1891ace9b08187746e920c08f
Author: Javier Jardón <javierjc1982@gmail.com>
Date:	Mon Jun 22 02:36:22 2009 +0200

    Use accessor functions instead direct access, fixes bug #585210

M	src/cheese-countdown.c
M	src/cheese-effect-chooser.c
M	src/cheese-flash.c
M	src/cheese-thumb-view.c
M	src/cheese-webcam.c
M	src/cheese-window.c
M	src/eog-thumb-nav.c
M	src/ephy-spinner.c
M	src/gedit-message-area.c

commit bf2fc145e0cbc9aaffa63cdcf157cb6aab52d89f
Author: Jonathan Ernst <jonathan@ernstfamily.ch>
Date:	Sun Jun 21 20:43:19 2009 +0200

    Updated French translation

M	po/fr.po

commit 25e623251bafd61a2a862387347a8467760aef36
Author: Claude Paroz <claude@2xlibre.net>
Date:	Sun Jun 21 20:39:43 2009 +0200

    ui: remove markup from translatable strings

M	data/cheese-prefs.ui

commit 129f92e36b3a3e4a87e5719c89e56d12fd529383
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun Jun 21 11:11:17 2009 +0200

    keybindings: add configure checks for needed X11 stuff

    Check for XF86keysym.h availability and add a configure option to
    disable Webcam Button listening. Copied from rhythmbox.

M	configure.ac
M	src/cheese-window.c

commit b6752fc4a010ced8a3969d6962c1f46e2e697020
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun Jun 21 10:58:26 2009 +0200

    tools: add little program to emit fake webcam button events

A	tools/test-webcam-button.c

commit de0114556cef148c396552d1c189b476ea0c8aab
Author: Bastien Nocera <hadess@hadess.net>
Date:	Fri Jun 19 15:15:39 2009 +0100

    keybindings: capture webcam buttons

    Listen to XF86Webcam keypresses to capture webcam buttons. Should
    work with
    every driver that correctly binds the input device to KEY_CAMERA
    events.
    Fixes bug #521551

M	src/cheese-window.c

commit e3dfe574aa1b37231dbc1a91b25b5374fb2e2a32
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Tue Jun 16 16:01:32 2009 +0200

    ui: remove padding from the take_picture button

    Use alignment xscale property instead of padding in the take_picture
    button. Doesn't fix but at least partly works around bug #573301 (the
    button can now grow up and fill the whole free space with no padding
    constraint).

M	data/cheese.glade
M	data/cheese.ui

commit 7d318408c1d7823725ca3cbf690daec349e7f886
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Tue Jun 16 10:38:51 2009 +0200

    ui: sanitize main toolbar structure

    No real change, just some little restructuring of the glade toolbar
    definition to make it easier to hack on.

M	data/cheese.glade
M	data/cheese.ui

commit 80ca68bc9e8fb8cdc809fc8a65c2d354ab25af93
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Jun 15 23:06:02 2009 +0200

    post release version bump

M	configure.ac
M	wscript

commit 8dba2f7cbe0fe3f613a307108cab49f7cdec2430
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Jun 15 22:48:22 2009 +0200

    update NEWS file

M	NEWS

commit c2675d63df006d6dffc0b3e7cdc64b3fefda6df3
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon Jun 15 21:58:12 2009 +0200

    webcam: set as default resolution the highest one with more than 15fps

    Webcam devices often support high resolutions but at a very slow rate.
    We used to pick the highest one as default often ending up with
    a jerky
    preview and complaining users. Set default resolution to the best one
    with a framerate higher than 15Hz. Fixes bug #585857

M	src/cheese-webcam.c

commit d25b64149249be6a1329880ae42d4accc0db06d3
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun Jun 14 20:51:46 2009 +0200

    recording: lower max-(page)-delay. Should fix #585761

    Lower max-delay and max-page-delay oggmux properties from 5 to 0.5
    seconds. Should prevent out of sync audio in recorded videos and
    hopefully fix bug #585761.

M	src/cheese-webcam.c

commit 7714c30c506e11545d38180f62d044025796cdd4
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun Jun 14 11:59:18 2009 +0200

    gconf: fix a memory leak

    g_strjoin allocates a new string, so the old effect string was
    leaking.

M	src/cheese-gconf.c

commit 800bfae8eb6e76a808e46b222b876aa2f2802ed3
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun Jun 14 11:50:02 2009 +0200

    gconf: duplicate effect string before free. Fixes bug 584186

    The first item of the effect string was being accessed after freed.
    Duplicate it to avoid this. Fixes bug 584186

M	src/cheese-gconf.c

commit 98e40e7ee48f0244f2bde9316693abaf5e7c78a2
Author: Daniel Nylander <po@danielnylander.se>
Date:	Sun Jun 14 11:16:40 2009 +0200

    Updated sv translation (Daniel Nylander)

M	po/sv.po

commit 2717079f74117df5218ddf03a405428c55b95cf7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	Wed Jun 10 09:55:28 2009 +0200

    Updated Norwegian bokmål translation.

M	po/nb.po

commit ceae3e6ff97d21aca1dd6051bd0e29470316f7ff
Author: Gil Forcada <gforcada@gnome.org>
Date:	Tue Jun 9 19:23:13 2009 +0200

    Minor fix thanks to Pau Iranzo <pau@somgnu.cat>

M	po/ca.po

commit 5d5ac32c0800e477152faba11c5da360d2da0c59
Author: drtvasudevan <agnihot3@gmail.com>
Date:	Fri May 29 16:59:33 2009 +0530

    Updated Tamil translation

M	po/ta.po

commit 79f8dcffac21c5a2d7ed68e82e01e3888af8fef0
Author: drtvasudevan <agnihot3@gmail.com>
Date:	Fri May 29 16:56:55 2009 +0530

    Updated Tamil translation

M	po/ta.po

commit d3a5ff194b843009a7981068c9593e3945ebb120
Author: drtvasudevan <agnihot3@gmail.com>
Date:	Fri May 29 10:55:00 2009 +0530

    Updated Tamil translation

M	po/ta.po

commit a5a7e39b7626a95c40954e4e94159802802489e9
Author: drtvasudevan <agnihot3@gmail.com>
Date:	Thu May 7 22:13:52 2009 +0530

    Updated Tamil translation

M	po/ta.po

commit e70fa72761dda7ba2fb80f978e005aacb4e1fe66
Author: drtvasudevan <agnihot3@gmail.com>
Date:	Thu May 7 22:08:05 2009 +0530

    Updated Tamil translation

M	po/ta.po

commit f21323529b18820ee304244d68b6929ee5a4f590
Author: Simos Xenitellis <simos@gnome.org>
Date:	Tue May 26 22:07:21 2009 +0100

    Fixed Greek translation for documentation.

M	help/el/el.po

commit dd1efbf7000c1331d05014cfde3b9abc3e985ca1
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Tue May 26 08:48:05 2009 +0200

    window: remove initial black bars (at least for 4:3 webcams)

    Set a size request on the drawing area, get the requisition
    computed on
    the main window and use it as default size. Then the first size
    request
    can be removed and the window will keep the size we requested.
    Handy trick to set default size of the drawing area without
    limiting its
    minimum size.

M	data/cheese.glade
M	data/cheese.ui
M	src/cheese-window.c

commit 67681cb1b10289d1317d0f80a40f494bccb7bcf0
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun May 24 12:45:45 2009 +0200

    window: avoid ugly flickering on window resize

    Let gstxoverlay take full control of the drawing area window.
    Prevent gtk to draw the background and remove the flickering caused by
    its internal double buffering.

M	src/cheese-window.c

commit 2dabe9506258ed91727b6459e63a6b676b3c9ce4
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun May 24 12:45:27 2009 +0200

    webcam: forward expose events to the xoverlay interface

    No need to call set_xwindow_id on expose events while there is
    a proper
    method to forward expose events to the overlay.

M	src/cheese-webcam.c

commit 4e73995815aac27b32066c760e141686aec47ac0
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun May 24 12:44:56 2009 +0200

    webcam: set force-aspect-ratio property on the videosink

    Almost every available gstreamer videosink can display black bars
    around
    the video keeping its aspect ratio. Enable it if available.
    Black bars look a lot nicer than the grey color of the underlying
    gtkwindow displayed with the aspectframe.

M	src/cheese-webcam.c

commit 0019a412d617e1bd60fb27989a1f299ca31ba131
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun May 24 11:07:25 2009 +0200

    window: remove aspectframe

    GtkAspectFrame doesn't really suit our needs here, it hardcodes an
    aspect ratio that obviously cannot be valid for every format webcams
    support. Render the video directly to the drawing area with no
    external
    aspect ratio restriction. Fixes bug #559188

M	data/cheese.glade
M	data/cheese.ui

commit 15e82d42fdd7378a8b420777c999d8473755c729
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon May 25 23:42:27 2009 +0200

    post release version bump

M	configure.ac
M	wscript

commit faa6a616cd5974c4d1921531771152a49a4c238a
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Mon May 25 23:31:45 2009 +0200

    update NEWS file

M	NEWS

commit abcdeee70c06880371e4a7cd19090a9079daa764
Author: A S Alam <aalam@users.sf.net>
Date:	Sun May 24 19:53:49 2009 +0530

    Updating Punjabi Translation

M	po/pa.po

commit fd2909a88cfbffd22166915d7a5cccd7c96e260e
Author: Ivar Smolin <okul@linux.ee>
Date:	Wed May 20 09:48:24 2009 +0300

    Updating Estonian translation

M	po/et.po

commit 6d89d72ee660d2d9c5255e6377b92c1b4ed22cc0
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:	Sun May 17 22:28:26 2009 +0200

    Updated Spanish translation

M	po/es.po

commit b3e30d3a700b587e46bc9344009d13d1b12d62cf
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun May 17 08:27:49 2009 +0200

    Don't take new photo while waiting for the previous

    Ignore new photo requests if we are still waiting for an "handoff"
    signal for the previous one. Fixes bug #582902

M	src/cheese-webcam.c
M	src/cheese-webcam.h
M	src/cheese-window.c

commit 9a27b08a1901f1d211f3450028be01dcbc21f870
Author: Nathan-J. Hirschauer <nathanhirschauer@verfriemelt.org>
Date:	Sun May 17 16:12:41 2009 +0200

    Updated German translation.

M	po/de.po

commit ba285816a41a26af2ed2351b584fac1da35df41d
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sat May 16 21:15:25 2009 +0200

    thumbview: fix a couple of memory leaks

    Fix a couple of trivial memory leaks in the thumbnail generator code.
    Fixes bug #578289

M	src/cheese-thumb-view.c

commit 62bdfbb0edb45d5f5ad0763f5f4ac78c49131fb4
Author: Simos Xenitellis <simos@gnome.org>
Date:	Wed May 13 22:13:07 2009 +0100

    Updated Greek translation

M	help/el/el.po

commit 1d12ce022f8182c728f8cd952693266331f2a434
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed May 13 19:57:36 2009 +0200

    window: print detailed error message if show_uri fails

M	src/cheese-window.c

commit d079e930bdcb22a27bc3de24ddf204db83486e15
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Tue May 12 16:02:19 2009 +0200

    thumbview: don't return if theme_load_icon fails

    Don't return if "image-loading" icon is not found, we will have
    an empty
    pixbuf while the thumbnail thread is running but it is surely
    better than
    no thumbnail at all.
    Try to fallback to generic "image" icon before giving up.
    Fixes (at least it should) bug #582240.

M	src/cheese-thumb-view.c

commit 9245591e1432acd304b855082fe4cc1279731e76
Author: Marios Zindilis <m.zindilis@dmajor.org>
Date:	Mon May 11 18:26:20 2009 +0100

    Updated Greek translation

M	help/el/el.po

commit 0f3c3b3ac530b94fcac105b89654d9ee2c0b924b
Author: Akom C <knight2000@gmail.com>
Date:	Mon May 11 16:00:18 2009 +0700

    Updated Thai translation

M	po/th.po

commit a0b28a4123ef88dcbf7aa0202b3c0f2645ed0140
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:	Fri May 8 20:05:46 2009 +0200

    Updated Spanish translation

M	po/es.po

commit 6e1acde3ca7bebec734b80c604b5697033fa1796
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:	Fri May 8 14:57:18 2009 +0530

    Updated Oriya Translation.

M	po/or.po

commit 1d0aa711ff5eee797b934f53116699b2d8bde1ce
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue May 5 01:30:42 2009 +0200

    post release version bump

M	wscript

commit 586b3354c8ffb97647af2fe7b679e0353e914a2b
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Tue May 5 01:24:39 2009 +0200

    post release version bump

M	configure.ac

commit e955b30a3ec3423860bb2fd9923b6e13f9aaa191
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Tue May 5 00:59:04 2009 +0200

    update NEWS file

M	NEWS

commit a9a473c87c03a3e10359c66cb376060a4936c22d
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue May 5 00:34:05 2009 +0200

    bump version number in wscript

M	wscript

commit 33c73db970ae5ae4c3bab4eea41321d98c9ab570
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Tue May 5 00:31:52 2009 +0200

    rename remaining ChangeLog files to ChangeLog.pre-git

    as we do not use ChangeLog files anymore, this commit moves
    po/ChangeLog and help/ChangeLog to ChangeLog.pre-git

R100	help/ChangeLog	help/ChangeLog.pre-git
R100	po/ChangeLog	po/ChangeLog.pre-git

commit 9fc46c6ebb25248bb983cb0053f1e728d5f674d8
Merge: 2791248 b36b6c9
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Tue May 5 00:20:09 2009 +0200

    Merge branch 'videobalance'

    Improve preferences dialog making it more consistent with other GNOME
    applications. Add support for brightness, contrast, saturation and hue
    adjustments. Fixes bug #558970.
    See single commits for detailed changes.

commit 2791248a89a1ed60907a51606298439b62cda0a6
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Mon May 4 20:26:46 2009 +0200

    add dist-hook rule for ChangeLog autogeneration

    added a dist-hook rule, which calls git log and overwrites
    the sample ChangeLog file. we run git log $(CHANGELOG_START)..
    --stat -M -C --name-status --no-color ) | fmt --split-only where
    $CHANGELOG_START is set to 2.26.0

M	Makefile.am

commit a8ef7428275abaad45c494f6360ad88bb6e92890
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Thu Apr 30 12:01:05 2009 +0200

    change the copyright to 2009, this time for real

M	src/cheese-window.c

commit 673661bb62f20e4a7f2e8660c1243cba8e1dcf66
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Wed Apr 29 00:55:00 2009 +0200

    change the copyright year in the about window to 2009, should be
    done with other files too

M	src/cheese-window.c

commit 0cb05a5cb43bdbadd42540fad457fba9ff3fd66c
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Wed Apr 29 00:53:29 2009 +0200

    add temporary waf build files to .gitignore

M	.gitignore

commit 69e72603916b8873ec12a775fdc5f1cdf36d5a13
Author: Patryk Zawadzki <patrys@pld-linux.org>
Date:	Sun Apr 26 15:58:25 2009 +0200

    Fix doap file syntax

    The standard requires mbox to be an URI, mailto: pseudoprotocol is
    required.

M	cheese.doap

commit 4de6c27010476c4cdf56081feb5a7112ab24b94d
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Tue Mar 3 19:06:56 2009 +0100

    Remove deprecated gtk_action_connect_proxy calls

    Replace gtk_action_connect_proxy, deprecated in gtk+ 2.16, with
    gtk_activatable_set_related_action. Fixes bug #571383.
    Bump gtk requirements to reflect this change.

M	configure.ac
M	src/cheese-window.c

commit 5a814ca0da06bb1845161e5a92f7f3c8b0eaca75
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Fri Apr 24 19:41:34 2009 +0200

    Version bump for 2.27 development branch

M	configure.ac

commit b36b6c93c06c5cc7d48bc3b1aa3e7bf830e5b56c
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Apr 23 19:38:55 2009 +0200

    Use new scale marks to revert sliders to default

    Add a sticky mark at the default value in the new sliders to make it
    easier to reset the picture adjustments.

M	src/cheese-prefs-balance-scale.c

commit c158ba6e49145796a808bcaa901aae0cb5a639b8
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Apr 23 18:30:08 2009 +0200

    Implement hue control

    Actually implement the widget for hue adjustment, add its
    gconf property and the correspondent schema

M	data/cheese.schemas.in
M	src/cheese-gconf.c
M	src/cheese-gconf.h
M	src/cheese-prefs-dialog.c
M	src/cheese-window.c

commit bb310c270833e692a9bf587f4efd8bd780e6dad8
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:	Thu Apr 23 18:19:16 2009 +0200

    Updated Spanish translation

M	po/es.po

commit 0e5c6762f84ed41908a4952691a9ebe97ba94570
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Apr 23 18:17:25 2009 +0200

    Set default values for "unset" gconf keys

    If a gconf key doesn't exist, doesn't have a schema or is just
    unset set
    the value to the paramspec default. This fixes the picture being
    black if
    no schema installed (brightness and contrast set to 0).
    The best thing would be to ask gstreamer for the default as we do
    in the
    preferences dialog but at the moment CheeseGconf is still unaware of
    CheeseWebcam.
    The method used (check gconf_client_get to be non NULL) is a bit
    tricky
    but that's the only way to get information about unset keys.
    Yes, gconf sucks.

M	src/cheese-gconf.c

commit cb8a8ec8889bc4b4e79ecc088187464c3a333f95
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Apr 23 17:53:48 2009 +0200

    Implement saturation control

    Actually implement the widget for saturation adjustment, add its
    gconf property and the correspondent schema

M	data/cheese.schemas.in
M	src/cheese-gconf.c
M	src/cheese-gconf.h
M	src/cheese-prefs-dialog.c
M	src/cheese-window.c

commit 876ea9dd5b76cbe1cf32d3037344119292f7eb77
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Apr 23 17:32:52 2009 +0200

    Implement contrast control

    Actually implement the widget for contrast adjustment, add its
    gconf property and the correspondent schema

M	data/cheese.schemas.in
M	src/cheese-gconf.c
M	src/cheese-gconf.h
M	src/cheese-prefs-dialog.c
M	src/cheese-window.c

commit 238172087b3e5d8f8665763df8b8d0dcda1cd254
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Apr 23 17:12:34 2009 +0200

    Make balance widget more generic

    Rename BrightnessScale to BalanceScale and add a dynamic property
    name so
    the same widget can be reused to control all balance properties just
    passing the correspondent property name at construction.

M	src/Makefile.am
A	src/cheese-prefs-balance-scale.c
A	src/cheese-prefs-balance-scale.h
D	src/cheese-prefs-brightness-scale.c
D	src/cheese-prefs-brightness-scale.h
M	src/cheese-prefs-dialog.c
M	src/cheese-prefs-dialog.h
M	src/cheese-webcam.c
M	src/cheese-webcam.h
M	src/cheese-window.c

commit 27df6827bd5167cf68aede1fa55b800a4b0cd585
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Apr 23 09:58:39 2009 +0200

    Add category and bug-database fields to doap file

    Category is needed to be listed correctly on cgit

M	cheese.doap

commit 3a65610da0b094738ec18ccf44ff8e9458871373
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Thu Apr 23 09:51:23 2009 +0200

    Rework Preferences dialog

    Reorganize preferences dialog in a grouped fashion, looks nicer
    and it's
    more consistent to other GNOME projects style. Add controls for coming
    soon image properties.

M	data/cheese-prefs.glade
M	data/cheese-prefs.ui
M	src/cheese-webcam.c

commit c8c1f7efeb9d104cc8dafdc8e86589df306d67c2
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Apr 22 22:24:59 2009 +0200

    Store brightness in gconf

    Store brightness level in the correspondent gconf setting and
    restore it
    on startup

M	src/cheese-prefs-brightness-scale.c
M	src/cheese-prefs-brightness-scale.h
M	src/cheese-prefs-dialog.c
M	src/cheese-window.c

commit 8098dbd205c4883f99bf9c4caddfd3e7decd734d
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Apr 22 21:57:58 2009 +0200

    Add gconf brightness property

    Add a gconf property to store the new brightness setting

M	data/cheese.schemas.in
M	src/cheese-gconf.c
M	src/cheese-gconf.h

commit 43d5794db9a52b7df1b4b46a6e02a7c6ca94c1d3
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Apr 22 20:48:06 2009 +0200

    Add a first draft of a brightness widget

    Add a GtkHScale widget to the preferences dialog, right now it's
    just for
    testing purposes. I think the whole dialog needs some love.
    Create corresponding cheese-prefs widget.
    Add needed methods for brightness control in cheese-webcam.

M	data/cheese-prefs.glade
M	data/cheese-prefs.ui
M	src/Makefile.am
A	src/cheese-prefs-brightness-scale.c
A	src/cheese-prefs-brightness-scale.h
M	src/cheese-prefs-dialog.c
M	src/cheese-webcam.c
M	src/cheese-webcam.h

commit 59dd8ddc966c23f9ada5c69215f91529a3708b4f
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Wed Apr 22 18:54:52 2009 +0200

    Add a videobalance to the pipeline

    Add a videobalance element to video_display_bin to make room for
    upcoming
    contrast, brightness, etc, preferences.
    Not sure the colorspace converter is really needed, deeper look
    needed.

M	src/cheese-webcam.c

commit f62cda41e0eeeee2ae1e184c86aac817a057b8f6
Author: Filippo Argiolas <filippo.argiolas@gmail.com>
Date:	Sun Apr 19 18:24:34 2009 +0200

    Archive old ChangeLog

    Move current ChangeLog to ChangeLog.pre-git and replace it with a
    placeholder that points to 'git log'

M	ChangeLog
C100	ChangeLog	ChangeLog.pre-git

commit 6029fac0f2494c4ac867119251e4c97c72c2d133
Author: Jaap A. Haitsma <jaap@haitsma.org>
Date:	Sat Apr 18 21:52:19 2009 +0200

    Add .gitignore

A	.gitignore

commit 44f70b812b85476125920a7775af03816a1c792e
Author: daniel g. siegel <dgsiegel@gnome.org>
Date:	Thu Apr 16 23:33:06 2009 +0200

    added cheese.doap file

A	cheese.doap

commit a7ef3f0c1a64f79ad03049d02027d0ea75a37a61
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:	Sun Apr 12 12:43:30 2009 +0000

    Updated Spanish translation

    svn path=/trunk/; revision=1231

M	po/ChangeLog
M	po/es.po

commit 81349b4c588a71191dac4e422da5b0894285c85a
Author: Ihar Hrachyshka <iharh@src.gnome.org>
Date:	Sun Apr 12 07:27:14 2009 +0000

    Added Belarusian translation.

    svn path=/trunk/; revision=1230

M	po/ChangeLog
M	po/LINGUAS
A	po/be.po

commit edb1a05d37b24634fea5e7bcf5ec1448d1d32a90
Author: Daniel G. Siegel <dgsiegel@src.gnome.org>
Date:	Thu Mar 19 16:02:36 2009 +0000

    added filippo to MAINTAINERS, welcome!

    svn path=/trunk/; revision=1229

M	ChangeLog
M	MAINTAINERS

commit 87835ac91ed52e6840682d4703b105a5afbca8c1
Author: Shankar Prasad <sprasad@src.gnome.org>
Date:	Thu Mar 19 09:45:32 2009 +0000

    updated kn.po

    svn path=/trunk/; revision=1228

M	po/ChangeLog
M	po/kn.po

commit 8d7c58c3fbfea7fba8853b69e09fd27c95c55887
Author: Djihed Afifi <djihed@src.gnome.org>
Date:	Wed Mar 18 09:31:44 2009 +0000

    corrections

    svn path=/trunk/; revision=1227

M	po/ar.po

commit 66a3255222e5174e4b1929830dfd2d024d045b45
Author: Djihed Afifi <djihed@src.gnome.org>
Date:	Wed Mar 18 09:20:23 2009 +0000

    Updated Arabic translation

    svn path=/trunk/; revision=1226

M	po/ChangeLog
M	po/ar.po

commit b59109012e8bff6310b52a3bf77d5298fd27052b
Author: Daniel G. Siegel <dgsiegel@src.gnome.org>
Date:	Mon Mar 16 17:53:31 2009 +0000

    post release version bump

    svn path=/trunk/; revision=1225

M	ChangeLog
M	configure.ac
M	wscript