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
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
|
2009-03-19 daniel g. siegel <dgsiegel@gmail.com>
* MAINTAINERS:
added filippo to MAINTAINERS, welcome!
2009-03-16 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2009-03-16 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2009-03-07 Filippo Argiolas <filippo.argiolas@gmail.co>
* src/cheese-window.c:
Lock gdk mutex in photo-saved and video-saved callbacks
Those signals are emitted within a gstreamer callback so outside the
mainloop, hence the need for locking.
This fixes the flash locking issue and also the one about the grey
thumbview right after the flash.
Fixes bug #566098
2009-03-02 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2009-03-02 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2009-03-01 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-webcam.c:
Remove g_error calls where the error is not supposed to abort
execution. Replace them with more suited g_warnings.
Fixes bug #562179
2009-02-28 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese.c:
Print cheese verbose messages even if log dir doesn't exist.
Fixes bug #573573
2009-02-16 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2009-02-16 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2009-02-16 Thomas H.P. Andersen <phomes@gmail.com>
* src/cheese-window.c:
Replace deprecated gtk symbols with hildon. Bug #571383
2009-02-02 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2009-02-02 daniel g. siegel <dgsiegel@gmail.com>
* NEWS,
configure.ac,
wscript:
update NEWS file, correct release version
2009-01-15 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
src/cheese-flash.c,
src/cheese-window.c:
changed thomas perls mail address
2009-01-14 Yair Hershkovitz <yairhr@gmail.com>
* src/eog-thumb-nav.c:
Reverse icon view scroll buttons scroll direction for RTL locales.
Closes bug #566197.
2009-01-05 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2009-01-05 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-12-15 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-12-15 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-12-10 Kjartan Maraas <kmaraas@gnome.org>
* src/ephy-spinner.c:
* src/ephy-spinner.h:
* src/gedit-message-area.h:
Single includes fix. Patch from Pedro Fragoso.
Closes bug #563537.
2008-12-01 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-12-01 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-11-23 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-webcam.c:
Print Vendor and Product Id while probing devices. Provide some more
device informations for easier bug triaging.
2008-11-21 Jaap Haitsma <jaap@haitsma.org>
* src/cheese.c,
src/cheese-dbus.c,
src/cheese-fileutil.c,
src/cheese-webcam.c:
Remove unnecesary include files, to meet GnomeGoal
http://live.gnome.org/GnomeGoals/CleanupGTKIncludes
Don't know if I completed in entirely because make CFLAGS+="-DG_DISABLE_SINGLE_INCLUDES -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_SINGLE_INCLUDES" somehow fails somewhere on includes done by gtk files themselves :-(
2008-11-16 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-thumb-view.c:
Don't use random access GList methods when accessing a list
sequentially. Properly free list elements after use.
Fixes bug #560514, courtesy of Giuseppe Fuggiano
2008-11-15 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
src/cheese-window.c,
wscript:
Use gtk_show_uri to open files and xdg-open i.s.o. gnome-open which
is part of libgnome and is deprecated
2008-11-15 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Use gtk_message_dialog_format_secondary_markup correctly
2008-11-13 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c:
print the cheese version if the -v flag is set
2008-11-13 daniel g. siegel <dgsiegel@gmail.com>
* README,
src/cheese-window.c:
change the cheese homepage to projects.gnome.org
2008-11-11 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-gconf.c:
free gslist properly without a memory leak, fixes bug #560347,
courtesy of Giuseppe Fuggiano
2008-11-09 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-webcam.c:
cheese now works for cams which support only one resolution,
fixes bug #560032, courtesy of Hans de Goede
2008-11-04 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-11-04 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-11-02 Felix Kaser <f.kaser@gmx.net>
* ChangeLog:
changed the ChangeLog file, because of an error in a previous changelog entry (no name/email)
2008-11-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-countdown.c:
change the default font of the countdown widget to bitstream
vera sans bold
2008-10-20 daniel g. siegel <dgsiegel@gmail.com>
* src/wscript_build,
wscript:
remove gnome-vfs dependency from waf
2008-10-17 Cosimo Cecchi <cosimoc@gnome.org>
* configure.ac:
* src/Makefile.am:
* src/cheese-thumb-view.c: (cheese_thumb_view_thread_append_item),
(cheese_thumb_view_init):
* src/cheese.c: (main):
* src/eog-thumbnail.c: (art_rgb_run_alpha):
Drop libgnome/libgnome-vfs dependencies (#556580).
2008-10-13 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c:
enhance the previous patch
2008-10-13 daniel g. siegel <dgsiegel@gmail.com>
* wscript:
change the dependency of dbus to dbus-1
2008-10-13 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese.c:
Exit correctly with unknown command line arguments, fixes bug
#556084.
2008-10-12 Felix Kaser <f.kaser@gmx.net>
* data/cheese.glade,
data/cheese.ui,
src/cheese-window.c:
Some ui changes to solve bug #548546! When in fullscreen
and effects chooser mode the fullscreen toolbar will remain
visible! This has been considered the best way.
2008-09-22 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-09-22 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-09-19 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
README,
wscript:
update the cheese dependencies, fixes bug #547203
2008-09-16 daniel g. siegel <dgsiegel@gmail.com>
* data/pixmaps/Makefile.am,
data/pixmaps/cheese-2.svg,
data/pixmaps/cheese-3.svg,
src/cheese-thumb-view.c:
nothing ;)
2008-09-15 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
use the correct translated plural form when deleting more than
one item from the thumbnail bar, fixes bug #552290, courtesy
of Yuriy Penkin
2008-09-14 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c:
do not add a new item to the thumbnail bar, if its already
there, fixes bug #549804
2008-09-10 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese.c:
include gio header in cheese.c
2008-09-09 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-09-09 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-09-09 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese.c:
old photos and videos (before 2.24) are now available in cheese
2.24, fixes bug #547290
2008-09-09 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-webcam.c:
sort videoformat array and resolution hashtable, courtesy of Hans
de Goede
2008-09-09 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-webcam.c,
src/cheese-webcam.h:
dont save duplicated videoformats abut only keep the one with the
maximum framerate if it provides the same resolution. add
correspondent entry only once to the resolution hashtable so that
we have no more duplicated resolutions on preferences dialog.
Fixes bugs #547144 and #547140, courtesy of Hans de Goede
2008-09-08 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c:
remove the old log file if it exists
2008-09-08 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-webcam.c:
send eos event only if the pipeline was playing, otherwise force
shutdown. Start a timeout to force unclean shutdown if eos takes
to much to propagate or doesnt propagate at all. Probably fixes
bug #547422
2008-09-08 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-window.c:
set take_picture sensitiveness before webcam_stop_video_recording
since this emits a signal that would lead to another
sensitiveness change. see comments on bug #547422
2008-09-08 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
data/cheese.ui:
set the utility hint for the fullscreen toolbar, partially
fixes #548546
2008-09-08 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
small indenting change
2008-09-08 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-bugreport.sh,
src/cheese.c:
rename the log file to "log.txt" and prepend it with the
running cheese version
2008-09-05 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-webcam.c,
src/cheese-webcam.h:
fix various issues with cheese, tv-cards and other strange
devices, fixes bug #546868, courtesy of Hans de Goede
2008-09-02 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
src/cheese-prefs-webcam-combo.c:
cheese crashes no more when no device is set in gconf, partially
fixes bug #546868, courtesy of Hans de Goede
2008-09-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
display toolbar when entering into fullscreen mode, fixes bug
#548546, courtesy of Felix Kaser
2008-09-01 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-09-01 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-09-01 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.desktop.in.in:
cheese.desktop file now respects freedesktop SPEC, fixes bug
#550195, courtesy of Pacho Ramos
2008-08-23 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-countdown.c,
src/cheese-countdown.h,
src/cheese-dbus.c,
src/cheese-dbus.h,
src/cheese-effect-chooser.c,
src/cheese-effect-chooser.h,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-flash.c,
src/cheese-flash.h,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/cheese-no-camera.c,
src/cheese-no-camera.h,
src/cheese-prefs-dialog-widgets.c,
src/cheese-prefs-dialog-widgets.h,
src/cheese-prefs-dialog.c,
src/cheese-prefs-dialog.h,
src/cheese-prefs-resolution-combo.c,
src/cheese-prefs-resolution-combo.h,
src/cheese-prefs-webcam-combo.c,
src/cheese-prefs-webcam-combo.h,
src/cheese-prefs-widget.c,
src/cheese-prefs-widget.h,
src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c,
src/cheese-window.h,
src/cheese.c,
tools/cheese-indent.cfg:
a small syntax cleanup made with uncrustify
2008-08-22 daniel g. siegel <dgsiegel@gmail.com>
* tools/cheese-indent.cfg:
uncrustify config update
2008-08-22 daniel g. siegel <dgsiegel@gmail.com>
* tools/cheese-indent.cfg,
tools/indent.sh:
add the uncrustify indenting config
2008-08-20 daniel g. siegel <dgsiegel@gmail.com>
* data/wscript_build,
help/wscript_build,
waf,
wscript:
waf did not install the files properly, now it does
2008-08-20 daniel g. siegel <dgsiegel@gmail.com>
* data/org.gnome.Cheese.service.in:
add the dynamic bindir to the dbus file
2008-08-20 daniel g. siegel <dgsiegel@gmail.com>
* src/Makefile.am,
src/cheese-dbus.c,
src/wscript_build,
waf:
update waf to 1.4.3 and make it working again
2008-08-18 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-08-18 daniel g. siegel <dgsiegel@gmail.com>
* acinclude.m4,
configure.ac,
data/Makefile.am:
fix some dbus-autotool regression, which prevented building
cheese correctly
2008-08-18 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-08-17 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
data/cheese.ui:
change order of buttons in fullscreen mode
2008-08-17 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-countdown.c,
src/cheese-thumb-view.c,
src/cheese.c:
small syntax cleanup
2008-08-17 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
call gdk_x11_window_set_user_time to raise the cheese window
if its called twice
2008-08-16 daniel g. siegel <dgsiegel@gmail.com>
* acinclude.m4:
fix messed up acinclude.m4
2008-08-16 daniel g. siegel <dgsiegel@gmail.com>
* data/org.gnome.Cheese.service.in:
fix messed up dbus service file
2008-08-16 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-dbus.c,
src/cheese-dbus.h:
small syntax cleanup and removing of an unneeded variable
2008-08-16 Filippo Argiolas <filippo.argiolas@gmail.com>
* data/org.gnome.Cheese.service,
data/org.gnome.Cheese.service.in:
another one, sorry :)
2008-08-16 Filippo Argiolas <filippo.argiolas@gmail.com>
* acinclude.m4:
I forgot to add acinclude.m4, sorry.
2008-08-16 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese.c:
notify startup if another istance is found (normally that would be
done by gtk when opening the window but we exit without create any
window so we have to do it manually)
2008-08-16 Filippo Argiolas <filippo.argiolas@gmail.com>
* configure.ac,
data/Makefile.am,
data/org.gnome.Cheese.service,
src/cheese.c,
src/cheese-dbus.c,
src/cheese-dbus.h,
src/cheese-dbus-infos.xml,
src/cheese-window.c,
src/cheese-window.h,
src/Makefile.am:
Don't start cheese twice if another instance is running. First part
of Felix Kaser's work with cheese and dbus. Fixes bug #527736.
2008-08-16 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese.c:
remove gtk_init and gst_init, according to the docs these are not
needed if we use gtk_get_option_group and gst_init_get_option_group
2008-08-13 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
remove unneeded gtkwidget label_effects_fullscreen
2008-08-13 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
data/cheese.ui:
align the buttons with the thumbnail bar
2008-08-13 Patryk Zawadzki <patrys@pld-linux.org>
* src/eog-thumb-nav.c:
hide scrollbar when not needed
2008-08-12 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
data/cheese.ui:
remove the relief of all buttons in the fullscreen toolbar
2008-08-12 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
data/cheese.ui,
src/cheese-countdown.c,
src/cheese-countdown.h,
src/cheese-window.c:
improve the fullscreen mode, fixes bug #547405, courtesy of
Felix Kaser
2008-08-12 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c:
select the last thumbnail item, if the last one was deleted
2008-08-12 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-countdown.c:
hitting space when the countdown has already begun, distorts
the countdown, fixes bug #547403
2008-08-12 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-window.c:
Test for file existence before moving to trash. Remove item
from thumbview if trashing succeeds (don't wait for monitor
to notice). Untabify cheese-window.c
2008-08-12 daniel g. siegel <dgsiegel@gmail.com>
* tools/cicl:
update cicl
2008-08-12 daniel g. siegel <dgsiegel@gmail.com>
* data/gtkrc:
a dynamic growing slider length is much better than a static one
2008-08-11 Patryk Zawadzki <patrys@pld-linux.org>
* src/cheese-window.c,
src/cheese.c,
src/eog-thumb-nav.c,
src/eog-thumb-nav.h,
src/Makefile.am,
data/cheese.ui,
data/Makefile.am,
data/wscript_build,
data/gtkrc:
Use eog's thumbnail browser widget. Fixes bug #511916.
2008-08-11 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-window.c:
Disable action_effects while setup_camera is running. Fixes bug
#547313
2008-08-11 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
add people who contributed to cheese to the cheese about window
2008-08-11 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-webcam.c,
src/cheese-window.c:
Give a detailed error message if some gstreamer element is missing.
Patch from Todd Eisenberger (slightly modified). Fixes bug #522009.
2008-08-10 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.schemas.in:
some gconf translation improvements, fixes bug #547168
2008-08-10 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.schemas.in:
add a translator comment to our schema file
2008-08-10 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-window.c:
Connect button_photo and button_video as proxy widgets for relative
RadioActions. This makes the code more simple and clean.
2008-08-08 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-window.c:
Change action_files sensitiveness on "selection-changed" event.
Fixes bug 546918
2008-08-08 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-webcam.c:
don't try to find highest framerate if format is NULL, courtesy of
Todd Eisenberger
2008-08-07 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.schemas.in,
src/cheese-gconf.c:
selected effects gconf key values are now standardized, fixes bug #513776
2008-08-07 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-window.c:
Better hig compliant alert for missing gstreamer elements. Patch
from bug #522009
2008-08-07 Filippo Argiolas <filippo.argiolas@gmail.com>
* data/cheese.schemas.in,
data/cheese-ui.xml,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/cheese-window.c:
Add a Delete action to immediately delete files without moving to
trash. It can be hidden with the new enable_delete gconf key.
2008-08-07 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.desktop.in.in:
use "Cheese Webcam Booth" instead of "Cheese" as the desktop entry name, fixes bug #543976
2008-08-07 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-window.c:
add multiple selection in the picture listing pane, fixes bug #481405
2008-08-07 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
src/cheese-webcam.c,
src/cheese-window.c:
correct critical warnings, if some gstreamer plugins arent available, fixes bug #522009, courtesy of Todd Eisenberger
2008-08-07 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
remove useless g_free which produced a warning
2008-08-06 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c:
remove a useless printf
2008-08-06 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c:
Chuck Norris doesn't play god. Playing is for children.
2008-08-05 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-thumb-view.c:
don't trust a gboolean to be false
2008-08-05 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
use g_random_int instead of g_rand_int
2008-08-05 daniel g. siegel <dgsiegel@gmail.com>
* data/pixmaps/Makefile.am,
data/wscript_build:
add missing icons to waf and autotools
2008-08-05 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
data/pixmaps/cheese-1.svg,
src/cheese-thumb-view.c:
add the multiplex thumbnail generator algorithm
2008-08-05 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-thumb-view.c:
Free ThumbViewThreadData. Remove redundant setting for url and
basename column.
2008-08-05 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-window.c:
Disable "Start recording" button until the recording pipeline
properly shuts down.
2008-08-05 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-thumb-view.c:
remove a dummy g_message I used for debug
2008-08-05 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-thumb-view.c:
Save generated thumbnails. It seems I removed it without notice,
sorry.
2008-08-05 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c:
resolve wrong sorting issue of the thumbnails, fixes bug #546390
2008-08-05 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-thumb-view.c:
free a strdup-ed string
2008-08-05 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-08-05 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-08-05 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-countdown.c,
src/cheese-effect-chooser.c,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/cheese-no-camera.h,
src/cheese-prefs-webcam-combo.c,
src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-webcam.c,
src/cheese-window.c,
src/cheese.c:
small syntax cleanup
2008-08-04 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
use gtk stock for fullscreen
2008-08-04 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
add a mnemonic and the correct spelling to the fullscreen option
2008-08-04 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-ui.xml,
src/cheese-window.c:
add a fullscreen mode for kiosks, fixes #478852, courtesy of Felix Kaser
2008-08-04 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c:
wait until the video has been recorded, to add it to the thumbnail bar, partially fixes #545212
2008-08-04 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-thumb-view.c,
src/cheese-window.c:
Move thumbnail generation to its own thread.
Display a loading icon while generating thumbnail.
Display a fallback icon if thumbnail generation fails.
Fixes #545151. Partially fixes #545212.
Fix a segfault in cheese-window while deleting both videos and
photos.
2008-08-04 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-window.c:
Delete files if move_to_trash fails. Support for Skip, Skip All,
Delete All to resemble common nautilus behavior. Fixes #545950
2008-08-02 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-window.c:
another uninitialized GError (see previous commit)
2008-08-02 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-window.c:
initialize error in move_file_to_trash to NULL, fixes #545997
2008-07-28 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-webcam.c:
add a videorate element to video_save_bin, fixes (partially?) #542014
2008-07-26 daniel g. siegel <dgsiegel@gmail.com>
* tools/cicl:
add the cicl script to cheese, and try to gain the world domination with this first step
2008-07-23 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-window.c:
connect button_effects as a proxy widget for Effects ToggleAction so
they behave coherently. Fixes bug #539195
2008-07-22 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese-prefs-webcam-combo.c:
Don't try to access selected_device->video_device if there is no
device. Fixes bug #544062
2008-07-21 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-07-21 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
NEWS:
update NEWS and AUTHOR file
2008-07-08 daniel g. siegel <dgsiegel@gmail.com>
* wscript:
bump waf requirements
2008-07-05 Filippo Argiolas <filippo.argiolas@gmail.com>
* AUTHORS,
configure.ac,
src/cheese-webcam.c:
Bump gstreamer requirements to 0.10.16.
Use gst_element_send_event to cleanly shutdown video recording.
Fixes #523475.
2008-07-05 Filippo Argiolas <filippo.argiolas@gmail.com>
* src/cheese.c:
fixes cheese_print_handler, path string was being used after
unreferencing its owner (fileutil)
2008-06-28 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-fileutil.h:
use ogv as default video extension, fixes bug #524021
2008-06-28 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c:
small syntax cleanup
2008-06-28 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-flash.c:
remove a unused variable, which produced a warning
2008-06-23 Jaap Haitsma <jaap@haitsma.org>
* src/cheese.c,
src/cheese-prefs-webcam-combo.c,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c,
src/cheese-window.h:
Make hal-device-id command line option work
Fixes bug #498023. Patch by zeiglerr at gmail dot com
2008-06-22 Marc-Andre Lureau <marcandre.lureau@gmail.com>
* src/cheese-webcam.c: Removed include <X11/extensions/xf86vmode.h>
Fixes bug #539631.
2008-06-22 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
fix typo, which prevented hildon mode to compile cleanly
2008-06-19 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
data/cheese-prefs.glade,
data/cheese-prefs.ui,
src/Makefile.am,
src/cheese-prefs-dialog.c,
src/cheese-prefs-dialog.h,
src/cheese-prefs-webcam-combo.c,
src/cheese-prefs-webcam-combo.h,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c:
allow to choose the webcam using the preference dialog, fixes bug #522200, courtesy of Ryan Zeigler
2008-06-19 Cosimo Cecchi <cosimoc@gnome.org>
* src/cheese-countdown.c: (do_text):
* src/cheese-thumb-view.c: (cheese_thumb_view_fill):
* src/cheese-window.c: (cheese_window_cmd_save_as),
(cheese_window_cmd_move_file_to_trash),
(cheese_window_cmd_set_about_me_photo),
(cheese_window_countdown_picture_cb), (setup_camera):
Fix some gcc warnings. (#537490).
2008-06-16 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-06-16 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS
2008-06-16 daniel g. siegel <dgsiegel@gmail.com>
* Makefile.am,
autogen.sh,
configure.ac:
use intltool > 0.40 for autotools
2008-06-16 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-06-16 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
release version bump
2008-06-08 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c:
Instead of crashing report when certain gstreamer are not found.
Fixes bug #522009. Patch by Todd Eisenberger
2008-06-07 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
fix a crash, when using about/quit menu items in hildon mode, fixes bug #535582, courtesy of Michael Terry
2008-06-02 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-05-25 Jaap Haitsma <jaap@haitsma.org>
* AUTHORS:
Add Alex and Thomas to the AUTHORS file
2008-05-25 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-flash.c,
src/cheese-flash.h:
Forgot to add cheese-flash.[ch] to SVN
2008-05-25 Jaap Haitsma <jaap@haitsma.org>
* wscript:
Also remove xxf86vm from wscript
2008-05-25 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
src/cheese-flash.c,
src/cheese-flash.h,
src/cheese-webcam.c,
src/cheese-window.c,
src/Makefile.am:
Add new flash and remove changing gamma for simulating flash. The
new flash works best if you run a composited desktop. Patch by
Alex "weej" Jones and Thomas Perl. Fixes #526214
2008-05-23 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-fileutil.c:
fix segfault on startup if video or photo directory gconf setting is missing, fixes bug #534480, courtesy of Alexander Jones
2008-05-18 Felix Kaser <f.kaser@gmx.net>
* data/cheese.schemas.in,
src/cheese.c,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/cheese-thumb-view.c,
src/cheese-window.c:
Added support to set the video and photo path in gconf! First priority has gconf, if gconf setting is "" then use xdg, if xdg is "" as well, use "~/.gnome2/cheese/media"!
2008-05-12 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-05-12 daniel g. siegel <dgsiegel@gmail.com>
* po/POTFILES.in,
po/POTFILES.skip:
add and remove some translatable files
2008-05-12 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update the NEWS file
2008-05-08 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
data/cheese.glade,
data/cheese.ui,
data/icons/16x16/actions/Makefile.am,
data/icons/16x16/actions/browse-webcam-effects.png,
data/icons/16x16/actions/effects.png,
data/icons/22x22/Makefile.am,
data/icons/22x22/actions,
data/icons/22x22/actions/Makefile.am,
data/icons/22x22/actions/browse-webcam-effects.png,
data/icons/24x24/Makefile.am,
data/icons/24x24/actions,
data/icons/24x24/actions/Makefile.am,
data/icons/24x24/actions/browse-webcam-effects.png,
data/icons/32x32/Makefile.am,
data/icons/32x32/actions,
data/icons/32x32/actions/Makefile.am,
data/icons/32x32/actions/browse-webcam-effects.png,
data/icons/48x48/Makefile.am,
data/icons/48x48/actions,
data/icons/48x48/actions/Makefile.am,
data/icons/48x48/actions/browse-webcam-effects.png,
data/icons/scalable/Makefile.am,
data/icons/scalable/actions,
data/icons/scalable/actions/Makefile.am,
data/icons/scalable/actions/browse-webcam-effects.svg:
better effects icon, fixes bug #511369
2008-05-02 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-thumb-view.c,
src/cheese-window.c,
src/cheese.c:
store photos and videos in xdg directories, fixes bug #509475, courtesy of Felix Kaser
2008-05-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-fileutil.h:
change the default video extension to .ogg until the mime types are supported properly on the gnome desktop
2008-05-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
remove a useless variable
2008-05-02 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
data/cheese.ui,
src/cheese-window.c:
change the effects button to a toggle button, fixes bug #527870
2008-04-27 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-ui.xml,
src/cheese-window.c:
added support for nautilus send to. this replaces "send by email" where
available, fixes bug #528249, courtesy of Jose Dapena Paz
2008-04-27 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-fileutil.c:
name the files to the date, when they were created, fixes bug #525739
2008-04-27 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.schemas.in:
remove extraneous commas in strings, fixes bug #529445
2008-04-26 Andrea Cimitan <andrea.cimitan@gmail.com>
* src/cheese-countdown.c (on_expose):
the numbers are now aligned (increased size from 24 to 26)
2008-04-26 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-countdown.c:
second number on the countdown widget is 2 not 3
2008-04-26 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-countdown.c:
make the countdown numbers translatable the right way
2008-04-26 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-prefs.glade,
data/cheese-prefs.ui:
"gtk-close" should not be translated, fixes bug #530026
2008-04-26 Andrea Cimitan <andrea.cimitan@gmail.com>
* AUTHORS:
* src/cheese-countdown.c (rgb_to_hls), (hls_to_rgb), (color_shade),
(on_expose), (create_surface_from_svg), (on_style_set_cb):
changed shading operations using a hls colorspace.
drawing operation trough a cairo_pattern.
added a border and a little highlight on it.
2008-04-25 daniel g. siegel <dgsiegel@gmail.com>
* po/POTFILES.in,
src/cheese-countdown.c:
make the 3 2 1 on the countdown widget translatable
2008-04-25 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-countdown.c:
use fg[SELECTED] instead of text[SELECTED] for the countdown widget
2008-04-25 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
fix invalid free in cheese, fixes bug #529467, courtesy of Matthias Clasen
2008-04-25 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
take picture button is enabled outside gtk thread lock, fixes bug #529789, courtesy of Gary Lasker
2008-04-25 daniel g. siegel <dgsiegel@gmail.com>
* data/pixmaps/camera-icon.svg,
src/cheese-countdown.c:
use gtk theme colors for the countdown widget
2008-04-22 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade:
Don't display the toplevel window by default (it's shown explicitely
in pure-Gtk+ mode); fixes superfluous window in Hildon mode,
fixes bug #529276, courtesy of Loïc Minier
2008-04-22 Loïc Minier <lool@dooz.org>
* data/cheese.ui:
Don't display the toplevel window by default (it's shown explicitely
in pure-Gtk+ mode); fixes superfluous window in Hildon mode.
Fixes bug #529276.
2008-04-21 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
data/cheese-prefs.glade,
data/cheese-prefs.ui,
data/cheese.schemas.in,
data/cheese-ui.xml,
data/Makefile.am,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/cheese-prefs-dialog.c,
src/cheese-prefs-dialog.h,
src/cheese-prefs-dialog-widgets.c,
src/cheese-prefs-dialog-widgets.h,
src/cheese-prefs-resolution-combo.c,
src/cheese-prefs-resolution-combo.h,
src/cheese-prefs-widget.c,
src/cheese-prefs-widget.h,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c,
src/Makefile.am:
add a preferences dialog with basic resolution changing, partially fixes #522200, courtesy of James Liggett
2008-04-21 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-04-21 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update the NEWS file
2008-04-21 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
version bump
2008-04-19 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-webcam.c:
when running without a webcam, the video_source element _could_ be NULL
2008-04-19 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
src/cheese-thumb-view.c:
fix regression of DnD, courtesy of Cosimo Cecchi, fixes bug #526398
2008-04-19 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-fileutil.h:
the default theora file extension is .gov, fixes bug #524021
2008-04-19 Jaap Haitsma <jaap@haitsma.org>
* src/cheese.c:
Add comment that gnome_vfs_init is still needed as long as we use
gnome_thumbnail functions. Fixes #522189
2008-04-18 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
cheese crashed, when a file was deleted twice
2008-04-18 daniel g. siegel <dgsiegel@gmail.com>
* wscript:
add the APPNAME_DATA_DIR variable to waf
2008-04-13 daniel g. siegel <dgsiegel@gmail.com>
* data/wscript_build:
install effects.png with waf too
2008-04-13 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
configure.ac,
data/cheese.glade,
data/cheese.ui,
data/icons/16x16/actions,
data/icons/16x16/actions/effects.png,
data/icons/16x16/actions/Makefile.am,
data/icons/16x16/Makefile.am,
src/cheese.c,
src/Makefile.am:
better effects icon, fixes bug #511369, courtesy of baptiste mille-mathias
2008-04-12 Jaap Haitsma <jaap@haitsma.org>
* help/wscript_build,
po/wscript_build,
src/wscript_build,
waf,
wscript:
Update to waf from SVN and finally process help files :-)
2008-04-12 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
data/cheese.ui,
src/cheese-window.c:
Buttons and menu items should use Title Case
2008-04-02 daniel g. siegel <dgsiegel@gmail.com>
* src/Makefile.am:
fix the mix-up with the filenames of cheese-no-camera.c/.h in Makefile.am, courtesy of James Liggett
2008-04-02 daniel g. siegel <dgsiegel@gmail.com>
* README:
add the new cheese description to the README
2008-04-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c:
cheese did not choose the right thumbnails for already taken pictures, fixes bug #524814
2008-04-02 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.desktop.in.in,
src/cheese.c,
src/cheese-window.c:
use new cheese description, fixes bug #512091
2008-04-02 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
data/cheese.glade,
data/cheese.ui,
src/cheese-no-camera.c,
src/cheese-no-camera.h,
src/cheese-window.c,
src/gedit-message-area.c,
src/gedit-message-area.h,
src/Makefile.am:
add the gedit warning box when no camera is found, fixes bug #511945, courtesy of sebastian keller
2008-03-20 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.schemas.in:
show the countdown widget by default
2008-03-19 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
do not allow to take pictures, while the webcam is initialising, fixes bug #523121
2008-03-17 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-webcam.c:
set the max waiting time for detecting a camera to 10 seconds, fixes bug #520394
2008-03-14 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
src/cheese-fileutil.c,
src/cheese-thumb-view.c,
src/cheese-window.c,
src/Makefile.am:
Add a patch of Matthew Garret <mjg59-gnomebugzilla@40srcf.ucam.org>
to add support for building cheese on the hildon desktop. Fixes
bug #519548
2008-03-14 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.desktop.in.in:
add cheese to sound & video in the application menu, fixes bug #519846
2008-03-13 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-webcam.c:
cheese crashes if getting information from a webcam fails, courtesy of Sjoerd Simons, fixes bug #522197
2008-03-13 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c:
cheese doesn't open the webcam device set in gconf, courtesy of Sjoerd Simons, fixes bug #522198
2008-03-13 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
README:
cheese does not list its gnome-vfs dependency, fixes bug #522152, courtesy of Alex Rostovtsev
2008-03-13 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-webcam.c:
cheese crashes while initializing webcam, does strcmp on NULL, fixes bug #522143, courtesy of Alex Rostovtsev
2008-03-13 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-ui.xml,
src/cheese-window.c:
add menu entry for countdown, fixes bug #511160
2008-03-12 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
reformat the NEWS file
2008-03-11 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
post release version bump
2008-03-10 daniel g. siegel <dgsiegel@gmail.com>
* help/Makefile.am:
image in doc is JPG not PNG
2008-03-10 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
bump the version to 2.22
2008-03-10 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-03-10 daniel g. siegel <dgsiegel@gmail.com>
* help/C/cheese.xml,
help/C/figures/cheese-effects-screenshot.jpg,
help/C/figures/cheese-effects-screenshot.png,
help/C/figures/cheese-screenshot.jpg:
update the screenshots as they were outdated
2008-03-04 Wouter Bolsterlee <wbolster@svn.gnome.org>
* po/POTFILES.skip: Add data/cheese.glade, since it is
not used anymore (why is it still in SVN?)
2008-03-02 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
src/cheese-fileutil.c,
src/cheese-thumb-view.c,
src/cheese-window.c,
src/Makefile.am:
Revert hildon support patch (commit 545). It adds new strings and
we are in string freeze
2008-03-02 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
src/cheese-fileutil.c,
src/cheese-thumb-view.c,
src/cheese-window.c,
src/Makefile.am:
Add a patch of Matthew Garret <mjg59-gnomebugzilla@40srcf.ucam.org>
to add support for building cheese on the hildon desktop. Fixes
bug #519548
2008-03-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
menu entries for take a photo and recording never switched, fixes bug #516745
2008-03-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c:
select a thumb near the deleted item, fixes bug #505442
2008-02-28 Jaap Haitsma <jaap@haitsma.org>
* src/cheese.c,
src/cheese-countdown.c,
src/cheese-effect-chooser.c,
src/cheese-effect-chooser.h,
src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c,
src/gst-audio-play.h:
Identation fixes of Daniel whos internet connection at home has been cut
2008-02-27 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-effect-chooser.h:
Make sure we have the right prototype definition. Fixes bug #519030
2008-02-27 Jaap Haitsma <jaap@haitsma.org>
* po/POTFILES.in:
Make sure that .ui file gets localized
2008-02-27 Jaap Haitsma <jaap@haitsma.org>
* configure.ac:
Don't compile with -Werror
2008-02-26 daniel g. siegel <dgsiegel@gmail.com>
* po/POTFILES.in:
as we dont use glade anymore, we dont need it in POTFILES.in
2008-02-25 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-02-24 Jaap Haitsma <jaap@haitsma.org>
* MAINTAINERS:
Add myself to maintainers file
2008-02-19 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
make use of the gconf countdown setting and show or hide the countdown depending on that
2008-02-19 daniel g. siegel <dgsiegel@gmail.com>
* data/wscript_build,
wscript:
make waf work again with cheese.desktop.in.in
2008-02-17 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
data/cheese.ui,
data/Makefile.am,
data/wscript_build,
README,
src/cheese-thumb-view.c,
src/cheese-window.c,
wscript:
Drop libglade and use GtkBuilder instead. Yay one dependency less again
2008-02-15 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Put gtk calls in critical section in thread
Fixes bug #516697. Patch by Mathias Clasen <mclasen@redhat.com>
2008-02-12 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
bump version to 2.21.92
2008-02-12 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
src/cheese-window.c,
wscript:
revert rev #491 as glib 2.15.5 was released
2008-02-11 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-02-09 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
NEWS,
README:
update NEWS, AUTHORS and README
2008-02-09 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
wscript:
We jumped the gun. Set version to 2.21.91 again
2008-02-09 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
wscript:
Post release bump to 2.21.92
2008-02-09 Jaap Haitsma <jaap@haitsma.org>
* help/C/cheese.xml:
Correct xml error in manual. I'm starting to like
make distcheck
2008-02-09 Jaap Haitsma <jaap@haitsma.org>
* po/POTFILES.skip:
Add POTFILES.skip to please make distcheck
2008-02-09 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
src/cheese-window.c,
wscript:
Use xdg-open instead of g_app_info_launch_default_for_uri because for
that gtk 2.16 is necessary. Bump back glib requirement to 2.15.4
2008-02-07 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
data/cheese.desktop.in.in,
data/Makefile.am:
Install bugreport script in libexec instead of lib
Fixes bug #514833
2008-02-04 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c,
src/cheese-countdown.h,
src/cheese-effect-chooser.c,
src/cheese-effect-chooser.h,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c,
src/cheese-window.h,
wscript:
update copyright to 2008
2008-02-03 Tommi Vainikainen <thv@iki.fi>
* src/cheese-effect-chooser.c (cheese_cairo_draw_card): Re-apply
effect names gettext call as per discussions with daniel g. siegel.
* src/cheese-window.c, src/cheese-countdown.h,
src/cheese-countdown.c: Pressing 'Esc' cancels countdown/stop video
recording.
* src/, help/, data/: Updated svn:ignore property for each dir to
include autogenerated files.
2008-02-03 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Simplify launching of help by using g_app_info_launch_default_for_uri
2008-02-03 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-effect-chooser.c:
undoing r467. effect names are already translated
2008-02-03 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
wscript:
Bump glib and gio requirement to 2.15.5
2008-02-02 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Use g_app_info_launch_default_for_uri for opening links and files.
Improve error messages
2008-02-02 Tommi Vainikainen <thv@iki.fi>
* src/cheese-effect-chooser.c: Use translations for effect names.
2008-02-02 Jaap Haitsma <jaap@haitsma.org>
* src/cheese.c:
Call gnome_vfs_init again because GnomeThumbnail uses gnome_vfs
2008-02-01 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-thumb-view.c:
Make sure that filename variable is set before printing it
Fixes bug #513573. Patch by Simon Holm Thogersen <odie@cs.aau.dk> and
Luca Ferretti <elle.uca@libero.it>
2008-01-31 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
src/cheese.c,
src/eog-thumbnail.c,
src/eog-thumbnail.h,
wscript:
Now all gnome-vfs calls in cheese have been replaced by gio
2008-01-30 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-thumb-view.c:
Use GIO instead of gnome-vfs in cheese-thumb-view.c
2008-01-29 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
bump version number to 2.21.91
2008-01-29 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
update NEWS file
2008-01-29 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
prepare for the emergency release 2.21.90.1
2008-01-29 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
data/effects/dicetv.png,
data/effects/edgetv.png,
data/effects/Hulk.png,
data/effects/identity.png,
data/effects/Mauve.png,
data/effects/NoirBlanc.png,
data/effects/Saturation.png,
data/effects/shagadelictv.png,
data/effects/vertigotv.png,
data/effects/videoflip_h.png,
data/effects/videoflip_v.png,
data/effects/warptv.png,
src/cheese-effect-chooser.c:
add the right icons by Lapo Calamandrei and Or Dvory
2008-01-29 daniel g. siegel <dgsiegel@gmail.com>
* data/Makefile.am:
the bugreport script didnt get copied on make dist
2008-01-28 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
NEWS:
forgot to update NEWS and AUTHORS
2008-01-28 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
bump version to 2.21.91
2008-01-28 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
data/effects/dicetv.png,
data/effects/edgetv.png,
data/effects/Hulk.png,
data/effects/identity.png,
data/effects/Mauve.png,
data/effects/NoirBlanc.png,
data/effects/Saturation.png,
data/effects/shagadelictv.png,
data/effects/vertigotv.png,
data/effects/videoflip_h.png,
data/effects/videoflip_v.png,
data/effects/warptv.png:
new effect images by Lapo Calamandrei and gidesa
2008-01-27 daniel g. siegel <dgsiegel@gmail.com>
* data/wscript_build:
waf support for the bug report script
2008-01-26 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Remove gnome-vfs completely from cheese-window.c
2008-01-26 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Use gio instead of gnome-vfs for file copy
2008-01-26 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Make Save dialog title localizable
2008-01-26 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Don't use gnome-vfs for opening links in about dialog
2008-01-26 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
data/cheese-bugreport.sh,
data/cheese.desktop.in.in,
data/Makefile.am,
src/cheese.c,
src/cheese-fileutil.c,
src/cheese-fileutil.h:
Write logging to file ~/.gnome2/cheese/log and send this along in
bug-buddy reports. Patch by <ruledbyfaith@gmail.com>. Fixes
http://code.google.com/p/google-highly-open-participation-gnome/issues/detail?id=108
and bug #510270
2008-01-22 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Also unref gconf object
2008-01-22 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-countdown.c,
src/cheese-fileutil.c,
src/cheese-thumb-view.c,
src/cheese-webcam.c,
src/cheese-window.c:
Plug some leaks. Apply patches of Mauro <mukadr@gmail.com>
of GHOP project. Bug #505441
2008-01-22 Jaap Haitsma <jaap@haitsma.org>
* src/cheese.c,
src/cheese-webcam.c,
src/cheese-window.c:
Run webcam detection in background thread. Fixes bug #505553.
Patch by Steve Magoun <steve.magoun@canonical.com>
2008-01-18 Jaap Haitsma <jaap@haitsma.org>
* data/wscript_build:
Use more elegant way to obtain version
2008-01-18 Jaap Haitsma <jaap@haitsma.org>
* data/wscript_build,
wscript:
Process desktop.in.in with waf
2008-01-17 daniel g. siegel <dgsiegel@gmail.com>
* wscript:
add gio support to waf
2008-01-17 Luca Ferretti <elle.uca@libero.it>
* configure.ac:
Check for gio-2.0 and update glib required to 2.15.2.
* src/cheese-fileutil.c: (cheese_fileutil_get_media_path):
Use G_DIR_SEPARATOR_S, not "/".
* src/cheese-window.c: (cheese_window_cmd_move_file_to_trash),
(cheese_window_move_all_media_to_trash),
(cheese_window_move_media_to_trash):
Uso GIO g_file_trash() to trash files, change
cheese_window_cmd_move_file_to_trash() second argument to GList (the
list of files to trash) plus mimor stuff. See bug #509327 comment 3.
2008-01-16 Jaap Haitsma <jaap@haitsma.org>
* help/C/cheese.xml,
help/C/figures/cheese-effects-screenshot.png,
help/Makefile.am:
Update to new manual provided by Joshua Henderson as part of GHOP
2008-01-14 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-webcam.c:
remove the queue-size=2, this should fix bug #507416 - iSight camera does not work in gstreamer
2008-01-14 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
bump the version to 2.21.90
2008-01-14 daniel g. siegel <dgsiegel@gmail.com>
* data/sounds/Makefile.am:
one shutter sound was excluded in autotools
2008-01-14 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
data/sounds/Makefile.am,
NEWS,
README:
populating release notes
2008-01-14 daniel g. siegel <dgsiegel@gmail.com>
* data/sounds/shutter1.ogg,
data/sounds/shutter2.ogg,
data/sounds/shutter3.ogg,
data/sounds/shutter4.ogg,
src/cheese-window.c:
small cleanup
2008-01-14 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
wscript:
bump version to 2.21.5
2008-01-14 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
data/cheese.glade,
data/pixmaps/camera-icon.svg,
data/pixmaps/Makefile.am,
data/wscript_build,
src/cheese-countdown.c,
src/cheese-countdown.h,
src/cheese-window.c,
src/Makefile.am,
src/wscript_build,
wscript:
add the stylish countdown widget by Mirco "MacSlow" Müller. the patch
was provided by Patryk Zawadzki
2008-01-13 Luca Ferretti <elle.uca@libero.it>
reviewed by: Daniel G. Siegel and Jaap A. Haitsma
* configure.ac:
* data/cheese.desktop.in:
* data/cheese.desktop.in.in:
Add X-GNOME-Bugzilla-* keys and validate .desktop file.
Fix bug #508910 when waf will be able to generate .in from .in.in
2008-01-13 daniel g. siegel <dgsiegel@gmail.com>
* waf:
update to waf 1.3.1
2008-01-12 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-webcam.c:
v4lsrc does not have a queue-size property. Only set queue-size when
we have a v4l2src. Probably fixes #508912
2008-01-11 daniel g. siegel <dgsiegel@gmail.com>
* data/effects/videoflip_h.png,
data/effects/videoflip_v.png,
src/cheese-webcam.c:
vertical and horizontal flip options were
switched (again). patch by Steve Magoun
2008-01-10 daniel g. siegel <dgsiegel@gmail.com>
* README:
the latest gst-good package is 0.10.6
2008-01-05 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c,
src/gst-audio-play.c,
src/gst-audio-play.h,
src/gst-player.c,
src/gst-player.h,
src/Makefile.am:
Rename gst-player to gst-audio-play as that seems more appropriate
Update Makefile.am
2008-01-05 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-audio-play.c,
src/cheese-audio-play.h,
src/cheese-window.c,
src/gst-player.c,
src/gst-player.h,
wscript:
use the gst-player by Mathias Hasselman for playing the shutter sound
2008-01-05 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
wscript:
Oops we forgot the post release bump. Bumped version to 0.4.0
2008-01-05 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-webcam.c:
Force queue-size=2 to make cheese work for some cameras which in
gst-plugins-good 0.10.6 have a bug and queue-size is set to 0.
This is fixed in gstreamer CVS already, but no release has been made
yet. This patch fixes cheese bug #503503
2008-01-04 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-webcam.c:
Color forcing not needed anymore. This has been fixed in gstreamer
http://webcvs.freedesktop.org/gstreamer/gst-plugins-base/sys/v4l/gstv4lsrc.c?revision=1.107&view=markup
2008-01-04 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Do not crash when Trash directory is not present.
Fixes bug #507071
2007-12-29 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
src/cheese-audio-play.c,
src/cheese.c,
src/cheese-effect-chooser.c,
src/cheese-fileutil.c,
src/cheese-gconf.c,
src/cheese-thumb-view.c,
src/cheese-webcam.c,
src/cheese-window.c,
src/eog-thumbnail.c,
wscript:
Make cheese build against uninstalled gstreamer
Fixes bug #479259. Patch by Tim Philip Muller
2007-12-27 Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
* AUTHORS: Added Rodrigo Flores (Brazilian Portuguese translation).
2007-12-24 daniel g. siegel <dgsiegel@gmail.com>
* NEWS:
add the latest news
2007-12-24 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-audio-play.c:
add a "/" to find the real shutter files
2007-12-24 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-audio-play.c,
src/cheese-window.c:
use a playbin instead of a hackish pipeline. thanks jaap for the hint
2007-12-24 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumb-view.c:
sort the thumbnail chronologically/alphabetically
2007-12-24 daniel g. siegel <dgsiegel@gmail.com>
* data/sounds/Makefile.am,
data/sounds/shutter1.ogg,
data/sounds/shutter2.ogg,
data/sounds/shutter3.ogg,
src/cheese-audio-play.c,
src/cheese-audio-play.h,
src/cheese-window.c,
src/Makefile.am:
add more shutter sounds
2007-12-23 daniel g. siegel <dgsiegel@gmail.com>
* configure.ac,
src/cheese-gconf.c,
src/cheese-window.c:
fix some autofoo issues
2007-12-23 daniel g. siegel <dgsiegel@gmail.com>
* data/Makefile.am,
data/sounds,
data/sounds/Makefile.am,
data/sounds/shutter0.ogg,
data/wscript_build,
src/cheese-window.c:
add a shutter sound, when taking a photo
2007-12-23 Benjamin Berg <benjamin@sipsolutions.net>
* wscript:
Add -g to the CCFLAGS in maintainer mode
2007-12-23 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-gconf.c:
fix segfault, when no effects were chosen
2007-12-23 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c:
the print handler shouldnt print an additional newline
2007-12-23 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
po/README.translators,
README,
TODO,
wscript:
fix bug #498609 - authors and credit
furtherone update the other info files
2007-12-19 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
small indentation tango
2007-12-19 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
synchronize the toggle buttons and the radio buttons in the menu, but this patch is pure crap!
2007-12-18 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-webcam.c:
cheese wont compile if string.h isnt included in cheese-webcam.c
2007-12-18 daniel g. siegel <dgsiegel@gmail.com>
* wscript:
-Wall was never added to the CCFLAGS. adding -Werror if maintainer mode is enabled
2007-12-18 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c:
add a hidden hal-device command line option
2007-12-18 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c:
add --verbose command line option, fixes bug #499399 - Add --verbose option
2007-12-16 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-gconf.h,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c:
Read webcam device from gconf and use it in cheese-webcam.c
Now we still need a preference dialog
2007-12-14 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c:
add a basic print handler
2007-12-14 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.schemas.in,
src/cheese-effect-chooser.c,
src/cheese-effect-chooser.h,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/cheese-window.c:
store the selected effects in gconf, fixes bug #488834
2007-12-13 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-ui.xml,
src/cheese-window.c:
use radio buttons in the menu to change between photo and video mode
2007-12-13 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-ui.xml,
src/cheese-window.c:
from now on, you can record videos from the menu
2007-12-13 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-ui.xml,
src/cheese-window.c:
use a toggle instead of two menu entries for the effects chooser
2007-12-12 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-effect-chooser.c:
make the effect chooser look a bit nicer
2007-12-12 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-ui.xml,
src/cheese-window.c:
provide access to the effect chooser using the menu
2007-12-08 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
data/Makefile.am,
data/pixmaps,
data/pixmaps/Makefile.am,
data/pixmaps/thumbnail-frame.png,
data/wscript_build,
src/cheese-thumb-view.c,
src/eog-thumbnail.c,
src/eog-thumbnail.h,
src/eog-thumb-shadow.c,
src/eog-thumb-shadow.h,
src/Makefile.am:
Give thumbnails frame like in nautilus and eog
Fixes bug #500819 Patch by Diego Escalante Urrelo <diegoe@gnome.org>
2007-12-06 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-webcam.c:
Only use raw video formats. Fixes bug #502174.
Patch by Tim Philipp Muller <tim at centricular dot net>
2007-12-06 Tim-Philipp Müller <tim at centricular dot net>
* src/cheese-window.c: (cheese_window_cmd_set_about_me_photo):
fix compiler warning on ubuntu gutsy.
2007-12-05 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
use "move all to trash" instead of "remove all media"
2007-12-04 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
remove the trash icon from "remove all media"
2007-12-04 Jaap Haitsma <jaap@haitsma.org>
* configure.ac,
data/cheese-ui.xml,
help,
help/C,
help/C/cheese.xml,
help/C/figures,
help/C/figures/cheese-screenshot.jpg,
help/ChangeLog,
help/cheese.omf.in,
help/C/legal.xml,
help/Makefile.am,
Makefile.am,
src/cheese-window.c:
Add boilerplate for manual in cheese. Still need to add waf support.
Going to add that now
2007-12-03 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
the "take a photo" button text should be bold
2007-12-03 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-ui.xml,
src/cheese-window.c:
add a "remove all media" option
2007-12-02 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Give website a label in about dialog
2007-12-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
translate menu items created by gtkuimanager,
fixes bug #500821 - Menus are not translated
2007-12-02 Jaap Haitsma <jaap@haitsma.org>
* src/Makefile.am:
Add ephy-spinner.[ch]
2007-12-02 Jaap Haitsma <jaap@haitsma.org>
* data/wscript_build,
po/wscript_build,
waf,
wscript:
Update to waf from svn
Do translations via intltool module of waf
2007-12-01 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
src/cheese-window.c,
src/ephy-spinner.c,
src/ephy-spinner.h:
use a throbber, when the camera is loading
2007-12-01 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.schemas.in,
src/cheese-gconf.c,
src/cheese-gconf.h:
we dont want to store our media-path in gconf
2007-11-29 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.desktop.in,
data/cheese.glade,
po/de.po,
src/cheese-window.c:
update translations and a bit the german one
2007-11-29 Jaap Haitsma <jaap@haitsma.org>
* waf:
Update to waf from svn to process *.po files correctly
2007-11-28 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.schemas.in,
wscript:
clean up and indent correctly, spring-cleaning
2007-11-28 daniel g. siegel <dgsiegel@gmail.com>
* waf:
fresh waf from svn: translate desktop and schema file correctly
2007-11-28 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
me stupid, undone stuff was commited. sorry!
2007-11-28 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
use the real link to the cheese homepage
2007-11-26 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Remove commented code
Make links on about dialog clickable. Fixes bug #499425
2007-11-26 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
the about window should point to the right homepage
2007-11-25 daniel g. siegel <dgsiegel@gmail.com>
* waf:
update waf to svn: prints warning if you install
cheese to a destdir and gtk-update-icon-cache and
install-schema cant be executed
2007-11-25 Jaap Haitsma <jaap@haitsma.org>
* data/wscript_build:
Minor python cleanup
2007-11-25 Jaap Haitsma <jaap@haitsma.org>
* data/cheese.glade,
src/cheese-window.c:
Make video and photo button toggle button
Original patch of daniel siegel
Fixes bug #498022
2007-11-25 daniel g. siegel <dgsiegel@gmail.com>
* data/effects/wscript_build,
data/icons/16x16/wscript_build,
data/icons/22x22/wscript_build,
data/icons/24x24/wscript_build,
data/icons/32x32/wscript_build,
data/icons/48x48/wscript_build,
data/icons/scalable/wscript_build,
data/icons/wscript_build,
data/wscript_build:
use just one wscript for effects and icons
2007-11-25 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-gconf.c:
dont print the gconf warning, which is stupid anyway
2007-11-25 Jaap Haitsma <jaap@haitsma.org>
* data/cheese.desktop.in:
Specify icon and update name to Cheese. Somehow this got lost
2007-11-24 Jaap Haitsma <jaap@haitsma.org>
* wscript:
Minor cleanup
2007-11-24 daniel g. siegel <dgsiegel@gmail.com>
* data/effects/wscript_build,
data/icons/16x16/wscript_build,
data/icons/22x22/wscript_build,
data/icons/24x24/wscript_build,
data/icons/32x32/wscript_build,
data/icons/48x48/wscript_build,
data/icons/scalable/wscript_build,
data/wscript_build,
wscript:
Common is imported now in the top-wscript, no need to import
it in every file
2007-11-24 daniel g. siegel <dgsiegel@gmail.com>
* data/effects/wscript_build,
data/icons/16x16/wscript_build,
data/icons/22x22/wscript_build,
data/icons/24x24/wscript_build,
data/icons/32x32/wscript_build,
data/icons/48x48/wscript_build,
data/icons/scalable/wscript_build,
data/wscript_build,
src/wscript_build,
waf,
wscript:
update waf to svn,
exit, when a needed pkg wasnt found,
print the md5sum, when doing a make dist,
create a tar.gz when doing a make dist,
install schemas and icons correctly,
just update the icons and add the schema
file if cheese isnt installed to a DESTDIR,
and a small cleanup.
2007-11-23 daniel g. siegel <dgsiegel@gmail.com>
* data/wscript_build,
src/cheese-config.h.at,
wscript:
install glade file, add maintainer mode, remove toc2 carcass
2007-11-23 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
enable shortcuts if the mouse pointer is over the xoverlay.
fixes bug #493196 - Keyboard shortcuts don't work when the
mouse cursor is on the video window
2007-11-22 Jaap Haitsma <jaap@haitsma.org>
* data/wscript_build,
wscript:
Also install cheese-ui.xml and documentation for waf build
2007-11-21 Jaap Haitsma <jaap@haitsma.org>
* data/Makefile.am:
Also install cheese-ui.xml. Still need to add that and gconf and glade file to waf build
2007-11-21 Jaap Haitsma <jaap@haitsma.org>
* data/effects/wscript_build,
data/icons/16x16/wscript_build,
data/icons/22x22/wscript_build,
data/icons/24x24/wscript_build,
data/icons/32x32/wscript_build,
data/icons/48x48/wscript_build,
data/icons/scalable/wscript_build,
data/icons/wscript_build,
data/wscript_build,
po/wscript_build,
src/wscript_build,
waf,
wscript:
Add also a waf build frontend to trunk as a special gift to daniel
This makes life easier as we don't have to maintain two branches. Yay
2007-11-21 Jaap Haitsma <jaap@haitsma.org>
* data/icons/icons.make,
src/cheese.c,
src/Makefile.am:
Rename PACKAGE_DATA_DIR to PACKAGE_DATADIR for consistency
Remove icons.make
2007-11-20 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-gconf.c:
We now installed the schema so no need for message to set gconf keys
2007-11-20 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-webcam.c:
Make sure that webcam has a variable type CheeseWebcam
2007-11-20 Jaap Haitsma <jaap@haitsma.org>
* po/ca.po,
po/cs.po,
po/da.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/ja.po,
po/nl.po,
po/pl.po,
po/pt.po,
po/ro.po,
po/sl.po,
po/sv.po:
Make sure that po files are all up to date with the latest code again
2007-11-19 Jaap Haitsma <jaap@haitsma.org>
* data/cheese.desktop,
data/cheese.desktop.in,
po/POTFILES.in:
Now really add cheese.desktop.in
Update POTFILES.in so it contains all the files that need to be
localized
Tip for daniel: you can check if this file is complete by running
../intltool-update -m
2007-11-19 Jaap Haitsma <jaap@haitsma.org>
* autogen.sh,
configure,
configure.ac,
configure.cheese,
data/cheese.desktop,
data/cheese.schemas.in,
data/effects/Makefile,
data/effects/Makefile.am,
data/icons/16x16/Makefile,
data/icons/16x16/Makefile.am,
data/icons/22x22/Makefile,
data/icons/22x22/Makefile.am,
data/icons/24x24/Makefile,
data/icons/24x24/Makefile.am,
data/icons/32x32/Makefile,
data/icons/32x32/Makefile.am,
data/icons/48x48/Makefile,
data/icons/48x48/Makefile.am,
data/icons/icons.make,
data/icons/Makefile,
data/icons/Makefile.am,
data/icons/scalable/Makefile,
data/icons/scalable/Makefile.am,
data/Makefile,
data/Makefile.am,
INSTALL,
Makefile,
Makefile.am,
po/ChangeLog,
po/cheese.pot,
po/LINGUAS,
po/Makefile,
po/POTFILES.in,
src/cheese.c,
src/cheese-config.h.at,
src/cheese-effect-chooser.c,
src/cheese-fileutil.c,
src/cheese-gconf.c,
src/cheese-thumb-view.c,
src/cheese-webcam.c,
src/cheese-window.c,
src/eog-thumb-shadow.c,
src/Makefile,
src/Makefile.am,
Remove toc2 build system. Use autotools instead.
This also makes the desktop file also localizable. Fixes bug #489570
Install and localize the schema file
On the cheese-waf branch we'll try to show that waf can fully
replace autotools
2007-11-18 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-webcam.c:
Enable audio for video recording. It was my setup that had a problem
2007-11-18 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-webcam.c:
Make cheese-webcam work again with many more cameras.
This code works on Philips 740 Webcam (v4l2src) and Logitech Orbicam
(v4lsrc)
2007-11-18 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-gconf.c:
dont exit, if the gconf keys arent set
2007-11-18 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.schemas.in,
data/eog.schemas.in,
src/cheese-gconf.c:
fixing some small and really stupid things
2007-11-18 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c,
src/cheese-gconf.c,
src/cheese-window.c:
the cheese-gconf object should be a member of cheese-window
2007-11-17 daniel g. siegel <dgsiegel@gmail.com>
* data/eog.schemas.in:
add a basic schema-file for gconf
2007-11-17 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c,
src/cheese-gconf.c,
src/cheese-gconf.h,
src/Makefile:
add a very basic and ugly gconf backend
2007-11-17 Jaap Haitsma <jaap@haitsma.org>
* fix_perms.sh:
SVN remembers file permissions so no need to keep fix_perms.sh
2007-11-14 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-webcam.c:
Fix a bug where the framerates were not counted correctly.
Add some logging so we can fix cheese for cameras that do not work
It's still not working for daniels webcam, but we'll figure out
what's wrong :-)
2007-11-12 Jaap Haitsma <jaap@haitsma.org>
* ChangeLog,
configure,
configure.cheese,
data/cheese.glade,
data/cheese-ui.xml,
data/Makefile,
src/cheese.c,
src/cheese-cairo-custom.c,
src/cheese-cairo-custom.h,
src/cheese-command-handler.c,
src/cheese-command-handler.h,
src/cheese-effect-chooser.c,
src/cheese-effect-chooser.h,
src/cheese-effects-widget.c,
src/cheese-effects-widget.h,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-flash.c,
src/cheese-flash.h,
src/cheese.h,
src/cheese-pipeline.c,
src/cheese-pipeline.h,
src/cheese-pipeline-photo.c,
src/cheese-pipeline-photo.h,
src/cheese-pipeline-video.c,
src/cheese-pipeline-video.h,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c,
src/cheese-window.h,
src/eog-thumb-shadow.c,
src/Makefile:
Merged back the cheese_0_2_4_refactor branch
2007-11-11 Jaap Haitsma <jaap@haitsma.org>
* configure,
configure.cheese,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/Makefile:
Use HAL to detect webcams
Use gstreamer to get capabilities of webcams
Bump version of Cheese to 0.3.0. 0.2.4 was already released
2007-11-04 Jaap Haitsma <jaap@haitsma.org>
* data/cheese.glade,
src/cheese-effect-chooser.c,
src/cheese-effect-chooser.h,
src/cheese-effects-widget.c,
src/cheese-effects-widget.h,
src/cheese-window.c,
src/Makefile:
Change cheese-effects-widget to a real GtkWidget and rename it to
cheese-effect-chooser
2007-11-04 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
small cosmetic cleanup and removing of key press events (they are handled now by gtkuimanager)
2007-11-04 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
fixed a segfault, which happend when an item was activated
2007-11-03 Jaap Haitsma <jaap@haitsma.org>
* data/cheese.glade,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-thumb-view.c,
src/cheese-thumb-view.h,
src/cheese-webcam.c,
src/cheese-window.c,
src/Makefile:
Change cheese-thumbnails to cheese-thumb-view and make a GtkWidget
out of it
Remove comments from cheese-webcam.c
2007-11-03 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-effects-widget.c,
src/cheese-fileutil.c,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-webcam.c,
src/cheese-window.c,
src/eog-thumb-shadow.c:
replace all gchar's by char and all gint's by int
2007-11-02 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese-ui.xml,
src/cheese-window.c:
some actions for photos do not work for videos, splitted up
2007-11-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
if no photo is selected, no file-action should be possible
2007-11-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumbnails.c,
src/cheese-thumbnails.h:
return value should be gchar* not char*
2007-11-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
split the gtkactionentries into actions_file, which is open, save as and move to trash
2007-11-01 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Check if filename is not NULL in all the callbacks
2007-10-31 daniel g. siegel <dgsiegel@gmail.com>
* configure.cheese:
toc2 did not check for libebook >= 1.12.0
2007-10-31 Jaap Haitsma <jaap@haitsma.org>
* configure.cheese,
data/cheese-ui.xml,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-window.c:
bump ebook requirement to 1.12
Remove cheese_window global variable
Use GtkUIManager also for thumbnail menu
Move thumbnail code from cheese_window to cheese_thumbnail
Make Space accelerator for take picture
Other cleanups
Remove leaks
2007-10-28 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
translating the same strings twice is too much work for the translators ;)
2007-10-28 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
Pass cheese_window to about dialog
2007-10-28 Jaap Haitsma <jaap@haitsma.org>
* data/cheese.glade,
data/cheese-ui.xml,
src/cheese-window.c:
Use gtkuimanager in a cleaner way without a callback
Do not place a menubar in the glade file. Otherwise we have 2 and
leak one
Sorry I accidently checked in space as an accelerator. Space is not
allowed as accelerator. Reverting back to Ctrl+T
2007-10-27 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-window.c:
Space isnt an accelerator, space is ;)
2007-10-26 Jaap Haitsma <jaap@haitsma.org>
* ChangeLog,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-window.c:
Move thumbnail drag and drop code to cheese-thumbnails
Add some TODOs in cheese-window.c
2007-10-26 Jaap Haitsma <jaap@haitsma.org>
* ChangeLog,
data/cheese-ui.xml,
src/cheese-window.c:
First item in menu is not "File" but "Cheese"
2007-10-26 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-window.c:
a user shouldnt be able to switch to photo-mode while recording a video
2007-10-23 Jaap Haitsma <jaap@haitsma.org>
* ChangeLog,
data/cheese-menu.xml,
data/cheese-ui.xml,
src/cheese-window.c:
Renaming cheese-menu.xml to cheese-ui.xml as that's the convention in other
gnome projects
2007-10-23 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
data/cheese-menu.xml,
data/Makefile,
src/cheese-window.c:
i removed some memory leaks, sorry jaap ;)
then i moved the ui-manager-menu to an extra file and did a small cleanup
2007-10-22 Jaap Haitsma <jaap@haitsma.org>
* ChangeLog,
src/cheese-webcam.c:
Make sure that higher resolution cameras work in higher resolution.
Following step will be to build in autodetection
Make sure that video recording works again by using an audiotestsrc i.s.o
gconfaudiosrc. (Still needs to be fixed)
Make sure that unreffing works
2007-10-22 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
update the changelog file. please use it from now on, even if we are in a branch
2007-10-21 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-effects-widget.c,
src/cheese-window.c,
src/cheese.c:
Add myself as copyright owner to files I contributed significantly
Add a TODO so that I remember to implement toggle button behavior correctly for
photo and video toggle button
2007-10-21 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
add drag and drop support to the iconview
2007-10-20 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
src/cheese-window.c:
use gtkuimanager for the menu
2007-10-19 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-effects-widget.c,
src/cheese-thumbnails.c,
src/cheese-window.c,
src/cheese.c:
fix the copyright
2007-10-16 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-fileutil.h:
more minor cleanups
2007-10-16 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-fileutil.c:
more minor cleanups
2007-10-16 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-fileutil.c,
src/cheese-webcam.c:
minor cleanups
2007-10-16 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-webcam.c:
gstreamer queue bug 486758 got fixed in CVS. No need for work around anymore
2007-10-10 Jaap Haitsma <jaap@haitsma.org>
* configure.cheese,
src/cheese-webcam.c:
Bump required CVS version to current head (=0.10.14.1)
Insert workaround for queue element which has a bug when imagesink gets rescaled
2007-09-27 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-effects-widget.c,
src/cheese-window.c:
Fix crasher in cheese-window
2007-09-27 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-effects-widget.c,
src/cheese-thumbnails.c:
removed g_array from effects-widget
2007-09-27 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-cairo-custom.c,
src/cheese-cairo-custom.h,
src/cheese-thumbnails.c,
src/cheese-window.c:
cleanups
2007-09-27 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
added comment
2007-09-27 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
more cleanups
2007-09-27 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c:
minor cleanups
2007-09-26 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-webcam.h,
src/cheese-window.c:
Thumbnails is not a global variable anymore
2007-09-26 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-window.c,
src/cheese-window.h,
src/cheese.c:
Just use gtk_widget_show_all on main widget instead of gtk_widget_show on each widget
2007-09-26 Jaap Haitsma <jaap@haitsma.org>
* src/cheese-effects-widget.c,
src/cheese-effects-widget.h,
src/cheese-window.c:
Pass cheese_window as a parameter to cheese-effects widget in order to remove
global cheese_window variable in following commits
2007-09-26 Jaap Haitsma <jaap@haitsma.org>
* data/cheese.glade,
src/Makefile,
src/cheese-command-handler.c,
src/cheese-command-handler.h,
src/cheese-effects-widget.c,
src/cheese-effects-widget.h,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-flash.c,
src/cheese-flash.h,
src/cheese-pipeline-photo.c,
src/cheese-pipeline-photo.h,
src/cheese-pipeline-video.c,
src/cheese-pipeline-video.h,
src/cheese-pipeline.c,
src/cheese-pipeline.h,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-webcam.c,
src/cheese-webcam.h,
src/cheese-window.c,
src/cheese-window.h,
src/cheese.c,
src/cheese.h:
First step of major refactoring. Introduced a cheese-webcam class
Also refactored a bit of the rest. Still quite some stuff to refactor
Also some features which are in HEAD are still missing
2007-09-26 Jaap Haitsma <jaap@haitsma.org>
* .:
Branched to allow major refactoring
2007-10-20 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
NEWS,
po/Makefile,
po/sl.po:
add slovenian, thanks to Deni Bačić
2007-10-03 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
NEWS,
po/ca.po,
po/Makefile:
add catalan, thanks to Carlos Garcia Porcel
2007-09-23 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-command-handler.c,
src/cheese-command-handler.h,
src/cheese-pipeline-photo.c,
src/cheese-window.c:
removed some memory leaks, part 2
2007-09-22 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
NEWS,
po/cheese.pot,
po/cs.po,
po/da.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/ja.po,
po/nl.po,
po/pl.po,
po/pt.po,
po/ro.po,
po/sv.po,
src/cheese-effects-widget.c:
fix #479238 - vertical and horizontal flip are switched
2007-09-21 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-command-handler.c,
src/cheese-thumbnails.c,
src/cheese-window.c:
removed some memory leaks
2007-09-17 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
configure:
why is there junk in my files???
2007-09-17 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
Makefile,
configure:
the NEWS file shall not be forgotten in a dist
2007-09-17 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
adding the _real_ changelog file
2007-09-17 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
NEWS:
my changelog is a NEWS-file, actually
2007-09-14 daniel g. siegel <dgsiegel@gmail.com>
* po/ro.po:
forgot to set charset to utf8 on ro.po
2007-09-14 daniel g. siegel <dgsiegel@gmail.com>
* configure,
toc2/bin/atsign_parse,
toc2/bin/cleanup_vars,
toc2/bin/create_makefile_stubs.sh,
toc2/bin/create_project_skeleton.sh,
toc2/bin/install-sh,
toc2/bin/makedist,
toc2/bin/removeDupeArgs,
toc2/sbin/toc2_core.sh,
toc2/sbin/toconfigure:
reset permissions on executable files
2007-09-14 daniel g. siegel <dgsiegel@gmail.com>
* MAINTAINERS,
README.darcs:
first svn commit, yeah! add MAINTAINERS file and remove README.darcs
2007-09-10 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
po/Makefile,
po/sv.po:
add sv, thanks to Daniel Nylander
2007-09-07 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
po/Makefile,
po/ro.po:
add ro, courtesy of Anastase Valentin
2007-09-05 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline.c:
video did not work with videotestsrc
2007-09-05 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-thumbnails.c:
fix #472576 - cheese takes longer to start as more pictures are stored
2007-09-05 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
po/de.po:
translation error in de
2007-09-05 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
configure,
src/cheese-pipeline.c:
fix #473560 - v4l-recorded videos are zero byte big, courtesy of Patryk Zawadzki
2007-08-31 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-flash.o,
src/cheese-flash.o.d:
ups.. a binary was in version control
2007-08-30 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
update changelog
2007-08-30 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
src/cheese-command-handler.c,
src/cheese-command-handler.h,
src/cheese-window.c:
add enter and doubleclick to the view
2007-08-29 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-command-handler.c,
src/cheese-command-handler.h,
src/cheese-window.c:
minor cleanups
2007-08-29 daniel g. siegel <dgsiegel@gmail.com>
* README:
add dependeny in the readme file
2007-08-29 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-window.c:
add some keystrokes
2007-08-29 daniel g. siegel <dgsiegel@gmail.com>
* src/Makefile,
src/cheese-command-handler.h,
src/cheese-effects-widget.h,
src/cheese-fileutil.h,
src/cheese-thumbnails.h,
src/cheese-window.h:
some minor cleanups
2007-08-29 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
configure,
configure.cheese,
src/Makefile,
src/cheese-flash.c,
src/cheese-flash.h,
src/cheese-flash.o,
src/cheese-flash.o.d,
src/cheese-pipeline-photo.c:
add a flash, when taking photos, courtesy of Patryk Zawadzki
2007-08-26 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-pipeline-video.c:
use 25fps for video recording
2007-08-26 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
update changelog
2007-08-25 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-video.c:
cleanup video pipeline
2007-08-25 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
some cleanup in the photo pipeline
2007-08-24 daniel g. siegel <dgsiegel@gmail.com>
* po/da.po:
add da
2007-08-23 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-pipeline-video.c:
fix video recording.. i _hate_ those bugs
2007-08-23 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
po/Makefile,
po/es.po,
po/gl.po,
po/it.po,
po/ja.po,
po/pl.po:
update es, gl, it, ja, pl
2007-08-22 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-pipeline-photo.c:
make ximagesink work with the photo pipeline
2007-08-21 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
configure:
version bump
2007-08-21 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-pipeline-photo.c:
workaround on a gstreamer-bug, which made the colors look wrong
with v4l-devices, courtesy of Patryk Zawadzki
2007-08-21 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-pipeline-photo.c,
src/cheese-window.c:
activate countdown by default
2007-08-21 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-window.c:
the countdown is not available in video and segfaultet. fixed
2007-08-21 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-pipeline-photo.c:
use g_timeout_add instead of g_timeout_add_seconds
2007-08-20 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
po/cs.po,
po/fr.po,
po/nl.po,
po/pt.po:
update cs, fr, nl, pt
2007-08-20 daniel g. siegel <dgsiegel@gmail.com>
* INSTALL:
some minor changes in the install file
2007-08-20 daniel g. siegel <dgsiegel@gmail.com>
* README:
some minor changes to the readme
2007-08-20 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
some minor changes in the changelog
2007-08-20 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-pipeline-video.c:
improvement of the video pipeline. and i mean a LOT of
improvement. thanks to Diego Escalante Urrelo
2007-08-19 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c,
src/cheese-window.c:
fix 2 stupid bugs
2007-08-19 daniel g. siegel <dgsiegel@gmail.com>
* po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/nl.po,
po/pl.po,
po/pt.po,
src/cheese-pipeline-photo.c:
update translations
2007-08-19 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-pipeline-photo.c,
src/cheese-pipeline-photo.h,
src/cheese-pipeline.c,
src/cheese-pipeline.h,
src/cheese-window.c,
src/cheese-window.h:
add a countdown, when taking a photo
2007-08-19 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-pipeline-video.c:
add a time counter to the video recording
2007-08-18 daniel g. siegel <dgsiegel@gmail.com>
* po/fr.po,
po/it.po:
update fr
2007-08-18 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/nl.po,
po/pl.po,
po/pt.po:
update cs
2007-08-18 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-thumbnails.c:
the first item in the iconbar wasnt deleted. fixed
2007-08-18 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
cheese is a better description than file in the menubar
2007-08-18 daniel g. siegel <dgsiegel@gmail.com>
* configure.cheese,
src/cheese-command-handler.c,
src/cheese-config.h.at:
check for evolution 1.12, as the api isnt compatible
2007-08-18 daniel g. siegel <dgsiegel@gmail.com>
* po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/nl.po,
po/pl.po,
po/pt.po:
update de
2007-08-18 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
README,
configure.cheese,
src/Makefile,
src/cheese-command-handler.c,
src/cheese-command-handler.h,
src/cheese-window.c:
possiblity to use taken photos as account photos
2007-08-17 daniel g. siegel <dgsiegel@gmail.com>
* po/fr.po:
update fr
2007-08-17 daniel g. siegel <dgsiegel@gmail.com>
* README:
add missing dependencies in the readme
2007-08-17 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/nl.po,
po/pl.po,
po/pt.po,
src/cheese-command-handler.c,
src/cheese-window.c:
update translations, de, it
2007-08-17 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-cairo-custom.c,
src/cheese-cairo-custom.h,
src/cheese-command-handler.c,
src/cheese-command-handler.h,
src/cheese-effects-widget.c,
src/cheese-effects-widget.h,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-pipeline-photo.c,
src/cheese-pipeline-photo.h,
src/cheese-pipeline-video.c,
src/cheese-pipeline-video.h,
src/cheese-pipeline.c,
src/cheese-pipeline.h,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-window.c,
src/cheese-window.h,
src/cheese.c,
src/cheese.h,
src/eog-thumb-shadow.c,
src/eog-thumb-shadow.h:
massive cleanup and indent change
2007-08-17 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/Makefile,
src/cheese-command-handler.c,
src/cheese-command-handler.h,
src/cheese-window.c,
src/cheese-window.h:
added some export methods/capabilities to the iconbar
2007-08-17 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/nl.po,
po/pl.po,
po/pt.po:
translations-update
2007-08-16 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
src/cheese-pipeline.c:
we found the bug! v4l works now, courtesy of Patryk Zawadzki
2007-08-16 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/Makefile,
src/cheese-fileutil.c,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-window.c,
src/cheese-window.h,
src/eog-thumb-shadow.c,
src/eog-thumb-shadow.h:
add the iconview from eye of gnome and add a small popup menu to it
2007-08-16 daniel g. siegel <dgsiegel@gmail.com>
* configure:
prepare next release
2007-08-16 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-effects-widget.c:
if the same effects were chosen in photo and video, they wont apply. fixed
2007-08-15 daniel g. siegel <dgsiegel@gmail.com>
* configure:
tagged 0.2.0
2007-08-15 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-pipeline-video.c:
resizing and removing some frames should make video recording more usable
2007-08-15 daniel g. siegel <dgsiegel@gmail.com>
* po/fr.po,
po/nl.po,
po/pl.po,
po/pt.po:
update translations fr, nl, pl, pt
2007-08-15 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-video.c:
add movies manually to the iconview
2007-08-15 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-fileutil.c,
src/cheese-thumbnails.c:
ignore gnomevfs notification about new movies
2007-08-15 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-thumbnails.c:
when loading the thumbnails, we got the wrong mtime.. fixed
2007-08-14 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/nl.po,
po/pl.po,
po/pt.po,
src/cheese-window.c:
update translations and changelog
2007-08-14 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-fileutil.c,
src/cheese-thumbnails.c:
gnomevfsfileinfo got the wrong thumbnail. fixed
2007-08-13 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
configure.cheese,
data/cheese.glade,
src/Makefile,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-pipeline-photo.c,
src/cheese-pipeline-video.c,
src/cheese-pipeline-video.h,
src/cheese-pipeline.c,
src/cheese-pipeline.h,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-window.c,
src/cheese-window.h,
src/cheese.c,
src/cheese.h:
add working video support. now cheese can record a video with
audio taken from any source
2007-08-09 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-video.c,
src/cheese-pipeline-video.h:
add video class
2007-08-09 daniel g. siegel <dgsiegel@gmail.com>
* src/Makefile,
src/cheese-effects-widget.c,
src/cheese-effects-widget.h,
src/cheese-pipeline-photo.c,
src/cheese-pipeline-photo.h,
src/cheese-pipeline.c,
src/cheese-pipeline.h,
src/cheese-window.c,
src/cheese.c:
restructuring and pseudo-video support
2007-08-08 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
people thought the probing messages are errors.. now no more
2007-08-04 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/nl.po,
po/pl.po,
po/pt.po:
add mnemonics to translation. updated german and italian translation
2007-08-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
me stupid git.. i left ffmpegcolorspace in the probing test
2007-08-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c:
change the startup order
2007-08-02 daniel g. siegel <dgsiegel@gmail.com>
* COPYING,
ChangeLog,
src/cheese-cairo-custom.c,
src/cheese-cairo-custom.h,
src/cheese-effects-widget.c,
src/cheese-effects-widget.h,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-pipeline-photo.c,
src/cheese-pipeline-photo.h,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-window.c,
src/cheese-window.h,
src/cheese.c,
src/cheese.h:
probably the dumbest change ever: the fsf has changed its address
2007-08-02 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
prepare changelog for the next version
2007-08-02 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
src/cheese-window.c:
add mnemonics for the ui
2007-08-02 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
update changelog
2007-08-02 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-fileutil.c,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese.h:
remove photos from the thumbnail row if they were removed on the filesystem
2007-08-02 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-thumbnails.c:
add only valid jpeg to the thumbnail row
2007-08-01 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/nl.po,
po/pl.po,
po/pt.po,
src/cheese-pipeline-photo.c:
update translations
2007-08-01 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
we dont need a ffmpegcolorspace when probing
2007-08-01 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
probe v4lsrc without any resolution or format at last
2007-08-01 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
try 640x480 before 230x240 and print the result
2007-08-01 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
update changelog
2007-08-01 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-fileutil.c,
src/cheese.c:
store photos under ~/.gnome2/cheese/images
2007-08-01 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
adding a device probe, which automatically checks whether to use
v4l2 or v4l (with specific resolutions). fallback is videotestsrc
2007-07-30 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
finally calling caps_unref when exiting and some other small cleanups
2007-07-30 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
src/cheese-thumbnails.c:
sort thumbnails before adding them
2007-07-30 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-effects-widget.c,
src/cheese-effects-widget.h,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-pipeline-photo.c,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-window.c,
src/cheese-window.h,
src/cheese.c,
src/cheese.h:
refactoring, part2
2007-07-30 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
INSTALL,
README,
TODO,
configure:
prepare for release 0.1.4
2007-07-29 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
rewrite of the last patch. v4l works (hopefully) ;)
2007-07-28 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
UNDO: add a videoscale to resize all webcam videos to 640x460.
hopefully this works on the v4l-thingies...
2007-07-28 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
add a videoscale to resize all webcam videos to 640x460.
hopefully this works on the v4l-thingies...
2007-07-27 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c:
print the resolution
2007-07-27 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
v4l works! really? thanks to diego escallante urrelo
2007-07-27 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
some cleanup
2007-07-17 daniel g. siegel <dgsiegel@gmail.com>
* po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/nl.po,
po/pl.po,
po/pt.po:
update translation, second shot
2007-07-17 daniel g. siegel <dgsiegel@gmail.com>
* po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/pl.po,
po/pt.po:
update translations
2007-07-17 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
po/nl.po:
updated dutch translation, thanks to Wouter Bolsterlee
2007-07-15 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-pipeline-photo.c:
i dont know if the xv-output problem is fixed with this..
2007-07-14 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.h:
and same in cheese-window.h
2007-07-14 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese-window.c:
wo dont need set_effects_label() anymore
2007-07-09 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade:
window.height-10px
2007-07-09 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade:
set the default size back to 670x710
2007-07-08 Jaap Haitsma <jaap@haitsma.org>
* data/cheese.glade,
src/cheese-effects-widget.c,
src/cheese-pipeline-photo.c,
src/cheese-thumbnails.h,
src/cheese-window.c,
src/cheese-window.h,
src/cheese.c,
src/cheese.h:
make window resizeable and store image in native resolution
2007-07-08 daniel g. siegel <dgsiegel@gmail.com>
* configure.cheese, src/Makefile,
src/cairo-custom.c,
src/cairo-custom.h,
src/cheese-cairo-custom.c,
src/cheese-cairo-custom.h,
src/cheese-config.h.at,
src/cheese-effects-widget.c,
src/cheese-effects-widget.h,
src/cheese-fileutil.c,
src/cheese-fileutil.h,
src/cheese-pipeline-photo.c,
src/cheese-pipeline-photo.h,
src/cheese-thumbnails.c,
src/cheese-thumbnails.h,
src/cheese-window.c,
src/cheese-window.h,
src/cheese.c,
src/cheese_config.h.at,
src/effects-widget.c,
src/effects-widget.h,
src/fileutil.c,
src/fileutil.h,
src/pipeline-photo.c,
src/pipeline-photo.h,
src/thumbnails.c,
src/thumbnails.h,
src/window.c,
src/window.h:
prepend a cheese ;)
2007-07-07 Jaap Haitsma <jaap@haitsma.org>
* src/pipeline-photo.c:
pipeline-photo.c cleanup
2007-07-07 daniel g. siegel <dgsiegel@gmail.com>
* src/effects-widget.c,
src/pipeline-photo.c:
forgot some of g18n, thanks to Jaap Haitsma
2007-07-07 daniel g. siegel <dgsiegel@gmail.com>
* src/cairo-custom.h,
src/cheese.c, src/cheese.h,
src/effects-widget.h,
src/fileutil.c,
src/fileutil.h,
src/pipeline-photo.h,
src/thumbnails.h,
src/window.c,
src/window.h:
various cleanup patches and licences in the header files, thanks to Jaap Haitsma
2007-07-06 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c,
src/pipeline-photo.h:
some various fixes
2007-07-06 daniel g. siegel <dgsiegel@gmail.com>
* src/window.c:
update license
2007-07-06 daniel g. siegel <dgsiegel@gmail.com>
* src/cheese.c:
set icon name
2007-07-06 daniel g. siegel <dgsiegel@gmail.com>
* src/window.c:
use g18n for translation
2007-07-06 daniel g. siegel <dgsiegel@gmail.com>
* src/Makefile,
src/cheese.c,
src/effects-widget.c,
src/effects-widget.h,
src/pipeline-photo.c,
src/pipeline-photo.h,
src/window.c,
src/window.h:
refactoring: moving effects into effects-widget
2007-07-05 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
update changelog
2007-07-05 daniel g. siegel <dgsiegel@gmail.com>
* src/cairo-custom.h,
src/cheese.c,
src/cheese.h,
src/fileutil.h,
src/pipeline-photo.c,
src/thumbnails.h,
src/window.c,
src/window.h:
new about-window and various fixes, thanks to Jaap Haitsma
2007-07-05 daniel g. siegel <dgsiegel@gmail.com>
* src/cairo-custom.c,
src/cheese.c,
src/fileutil.c,
src/pipeline-photo.c,
src/thumbnails.c,
src/window.c:
licences --verbose
2007-07-05 daniel g. siegel <dgsiegel@gmail.com>
* toc2/make/toc2-install.make:
update toc2-install.make to not use cmp
2007-07-05 daniel g. siegel <dgsiegel@gmail.com>
* Makefile:
add icon-update support for the makefile
2007-07-04 daniel g. siegel <dgsiegel@gmail.com>
* Makefile,
data/icons/icons.make:
icons-perms-and-post-install-message
1) Adds permissions -m 0644 to the icons files.
2) Adds a post- installation message in the top-most makefile (please
re-implement the postinstall-message target!)
2007-07-04 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
po/Makefile,
po/pl.po:
add polish translation, thanks to Tomasz Domikowski
2007-07-02 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
update changelog
2007-07-02 daniel g. siegel <dgsiegel@gmail.com>
* configure:
change version to 0.1.3
2007-07-02 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
toc2/doc:
remove the toc2-doc-dir as we dont need it
2007-07-02 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
po/Makefile,
po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/fr.po,
po/gl.po,
po/it.po,
po/nl.po,
po/pt.po,
src/window.c:
update translations to include the glade-file too
2007-07-02 daniel g. siegel <dgsiegel@gmail.com>
* configure.cheese,
src/cheese.c,
src/cheese_config.h.at:
hups.. i forgot to set the textdomain,
so translations would not
have been working
2007-07-02 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
po/Makefile,
po/nl.po:
add dutch translation, thanks to Max Beauchez
2007-07-02 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.desktop:
add icon to the desktop file and some small fixes there
2007-07-01 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
po/Makefile,
po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/gl.po,
po/it.po,
po/pt.po:
some small fixes in the language building and in the AUTHORS-file
2007-07-01 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
po/Makefile,
po/fr.po:
add french translation, thanks to Pierre Slamich
2007-07-01 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade:
the window was not in the tasklist. fixed
2007-07-01 daniel g. siegel <dgsiegel@gmail.com>
* Makefile,
data/icons/Makefile,
fix_perms.sh,
po/Makefile,
toc2.cheese.help:
some minor changes in the buildsystem
2007-07-01 daniel g. siegel <dgsiegel@gmail.com>
* configure.cheese,
toc2/tests/pkg-config-exists.sh:
fix some silly bug, which prevented configure to check if the
needed version is available
2007-07-01 daniel g. siegel <dgsiegel@gmail.com>
* src/window.c:
set icon on the about-window
2007-07-01 daniel g. siegel <dgsiegel@gmail.com>
* README:
update dependencies in the README
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog,
INSTALL:
update README and changelog
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* data/icons/16x16/cheeese.svg,
data/icons/16x16/cheese.svg:
rename-cheeese.svg, File name was spelled wrong
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* README.darcs:
add darcs-README
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* data/cheese.glade,
src/window.c:
add the new, shiny icon to the window and aboutdialog
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS:
update AUTHORS
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* data/Makefile,
data/icons/16x16/Makefile,
data/icons/22x22/Makefile,
data/icons/24x24/Makefile,
data/icons/32x32/Makefile,
data/icons/48x48/Makefile,
data/icons/Makefile,
data/icons/icons.make,
data/icons/scalable/Makefile,
toc2/make/toc2-install.make:
icons are now installed properly, thanks to stephan beal
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* data/Makefile,
po/Makefile:
po-changes
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* toc2/make/toc2-install.make:
toc2-install: refactored the processed needed to install custom rules.
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* toc2/tests/toc2_make.sh:
remove _darcs and svn-files from toc2make
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* toc2/make/pomo.make:
pomo.make
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* toc2/doc/toc2.make:
we dont need any toc2.make-files as they will be generated
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* fix_perms.sh:
added fix_perms.sh-script in order to have the right permissions on executables
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
data/icons,
data/icons/16x16,
data/icons/16x16/cheeese.svg,
data/icons/16x16/cheese.png,
data/icons/22x22,
data/icons/22x22/cheese.png,
data/icons/22x22/cheese.svg,
data/icons/24x24,
data/icons/24x24/cheese.png,
data/icons/32x32,
data/icons/32x32/cheese.png,
data/icons/32x32/cheese.svg,
data/icons/48x48,
data/icons/48x48/cheese.png,
data/icons/scalable,
data/icons/scalable/cheese.svg:
add the new cheese icon, thanks to Andreas Nilsson and Josef Vybíral
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* Makefile,
toc2/make/toc2-dist.make:
now make dist works ;)
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* Makefile,
toc2/make/toc2-dist.make:
fixes a make dist behaviour
2007-06-30 daniel g. siegel <dgsiegel@gmail.com>
* INSTALL,
Makefile,
README,
cairo-custom.c,
cairo-custom.h,
cheese.c,
cheese.desktop,
cheese.glade,
cheese.h,
configure,
configure.cheese,
data,
data/Makefile,
data/cheese.desktop,
data/cheese.glade,
data/effects,
data/effects/Hulk.png,
data/effects/Makefile,
data/effects/Mauve.png,
data/effects/NoirBlanc.png,
data/effects/Saturation.png,
data/effects/dicetv.png,
data/effects/edgetv.png,
data/effects/identity.png,
data/effects/shagadelictv.png,
data/effects/vertigotv.png,
data/effects/videoflip_h.png,
data/effects/videoflip_v.png,
data/effects/warptv.png,
effects,
fileutil.c,
fileutil.h,
pipeline-photo.c,
pipeline-photo.h,
po/Makefile,
po/cheese.pot,
po/cs.po,
po/de.po,
po/es.po,
po/gl.po,
po/it.po,
po/pt.po,
src,
src/Makefile,
src/cairo-custom.c,
src/cairo-custom.h,
src/cheese.c,
src/cheese.h,
src/cheese_config.h.at,
src/fileutil.c,
src/fileutil.h,
src/pipeline-photo.c,
src/pipeline-photo.h,
src/thumbnails.c,
src/thumbnails.h,
src/window.c,
src/window.h,
thumbnails.c,
thumbnails.h,
toc2,
toc2.cheese.help,
toc2.cheese.make.at,
toc2/Makefile,
toc2/bin,
toc2/bin/Makefile,
toc2/bin/atsign_parse,
toc2/bin/cleanup_vars,
toc2/bin/create_makefile_stubs.sh,
toc2/bin/create_project_skeleton.sh,
toc2/bin/install-sh,
toc2/bin/makedist,
toc2/bin/mkdep-toc2.c,
toc2/bin/removeDupeArgs,
toc2/doc,
toc2/doc/Makefile,
toc2/doc/naming-conventions.txt,
toc2/doc/toc2-manual.odt,
toc2/doc/toc2.make,
toc2/make,
toc2/make/Makefile,
toc2/make/c-bins.make,
toc2/make/c-dlls.make,
toc2/make/doxygen.make,
toc2/make/file-filters.make,
toc2/make/makerules.c-bins,
toc2/make/makerules.c-dlls,
toc2/make/makerules.file-filters,
toc2/make/scratchpad.make,
toc2/make/symlink-files.make,
toc2/make/toc2-c.make,
toc2/make/toc2-cleanup.make,
toc2/make/toc2-dist.make,
toc2/make/toc2-functions-core.make,
toc2/make/toc2-install.make,
toc2/make/toc2-subdirs.make,
toc2/make/toc2.make.at,
toc2/sbin,
toc2/sbin/Makefile,
toc2/sbin/configure.sample,
toc2/sbin/toc2_core.sh,
toc2/sbin/toconfigure,
toc2/tests,
toc2/tests/Makefile,
toc2/tests/PACKAGE_NAME-config.at,
toc2/tests/PACKAGE_NAME-config.sh,
toc2/tests/atfilter_file.sh,
toc2/tests/awk.sh,
toc2/tests/c,
toc2/tests/c/Makefile,
toc2/tests/c/check_for_dlopen_and_friends.c,
toc2/tests/c/check_for_ltdlopen_and_friends.c,
toc2/tests/c/check_for_pthread.c,
toc2/tests/cpp,
toc2/tests/cpp/Makefile,
toc2/tests/cpp/check_setenv_in_cpp.cpp,
toc2/tests/cpp/check_stl_newstyle.cpp,
toc2/tests/cpp/gcc_2_95_typename_problem.cpp,
toc2/tests/create_pkg-config_data.sh,
toc2/tests/doxygen.sh,
toc2/tests/find_appconfig.sh,
toc2/tests/find_header.sh,
toc2/tests/gcc_build_and_run.sh,
toc2/tests/gcc_try_compile.sh,
toc2/tests/gnu_cpp_tools.sh,
toc2/tests/gnu_find.sh,
toc2/tests/gnu_make.sh,
toc2/tests/gnu_tar.sh,
toc2/tests/libdl.sh,
toc2/tests/libexpat.sh,
toc2/tests/libltdl.sh,
toc2/tests/pkg-config-exists.sh,
toc2/tests/toc2_core_tests.sh,
toc2/tests/toc2_make.sh,
toc2/tests/toc2_project_makefile.sh,
toc2/tests/toc2_running_under_cygwin.sh,
toc2/tests/toc2_tests_help.sh,
toc2/tests/user_is_stephan_beal.sh,
window.c,
window.h:
new build system! yeah!
2007-06-27 daniel g. siegel <dgsiegel@gmail.com>
* Makefile:
add the other languages to the makefile
2007-06-27 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
po/it.po:
add italian translation,
thanks to Alessandro Falappa
2007-06-27 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
ChangeLog,
po/es.po,
po/gl.po:
add galician translation,
thanks to Ricardo González Castro
2007-06-25 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
changelog update
2007-06-25 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
po/es.po:
add spanish translation,
thanks to Ricardo González Castro
2007-06-25 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
po/de.po,
po/pt.po:
add portuguese translation,
thanks to Miguel Rosa
2007-06-25 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
po/cheese.pot,
po/cs.po,
po/de.po:
add czech translation,
thanks to Vítězslav Kotrla
2007-06-24 daniel g. siegel <dgsiegel@gmail.com>
* README,
TODO,
cairo-custom.c:
update TODO and README,
add dependency cairo and update a licence
2007-06-24 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
update changelog
2007-06-24 daniel g. siegel <dgsiegel@gmail.com>
* README:
enhance README
2007-06-24 daniel g. siegel <dgsiegel@gmail.com>
* Makefile,
README,
po,
po/cheese.pot,
po/de.po,
window.c,
window.h:
add translation (german)
2007-06-22 daniel g. siegel <dgsiegel@gmail.com>
* Makefile,
cairo-custom.c,
cairo-custom.h:
add round corners for the effect-dialog
2007-06-22 daniel g. siegel <dgsiegel@gmail.com>
* cheese.glade:
set the main window to !resizable
2007-06-22 daniel g. siegel <dgsiegel@gmail.com>
* TODO,
cheese.c,
cheese.glade,
window.c,
window.h:
add multi-effect support and new effect-dialog
2007-06-22 daniel g. siegel <dgsiegel@gmail.com>
* ChangeLog:
add ChangeLog
2007-06-22 daniel g. siegel <dgsiegel@gmail.com>
* effects,
effects/Hulk.png,
effects/Mauve.png,
effects/NoirBlanc.png,
effects/Saturation.png,
effects/dicetv.png,
effects/edgetv.png,
effects/identity.png,
effects/mouse_events,
effects/shagadelictv.png,
effects/vertigotv.png,
effects/videoflip_h.png,
effects/videoflip_v.png,
effects/warptv.png:
adding preview-pictures for effects
2007-06-12 daniel g. siegel <dgsiegel@gmail.com>
* window.h:
small fixes for the release
2007-06-12 daniel g. siegel <dgsiegel@gmail.com>
* AUTHORS,
README,
TODO:
add AUTHORS,
README and update TODO
2007-06-12 daniel g. siegel <dgsiegel@gmail.com>
* cheese.desktop:
add desktop file
2007-06-12 daniel g. siegel <dgsiegel@gmail.com>
* TODO:
modifying todo-file
2007-06-12 daniel g. siegel <dgsiegel@gmail.com>
* COPYING:
add copyright
2007-06-11 daniel g. siegel <dgsiegel@gmail.com>
* window.c:
remove a useless printf
2007-06-11 daniel g. siegel <dgsiegel@gmail.com>
* thumbnails.c,
window.c:
yay, showing photos anyhow works
2007-06-11 daniel g. siegel <dgsiegel@gmail.com>
* TODO,
cheese.glade,
cheese.h,
thumbnails.c,
window.c,
window.h:
add menu and some iconbar improvements
2007-06-08 daniel g. siegel <dgsiegel@gmail.com>
* cheese.c,
cheese.glade,
cheese.h,
window.c,
window.h:
implementing effects
2007-05-31 daniel g. siegel <dgsiegel@gmail.com>
* Makefile,
cheese.c,
cheese.h,
fileutil.c,
fileutil.h,
gst-pipeline.c,
gst-pipeline.h,
pipeline-photo.c,
pipeline-photo.h,
thumbnails.c,
thumbnails.h,
window.c,
window.h:
cleanup, objectification and arrangement of the code ;) (took pretty long, huh?)
2007-05-03 daniel g. siegel <dgsiegel@gmail.com>
* Makefile,
cheese.c,
cheese.h,
fileutil.c,
fileutil.h,
gst-pipeline.c,
gst-pipeline.h:
splitting a bit up
2007-05-03 daniel g. siegel <dgsiegel@gmail.com>
* cheese.c:
add file-monitoring
2007-05-02 daniel g. siegel <dgsiegel@gmail.com>
* TODO,
cheese.c:
add thumbnailing
2007-05-02 daniel g. siegel <dgsiegel@gmail.com>
* Makefile,
cheese.c:
remove jpeg-support
2007-05-02 daniel g. siegel <dgsiegel@gmail.com>
* cheese.glade:
enhance gui
2007-05-01 daniel g. siegel <dgsiegel@gmail.com>
* cheese.c:
outsource gst-state-functions
2007-05-01 daniel g. siegel <dgsiegel@gmail.com>
* cheese.c:
maemo-code isnt used anymore
2007-05-01 daniel g. siegel <dgsiegel@gmail.com>
* cheese.c:
fix jpeg-handling
2007-05-01 daniel g. siegel <dgsiegel@gmail.com>
* cheese.glade:
fix glade-file
2007-05-01 daniel g. siegel <dgsiegel@gmail.com>
* camera.py:
remove raphaels python code
2007-04-27 daniel g. siegel <dgsiegel@gmail.com>
* cheese.c:
use gdk-pixbuf to save photos
2007-04-25 daniel g. siegel <dgsiegel@gmail.com>
* cheese:
remove binary
2007-04-25 daniel g. siegel <dgsiegel@gmail.com>
* ROADMAP,
TODO:
update todo
2007-04-25 daniel g. siegel <dgsiegel@gmail.com>
* cheese,
cheese.c:
use gconf to get gstreamer-properties
2007-04-22 daniel g. siegel <dgsiegel@gmail.com>
* ROADMAP,
cheese:
added roadmap
2007-04-22 daniel g. siegel <dgsiegel@gmail.com>
* cheese,
cheese.c:
cleanup
2007-04-22 daniel g. siegel <dgsiegel@gmail.com>
* cheese,
cheese.c:
fixing picture-saving
2007-04-22 daniel g. siegel <dgsiegel@gmail.com>
* cheese,
cheese.c,
cheese.glade:
added picture saving
2007-04-21 daniel g. siegel <dgsiegel@gmail.com>
* Makefile,
camera.py,
cheese,
cheese.c,
cheese.glade,
cheese.h:
initial import
2007-09-11 daniel g. siegel <dgsiegel@gmail.com>
* .:
Initial project roots
|