summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 2091223d4021e31754b8201682cb9f383aea5d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
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
2007-03-18  Lucas Rocha  <lucasr@gnome.org>

	Restabilished ICC profiling functionality with full code refactoring.

	* src/eog-debug.[ch] (eog_debug_init): added EOG_DEBUG_LCMS for ICC
	profiles debugging.
	* src/eog-image.[ch] (eog_image_get_profile,
	eog_image_apply_display_profile, eog_image_set_icc_data,
	eog_image_real_load): load embedded ICC profile from the image if
	present.
	* src/eog-metadata-reader.[ch] (eog_metadata_reader_get_icc_chunk,
	eog_metadata_reader_get_icc_chunk_size): unify ICC functions for 
	consistency. 
	* src/eog-window.c (eog_job_load_cb, eog_window_init,
	eog_job_model_cb, eog_window_dispose, 
	eog_window_get_display_profile): load and cache display profile 
	to be applied on images just after they are successfully loaded.

2007-03-17  Lucas Rocha  <lucasr@gnome.org>

	Restabilished move to trash functionality. Patch from Javier Sánchez
	<jsanchez@deskblue.com>.

	* src/eog-window.c (eog_window_cmd_move_to_trash, move_to_trash_real,
	show_move_to_trash_confirm_dialog, eog_window_error_quark): moved
	adapted code from trunk. 

2007-03-14  Lucas Rocha  <lucasr@gnome.org>

	Restabilished set as wallpaper functionality.

	* src/eog-window.c (eog_window_cmd_wallpaper), src/eog-util.[ch]
	(eog_util_launch_desktop_file): use currently selected image to define
	the wallpaper when respective action is activated.
	* src/eog-config-keys.h: added EOG_CONF_DESKTOP_WALLPAPER entry. 

2007-03-10  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-save-dialog-helper.[ch]: removed obsolete files.

2007-03-10  Lucas Rocha  <lucasr@gnome.org>

	Restabilished the image saving functionalities. Based on patch from
	Felix Riemann <friemann@svn.gnome.org>. Fixes bug #377123. A lot 
	of polishing is still needed.

	* src/eog-image.[ch] (eog_image_class_init, eog_image_real_transform,
	handle_xfer_status, tmp_file_move_to_uri): added a "save-progress" 
	signal. Some coding style fixes.
	* src/eog-job-queue.c (remove_job_from_queue, handle_job,
	no_jobs_available_unlocked, search_for_jobs_unlocked,
	eog_job_queue_init), src/eog-job.[ch] (eog_job_save_*,
	eog_job_save_as_*): implementation of EogJobSave and EogJobSaveAs.
	* src/eog-exif-util.h: fix small typo and coding style.
	* src/eog-transform.c: added progress feeback for transformations.
	* src/eog-save-as-dialog-helper.c: small fix on eog.glade path.

2007-03-09  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* src/eog-image.c: (eog_image_set_orientation): Some 
	images may not have orientation information, and 
	exif_data_get_entry () may return NULL.

2007-03-08  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* src/eog-jobs.c: (eog_job_thumbnail_run): Preserve 
	original image dimensions metadata if available in the 
	thumbnail.

2007-03-06  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* src/Makefile.am: Add eog-exif-util.[ch]
	* src/eog-exif-util.c: (eog_exif_util_format_date_with_strptime),
	(eog_exif_util_format_date_by_hand), (eog_exif_util_format_date),
	(eog_exif_util_get_value):
	* src/eog-exif-util.h: Add file for EXIF utilities.
	* src/eog-properties-dialog.c: (pd_update_exif_tab): update.
	* src/eog-util.c: Move exif date functions to eog-exif-util.[ch]
	* src/eog-util.h:

	Moved exif related functions to new files.

2007-03-06  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* data/eog.desktop.in.in: Remove 'Application' from the Categories
	field.

2007-03-05  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* src/eog-image.c: (eog_image_get_collate_key):
	* src/eog-image.h: eog_image_get_caption () returns a 
	const gchar*.

2007-02-27  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* data/eog-ui.xml: Add a 'OpenImageWith' menu item.
	* src/eog-window.c: (eog_window_display_image): Update the 'open
	with' menu when displaying an image.
	(+open_with_launch_application_cb): Call the chosen application
	with the selected image as parameter.
	(+eog_window_update_openwith_menu): Updates the 'open with' menu
	according with the mimetypes of the selected image.
	(eog_window_construct_ui): Get a new merge id for the menu.
	(eog_window_init), (eog_window_dispose): Properly init and 
	finish the mime application list.

	Add a 'Open file with' functionality (Fixes bug #319859). Patch from
	Rodrigo Aguilar <raguilar@iee.ufro.cl> and me.

2007-02-27  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-statusbar.c: increase image position info width in
	statusbar to avoid ellipsizing with big numbers. Fixes bug #357427.

2007-02-27  Lucas Rocha  <lucasr@gnome.org>

	Added support for placing the collection on top/bottom/right/left
	sides of the window. Also, the collection pane can be resizable or
	not. Fixes bug #334321.

	* src/eog-thumb-nav.[ch] (eog_thumb_nav_set_mode): added mode for 
	multiple columns.
	* src/eog-window.c (eog_window_init,
	eog_window_collection_mode_changed_cb, eog_window_construct_ui): keep
	track of changes in GConf keys related to collection pane layout and
	change the UI accordingly.
	* data/eog.schema.in, src/eog-config-keys.c: added GConf keys to
	define collection pane position and whether it's resizable.
	* src/Makefile.am: removed unused constants.

2007-02-26  Lucas Rocha  <lucasr@gnome.org>

	Messages for the most of common error: open a set of locations with no
	images, open a directory with no images, open a non-image file and
	open a corrupted/invalid image. Fixes bugs #326199, #399988, and #316175.

	* src/eog-list-store.c (eog_list_store_add_uris,
	eog_list_store_class_init, eog_list_store_init): add initial image
	even if it doesn't pass the mimetype tests. GObject love and code
	cleanups.
	* src/eog-application.c: comment unused function to fix build warning.
	* src/eog-window.c (eog_job_load_cb, eog_window_open_uri_list,
	eog_window_dispose, eog_job_model_cb): set window title with image
	caption even in image loading error cases. Set error message area when
	no images are found in given locations. 
	* src/eog-error-message-area.[ch]
	(eog_no_images_error_message_area_new): new message area for errors
	when no images are found in given locations.

2007-02-24  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-thumb-nav.c: make hscrollbar always visible on one row mode.
	* data/eog.schema.in: make scroll buttons hidden by default.
	* src/eog-window.c: disable image collection if there's only one image
	in the image list.

2007-02-24  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-scroll-view.[ch] (eog_scroll_view_set_zoom_multiplier,
	display_key_press_event, eog_scroll_view_init), src/eog-window.c
	(eog_window_zoom_multiplier_changed_cb, eog_window_construct_ui,
	eog_window_init): use new GConf key to define the zoom multiplier 
	used when scrolling with the mouse wheel (Fixes bug #89512).
	* src/eog-config-keys.h, data/eog.schema.in: added new GConf for 
	zoom multiplier.

2007-02-23  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-image.c (eog_image_set_exif_data, eog_image_size_prepared,
	eog_image_real_load): fix loading for images with no metadata and
	automatic orientation.

2007-02-21  Lucas Rocha  <lucasr@gnome.org>

	Added a GConf key to define the mouse scroll wheel behavior. Defaults
	to FALSE to be HIG compliant. By the default,
	Ctrl-Scroll-Wheel-[Up|Down] zooms in and out respectively (Fixes bug
	#341935).

	* src/eog-window.c: keep track of scroll wheel zoom GConf key to set the
	according behavior to EogScrolledView.
	* src/eog-scrolled-view.c: use GConf key to determine the mouse scroll
	wheel behavior.
	* src/eog-config-keys.h, data/eog.schema.in: added GConf key to define
	the mouse scroll wheel behavior. If true, use the wheel for zooming.

2007-02-20  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-list-store.c (eog_list_store_add_uris): take other images in
	same location into account even for remote URIs (if the image's parent
	URI is a directory) (Fixes bug #364426). 

2007-02-15  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* src/eog-window.c: (eog_window_display_image),
	(eog_window_cmd_file_open):

	Unref URI's returned by eog_image_get_uri () and fix some string leaks.

2007-02-13  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* configure.ac: Add check for strptime.
	* src/eog-util.c: (eog_util_format_exif_date_with_strptime),
	(eog_util_format_exif_date_by_hand), (eog_util_format_exif_date):
	Parse and localize the EXIF date, using strptime when possible, and 
	taking care of broken EXIF headers (Fixes bug #404907). Patch
	from Felix Riemann <friemann@svn.gnome.org> and me.

2007-02-13  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-transform.[ch], src/eog-image-private.h, src/eog-image.[ch], 
	src/eog-window.c, data/eog.glade, src/eog-config-keys.h: ported preferences 
	dialog and auto orientation from trunk to eog-ng branch.

2007-02-13  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-image.c, src/eog-scroll-view.c, src/eog-metadata-reader.c:
	replace all deprecated debug messages with new debug facilities (Fixes
	bug #404126). Patch from Claudio André <claudio.andre@correios.net.br>. 

2007-02-12  Lucas Rocha  <lucasr@gnome.org>

	* src/main.c: remove uneeded gnome.config.h include.

2007-02-12  Lucas Rocha  <lucasr@gnome.org>

	* eog.desktop.in.in: Change launcher description to match UI
	review (Fixes bug #383436).

2007-02-09  Felix Riemann  <friemann@svn.gnome.org>

	* src/eog-window.c: (eog_window_print): Make sure the window is not
	finalized while we are printing. Fixes bug #404708.

2007-02-09  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-window.c: (eog_window_dispose), (eog_window_init):
	Initialize and finish properly the printing objects.

2007-02-07  Felix Riemann  <friemann@svn.gnome.org>

	* src/eog-image.c: (eog_image_update_exif_data): According to the EXIF
	specs Pixel{X,Y}Dimension tags can be either of short or long
	datatype. Respect that. This fixes warnings in Valgrind and wrong
	values in images using the short type.

2007-02-05  Lucas Rocha  <lucasr@gnome.org>

	Preliminary implementation of error/warning UI for EOG (Mostly based
	on Gedit). Code still needs to be written for the different kinds of
	error other than basic image loading ones.

	* src/eog-debug.[ch]: fixed copyright header.
	* src/eog-thumb-view.c: use eog_list_store_length () when applicable.
	* src/eog-window.c (update_status_bar, eog_job_load_cb,
	eog_window_display_image, eog_window_set_message_area,
	eog_window_obtain_desired_size,
	eog_window_error_message_area_response): use new message area widget
	to show error/warning messages. Changed the window default size.
	* src/eog-message-area.[ch], src/eog-error-message-area.[ch]: new
	widgets for showing error/warning messages.
	* configure.ac: set version to 2.19.1.

2007-02-05  Felix Riemann  <friemann@svn.gnome.org>

	* src/eog-properties-dialog.c: (pd_update_general_tab): Fix leaks.

2007-02-03  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-thumb-nav.[ch]: support for different modes for image
	collection pane: one row (horizontal), one column (vertical) and
	multiple rows.
	* src/eog-window.c: keep track of changes in GConf keys for image
	colllection pane mode and show scroll buttons.
	* data/eog.schemas.in, src/eog-config-keys.h: added entry for image 
	collection mode key.

2007-02-03  Lucas Rocha  <lucasr@gnome.org>

	* data/eog.schemas.in: added new key for image collection scroll
	buttons.
	* src/eog-thumb-nav.[ch]: some refactorings, GObject love. Move
	EogThumbView setting to constructor.
	* src/eog-window.c: use GConf key to decide whether the image collection
	scroll buttons should be shown or not.

2007-02-03  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-image.c: several coding style fixes.
	* data/eog.glade, src/eog-properties-dialog.c: replaced shutter speed 
	with exposure time for user-friendliness.
	* src/eog-util.[ch]: added function for formatting exif dates.

2007-02-01  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* configure.ac: Add checks for GLib D-Bus bindings.
	* src/Makefile.am: Generate eog-application-service.h
	* src/eog-application-service.xml: Instrospection XML file for D-Bus
	methods.
	* src/eog-application.c: (eog_application_register_service),
	(eog_application_open_window),
	(eog_application_real_open_uri_list),
	(eog_application_open_uri_list), (eog_application_open_uris):
	* src/eog-application.h:
	* src/eog-util.c: (eog_util_string_list_to_uri_list),
	(eog_util_strings_to_uri_list), (eog_util_string_array_to_list),
	(eog_util_string_array_make_absolute): Moved strings lists utility
	functions here to keep code better organized.
	* src/eog-util.h:
	* src/eog-window.c: (eog_window_open_recent_cb),
	(file_open_dialog_response_cb):
	* src/main.c: (load_files), (load_files_remote), (main): Use remote
	activation if EOG service is already registered.

	Implement D-Bus based activation. Fixes bug #401946.

2007-01-30  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* src/eog-thumb-view.c: (eog_thumb_view_select_single): Do nothing
	if the thumbview is empty. Fixes a critical warning when pressing
	arrow keys in an empty EOG window.

2007-01-29  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* configure.ac:
	* src/eog-application.c:
	* src/eog-application.h:
	* src/main.c: (main):

	Remove support for opening files tagged with leaftag. Unfortunately,
	leaftag has not seen the expected momentum, so it's preferable to leave
	it out of the core. Fixes bug #401939.

2007-01-27  Lucas Rocha  <lucasr@gnome.org>

	* src/Makefile.am, src/eog-debug.[ch]: debugging and profiling for EOG.
	* src/eog-window.c: added debugging code on several places of
	EogWindow as a initial effort to make EOG more easily debuggable.

2007-01-27  Lucas Rocha  <lucasr@gnome.org>

	* data/eog.glade: some fixes on the dialog container packing and
	ellipsing for some too long labels.

2007-01-24  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-info-view*: removed.
	* src/eog-exif-details.[ch]: dump of EXIF data in a tree view. Used in
	the "Details" expander in image properties dialog.
	* src/eog-properties-dialog.c, data/eog.glade, src/Makefile.am: added 
	EXIF tab. Main tags are shown by default. Expander can be used to see 
	all EXIF data. Polishing still needs to be done.

2007-01-22  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* src/eog-image.c: (eog_image_class_init): Hook signals to
	EOG_TYPE_IMAGE instead of G_TYPE_OBJECT to avoid duplicating
	signals in other GObject derived types. Fixes #399333.

2007-01-22  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-window.c: set status EOG_WINDOW_STATUS_INIT when opening uri
	list to avoid unexpected bevaviors when opening images on an empty
	window.

2007-01-22  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-window.c: small fix on using EogListSore API.
	* src/acessible-*: remove obsolete files.
	* src/Makefile.am: small cleanups.

2007-01-21  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-application.c, src/eog-window.[ch], src/main.c: windows open
	with dimensions according to image size. GTK+ thread safety garanteed
	with the use of GDK thread control.

2007-01-18  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-window.c: updated EOG's webpage in about dialog.

2007-01-15  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-image-private.h, src/eog-image.[ch]: complete 
	code cleanup (small refactorings, removal of obsolete methods, 
	coding style fixes, etc).
	* src/eog-print-image-setup.c: coding style fixes.
	* src/eog-info-view.c, src/eog-list-store.c,
	src/eog-save-dialog-helper.c, src/eog-properties-dialog.c,
	src/eog-print-image-setup.c, src/eog-image-private.h,
	src/eog-scroll-view.c, src/eog-window.c, src/eog-window.h,
	src/eog-image-save-info.c: update for EogImage new API.

2007-01-14  Felix Riemann  <friemann@svn.gnome.org>

	* src/eog-jobs.c: (eog_job_model_run): Fix leaked list.

2007-01-10  Felix Riemann  <friemann@svn.gnome.org>

	* src/eog-image.c: (eog_image_free_mem_private): Make the double free
	guard actually work.
	* src/eog-preferences-dialog.c: (pd_color_change_cb): Free color
	string after setting it in GConf.

2007-01-04  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* src/Makefile.am: Add new files.
	
	* src/eog-print-image-setup.c: 
	* src/eog-print-image-setup.h: 

	New custom widget for the GtkPrint UI to set the image position and 
	size in a printed page.
	
	* src/eog-print-preview.c:
	* src/eog-print-preview.h:

	Widget to interactively preview the printing of an image.
	
	* src/eog-window.c: (eog_window_print_draw_page),
	(eog_window_print_create_custom_widget),
	(eog_window_print_custom_widget_apply),
	(eog_window_print_end_print), (eog_window_print),
	(eog_window_cmd_about): Use the above widgets to set the image
	position and size when printing instead of hardcoding its
	size.

	Fixes bugs #356947, #321815.

2007-01-04  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-window.c, src/main.c, data/icons/*, configure.ac,
	data/eog.desktop.in.in: install and use new EOG icons.

2007-01-04  Lucas Rocha  <lucasr@gnome.org>

	* src/eog-application.c, src/eog-file-chooser.c: small code cleanups.

2007-01-01  Felix Riemann <friemann@svn.gnome.org>

	* .svnignore: Remove duplicate entries.
	* src/.svnignore: Re-add and update file.
	* po/.svnignore: Add missing ignore.
	Update the corresponding svn:ignore tags.

2006-12-28  Bruno Boaventura <brunobol@gnome.org>

	* eog.glade: Change "Slide Show" to "Slideshow". Fix #383090

2007-01-01  Lucas Rocha  <lucasr@gnome.org>

	* shell/*, src/*: all source files moved to "src" directory.
	* autogen.sh, configure.ac, Makefile.am: update for new "src" directory.

2007-01-01  Lucas Rocha  <lucasr@gnome.org>

	* *.cvsignore, *.svnignore: renamed all ignore files to subversion.

2007-01-01  Lucas Rocha  <lucasr@gnome.org>

	* libeog/*, shell/Makefile.am, configure.ac: moved all files from
	libeog to shell.

2007-01-01  Lucas Rocha  <lucasr@gnome.org>

	* shell/Makefile.am, shell/eog-window.c, shell/eog-preferences-dialog.[ch]: 
	rename eog-preferences.* to eog-preferences-dialog.*

2006-12-28  Felix Riemann  <friemann@cvs.gnome.org>

	* shell/eog-window.c: (eog_window_construct_ui): gconf_entry_free() is
	deprecated. Use gconf_entry_unref() instead.

2006-12-27  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* configure.ac: Add dependence on gnome-icon-theme.
	* shell/eog-window.c: Use "print-setup" icon from g-i-t. Patch from 
	Thomas Andersen <phomes@gmail.com>. Fixes bug #389314.

2006-12-26  Lucas Rocha  <lucasr@gnome.org>

	New command-line options for EOG: -s to start in slideshow mode, -f
	to start in fullscreen mode, and -c to disable collection pane on
	startup (Fixes bugs #308787, #336712, #376560, #376513). Based on 
	patch from Bruno Boaventura <brunoboaventura@gmail.com>.

	* shell/eog-window.[ch]: add startup flags to EogWindow. Consider
	those flags when constructing the UI.
	* shell/eog-application.[ch]: Update API to receive the EogWindow startup 
	flags.
	* shell/main.c: initialize startup flags based on passed command-line
	options.

2006-12-21  Lucas Rocha  <lucasr@gnome.org>

	EOG dialogs common infrastructure. Preferences and image properties
	dialogs share the same base code now.

	* eog-dialog.[ch]: new generic dialog implementation for dialogs.
	* eog-preferences.[ch], eog-properties-dialog.[ch]: both dialogs
	inherit from EogDialog.
	* eog-window.c: update for new preferences dialog API.
	* shell/Makefile.am: added eog-dialog.[ch] to the build.

2006-12-18  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-window.c: (eog_window_print_draw_page): Clip the pattern
	to workaround a bug in cairo's PDF backend.

2006-12-16  Lucas Rocha  <lucasr@gnome.org>

	* data/eog-ui.xml: new "Properties" menu items in thumbview context
	menu and File menu.
	* data/eog.glade, shell/eog-window.c, eog-properties-dialog.[ch]: new
	image properties dialog.

2006-12-14  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-window.c (eog_window_print_draw_page): Do not use a group
	in the cairo context. Fixes bug #381358.

2006-12-04  Felix Riemann  <friemann@cvs.gnome.org>

	* shell/eog-window.c: (eog_window_stop_fullscreen): Unhide mouse
	cursor upon leaving fullscreen mode. Fixes bug #381867.
	Patch by Bruno Boaventura <brunoboaventura@gmail.com>.

2006-12-02  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-uri-converter.h: Reformat for better readability.

2006-11-28  Felix Riemann  <friemann@cvs.gnome.org>

	* configure.ac: Generate configure help strings using an autoconf
	macro instead of tabbing/spacing them by hand.

2006-11-28  Felix Riemann  <friemann@cvs.gnome.org>

	* configure.ac: Put GNOME_DOC_INIT down further and call 
	PKG_PROG_PKG_CONFIG before it. Fixes bug #372820.

2006-11-25  Lucas Rocha  <lucasr@gnome.org>

	* shell/Makefile.am, shell/eog-thumb-nav.[ch],
	libeog/eog-list-store.[ch], libeog/eog-thumb.view.c, 
	eog-window.c: new thumbnail pane navigator widget. No captions shown 
	anymore. Tooltips still need to be added.

2006-11-19  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-list-store.c: (vfs_monitor_dir_cb): Update the thumbnail
	of a changed image by resetting it and not by removing and readding the
	whole image.

2006-11-18  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-image.h: Remove prototype of long gone eog_image_save().

2006-11-18  Felix Riemann  <friemann@cvs.gnome.org>

	* autogen.sh: We need to require pkg-config >= 0.16.0 because we use
	the PKG_PROG_PKG_CONFIG macro.

2006-11-17  Felix Riemann  <friemann@cvs.gnome.org>

	* autogen.sh: configure.ac asks for autoconf >= 2.57 and 
	intltool >= 0.35.0. Do the same in autogen.sh.

2006-11-16  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-save-as-dialog-helper.c: Remove unused includes.

2006-11-16  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-scroll-view.c: (paint_rectangle): Make check 
	pattern for transparent images a bit lighter. Fixes bug #350183.

2006-11-15  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-image.c: (eog_image_class_init):
	* libeog/eog-image.h: Remove some unneeded signals.
	Keep "loading-{update,size_prepared}" as they might become useful
	again.

2006-11-14  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-window.c: (eog_window_print): Remove unused call and mark
	string for translation.

2006-11-14  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-window.c: (eog_window_print_draw_page): Fix for big 
	portrait images.

2006-11-14  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* configure.ac: Remove checks for libgnomeprint{ui} and add checks for 
	gtk+-unix-print.
	* data/eog-ui.xml: Add "FilePageSetup" action.
	* libeog/eog-image.c: remove unused eog_image_print ().
	* libeog/eog-image.h: remove unused eog_image_print () definition.
	* libeog/test-eog-tb.c: (main): Minor fix.
	* shell/eog-config-keys.h: Add lockdown printing macros.
	* shell/eog-window.c: (update_action_groups_state),
	(eog_window_page_setup), (eog_window_print_draw_page),
	(eog_window_print_end_print), (eog_window_print),
	(eog_window_cmd_page_setup), (eog_window_cmd_print):

	Add support for GtkPrint. Remove old and unused libgnomeprint{ui} 
	dependence. This is work in progress. See bug #356947.

2006-11-14  Felix Riemann  <friemann@cvs.gnome.org>

	* Makefile.am:
	* art/.cvsignore:
	* art/Makefile.am:
	* art/stock-flip-horizontal-16.png:
	* art/stock-flip-vertical-16.png:
	* art/stock-rotate-180-16.png:
	* art/stock-rotate-270-16.png:
	* art/stock-rotate-90-16.png:
	* configure.ac:
	* data/eog-ui.xml:
	* shell/Makefile.am:
	* shell/eog-stock-icons.c:
	* shell/eog-stock-icons.h:
	* shell/eog-window.c:
	* shell/main.c: (main): Remove custom flip and rotate icons and use
	stock icons instead. Remove now obsolete files. Based on patch for
	HEAD by Luca Ferretti <elle.uca@libero.it>. Fixes bug #305823. 

2006-11-12  Felix Riemann  <friemann@cvs.gnome.org>

	* configure.ac: Remove unneeded AM_PROG_LIBTOOL and with it the 
	unnecessary C++/Fortran checks.

2006-11-10  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-image-save-info.c:
	* libeog/eog-image.c:
	* libeog/eog-info-view-detail.c:
	* libeog/eog-info-view-exif.c:
	* libeog/eog-info-view-file.c:
	* libeog/eog-info-view.c:
	* libeog/eog-metadata-reader.c:
	* libeog/eog-scroll-view.c:
	* libeog/eog-transform.c:
	* libeog/eog-uri-converter.c:
	* shell/eog-file-chooser.c:
	Remove unneeded gnome-macros.h includes.
	The code that used it was removed in 2.13.4.

2006-11-06  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-list-store.c: (eog_list_store_get_loading_icon): Add 16 
	pixels to the loading-image icon to compensate the border size of the
	thumbnails. 

2006-10-31  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-thumb-shadow.c: (eog_thumb_shadow_add_rectangle): Slightly
	optimize the rectangle creation.

2006-10-20  Felix Riemann  <friemann@cvs.gnome.org>

	* configure.ac: Remove unneeded direct dependency on libgnomecanvas.

2006-10-16  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-transform.c: (eog_transform_apply): 
	Optimize calculation of dy variable. It is now only calulated
	dest_height times instead of dest_height*dest_width times.

2006-10-15  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-image-save-info.c: (is_local_uri):
	* shell/eog-preferences.c: (eog_preferences_show):
	* shell/eog-window.c: (eog_window_transparency_changed_cb),
	(eog_window_trans_color_changed_cb):
	Replace deprecated g_strcasecmp() calls.

2006-10-11  Felix Riemann  <friemann@cvs.gnome.org>

	* shell/eog-file-chooser.c: (eog_file_chooser_add_preview):
	* shell/eog-save-dialog-helper.c: (update_counter_label): Replace
	deprecated gtk_label_set() and gtk_widget_set_usize() calls.

2006-10-09  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-image-save-info.c: (eog_image_save_info_from_image),
	(eog_image_save_info_from_vfs_uri): Replace file_exists() with
	identical gnome_vfs_uri_exists().

2006-10-09  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-job-queue.c: (eog_job_queue_remove_job): Fix crash when
	removing transformation jobs from their queue.

2006-10-05  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	- Store EogJobs to load thumbnails in the EogListStore model, so we 
	can easily cancel them when they are no longer needed. This improves
	network performance, though it is not optimal yet.

	- Move the code to add eye candy to thumbnails inside the
	thumbnailing job. This improves responsiveness.
	
	* libeog/eog-jobs.c: (eog_job_thumbnail_run): Move the code to add 
	eye candy to thumbnails inside the thumbnailing job.

	* libeog/eog-list-store.c: 

	+ New mutex element in structure, to make jobs storing/removing 
	operations atomic. 
	
	(eog_list_store_dispose): Free the mutex.
	(eog_list_store_init): Initialize the mutex.
	(eog_job_thumbnail_cb), (eog_list_store_thumbnail_set), 
	(eog_list_store_thumbnail_unset): Removed eye candy code. Store/remove 
	thumbnailing jobs in the model.

	* libeog/eog-list-store.h: Add EOG_LIST_STORE_EOG_JOB column.
	
	* libeog/eog-list-store.c: 

	(eog_list_store_init): Add a column to store the EogJobs.
	(eog_job_thumbnail_cb): Once the EogJob is finished, remove it from the 
	model.
	(eog_list_store_thumbnail_set): When scheduling the job, save it to the 
	model.
	(eog_list_store_thumbnail_unset): If current scheduled job 
	is still not complete, cancel it.
	
	* libeog/eog-list-store.h: Add a column to store the EogJob that 
	loads the thumbnail.

2006-10-05  Felix Riemann  <friemann@cvs.gnome.org>

	* shell/eog-window.c: (image_thumb_changed_cb): Only start the manual
	thumbnail generation introduced by last commit if it is necessary.

2006-10-05  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-image.c: (eog_image_class_init),
	(eog_image_set_thumbnail):
	* libeog/eog-image.h: Replace old unused thumbnail signals by a single
	one being emitted once the thumbnail is set.
	* shell/eog-window.c: (image_thumb_changed_cb),
	(eog_window_display_image): Set window icon using the new signal. Make
	it work when the collection view is hidden.

2006-10-05  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-image.c: (eog_image_real_load), (eog_image_load): Merge
	eog_image_load_exif_data_only() into eog_image_real_load() as they are
	mostly identical.

2006-10-02  Felix Riemann  <friemann@cvs.gnome.org>

	* shell/eog-window.c: Add stock icon to undo action.

2006-09-27  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/eog-image-private.h:
	* libeog/eog-image.c: (eog_image_dispose), (image_transform),
	(eog_image_undo), (eog_image_reset_modifications): Replace undo stack
	GList with a sufficient GSList and replace some list iteration loops
	with g_slist_foreach().

2006-09-20  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-image.c: (eog_image_is_supported_mime_type): Check if
	given string is NULL. Fixes several critical warnings.

2006-09-18  Felix Riemann  <friemann@cvs.gnome.org>

	* shell/eog-window.c: (eog_window_clear_load_job),
	(handle_image_selection_changed_cb): make sure a possible loading job
	is cancelled when re-selecting the current image (Fixes bug #355858).

2006-09-13  Felix Riemann  <friemann@cvs.gnome.org>

	* libeog/accessible-image-view-factory.h:
	* libeog/accessible-image-view.h: replace "#ifdef __cplusplus" defines
	with the corresponding G_(BEGIN/END)_DECLS macros.

2006-09-11  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-preferences.c: (eog_preferences_show):
	* shell/eog-window.c: (eog_window_transparency_changed_cb),
	(eog_window_trans_color_changed_cb):Fixed memory leaks related
	to gconf_client_get_string ().
	(handle_image_selection_changed_cb): Fixed memory leak.

2006-09-06  Lucas Rocha  <lucasr@gnome.org>

	* shell/main.c: save customized keybindings on application 
	shutdown (Fixes bug #324757). 

2006-09-06  Lucas Rocha  <lucasr@gnome.org>

	* eog.glade: fix i18n bugs by removing empty messages (Fixes bug
	#335577). Patch from Felix Riemann <felix@hsgheli.de>.

2006-09-06  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c (add_uri_to_recent_files,
	eog_window_update_recent_files_menu): small fix for remote URIs on recently
	used resources file (Fixes bug #351040). Patch from Felix 
	Riemann <felix@hsgheli.de>.

2006-09-01  Lucas Rocha  <lucasr@gnome.org>

	* shell/recent-files/*: removed. 

2006-09-01  Lucas Rocha  <lucasr@gnome.org>

	* configure.ac
	* data/eog-ui.xml
	* shell/Makefile.am
	* shell/eog-application.c
	* shell/eog-application.h
	* shell/eog-window.c

	Migration to GtkRecent (Fixes bug #351040). Patch from Felix
	Riemann (felix@hsgheli.de) based on Gedit's patch from Paolo Borelli.

2006-08-10  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image-list.c (eog_image_list_add_uris): fix critical
	warning when opening remote images (Fixes bug #350557). 

2006-08-10  Lucas Rocha  <lucasr@gnome.org>

	* shell/main.c (make_canonical_uri): fix error when loading images
	with ':' in their filenames from command line (Fixes bug #305129).
	Patch from Felix Riemann <felix@hsgheli.de>.

2006-08-04  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c: fix string "Counter Clockwise" with
	"Counterclockwise" (Fixes bug #349361).

2006-08-01  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-scroll-view.c (image_changed_cb): fix memory leak on
	image transformation (Fixes bug #349434). Patch from Felix 
	Riemann <felix@hsgheli.de>.

2006-07-25  Lucas Rocha  <lucasr@gnome.org>

	* libeog/cursor.[ch], libeog/cursors/*, eog-image-cache.[ch],
	eog-full-screen.[ch]: removed obsolete files.
	* libeog/eog-scroll-view.[ch]
	(+eog_scroll_view_create_invisible_cursor,
	+eog_scroll_view_set_cursor, +eog_scroll_view_show_cursor,
	+eog_scroll_view_hide_cursor, eog_scroll_view_button_press_event),
	shell/eog-window.c (fullscreen_set_timeout, fullscreen_clear_timeout):
	new cursor handling code.

2006-07-25  Lucas Rocha  <lucasr@gnome.org>

	Initial support for opening images by tags with the --tags command-line 
	option based on leaftag. No UI defined for this yet.

	* shell/main.c (main, string_array_to_list, +load_files_from_tags):
	changes for tag support.
	* shell/eog-application.[ch] (+eog_application_open_tag_list): new
	methods for opening images from tags.
	* configure.ac: optional dependency on leaftag library.
	* libeog/eog-image.[ch] (+eog_image_get_supported_mime_types,
	+eog_image_is_supported_mime_type, +compare_quarks): application wide
	methods for gettting supported image mime types.
	* libeog/eog-list-store.c (vfs_monitor_dir_cb): removed local mime type 
	support functions.

2006-07-24  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c (eog_window_class_init, eog_window_button_press):
	mouse sidebuttons (6 and 7) for image navigation (Fixes bug #321400).

2006-07-24  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image.c (extract_profile): removed debug messages.
	* libeog/eog-list-store.[ch] (+eog_list_store_length): new wrapper
	method to get model length. Coding style fixes.
	* libeog/eog-thumb-view.[ch]: Coding style fixes.
	* shell/eog-window.c (eog_window_update_slideshow_action,
	slideshow_is_loop_end, slideshow_switch_cb, slideshow_clear_timeout,
	slideshow_set_timeout, exit_fullscreen_button_clicked_cb,
	eog_window_create_fullscreen_popup, eog_window_run_fullscreen,
	eog_window_stop_fullscreen, eog_window_update_fullscreen_action,
	eog_window_cmd_slideshow, eog_window_init, eog_window_key_press):
	initial implementation of slideshow.

2006-07-24  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-preferences.c: (color_change_cb): Use correct syntax
	to retrieve color string (Fixes bug #347600). Patch from Felix 
	Riemann <felix@hsgheli.de>.

2006-07-13  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-scroll-view.c (eog_scroll_view_button_press_event,
	eog_scroll_view_button_release_event, check_scrollbar_visibility): 
	use middle mouse drag to scroll image (Fixes bug #335689). Based
	on patch from Wouter Bolsterlee <uws+gnome@xs4all.nl>.

2006-07-13  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image-jpeg.c (_save_jpeg_as_jpeg): avoid losing
	EXIF data when saving changed jpeg images (Fixes bug #309219).
	Patch from Felix Riemann <felix@hsgheli.de>.

2006-06-28  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	Add a frame around thumbnails to make the view behave uniformly.
	
	* libeog/eog-list-store.c: (eog_job_thumbnail_cb): Use 
	eog_thumb_shadow_add_frame to add a frame around thumbnails.
	* libeog/eog-thumb-shadow.c: (eog_thumb_shadow_add_frame): Add frame
	around a thumbnail.
	* libeog/eog-thumb-shadow.h: Add definition.

2006-06-25  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-window.c: (fullscreen_timeout_cb),
	(fullscreen_set_timeout), (eog_window_dispose):	
	Remove some duplicated code and use fullscreen_clear_timeout () instead
	of it (Fixes bug #344140). Patch from Felix Riemann <felix@hsgheli.de>.

2006-06-17  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-list-store.c: (is_file_in_list_store),
	(eog_list_store_remove_image), (eog_list_store_get_pos_by_image),
	(eog_list_store_thumbnail_set): eog_image_get_uri() increases reference
	counter on the returned URI, so we have to decrease it when no longer 
	needed.

2006-06-17  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	Implement Drag and Drop for thumbnails. Currently 
	only implemented the GDK_ACTION_COPY action.
	
	* libeog/eog-thumb-view.c: 

	(tb_on_drag_data_get_cb): Send the uris of the selected images to 
	the drop site.
	(eog_thumb_view_init): Enable drag source and connect 
	"drag-data-get" signal.

2006-06-16  Lucas Rocha  <lucasr@gnome.org>

	* data/eog-ui.xml: add separators between menu entries.

2006-06-08  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* data/eog-ui.xml: Add definition for thumbnail popup.
	* libeog/eog-thumb-view.c: (eog_thumb_view_set_thumbnail_popup):
	Simplified in order to use the same GtkUIManager than the EogWindow.
	Only request for the menu to be used as popup.
	* libeog/eog-thumb-view.h: ditto.
	* libeog/test-eog-tb.c: (main): Updated popup creation code.
	* shell/eog-window.c: (eog_window_construct_ui): Create popup 
	for thumbnails and set it.

2006-06-07  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image.[ch] (eog_image_real_load,
	eog_image_load_exif_data_only, eog_image_load), eog-jobs.[ch]
	(eog_job_init, eog_job_dispose, eog_job_class_init, +notify_progress,
	eog_job_set_progress, eog_job_load_run), shell/eog-statusbar.c
	(eog_statusbar_set_progress), shell/eog-window.c
	(eog_window_clear_load_job, +eog_job_load_progress_cb,
	eog_job_load_cb, handle_image_selection_changed):

	Image loading progress status implementation with the new job
	infrastructure.

2006-06-02  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-thumb-view.c: (eog_thumb_view_finalize),
	(eog_thumb_view_destroy), (tb_on_parent_set_cb),
	(tb_on_button_press_event_cb), (eog_thumb_view_init),
	(eog_thumb_view_new), (eog_thumb_view_set_model),
	(eog_thumb_view_get_n_selected_helper),
	(eog_thumb_view_get_n_selected),
	(eog_thumb_view_get_image_from_path),
	(eog_thumb_view_get_first_selected_image),
	(eog_thumb_view_get_selected_images),
	(eog_thumb_view_set_current_image), (eog_thumb_view_select_single),
	(eog_thumb_view_set_thumbnail_context_menu),
	(eog_thumb_view_popup_menu):

	Renamed all 'thumb_view' and 'view' instances to tb, for consistence.

	Added a popup menu implementation for thumbnails. At libeog level 
	I added only the facility to add the popup menu, but this must be 
	defined at the application level. See libeog/test-eog-tb.c for
	an example of its usage.
	
	Add a GtkWidget pointer to the private data of EogThumbView, to
	maintain a reference to the popup menu.
	
	* libeog/eog-thumb-view.h: Added function to set a context menu for
	the thumbnails. See the implementation for an explanation on how to use
	it.
	
	* libeog/test-eog-tb.c: (do_something_with_test_1), (main): Added test 
	code for the popup.

2006-06-01  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image.c (eog_image_print): fix printing for images with
	alpha channel (Fixes bug #322057). Patch from Jan Kümmel
	<gnome-bugz@snorc.org>.

2006-05-31  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-collection-item.c (set_pixbuf): making sure thumbnail 
	is at least 1px large (Fixes bug #342817). Patch from
	Felix Riemann <felix@hsgheli.de>.

2006-05-31  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-list-store.c (eog_list_store_compare_func),
	libeog/eog-image.c (eog_image_get_collate_key): properly sort
	filenames containing numbers (Fixes bug #340957). Based on patch 
	from Felix Riemann <felix@hsgheli.de>.

2006-05-29  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c (eog_job_load_cb, eog_job_transform_cb,
	eog_window_clear_load_job): fix memory leaks (Fixes bug #341831).

2006-05-27  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-list-store.c: (vfs_monitor_dir_cb): Remove some
	debug output.
	
	* libeog/eog-thumb-view.c: (tb_on_adjustment_changed_cb), 
	(tb_on_parent_set_cb): 

	Update visible thumbnails when an image is added to
	the view. Useful for the case when images are added
	to a directory being monitored.

2006-05-22  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* art/Makefile.am: Removing loading.png.
	* art/loading.png: Removed.
	* libeog/Makefile.am: Remove DDATADIR define. No longer needed.
	* libeog/eog-list-store.c: (eog_list_store_get_loading_icon),
	(eog_list_store_init): Use a themeable icon for the "busy" icon.
	This way we don't need to ship our custom icon, and we use the 
	gnome-icon-theme love.

2006-05-20  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/Makefile.am: Include DDATADIR define.
	* libeog/eog-list-store.c: (eog_list_store_init): Obtain the "busy"
	icon without introducing the need for gnome_program_*. Patch
	from Felix Riemann <felix@hsgheli.de>.

2006-05-19  Lucas Rocha  <lucasr@gnome.org>

	* configure.ac: Require intltool 0.35.0.

2006-05-19  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-list-store.c: (eog_list_store_thumbnail_unset): 
	Actually unsetting the thumbnail and some cleanups.

2006-05-19  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-statusbar.c (eog_statusbar_init): set the height of
	progressbar to avoid re-zooming image after loading (Fixes bug #327424). 

2006-05-19  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* art/Makefile.am: Added loading.png to the file.
	* libeog/eog-list-store.c: (eog_list_store_dispose),
	(eog_list_store_init), (eog_job_thumbnail_cb),
	(eog_list_store_append_image), (eog_list_store_thumbnail_set),
	(eog_list_store_thumbnail_unset): Set a "busy" thumbnail
	to the model in the images that are not visible. 
	* libeog/eog-list-store.h: Adding a EOG_LIST_STORE_THUMB_SET column
	to the model. Patch by Felix Riemann <felix@hsgheli.de>.

2006-05-19  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-job-queue.c (eog_render_thread,
	no_jobs_available_unlocked, -add_job_to_queue,
	+add_job_to_queue_locked): make the job manager thread sleep when
	there are no jobs on the queues (Fixed bug #341600). Patch from
	Paolo Borelli <pborelli@katamail.com>.

2006-05-19  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c (eog_window_cmd_about): about dialog 
	update (Fixes bug #342103). Patch from Claudio Saavedra
	<csaavedra@alumnos.utalca.cl>. 

2006-05-18  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c (update_action_groups_state),
	shell/eog-config-keys.h: respect the disable_save_to_disk 
	gconf lockdown key (Fixed bug #341862).

2006-05-18  Lucas Rocha  <lucasr@gnome.org>

	* libeog/Makefile.am: removed reference to removed files.
	* libeog/access.[ch]: obsolete files removed.

2006-05-17  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-image.c: 

	(eog_image_set_thumbnail): Allow to unset the thumbnail by passing NULL.
	
	* libeog/eog-list-store.c: 

	(eog_list_store_append_image): Do not set here the thumbnail, and just 
	pass NULL to the model to indicate that the thumbnail is not set.
	(eog_list_store_thumbnail_set): Function to set a thumbnail to an image
	in the model.
	(eog_list_store_thumbnail_unset): Function to unset a thumbnail to an 
	image in the model.
	
	* libeog/eog-thumb-view.c: Implemented a lazy thumbnail loading engine.
	Based on evince source code.

	Defined the private data for the class, which contains the visible range 
	of thumbnails.

	(eog_thumb_view_class_init): Added the private structure to the class.
	(eog_thumb_view_clear_range), (eog_thumb_view_add_range): New functions
	to set and unset the thumbnails on a given range.
	(eog_thumb_view_update_visible_range): Function to update the thumbnails
	in the visible range, by unsetting the thumbnails in the old range, and 
	setting the newly visible ones.
	(tb_on_visible_range_changed_cb): Callback to be called when 
	the widget resizes, or when the widget is scrolled, so we can 
	load/unload thumbnails.
	(tb_on_parent_set_cb): Callback for the "parent-set" signal of the 
	widget.
	(eog_thumb_view_init): Set the default values for the private data, and 
	connect the "parent-set" signal.

2006-05-15  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-list-store.c: (eog_job_thumbnail_cb),
	(eog_list_store_remove_image), (eog_list_store_get_pos_by_image):
	Fixed some memory leaks.
	* libeog/test-eog-tb.c: (main): Initialize threading system so the 
	test code actually works.

2006-05-13  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-list-store.c: Make thumbnails a bit smaller.
	* shell/eog-window.c: (eog_window_construct_ui): GtkAdjustment for
	the icon view no longer needed. Removed.
	* shell/eog-window.c: (eog_window_construct_ui): Define some default 
	values for the icon view, so it is usable and looks nice.

2006-05-08  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c

	(EogWindowMode): eog-window modes (UNKNOWN, NORMAL, FULLSCREEN,
	SLIDESHOW). 

	(update_action_groups_state, update_ui_visibility): helper functions
	for UI updates depending on window mode.

	(eog_window_cmd_fullscreen, eog_window_update_fullscreen_action,
	eog_window_update_fullscreen_popup, screen_size_changed_cb,
	fullscreen_popup_size_request_cb, fullscreen_timeout_cb,
	fullscreen_clear_timeout, fullscreen_set_timeout,
	show_fullscreen_popup, fullscreen_motion_notify_cb,
	fullscreen_leave_notify_cb, exit_fullscreen_button_clicked_cb,
	eog_window_get_exit_fullscreen_button,
	eog_window_create_fullscreen_popup, eog_window_run_fullscreen,
	eog_window_stop_fullscreen, eog_window_construct_ui,
	eog_window_key_press, eog_window_focus_in_event,
	eog_window_focus_out_event, eog_window_class_init):
	Initial implementation of fullscreen mode of EOG window.

	* data/eog-ui.xml: new fullscreen toolbar definition.

2006-04-29  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-thumb-view.[ch]: coding style fixes and several 
	GObject related code cleanups.
	* libeog/eog-config-keys.h: moved to shell.
	* libeog/eog-jobs.[ch] (eog_job_thumbnail_dispose,
	eog_job_thumbnail_new, eog_job_thumbnail_run): initial 
	thumbnail loading job implementation. Based on patch 
	from Claudio Saavedra <csaavedra@alumnos.utalca.cl>.
	* libeog/eog-list-store.[ch] (eog_list_store_append_image_from_uri,
	eog_list_store_append_image, eog_job_thumbnail_cb): several code 
	cleanups and coding style fixes. Use thumbnailing job to load
	image thumbnail. Based on patch from Claudio Saavedra
	<csaavedra@alumnos.utalca.cl>.
	* libeog/eog-thumbnail.[ch]: removed job references.
	* shell/eog-window.c: small coding style fixes.

2006-04-20  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/Makefile.am: Added eog-thumb-shadow.[ch]
	* libeog/eog-list-store.c: (eog_list_store_append_image): Add a
	border and a drop shadow to the thumbnails.
	* libeog/eog-thumb-shadow.c: (gaussian), (create_blur_filter),
	(create_outline_filter), (create_effect),
	(eog_thumb_shadow_add_shadow), (eog_thumb_shadow_add_border),
	(eog_thumb_shadow_add_rectangle), (create_round_border),
	(eog_thumb_shadow_add_round_border):
	* libeog/eog-thumb-shadow.h: New files to add eyecandy to the 
	thumbnails.

2006-04-16  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-statusbar.c, shell/eog-statusbar.h: code cleanup.
	* shell/eog-window.c: coding style and a few cleanups.

2006-04-14  Lucas Rocha  <lucasr@gnome.org>

	* configure.ac: update intltool dependency version for correct
	po/LINGUAS implementation.
	* art/Makefile.am, art/down-right.png, 
	art/orient-horizontal.png, art/orient-vertical.png,
	art/right-down.png: removed obsolete images.
	* data/Makefile.am, data/eog-gtk-ui.xml, 
	data/eog-ui.xml: renamed UI file (eog-gtk-ui.xml) to
	eog-ui.xml.
	* libeog/Makefile.am: update to work with new files.
	Removed references to removed files.
	* libeog/eog-job-manager.c, libeog/eog-job-manager.h,
	libeog/eog-job.c, libeog/eog-job.h: old job management 
	removed to be replaced by a new one.
	* libeog/test-eog-job.c, libeog/test-image-load.c:
	obsolete test programs removed.
	* libeog/eog-job-queue.c, libeog/eog-job-queue.h,
	libeog/eog-jobs.c, libeog/eog-jobs.h: new job handling
	implementation.
	* libeog/eog-full-screen.c (job_image_load_do), 
	libeog/eog-image.[ch] (eog_image_apply_transformations,
	eog_image_load_exif_data_only, eog_image_real_load,
	eog_image_load, image_transform, eog_image_save_by_info,
	eog_image_save_as_by_info), libeog/eog-transform.[ch] 
	(eog_transform_apply), libeog/eog-thumbnail.h: removed all 
	old job implementation references.
	* po/POTFILES.in: update.
	* shell/eog-stock-icons.c, shell/eog-stock-icons.h: new
	stock icons handling functions.
	* shell/eog-preferences.c, shell/eog-preferences.h: general
	code cleanup.
	* shell/eog-util.c, shell/eog-util.h: new place for util
	functions.
	* shell/eog-config-keys.h: obsolete gconf keys removed.
	* libeog/eog-list-store.c: removed debug outputs.
	* shell/Makefile.am: update to work with new files.
	Removed references to removed files.
	* shell/eog-application.c, shell/eog-application.h: port it
	to new eog-window API. Some basic cleanups.
	* shell/main.c: full code review and cleanup to use new APIs.
	* shell/eog-file-chooser.c (eog_file_chooser_add_open_new_window,
	eog_file_chooser_new): no option to open in same window
	anymore.
	* shell/eog-window.c, shell/eog-window.h: new implementation of
	eog-window. Full code review. Still incomplete.

2006-04-10  Michiel Sikkes  <michiel.sikkes@gmail.com>

	* configure.ac:
	* po/LINGUAS:

	Modified to use po/LINGUAS.

2006-04-07  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-thumb-view.c: (eog_thumb_view_select_single): Make
	the selection circular.

2006-04-07  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-list-store.c: (eog_list_store_append_image): Resize
	the thumbnail if it is bigger than EOG_LIST_STORE_THUMB_SIZE.

2006-04-06  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-window.c: (update_ui_visibility),
	(eog_window_construct_ui): Changed GtkVPaned to a GtkVBox to give
	a fixed size to the thumbview. Set the thumbview to a one-row layout 
	with only a horizontal scrollbar.
	
2006-04-06  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-list-store.c: (eog_list_store_append_image_from_uri),
	(eog_list_store_add_uris), (eog_list_store_new_from_glist):
	* libeog/eog-thumb-view.c: (eog_thumb_view_set_model): Check 
	if model is empty before trying to select the initial image.
	(eog_thumb_view_get_first_selected_image),
	(eog_thumb_view_get_selected_images),
	(eog_thumb_view_select_single):
	Several coding style changes.
	* libeog/test-eog-tb.c: (tb_on_selection_changed),
	(string_array_to_list), (main): Set the model for the view after 
	filling it. Using eog_thumb_view_set_model (). Coding style changes.

2006-04-04  Lucas Rocha  <lucasr@gnome.org>

	* shell/Makefile.am, shell/eog-gtk-ui.xml, data/eog-gtk-ui.xml,
	data/Makefile.am: ui file moved to data dir.

2006-04-04  Lucas Rocha  <lucasr@gnome.org>

	* configure.ac: no need for X/pango checks.
	* help/bg/.cvsignore, help/eu/.cvsignore, 
	libeog/.cvsignore: .cvsignore love.
	* libeog/eog-list-store.h: fixe typo.
	* shell/Makefile.am: update.
	* shell/eog-application.c, shell/eog-application.h: new EOG
	application facade.
	* shell/eog-preferences.c: util.h include removed.
	* shell/session.c, shell/session.h, shell/util.c,
	shell/util.h: removed.
	* shell/eog-session.c, shell/eog-session.h: initial EOG session
	handling implementation.
	* shell/eog-window.c, shell/eog-window.h: provisory "trash" 
	implementation to use the eog-application facade.
	* shell/main.c: complete cleanup by using EogApplication.
	* libeog/Makefile.am, eog-collection-item.c, eog-collection-item.h,
	eog-wrap-list.h, eog-wrap-list.c, eog-image-list.h,
	eog-image-list.c, eog-canvas-pixbuf.c, eog-canvas-pixbuf.h:
	obsolete files removed.

2006-04-04  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/eog-thumb-view.c: (eog_thumb_view_set_model), Set
	model to the view and then select the initial image.
	(eog_thumb_view_select_single): Initialize path to NULL.
	* libeog/eog-thumb-view.h: New header for eog_thumb_view_set_model ().
	* shell/eog-window.c: (eog_window_open): Use eog_thumb_view_set_model ()
	instead of gtk_icon_view_set_model ().

2006-04-04  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* libeog/Makefile.am: Adding eog-thumb-view.[ch], eog-list-store.[ch],
	and eog-test-tb.c.
	* libeog/eog-full-screen.c: (cancel_load_by_iter),
	(get_next_iter_in_direction), (display_image_on_screen),
	(delayed_display_image_on_screen), (is_loop_end),
	(check_automatic_switch), (eog_full_screen_key_press),
	(eog_full_screen_destroy), (eog_full_screen_init),
	(job_image_load_finished), (prepare_load_image), (prepare_data),
	(eog_full_screen_new), (eog_full_screen_get_last_image): Porting 
	to EogThumbView and EogListStore.
	* libeog/eog-full-screen.h: Changing EogImageList and EogIter
	struct members to EogListStore and GtkTreeIter, respectively.
	* libeog/eog-list-store.c: (eog_list_store_finalize),
	(foreach_monitors_free), (eog_list_store_dispose),
	(eog_list_store_class_init), (eog_list_store_compare_func),
	(eog_list_store_init), (eog_list_store_new),
	(eog_list_store_append_image),
	(eog_list_store_append_image_from_uri), (compare_quarks),
	(get_supported_mime_types), (is_supported_mime_type),
	(is_file_in_list_store), (vfs_monitor_dir_cb),
	(directory_visit_cb), (eog_list_store_append_directory),
	(get_uri_info), (eog_list_store_add_uris),
	(eog_list_store_remove_image), (eog_list_store_new_from_glist),
	(eog_list_store_get_pos_by_image),
	(eog_list_store_get_image_by_pos),
	(eog_list_store_get_pos_by_iter), (eog_list_store_get_initial_pos):
	* libeog/eog-list-store.h:
	* libeog/eog-thumb-view.c: (eog_thumb_view_get_type),
	(eog_thumb_view_class_init), (eog_thumb_view_init),
	(eog_thumb_view_finalize), (eog_thumb_view_destroy),
	(eog_thumb_view_new), (eog_thumb_view_get_n_selected_helper),
	(eog_thumb_view_get_n_selected),
	(eog_thumb_view_get_first_selected_image),
	(eog_thumb_view_get_image_from_path),
	(eog_thumb_view_get_selected_images),
	(eog_thumb_view_set_current_image), (eog_thumb_view_select_single):
	* libeog/eog-thumb-view.h: New implementation for the collection
	pane.
	* libeog/test-eog-tb.c: (tb_on_selection_changed),
	(on_button_sfi_clicked), (on_button_next_clicked),
	(on_button_back_clicked), (on_button_first_clicked),
	(on_button_last_clicked), (make_canonical_uri),
	(string_array_to_list), (main): Test for the collection
	pane widget.
	* shell/eog-window.c: (verb_FileOpen_cb), (verb_SetAsWallpaper_cb),
	(verb_GoNext_cb), (verb_GoPrev_cb), (verb_GoFirst_cb),
	(verb_GoLast_cb), (slideshow_hide_cb), (verb_FullScreen_cb),
	(verb_ShowHideAnyBar_cb), (verb_Save_cb), (verb_Print_cb),
	(verb_SaveAs_cb), (apply_transformation), (verb_MoveToTrash_cb),
	(eog_window_destroy), (eog_window_init), (eog_window_key_press),
	(eog_window_has_contents), (update_ui_visibility),
	(obtain_desired_size), (update_status_bar),
	(update_selection_ui_visibility), (handle_image_selection_changed),
	(eog_window_construct_ui), (eog_window_open):
	* shell/eog-window.h: Porting to EogThumbView and EogListStore.
	* shell/main.c: (assign_model_to_window), (job_prepare_model_do): Porting
	to EogThumbView and EogListStore.

	Porting to the new EogThumbView and EogListStore widgets. Removing
	dependence on EogWrapList and EogImageList (#336973).

2006-04-02  Lucas Rocha  <lucasr@gnome.org>

	* Makefile.am: fix typo.

2006-04-02  Lucas Rocha  <lucasr@gnome.org>

	* TODO: link to task list at l.g.o

2006-04-02  Lucas Rocha  <lucasr@gnome.org>

	* Makefile.am, configure.ac, eog.spec.in: spec file removed.

2006-04-02  Lucas Rocha  <lucasr@gnome.org>

	* INSTALL, po/POTFILES.in: Update.
	* acconfig.h, eog.gladep: removed useless files.
	* configure.in, configure.ac: "renamed" configure.in to
	configure.ac.
	* eog.desktop.in.in, eog.glade, eog.schemas.in,
	data/.cvsignore, data/Makefile.am, data/eog.desktop.in.in,
	data/eog.glade, data/eog.schemas.in: moved eog.schemas.in,
	eog.desktop.in.in, and eog.glade to data directory.
	* Makefile.am, autogen.sh: lots of cleanups.
	* shell/eog-preferences.c, shell/eog-save-as-dialog-helper.c,
	shell/eog-save-dialog-helper.c: look for glade files on 
	$datadir.

2006-04-02  Lucas Rocha  <lucasr@gnome.org>

	* omf-install/*: old scrollkeeper dir removed.

2006-04-02  Lucas Rocha  <lucasr@gnome.org>

	* .cvsignore, po/.cvsignore: cvsignore love.

2006-04-02  Lucas Rocha  <lucasr@gnome.org>

	* macros/*: local copy of gnome-common macros removed.

2006-04-02  Lucas Rocha  <lucasr@gnome.org>

	* doc/*: obsolete doc files remove.

2006-04-02  Lucas Rocha  <lucasr@gnome.org>

	* gnome-eog.png: old logo removed.

=========================
===== eog-ng branch =====
=========================

2006-03-31  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image-list.c (vfs_monitor_dir_cb): checks mimetype
	before trying to include new detected files on image list (Fixes
	bug #336050).

2006-03-31  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-thumbnail.c (eog_thumb_data_new): avoid setting 
	the error twice (Fixes bug #336652).

2006-03-26  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image-list.c (directory_visit_cb): don't include
	hidden images from a directory on image list (Fixes bug #335338). 

2006-03-26  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c (verb_Print_cb): duplex-printing is off 
	by default (Fixed bug #334016).

2006-03-26  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c: add ellipsis to "Save As" and "Print" menu
	items to be HIG compliant (Fixed bug #335109).

2006-03-26  Lucas Rocha  <lucasr@gnome.org>

	GOption migration (Fixes bug #335877). Patch from Michael 
	Plump <plumpy@skylab.org>

	* configure.in: remove popt dependencie.
	* src/main (main, handle_cmdline_args): use GOption instead of popt.

2006-03-26  Lucas Rocha  <lucasr@gnome.org>
	
	Keyboard shortcuts revamp (Fixes bug #310455 partly). Patch from
	Jaap Haitsma <jaap@haitsma.org>.

	* shell/eog-gtk-ui.xml: Add Home and End as shortcut keys for the first
	and last images respectively

	* shell/eog-window.c: 
	(action_entries_image) Add Home and End as keyboard shortcuts for the 
	first and last images respectively.

	(action_entries_collection) Change the keyboard shortcuts of first,
	last, next and previous image so they conform to the HIG
	First was Ctrl+Home now Alt+Home
	Last was Ctrl+End now Alt+End
	Next was Ctrl+Right now Alt+Right
	Previous was Ctrl+Left now Alt+Left 

	(eog_window_key_press) If no scrollbars visible PageDown, Right and Down
	show the next image and PageUp, Left and Up show the previous image

	* libeog/eog-scroll-view.{c|h}: 
	Add eog_scroll_view_scrollbars_visible function

	(display_key_press_event) Page up/down now scroll 3/4 of the image
	(page) height (Fixes bug #324871). Ctrl PageUp/PageDown scroll 
	left/right

2006-03-23  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window (verb_FileOpen_cb): use the directory 
	of the currently viewed file as file chooser initial
	location (Fixes bug #335653).

2006-03-22  Tommi Vainikainen  <thv@iki.fi>

	* configure.in (ALL_LINGUAS): Added Dzongkha (dz).

2006-03-22  Lucas Rocha  <lucasr@gnome.org>

	* help/C/eog.xml: several fixes for DTD correct validation.

2006-03-22  Lucas Rocha  <lucasr@gnome.org>

	* .cvsignore: added gnome-doc-utils.make. 
	* configure.in: added GNOME_DOC_INIT and
	removed help/*/Makefile from AC_OUTPUT.
	* Makefile.am: added gnome-doc-utils.make to
	EXTRA_DIST and DISTCLEANFILES. Added
	DISTCHECK_CONFIGURE_FLAGS.
	* help/Makefile.am: migration to gnome-doc-utils.
	* help/zenity.omf.in: new OMF file to be used by
	gnome-doc-utils.
	* help/C/Makefile.am, help/C/eog-C.omf: No
	longer needed. Removed.
	* help/C/eog.xml: updates to be gnome-doc-utils
	compliant.
	* help/ChangeLog: new ChangeLog to keep track
	of doc updates.

2006-03-13  Lucas Rocha  <lucasr@gnome.org>

	* configure.in: Post release bump, for unstable
	2.15.x development.

2006-03-13  Lucas Rocha  <lucasr@gnome.org>

	* configure.in, NEWS: Update for 2.14.0

2006-03-06  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c
	(eog_window_get_mode): always set to collection mode as there's
	no single/collection dichotomy anymore and to correctly save 
	window's geometry.
	(eog_window_init): center the window by default. 

2006-03-06  Lucas Rocha  <lucasr@gnome.org>

	* shell/main.c (job_prepare_model_finished): quit EOG when not
	able to load images.
	* libeog/eog-image-list.c (add_regular): remove unwanted output.

2006-03-05  Ryan Lortie  <desrt@desrt.ca>

	* libeog/eog-image-list.c: Ensure that requested image is added
	when scanning parent directory of said image.  Fixes a crasher
	when opening images with strange extensions (#333551).

2006-03-04  Lucas Rocha  <lucasr@gnome.org>

	* configure.in: post release version bump.

2006-03-04  Lucas Rocha  <lucasr@gnome.org>

	* configure.in, NEWS: Update for 2.13.92

2006-03-03  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image-list.c, libeog/eog-image-private.h,
	libeog/eog-image.c (eog_image_dispose, vfs_monitor_dir_cb,
	vfs_monitor_file_cb, eog_image_register_infoview), 
	libeog/eog-image.h (eog_image_register_infoview),
	libeog/eog-info-view.c (update_data_pages_for_image): fix 
	crash when removing images from a directory with images 
	that EOG is watching.

2006-03-02  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-full-screen.c (disable_screen_saver): make
	EOG gnome-screen-saver if this is present (Fixes 
	bug #333142). Patch from Oliver Grawert <ogra@ubuntu.com>
	with some fixes.

2006-03-02  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-wrap-list.c (handle_canvas_scroll, 
	eog_wrap_list_construct): mouse scroll wheel make image
	switching on collection pane (Fixes bug #331645).

2006-02-27  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c (eog_window_init): define a minimum 
	window size (Fixes bug #327065).

2006-02-27  Lucas Rocha  <lucasr@gnome.org>

	* libeog/Makefile.am: change libs search paths order to 
	make development libs paths have higher priority than X11 
	libs search paths (Fixes bug #330708). Patch from 
	Sylvain Bertrand <sylvain.bertrand@gmail.com>.

2006-02-27  Lucas Rocha  <lucasr@gnome.org>

	* eog-scroll-view.c (eog_scroll_view_zoom_in, 
	eog_scroll_view_zoom_out): correct handling of zoom
	double precision with mouse wheel (Fixes bug #310833). 
	Patch from Felix Riemann <felix@hsgheli.de>.

2006-02-22  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-metadata-reader.c: fix 64-bit pointer 
	truncation (Fixes #331971). Patch from Pascal Hofstee
	<caelian@gmail.com> and Alexander Nedotsukov 
	<bland@freebsd.org>.

2006-02-19  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image-list.c, libeog/eog-image.c,
	libeog/eog-info-view.c, libeog/eog-job-manager.c,
	libeog/eog-job.c, shell/eog-window.c: disable all
	debug messages by default (Fixes bug #331362). 

2006-02-16  Lucas Rocha  <lucasr@gnome.org>

	* configure.in: post release version bump.

2006-02-14  Lucas Rocha  <lucasr@gnome.org>

	* configure.in, NEWS: Update for 2.13.91

2006-02-01  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image.c: use current locale for images on
	NIS filesystem (Fixes bug #320289). Patch from Takao 
	Fujiwara <takao.fujiwara@sun.com>.

2006-01-31  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c (job_save_image_list, 
	job_save_as_image_list): remove g_idle_add calls to avoid
	critical warnings when updating save dialog (Fixes
	bug #327170).

2006-01-29  Lucas Rocha  <lucasr@gnome.org>

	* configure.in: post release version bump.

2006-01-29  Lucas Rocha  <lucasr@gnome.org>

	* configure.in, NEWS: Update for 2.13.90

2006-01-26  Lucas Rocha  <lucasr@gnome.org>

	* eog.desktop.in.in: make .desktop file to have
	GNOME;GTK; instead of just GNOME; (Fixes bug #328033).

2006-01-21  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-image.c: decrease READ_BUFFER_SIZE by 1
	to make it possible to view images from a SMB 
	shares (Fixes bug #326104). Solution from Felix 
	Riemann <felix@hsgheli.de>.

2006-01-16  Lucas Rocha  <lucasr@gnome.org>

	* configure.in: post release version bump.

2006-01-16  Lucas Rocha  <lucasr@gnome.org>

	* configure.in, NEWS: Update for 2.13.5
	* shell/eog-window.c (show_move_to_trash_confirm_dialog): 
	use ngettext for handling plurals (Fixes bug #327106).

2006-01-10  Lucas Rocha  <lucasr@gnome.org>

	* configure.in: post release version bump.

2006-01-10  Lucas Rocha  <lucasr@gnome.org>

	* configure.in, NEWS: Update for 2.13.4
	* MAINTAINERS: e-mail update.

2006-01-10  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-full-screen.c: prevent screensaver on
	fullscreen mode (Fixes bug #326369).

2006-01-10  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-scroll-view.c (paint_rectangle, 
	set_minimum_zoom_factor, set_zoom, set_zoom_fit,
	eog_scroll_view_get_zoom_is_min, eog_scroll_view_instance_init): 
	refresh	image section for very small images (Fixes bug #317641). 
	Also, the zoom out is locked when the image gets 1px wide. Patch 
	from Felix Riemann <felix@hsgheli.de> with contribution from 
	Claudio Saavedra <csaavedra@alumnos.utalca.cl>.

2006-01-09  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-gtk-ui.xml, shell/eog-window.c: new delete
	confirmation dialog that only appears when using Del accel
	to remove an image (Fixes bug #322884). Patch from
	Jaap A. Haitsma <jaap@haitsma.org> with some fixes and 
	refactoring.

2006-01-07  Lucas Rocha  <lucasr@gnome.org>

	* libeog/eog-canvas-pixbuf.c, libeog/eog-collection-item.c,
	libeog/eog-full-screen.c, libeog/eog-image-cache.c,
	libeog/eog-image-list.c, libeog/eog-image-save-info.c,
	libeog/eog-image.c, libeog/eog-info-view-detail.c,
	libeog/eog-info-view-exif.c, libeog/eog-info-view-file.c,
	libeog/eog-info-view.c, libeog/eog-job.c,
	libeog/eog-metadata-reader.c, libeog/eog-scroll-view.c,
	libeog/eog-transform.c, libeog/eog-uri-converter.c,
	libeog/eog-wrap-list.c, shell/eog-file-chooser.c,
	shell/eog-window.c: replace GNOME_CLASS_BOILERPLATE macros in
	libeog with the	G_DEFINE_TYPE macros. Patch by Felix Riemann
	<felix@hsgheli.de>.

2006-01-07  Lucas Rocha  <lucasr@gnome.org>

	* shell/recent-files/egg-recent-item.c,
	shell/recent-files/egg-recent-model.c,
	shell/recent-files/egg-recent-util.c,
	shell/recent-files/egg-recent-util.h,
	shell/recent-files/egg-recent-view-bonobo.c,
	shell/recent-files/egg-recent-view-bonobo.h,
	shell/recent-files/egg-recent-view-gtk.c,
	shell/recent-files/egg-recent.h: Sync from 
	latest libegg.

2006-01-07  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-window.c: resize window according to the
	image dimensions (Fixes bug #323204). Also, now there's a 
	"minimal" window size that will be used if the image is 
	smaller than that.

2005-12-28  Abel Cheung  <maddog@linuxhall.org>

	* configure.in: Added "zh_HK" to ALL_LINGUAS.

2005-12-19  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-gtk-ui.xml, shell/eog-window.c: add BackSpace
	accel for previous image action (Fixes bug #324088).

2005-12-13  Lucas Rocha  <lucasr@gnome.org>

	* configure.in: Fix GTK+ dependency version. Now EOG depends on 
	GTK+ >= 2.7.1 (Fixes bug #324149).

2005-12-12  Tim Gerla  <tim@gerla.net>

	* configure.in, NEWS, ChangeLog: update for 2.13.3, post-release
	bump to 2.13.4.

2005-12-01  Lucas Rocha  <lucasr@gnome.org>

	* shell/eog-gtk-ui.xml, shell/eog-window.c: add Return 
	accelerator for Next Image and Shift+Return and Shift+SpaceBar
	accelerators for Previous Image. Split verb_GoPrev_cb into 
	four simpler functions (Fixes bug #322593). Patch from 
	Jaap A. Haitsma <jaap@haitsma.org>

2005-12-01  Lucas Rocha  <lucasr@gnome.org>

	* README: fix maintainer list order.

2005-12-01  Lucas Rocha  <lucasr@gnome.org>

	* README, AUTHORS: Update and UTF-8 encoding.

2005-11-18  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-canvas-pixbuf.c, libeog/eog-collection-item.c,
	libeog/eog-full-screen.c, libeog/eog-image-cache.c,
	libeog/eog-image-list.c, libeog/eog-image-private.h,
	libeog/eog-image-save-info.c, libeog/eog-image.c,
	libeog/eog-image.h, libeog/eog-info-view-detail.c,
	libeog/eog-info-view-exif.c, libeog/eog-info-view-file.c,
	libeog/eog-info-view.c, libeog/eog-job-manager.c,
	libeog/eog-job.c, libeog/eog-metadata-reader.c,
	libeog/eog-pixbuf-util.c, libeog/eog-scroll-view.c,
	libeog/eog-transform.c, libeog/eog-uri-converter.c,
	libeog/eog-uri-converter.h, libeog/eog-wrap-list.c,
	libeog/uta.c, shell/eog-save-as-dialog-helper.c,
	shell/eog-window.c, libeog/Makefile.am: several code
	cleanups. Patch from Kjartan Maraas <kmaraas@gnome.org>.
	* libeog/eog-vertical-splitter.c, libeog/eog-vertical-splitter.h, 
	libeog/eog-horizontal-splitter.c, libeog/eog-horizontal-splitter.h:
	removed.

2005-11-17  Lucas Rocha  <lucasr@cvs.gnome.org>

	* eog.schemas.in: image information pane is disabled
	by default (Fixes bug #313672).

2005-11-17  Lucas Rocha  <lucasr@cvs.gnome.org>

	* shell/eog-window.c (verb_HelpAbout_cb): icon in about 
	dialog (Fixes bug #321665). Patch from Vincent Noel
	<vincent.noel@gmail.com>.

2005-11-13  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-wrap-list.c: (eog_wrap_list_select_single),
	(eog_wrap_list_key_press_cb): Use one single function when changing
	single selection instead of six too similar ones (Closes #321395). 
	Patch from Claudio Saavedra <csaavedra@alumnos.utalca.cl>.
	* libeog/eog-wrap-list.h: Added EogWrapListSelectChange enum and
	updated headers as needed.
	* shell/eog-window.c: (verb_Go_cb): Call new function 
	eog_wrap_list_select_single () instead old ones.

2005-11-13  Lucas Rocha  <lucasr@cvs.gnome.org>

	* configure.in: post release version bump.

2005-11-13  Lucas Rocha  <lucasr@cvs.gnome.org>

	* configure.in, NEWS: Update for 2.13.2
	* shell/eog-window.c: added my name to the maintainers list.

2005-11-13  Lucas Rocha  <lucasr@cvs.gnome.org>

	* eog.schemas.in (/apps/eog/ui/image_collection), 
	libeog/eog-config-keys.h (EOG_CONF_UI_IMAGE_COLLECTION): 
	added option for show/hide image collection pane.
	* libeog/eog-full-screen.c (eog_full_screen_key_press): 
	keybinding for slideshow is now F5.
	* libeog/eog-image-list.c, libeog/eog-image-list.h (
	eog_image_list_get_initial_pos, compare_uri_cb,
	eog_image_list_add_uris): new initial_pos attribute which
	holds the inicial position for wrap list. Also, a new uri
	list loading policy. When opening a single uri, load all
	images from the same dir; when opening more than one uri,
	load them as a collection; and when opening a dir, load
	all images inside it as a collection (Fixes bug #320542).
	* libeog/eog-wrap-list.c, libeog/eog-wrap-list.h (
	eog_wrap_list_select_first, eog_wrap_list_select_last,
	create_items_from_model: new methods to select first and
	last images. Use EogImageList initial_pos attribute to
	define the first item to select.
	* shell/eog-gtk-ui.xml, shell/eog-window.c (set_window_icon, 
	verb_FolderOpen_cb, verb_Go_cb, update_ui_visibility,
	eog_window_construct_ui, display_image_data, job_save_image_finished,
	update_status_bar), shell/main.c (user_wants_collection,
	job_prepare_model_finished, open_uri_list_cb): use image thumbnail
	as the window icon (Fixes bug #320245). Patch from Claudio Saavedra
	<csaavedra@alumnos.utalca.cl>. EOG UI rework: remove 'Open Folder'
	from 'File' menu; added 'Go' menu with prev/next/first/last image 
	operations and next/prev image in toolbar; moved rotation toolbar 
	items to the right edge; added an toggle item in 'View' menu to 
	show/hide image collection pane; removed 'Open' item from toolbar;
	no confirmation when opening more than one image at once (always
	open as a collection) (Fixes bug #148643); statusbar show the position
	of current image within a collection, not the number of selected 
	images.

2005-11-10  Lucas Rocha  <lucasr@cvs.gnome.org>

	* shell/eog-window.c: use fullscreen stock icon on Fullscreen
	menu item.

2005-11-09  Paolo Borelli  <pborelli@katamail.com>

	* libeog/eog-image.c (eog_image_real_load): don't stomp on an
	already	set GError. Fixes bug #320342.

2005-11-09  Lucas Rocha  <lucasr@cvs.gnome.org>

	* shell/eog-window.c (delete_image_real, show_delete_confirm_dialog):
	no confirmation dialog when deleting (moving to trash) a 
	image (Fixes bug #309046).

2005-11-07  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

	* shell/eog-window.c: (job_save_image_finished), (set_window_icon),
	(display_image_data): Resize image before using it as window icon if
	it is too big (Workaround that fixes bug #320245. See related gtk+ 
	bug #320909).

2005-11-06  Lucas Rocha  <lucasr@cvs.gnome.org>

	* shell/eog-window.c (verb_SetAsWallpaper_cb, 
	eog_file_launch_desktop_file, launch_desktop_item, 
	update_selection_ui_visibility,	handle_image_selection_changed): 
	add option to use an image as the desktop wallpaper (Fixes 
	bug #140768). Patch from Nirmal Kumar <reach2nirmal@gmail.com> 
	with several changes.
	* configure.in: added gnome-desktop dependency.
	* shell/eog-gtk-ui.xml: new "Set As Wallpaper" Image menu
	item.

2005-11-05  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-scroll-view.c (display_key_press_event): 
	Page Up and Page Down keys scroll images up and 
	down (Fixes bug #152364).

2005-11-03  Lucas Rocha  <lucasr@cvs.gnome.org>

	* shell/eog-window.c: fix build error (Fixes bug #320616).

2005-11-03  Lucas Rocha  <lucasr@cvs.gnome.org>

	* shell/eog-gtk-ui.xml, shell/eog-window.c, shell/main.c:
	remove useless "New Window" action item from File menu and 
	toolbar as part of UI rework.

2005-11-03  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-image.c, libeog/eog-scroll-view.c,
	libeog/eog-thumbnail.c, shell/eog-preferences.c,
	shell/eog-window.c, shell/main.c: several build warning
	fixes (Fixes bug #318020). 

2005-11-01  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-full-screen.c: make F9 key only cancel slide
	show and F11 only cancel fullscreen mode.
	* shell/eog-window.c (verb_FullScreen_cb): string comparison
	with g_ascii_strcasecmp().

2005-11-01  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-scroll-view.c, shell/eog-window.c: on single
	image view, default focus on scroll-view. On collection view,
	default focus on wrap-list (Fixes bug #169836).

2005-11-01  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-scroll-view.c: make it possible to use '='
	or '+' for zooming in (Fixes bug #320367).

2005-10-30  Lucas Rocha  <lucasr@cvs.gnome.org>

	* shell/eog-gtk-ui.xml, shell/eog-window.c: added 
	accelerators from numerical keypad for zooming in 
	and out (Fixes bug #315183). Patch from Felix Riemann 
	<felix@hsgheli.de>.

2005-10-30  Lucas Rocha  <lucasr@cvs.gnome.org>

	* shell/eog-window.c: make scrollbar buttons work in 
	thumbnails pane (Fixes bug #124653). Patch from
	Juan Carlos Inostroza <jci@tux.cl>.

2005-10-29  Lucas Rocha  <lucasr@cvs.gnome.org>

	* eog.glade, eog.schemas.in, libeog/eog-config-keys.h,
	libeog/eog-full-screen.c, libeog/eog-full-screen.h,
	shell/eog-preferences.c, shell/eog-window.c: implement
	a more consistent fullscreen/slide show behavior. Checkbox 
	that activate/deactivate the automatic image switching removed 
	from preferences (and from gconf schema) because slide show 
	always do that. After starting a slide show (F9), the only keys 
	the user can use are those that stop the show. Fullscreen (F11) 
	can be activated in a single image or collections. On fullscreen 
	mode, the user can use keys to switch to next, previous, first
	and last images and exiting fullscreen (Fixes bug #317392).

2005-10-28  Lucas Rocha  <lucasr@cvs.gnome.org>

	* shell/eog-window.c: window icon is a thumbnail 
	of the image (Fixes bug #311720).

2005-10-28  Lucas Rocha  <lucasr@cvs.gnome.org>

	* eog.desktop.in.in, shell/eog-window.c, shell/main.c:
	use intuitive generic image viewer icon instead of EOG 
	icon (Fixes bug #167087).

2005-10-27  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-info-view.c: fix width of the information 
	pane that was too small (Fixes bug #313674). Patch
	from Ed Catmur <ed@catmur.co.uk>.

2005-10-25  Lucas Rocha  <lucasr@cvs.gnome.org>

	* configure.in: post release version bump.

2005-10-25  Lucas Rocha  <lucasr@cvs.gnome.org>

	* configure.in, NEWS: Update for 2.13.1
	* MAINTAINERS: added my name.

2005-10-24  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-thumbnail.c: fix crash when adding new 
	non-image files	to a directory eog watches (Fixes bug
	#311925) and when trying to view a PNG image with a 
	JPEG extension (Fixes bug #316808). Patch from 
	Callum McKenzie <callum@physics.otago.ac.nz>

2005-10-23  Lucas Rocha  <lucasr@cvs.gnome.org>

	* configure.in: change X development libraries checking to
	work on every platform (Fixes bug #317828). Patch from 
	Christophe Belle <christophe.belle@bull.net>.

2005-10-23  Lucas Rocha  <lucasr@cvs.gnome.org>

	* shell/eog-window.c, shell/main.c: fix crash when trying
	to view an image from recent list that doesn't exist 
	anymore (Fixes bug #312448 with contribution from
	Claudio Saavedra <csaavedra@alumnos.utalca.cl>).

2005-10-22  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-window.c: Ctrl+I keybinding to show/hide
	Image Properties bar (Fixes bug #307188).

2005-10-22  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-window.c: update "recent files" when viewing
	images (Fixes bug #316004).

2005-10-22  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-image-jpeg.c: fix RGBA->RGB conversion when saving
	PNG images to JPEG (Fixes bug #314742). Patch from Felix Riemann 
	<felix@hsgheli.de>.

2005-10-17  Lucas Rocha  <lucasr@cvs.gnome.org>

	* eog.desktop.in.in: Add image/svg+xml to the list of supported
	file types. Closes bug #314566.

2005-10-13  Tim Gerla  <tim+gnomebugs@gerla.net>

	* configure.in: Post-release-bump version to 2.13.0.

2005-10-12  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-image.c, libeog/eog-wrap-list.c, shell/eog-window.c:
	Update window title when saving in another location (Fixes bug #318318).
	Asks to overwrite target file instead of source when 'Saving
	as' (Fixes bug #162627 with contribution from Gustavo Noronha). 
	Don't crash when removing images from a	collection (Fixes bug #313003).
	* shell/eog-file-chooser.c: no "Open in new window" option on
	save action. Fixes bug #318734.

2005-10-03  Tim Gerla  <tim+gnomebugs@gerla.net>

	* configure.in, NEWS: Update for 2.12.1
	* libeog/eog-image.c, libeog/eog-thumbnail.c: Fix
	  a couple of crashing bugs. Fixes bugs #313892 and
	  #313397. Patches from lucasr.at.mundo@gmail.com.
	* shell/eog-window.c: Update the statusbar correctly.
	  Fixes bug #317757, patch from lucasr.at.mundo@gmail.com.

2005-09-04  Tim Gerla  <tim+gnomebugs@gerla.net>

	* configure.in, NEWS: Update for 2.12.0

2005-09-03  Ryan Lortie  <desrt@desrt.ca>

	* shell/eog-window.c (eog_window_construct_ui): Don't allow the file
	 information side pane to expand beyond its original size.  This
	 causes the image to not be initially displayed at 100% zoom.  Fixes
	 bug #315189 and bug #313674.

2005-08-31  Baris Cicek <baris@teamforce.name.tr>

	* configure.in: Added ku to ALL_LINGUAS

2005-08-23  Lucas Rocha  <lucasr@cvs.gnome.org>

	* libeog/eog-image.c: fixes bug #311086.

2005-08-21  Tim Gerla  <tim+gnomebugs@gerla.net>

	* configure.in, NEWS: Update for 2.11.92

2005-08-17  Maxim Dziumanenko <mvd@mylinux.ua>

	* configure.in: 
	* help/Makefile.am:
	* help/uk*:
	Added Ukraininian translation of the manual.

2005-08-09  Tim Gerla  <tim+gnomebugs@gerla.net>

	* libeog/eog-job-manager.c: Apply patch from Ross Burton 
	<ross@burtonini.com> which stops creating joinable threads
	when the threads are never joined. This saves 8M from the
	virtual address space for every thread created, and never
	returned.

2005-08-03  Tim Gerla  <tim+gnomebugs@gerla.net>

	* AUTHORS, shell/eog-window.c: Update authors list.

2005-07-26  Tim Gerla  <tim+gnomebugs@gerla.net>

	* configure.in, NEWS: Update for 2.11.90

2005-07-25  Ross Burton  <ross@burtonini.com>

	* libeog/eog-image.c:
	Re-implement the error handler.

2005-07-25  Ross Burton  <ross@burtonini.com>

	* libeog/eog-image.c:
	Register an error handler as otherwise LCMS will abort on error.

2005-07-25  Ross Burton  <ross@burtonini.com>

	* libeog/eog-image.c:
	Only try and extract a profile from an image if there is a
	metadata reader.

2005-07-25  Tim Gerla  <tim@gerla.net>

	* libeog/eog-full-screen.[ch], shell/eog-window.c:
	Patch from Davyd Madeley <davyd@madeley.id.au> to
	fix some dual-screen bugs. Fixes bug #309100.

2005-07-14  Philip Van Hoof  <pvanhoof@gnome.org>

	* shell/eog-window.c: Renamed "Preview" to "Print Preview"
	fixes Bug 310470
	* libeog/eog-image.c, libeog/eog-image.h, libeog/eog-info-view.c, 
	shell/eog-window.c: Fix for Bug 310463

2005-07-15  Paolo Borelli  <pborelli@katamail.com>

	* move the eog-file-chooser and the save dialog helpers from
	libeog to the shell, since they are specific to the eog app.

2005-07-14  Philip Van Hoof  <pvanhoof@gnome.org>

	* configure.in, libeog/eog-image.c, libeog/eog-image.h,
	shell/eog-gtk-ui.xml, shell/eog-window.c: Printing support
	* libeog/eog-image.c: Bugfix for Bug #310351
	* shell/main.c: Patch from Paolo Borelli to address Bug# 310352
	
2005-07-14  Ross Burton  <ross@burtonini.com>

	* libeog/eog-image.h:
	* libeog/eog-image-private.h:
	Wrap lcms includes in HAVE_LCMS.

2005-07-14  Ross Burton  <ross@burtonini.com>

	* shell/eog-window.c:
	Don't assert when there are no images to display (patch from Paolo
	Borelli)

2005-07-14  Ross Burton  <ross@burtonini.com>

	* shell/eog-window.c:
	Wrap lcms includes in HAVE_LCMS.

2005-07-13  Tim Gerla  <tim@gerla.net>

	* More patches from Ross Burton improving the ICC profile support
	and make linking against -llcms optional.

2005-07-11  Tim Gerla  <tim@gerla.net>

	* Apply patches from Ross Burton <ross@burtonini.com> to add ICC
	color profile support.

2005-07-10  Tim Gerla  <tim@gerla.net>

	* Apply patches from Philip Van Hoof <pvanhoof@gnome.org> to
	update the folder of viewed images on filesystem changes.
	Closes bug #308634.

2005-07-09  Tim Gerla  <tim@gerla.net>

	* Apply patch from Paolo Borelli <pborelli@katamail.com> to remove
	eog-hig-dialog.[ch] and replace with gtk 2.6 calls. Closes bug #309376.
	* shell/eog-gtk-ui.xml, shell/eog-window.c: Apply patch from
	Jaap A. Haitsma <jaap@haitsma.org> to use Ctrl-= to zoom in and Ctrl-0
	to go to "Normal Size". Closes bug #109412.

2005-07-01  Tim Gerla  <tim@gerla.net>

	* configure.in, eog-info-view-exif.c: remove support for very old
	libexif version 0.5.12.
	* Apply patch from Paolo Borelli <pborelli@katamail.com> to rework
	the statusbar to new Gtk API. Closes bug #309118.
	* Update NEWS for 2.11.0.
	* CVSVERSION, DEPENDS: Removed.
	* MAINTAINERS: Added my name.
	* shell/recent-files/Makefile.am: Added missing files.
	* Makefile.am: Add logic stolen from gnome-panel to make distcheck work
	without complaining about scrollkeeper files. A few more fixes to make
	distcheck pass.

2005-06-25  Diego Gonzalez <diego@pemas.net>

	* eog.glade: fix a couple typo introduced in the last commit.

2005-06-25  Tim Gerla  <tim@gerla.net>

	* eog.glade, shell/eog-preferences.c: Apply patch from
	  Paolo Borelli <pborelli@katamail.com> to use GtkColorButton
	  instead of the deprecated widget GnomeColorPicker.

2005-06-24  Dennis Cranston <dennis_cranston@yahoo.com>

	* eog.glade: HIGify the preference dialog.

2005-06-24  Tim Gerla  <tim@gerla.net>

	* eog.glade, shell/eog-preferences.c, shell/eog-preferences.h:
	Apply patch from Paolo Borelli <pborelli@katamail.com> to
	make preferences and help dialog launch in the center of the
	parent window. Closes bug #144631.
	* shell/eog-window.c: Patch from Paolo Borelli to fix miscalculated
	zoom amount. Closes bug #308910.
	* libeog/eog-scroll-view.c, libeog/eog-scroll-view.h,
	shell/eog-window.c: Another patch from Paolo Borelli to
	desensitize zoom in/out buttons at max/min zoom levels.

2005-06-24  Kjartan Maraas  <kmaraas@gnome.org>

	* libeog/test-eog-job.c: (test_jobs):
	* shell/eog-window.c: (eog_window_drag_data_received),
	(obtain_desired_size): #if 0 some unused code and fix
	compiler warnings.

2005-06-24  Tim Gerla  <tim@gerla.net>

	* libeog/eog-image.c: Add patch to fix building with
	--without-jpeg flag from foser@gentoo.org. Closes bug #158067.
	* shell/eog-gtk-ui.xml, shell/eog-window.c: Add patch from
	murali2k5@gmail.com to move some image operations from the Edit
	menu to a new Image menu. Closes bug #152367.
	* shell/Makefile.am: add $LIBJPEG to eog_LDADD to fix AIX 5
	compilation problem reported and patched by
	christophe.belle@bull.net (christophe belle). Closes bug #160937.

2005-06-24  Kjartan Maraas  <kmaraas@gnome.org>

	* shell/recent-files/egg-recent-item.c: (egg_recent_item_new),
	(egg_recent_item_new_from_uri), (egg_recent_item_update_mime_type),
	(make_valid_utf8), (egg_recent_item_get_short_name),
	(egg_recent_item_set_mime_type), (egg_recent_item_get_mime_type):
	* shell/recent-files/egg-recent-item.h:
	* shell/recent-files/egg-recent-model.c:
	(egg_recent_model_write_raw), (egg_recent_model_changed_timeout),
	(egg_recent_model_lock_file), (egg_recent_model_unlock_file),
	(egg_recent_model_finalize), (egg_recent_model_add_full):
	* shell/recent-files/egg-recent-util.c: (load_icon_file),
	(egg_recent_util_get_icon):
	* shell/recent-files/egg-recent-view-bonobo.c:
	* shell/recent-files/egg-recent-view-gtk.c:
	(egg_recent_view_gtk_clear), (egg_recent_view_gtk_new_separator),
	(egg_recent_view_gtk_new_menu_item),
	(egg_recent_view_gtk_set_list), (egg_recent_view_gtk_set_property),
	(egg_recent_view_gtk_get_property), (egg_recent_view_gtk_finalize),
	(egg_recent_view_gtk_class_init), (egg_recent_view_gtk_init),
	(egg_recent_view_gtk_set_label_width),
	(egg_recent_view_gtk_get_label_width),
	(egg_recent_view_gtk_set_menu):
	* shell/recent-files/egg-recent-view-gtk.h:
	* shell/recent-files/egg-recent-view.c:
	* shell/recent-files/egg-recent.h: Sync from latest libegg

2005-06-23  Tim Gerla  <tim@gerla.net>

	* shell/eog-window.c: Applied patch from Murali k <murali2k5@gmail.com>
	to change a message string to match tense. Closes bug #164300.

	* libeog/*.c, shell/*.c: 
	Apply patch from Kjartan Maraas <kmaraas@gnome.org>:
	config.h has to be the first file included in a .c file and
	it must not be included more than once else you get undefined
	behaviour and broken translations etc. This patch fixes this up,
	along with a couple of other minor memory-management bugs.
	Closes bug #300647.

2005-06-22  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Bump version to 2.11.x
	* eog.desktop.in.in: Add image/x-pcx to the list of supported
	file types. Closes bug #301471. "patch" by <hadess at hadess net>

2005-06-22  Kjartan Maraas  <kmaraas@gnome.org>

	* libeog/eog-job-manager.c: (eog_job_manager_add): Patch to fix
	C99ism. Closes bug #308466. Patch from Behdad Esfahbod.

2005-06-18  Tor Lillqvist  <tml@novell.com>

	* shell/main.c (get_installation_subdir, eog_get_datadir,
	eog_get_icondir, eog_get_localedir): [Win32] New functions, used
	to implement run-time lookup of DATADIR, ICONDIR and LOCALEDIR,
	instead of using configure-time paths. Use them by redefining the
	macros.

	* shell/util.h: [Win32] Declare eog_get_datadir() and
	eog_get_icondir().

	* shell/eog-preferences.c
	* shell/eog-window.c: Use them here, too.

	* shell/Makefile.am (INCLUDES): Pass also $prefix to the
	compilation.

	* libeog/Makefile.am (INCLUDES): Remove unused GNOMELOCALEDIR and
	EOG_DATADIR definitions.

2005-06-17  Tor Lillqvist  <tml@novell.com>

	Port to Windows, not because there wouldn't be enough good image
	viewers on Windows already, but mostly to have a relatively simple
	testbed for the libraries that eog uses.

	* configure.in: Don't do the X11 checks unless GTK target is
	X11. Check for fsync().

	* Makefile.am (install-data-local): Workaround MSYS feature.

	* shell/Makefile.am
	* libeog/Makefile.am
	* shell/main.c: Rename DATADIR to EOG_DATADIR as the
	mindbogglingly wildly namespace-stomping Windows headers that
	gnome-vfs-address.h drags in clash with DATADIR.

	* */Makefile.am: Link with LIBJPEG.

	* libeog/eog-full-screen.c
	* shell/eog-window.c: Conditionalize use of X11 and Unix API. No
	attempt to do the corresponding things on Win32 yet, so the
	behaviour might not be similar.

	* libeog/eog-image-jpeg.c: On Win32 use plain setjmp and longjmp.

	* libeog/test-eog-job.c: Use g_usleep() instead of sleep().

	* shell/main.c: Don't call gnome_authentication_manager_init() on
	Windows, hasn't been ported yet, if ever.

	* shell/recent-files/egg-recent-model.c: Bypass use of lockf() on
	Windows.

	* shell/recent-files/egg-recent-util.c: Use GetComputerName()
	instead of gethostname() on Windows. (There is a gethostname() in
	WinSock, but it seems unnecessary to drag in WinSock just for
	that.)

2005-06-06  Abduxukur Abdurixit <abduxukur.abdurixit@t-systems.ch>

	* configure.in: Added "ug" to ALL_LINGUAS.

2005-05-29  Jens Finke  <jens@triq.net>

	* MAINTAINERS: Removed myself.
	* TODO: Some notes about stuff I've worked on at last.

	My last commit. See also 
	http://mail.gnome.org/archives/eog-list/2005-May/msg00001.html

2005-05-10  Jens Finke <jens@triq.net>

	* libeog/eog-image.c (eog_image_real_load): Check gdk_pixbuf_writer_close 
	for errors. Part of the fix for #155553.

2005-04-12 Naveen and Team  <naveenchandranv@gmail.com >

	* shell/eog-window.c: Changed 'New' menu item to 'New Window'.
	  Fixes bug #161391.

2005-04-12  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (verb_HelpAbout_cb): Use GtkAbout dialog.
	(raise_and_focus): Removed.
	Based on a patch by Kristof Vansant, fixes #166620.	

2005-04-11  Jens Finke  <jens@triq.net>

	* eog.glade: Added checkbox to disable auto switching of images in slideshow.	

	* eog.schemas.in: New key full_screen/auto_advance

	* shell/eog-preferences.c (check_auto_advance_toggle_cb): Disable spin button 
	when unchecked, otherwise enable it.
	
	* libeog/eog-fullscreen.c (eog_full_screen_new): Auto advance of images depend 
	on auto_advance gconf key, not whether seconds are greater zero.

2005-04-11  Jens Finke  <jens@triq.net>

	* shell/eog-gtk-ui.xml: Added Slideshow item to View menu.
	* shell/eog-window.c (update_ui_visibility): Enable/disable Fullscreen and 
	Slideshow actions properly.
	(get_ui_description_file): New function to ease ui development.
	Fixes #161866.

2005-04-05  Jens Finke  <jens@triq.net>

	* libeog/eog-collection-item.c (get_item_image_caption): Escape caption before 
	setting as markup string in text item. Fixes #164163.
	
2005-04-05  Jens Finke  <jens@triq.net>

	* libeog/eog-file-selection.c (set_preview_pixbuf),
	* shell/eog-window.c (update_status_bar),
	* shell/main.c (user_wants_collection): Use ngettext where useful.
	Fixes #149525, #150636.

2005-04-05  Jens Finke  <jens@triq.net>

	* help/de/eog-de.omf
	* help/fr/eog-fr.omf: Removed extranous bytes at the start of file. 
	Fixes #117862.

2005-04-05  Jens Finke  <jens@triq.net>

	* libeog/eog-uri-converter.c (eog_uri_converter_check): Replacing 'disjunct' by
	'not all equal'. Fixes #148912.

2005-04-05  Jens Finke  <jens@triq.net>

	* eog.desktop.in.in: Better comment. Fixed #166910.

2005-03-31  Steve Murphy  <murf@e-tools.com>

	* configure.in: Added "rw" to ALL_LINGUAS.

2005-03-21  Kristof Vansant  <de_lupus@pandora.be>
	
	* autogen.sh: Require automake 1.7.
	Fixes bug #166854.

2005-03-21  Vincent Noel <vincent.noel@gmail.com>
	
	* shell/main.c (main): Use gtk_window_set_default_icon.
	Fixes bug #167081.

2005-03-21  Paolo Borelli <pborelli@katamail.com>

	* libeog/eog-image.c (eog_image_real_load): Fix memory leak.
	Fixes bug #159575.
	
2005-03-21  Danilo Šegan  <dsegan@gmx.net>

	* libeog/Makefile.am: s/MARSHAL_SOURCES/MARSHAL_OUTPUT/.
	Fixes bug #171113.

2005-03-21  Jens Finke  <jens@triq.net>

	* libeog/eog-info-view-exif.c (eog_info_view_exif_instance_init):
	Use translation for exif categorie labels.

2005-03-21  Jens Finke  <jens@triq.net>

	* libeog/eog-info-view-file.c (eog_info_view_file_instance_init):
	Use translation for attribute names.

2005-03-21  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (add_short_labels),
	(eog_window_construct_ui): Make short toolbar item labels translatable.

2005-03-18  Jens Finke  <jens@triq.net>
	
	* libeog/eog-wrap-list.c (add_image): Place item outside visible area until
	its final position is determined.

2005-03-18  Jens Finke  <jens@triq.net>

	* libeog/eog-full-screen.c (disable_screen_saver),
	(eog_full_screen_show), (eog_full_screen_hide): Disable xscreensaver during
	auto advance slideshows.

2005-03-15  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (get_window_decoration_size): New function.
	(obtain_desired_size): In case of single image adapt window size so that
	the image fills the window completely.
	(setup_initial_geometry): Ensure that window has usable size.

2005-03-14  Jens Finke  <jens@triq.net>

	* Merged the experimental-job-mgr branch back to head.

===== experimental-job-mgr merge ================

2005-03-14  Jens Finke  <jens@triq.net>

	* eog.schemas.in: New keys for saving window geometry.
	
	* shell/eog-window.c: Save window geometry and restore it on load.
	
	* shell/main.c: Create empty windows more simple. 

2005-03-14  Jens Finke  <jens@triq.net>

	* libeog/eog-image-list.c (eog_image_list_add_uris):
	Joined _add_directory and _add_files functions. 
	
	* libeog/eog-wrap-list.c: Don't wait for model prepare
	signal, create collection items directly when model is set.

	* shell/eog-window.c (eog_window_open): Requires an
	eog_image_list model object.
	
	* shell/main.c: Create and prepare EogImageList aka model before
	opening a new EogWindow. 

2005-03-04  Adi Attar  <aattar@cvs.gnome.org>

	* configure.in: Added "xh" to ALL_LINGUAS.

2005-02-11  Vincent Noel  <vnoel@cox.net>

	* shell/eog-preferences.c:
	* shell/main.c:
	* shell/util.c: Second part of bug #166849.

2005-02-11  Vincent Noel  <vnoel@cox.net>

	* libeog/eog-file-selection.c:
	* libeog/eog-image-jpeg.c:
	* libeog/eog-image-list.c:
	* libeog/eog-image.c:
	* libeog/eog-info-view-exif.c:
	* libeog/eog-info-view-file.c:
	* libeog/eog-info-view.c:
	* libeog/eog-save-as-dialog-helper.c:
	* libeog/eog-save-dialog-helper.c:
	* libeog/eog-uri-converter.h: Replace gnome-i18n.h by
	gi18n.h. Fixes #166849. Patch from Kristof Vansant.

2005-01-10  Jens Finke  <jens@triq.net>

	* libeog/eog-image-list.[ch] (eog_image_list_add_directory),
	(eog_image_list_add_files),	
	* shell/eog-window.[ch] (eog_window_open),
	(eog_window_open_list): Take GnomeVFSURI as argument, 
	instead of text uris.

	* shell/main.c (sort_files): Create lists of GnomeVFSURI objects.
	
	* shell/session.c (load_uri_with_role): Adapt to eog_window_open
	 changes.

2005-01-10  Jens Finke  <jens@triq.net>

	* shell/main.c,
	* shell/eog-window.[ch]
	* shell/session.c: Code cleanup.

2005-01-06  Jens Finke  <jens@triq.net>

	* libeog/Makefile.am (SOURCES): Added eog-thumbnail.[ch].

	* libeog/eog-collection-item.c: Use EogJob and new
	thumbnail API for creating thumbnails.

	* libeog/eog-image.[ch]: Moved thumbnail creation to 
	eog_thumbnail.[ch].
	(eog_image_load_thumbnail): Removed.
	(eog_image_set_thumbnail): New function.

	* libeog/eog_thumbnail.[ch]: New files.

	* shell/main.c (main): Init thumbnail factory.

2005-01-06  Jens Finke  <jens@triq.net>

	* libeog/eog-job-manager.c: Use GQueue data structure.
	Added job priority handling.

	* libeog/eog-job.[ch]: Allow setting of job priority.

	* shell/eog-window.c (handle_image_selection_changed):
	Set high job priority.

2005-01-03  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (eog_window_construct_ui):
	Make sure info view is completely visible.
	Patch by Naveen & Team, bug #162164.

2005-01-03  Jens Finke  <jens@triq.net>

	* shell/eog-window.c: Use short labels for toolbar items.

2005-01-03  Jens Finke  <jens@triq.net>

	* libeog/eog-full-screen.c: Use EogJob API

	* libeog/eog-image-cache.[ch]: Reworked, inherits from
	GObject now.

2005-01-03  Jens Finke  <jens@triq.net>

	* libeog/eog-job-manager.c: Let threads waiting
	for next job after finishing a job.

2005-01-03  Jens Finke  <jens@triq.net>

	* libeog/eog-image.[ch],
	* libeog/eog-image-private.h: (eog_image_data_ref),
	(eog_image_data_unref): New functions.
	Removed EogImageCache dependency.

	* shell/eog-window.c,
	* libeog/eog-info-view.c,
	* libeog/eog-scroll-view.c: Use new data (un)ref 
	functions.
	
	* libeog/eog-image-list.c (eog_image_list_iter_equal):
	Don't abort if iter is NULL.

2004-12-19  Jens Finke  <jens@triq.net>

	* libeog/eog-image.[ch] (eog_image_save_by_info),
	(eog_image_save_as_by_info): Add EogJob to signature.
	(eog_image_save): Removed deprecated function.

	* libeog/eog-job.c (eog_job_dispose): Lock mutex when 
	freeing user data.

	* libeog/eog-save-dialog-helper.[ch]: Splitted dialog update
	process into three new functions 

	* shell/eog-window.c: Reworked Save and SaveAs functions to
	work with new EogJob API.

2004-12-14  Jens Finke  <jens@triq.net>

	* shell/eog-window.c: Use EogJob API for image 
	transformations.
	* libeog/eog-image.c (image_transform): Don't emit changed
	signal automatically.
	* libeog/eog-scroll-view.c (eog_scroll_view_set_image):
	Connect to image changed signal.

2004-12-13  Jens Finke  <jens@triq.net>

	* libeog/eog-info-view.c,
	* libeog/eog-scroll-view.c: Ported to new EogJob API.	

	* shell/eog-window.c: Make it compilable again,
	(handle_image_selection_changed): Ported to new EogJob API.

2004-12-13  Jens Finke  <jens@triq.net>

	This patch breaks eog. Only the new test
	programs will be build. They outline how the new 
	EogJob framework should be used.

	* libeog/test-eog-job.c,
	* libeog/test-image-load.c,
	* libeog/Makefile.am: New test programs.

	* libeog/eog-image-private.h,
	* libeog/eog-image.h,
	* libeog/eog-image.c: New image load API,
	which is compatible with EogJob framework.

	* libeog/eog-job.[ch]: 
	Improved job progress framework.

	* libeog/eog-metadata-reader.c 
	(eog_metadata_reader_finished): New function.

	* libeog/eog-transform.[ch] (eog_transform_apply):
	Adapted to job progress framework.

	* libeog/eog-info-view.c
	* libeog/eog-full-screen.c
	* libeog/eog-scroll-view.c: Commented out image loading functions.
	Just to let libeog.a build and allow building of the test programs.

2004-12-07  Jens Finke  <jens@triq.net>
	
	* libeog/eog-job.[ch]
	* libeog/eog-job-manager[ch]: New files.

===== experimental-job-mgr branch ================

2004-12-04  Jens Finke  <jens@triq.net>

	* libeog/eog-file-selection.c: (eog_file_selection_toggle_button_cb),
	(eog_file_selection_add_open_new_window): New functions.
	
	Add check box to let user decide to open an URI in the same window
	or open a new one.

2004-12-01  Jens Finke  <jens@triq.net>

	* libeog/eog-metadata-reader.c: AIX compilation fixes.
	Patch by Sandie Vanderme <sandie.vanderme@bull.net>. #159863

2004-11-30  Dwayne Bailey  <dwayne@translate.org.za>

	* configure.in: Added "zu" to ALL_LINGUAS.

====== 2.9.1 =====

2004-11-29  Jens Finke  <jens@triq.net>

	* NEWS: Updated.	

2004-11-29  Jens Finke  <jens@triq.net>

	* libeog/eog-scroll-view.c (set_zoom_fit): Respect allowed 
	min/max zoom factors.

	* shell/eog-window.c (eog_window_construct_ui): Set min widget size
	for scroll_view. 

2004-11-28  Dwayne Bailey  <dwayne@translate.org.za>

	* configure.in: Added "nso" to ALL_LINGUAS.

2004-11-25  Christoffer Olsen  <co@deworks.net>

	* configure.in: Generates eog.desktop.in, added eog.dekstop.in.in
	to AC_OUTPUT
	* eog.desktop.in: Moved to eog.desktop.in.in
	* eog.desktop.in.in: Added X-GNOME-Bugzilla-Version header
	* po/POTFILES.in: References eog.desktop.in.in instead

	- Added support for bug buddy version number autocompletion
	when filing bugs.

2004-11-15  James Henstridge  <james@jamesh.id.au>

	* libeog/eog-collection-item.c (eog_collection_item_construct):
	fix a bug setting the fill colour for the item's caption that was
	causing a crash on startup.  Fixes bug #155241.

2004-10-24  Jens Finke  <jens@triq.net>
	
	* eog.glade,
	* doc/C/eog.sgml,
	* libeog/eog-save-as-dialog.c,
	* shell/eog-preferences.c,
	* shell/eog-window.c,
	* shell/main.c: s/Eye of Gnome/Eye of GNOME
	Fixes #122544.

2004-10-24  Jens Finke  <jens@triq.net>

	* eog.schemas.in,
	* eog-config-keys.h:  Added keys for visibility of 
	info view.
	* eog-gtk-ui.xml: Added info view toggle.
	* eog-window.c (verb_ShowHideAnyBar_cb)
	(update_ui_visiblity): Consider info view updates.
	Partially fixes #154859.

2004-10-23  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (eog_window_construct_ui)
	(eog_window_new),
	* shell/main.c (create_new_window): Handle error, when	
	ui description file is not found.
	* shell/Makefile.am: Install eog-gtk-ui.xml in <datadir>/eog.	

2004-10-21  Paolo Borelli <pborelli@katamail.com>
	
	* libeog/eog-util.[ch]: New files, copy&pasted code from eel.
	* configure.in,
	* libeog/eog-image.c,
	* libeog/eog-save-dialog-helper.c: Removed eel library dependency.

2004-10-20  Vinay M R  <vinay.mandyakoppal@wipro.com>

	* shell/eog-preferences.c (eog_preferences_show): Added help_cb()
	to provide help support for Edit->Preferences.
	* eog.glade: Created the Help button.
	Edited the patch given by Shakti Sen  <shakti.sen@wipro.com>.
	Fixes the bug #131897

2004-10-20  Jens Finke  <jens@triq.net>

	* shell/eog-gtk-ui.xml,
	* shell/eog-window.c: Renamed all DirOpen occurences to FolderOpen.
	Fixes #137873. Patch by Kevin Duffus <kod1929@rit.edu>

====== 2.9.0 =====

2004-10-20  Fernando Herrera  <fherrera@onirica.com>

	* shell/main.c: (main): Initialize gnome-authentication-manager.
	Fixes #141851.

2004-10-20  Jens Finke  <jens@triq.net>	

	* shell/main.c: s/eel_uri_from_shell_arg/gnome_vfs_uri_from_shell_arg
	Patch by Paolo Borelli <pborelli@katamail.com>  - #155841

=====  2.8.2 ======

2004-10-11  Jens Finke  <jens@triq.net>

	* NEWS: updated

2004-09-26  Jens Finke  <jens@triq.net>

	* libeog/eog-full-screen.c (show_nth_image): New function.
	(prepare_data): Set first_iter always to the first iter of the 
	image list.
	(eog_full_screen_key_press): Enable Pos1 and End keys to switch
	 to start/end of the slideshow. Enable PageDown and PageUp keys 
	for browsing to next/previous image.

2004-09-26  Jens Finke  <jens@triq.net>

	* libeog/eog-image.h,
	* libeog/eog-image.c (eog_image_get_uri_for_display): New function.

	* shell/eog-window.c (save_error): Use eog_image_get_uri_for_display.

2004-09-26  Jens Finke  <jens@triq.net>
	
	This change re-introduce a string from the 2.6 series. Therefore 
	the po files required an update too. See po/ChangeLog for more details.

	* shell/eog-window.c (update_status_bar): New function.
	(handle_image_selection_changed),
	(view_zoom_changed_cb),
	(image_loading_finished_cb): Update status bar.

2004-09-18  Jens Finke  <jens@triq.net>

	* libeog/eog-save-as-dialog-helper.c (on_browse_button_clicked):
	Use gtk_file_chooser_get_uri.

2004-09-18  Jens Finke  <jens@triq.net>

	* shell/recent-files: Updated from libegg.

2004-09-18  Jens Finke  <jens@triq.net>
	
	* shell/eog-window.c (verb_FileExit_cb),
	(eog_window_key_press).
	* shell/eog-gtk-ui.xml:
	Removed quit function from file menu - #148755.

2004-09-18  Jens Finke  <jens@triq.net>

	* help/C/eog.xml,
	* help/C/figures/eog_save_as_window.png,
	* help/C/figures/eog_start_window.png: Updated. Now it really matches
	  eog 2.8.

2004-09-13  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (verb_DirOpen_cb): Use gtk_file_chooser_get_uris
	for retrieving folder uri. Fixes - #137164.

2004-09-12  Shaun McCance  <shaunm@gnome.org>

	* help/C/eog-C.omf:
	* help/C/eog.xml:
	- Updates for 2.8, thanks to Angela Boyle and Stuart Ellis

2004-09-12  Jens Finke  <jens@triq.net>
	
	* configure.in: Bumped version to 2.8.1

	* ChangeLog
	* po/ChangeLog: Set version markers

======= 2.8.1 =======

2004-09-12  Jens Finke  <jens@triq.net>

	* configure.in: Bumped version to 2.8.0

2004-09-11  Jens Finke  <jens@triq.net>
	
	* shell/eog-window.c (verb_SaveAs_cb): Don't unref an image in the single case.
	- Fixes #151982

2004-08-29  Jens Finke  <jens@triq.net>

	* libeog/eog-image.c,
	* libeog/eog-metadata-reader.c,
	* shell/eog-window.c: #ifdef'ed debug messages.
	(eog_window_has_contents): Check for image_list == NULL.

2004-08-29  Jens Finke  <jens@triq.net>

	* AUTHORS, MAINTAINERS: Updated files.

2004-08-26  Jens Finke  <jens@triq.net>

	* libeog/eog-collection-item.c (eog_collection_item_destroy): NULL image variable.
	
	* libeog/eog-image.c (load_emit_signal_done):
	* libeog/eog-wrap-list.c (eog_wrap_list_drag_data): Unref image.

	* shell/eog-window.c (eog_window_destroy): Free all image objects.
	(handle_image_selection_changed): Don't add ref to image.

2004-08-18  Jens Finke  <jens@triq.net>

	* configure.in: Bumped version to 2.7.2.

====== 2.8.0 ======

2004-08-18  Jens Finke  <jens@triq.net>

	* NEWS: updated

2004-08-18  Jens Finke  <jens@triq.net>

	* shell/recent-files/egg-recent.h: Remove eog-recent-view-bonobo.c

2004-08-18  Jens Finke  <jens@triq.net>

	* libeog/eog-uri-converter.c: Make it compile with gcc 2.95 - #150399.

2004-08-17  Jens Finke  <jens@triq.net>

	* libeog/eog-full-screen.c (eog_full_screen_new): Consider antialiasing setting.

	* shell/eog-window.c (interp_type_changed_cb), 
	  (transparency_changed_cb), 
	  (trans_color_changed_cb): New functions.
	  (eog_window_destroy): Remove gconf listeners.
	  (eog_window_init): Add gconf listeners.
	  (eog_window_update_properties): Read current gconf settings.

2004-08-16  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "bs" to ALL_LINGUAS.

2004-08-16  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Added nb to ALL_LINGUAS.

2004-08-16  Jens Finke  <jens@triq.net>

	* Deleted viewer/ directory.
	* Deleted collection/ directory.
	* Deleted libgpi/ directory.
	* Deleted idl/ directory.

2004-08-16  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (show_delete_confirm_dialog): Use ngettext - #149525.

	* shell/main.c: Fixed spelling - #149209. 

2004-08-02  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "or" to ALL_LINGUAS.

2004-07-28  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (handle_image_selection_changed): Set image filename
	  in title.
	  (slideshow_hide_cb): New function. Display last slideshow image in main 
	  window when returning from fullscreen mode.
	
2004-07-26  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (verb_FullScreen_cb): Start slideshow with 
	selected image. If multiple images are selected, display only these.

2004-07-26  Jens Finke  <jens@triq.net>

	* libeog/eog-hig-dialog.c (eog_hig_dialog_new): New window parameter.
	Other files adapted to new signature.

2004-07-26  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (save_as_file_selection_dialog): New function.
	(save_as_single_image): Assert that we can always determine
	the image format - #148190.

	* libeog/eog-pixbuf-util.[ch] (eog_pixbuf_get_format_by_vfs_uri),
	(eog_pixbuf_get_format_by_uri): New functions.

2004-07-26  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (add_eog_icon_factory): Don't free static
	GnomeProgram object. Fixes #148096

2004-07-25  Jens Finke  <jens@triq.net>

	* libeog/eog-wrap-list.c (model_image_removed): Force canvas update 
	before deleting GnomeCanvasItem. 

2004-07-25  Jens Finke  <jens@triq.net>
	
	* shell/main.c (show_nonexistent_files): Use format uri for display 
	for all files. Use ngettext - #148419.

2004-07-25  Jens Finke  <jens@triq.net>

	* shell/eog-window.c: Mark main menus for translation.
	(eog_window_construct_ui): Set translation domain for ui.

	* eog.glade: Removed dummy strings. 

2004-07-24  Grzegorz Golawski <grzegol@pld-linux.org>

	* configure.in: Check for libexif = 0.5.12 and newer versions.

	* libeog/eog-info-view-exif.c: Consider API changes with new libexif.

2004-07-23  Jens Finke  <jens@triq.net>

	* configure.in: Removed GPI and libgnomeprint related checks.

2004-07-23  Jens Finke  <jens@triq.net>

	* configure.in: Removed bonobo related checks.

	* libeog/accessible-image-view.c
	* shell/eog-window.c 
	* shell/main.c: Removed bonobo includes and remaining 
	source references.

	* shell/recent-files/Makefile.am,
	* shell/recent-files/egg-recent.h: Removed eog-recent-view-bonobo.[ch]

2004-07-22  Mason Kidd <mrkidd@mrkidd.com>

	* shell/eog-window.c: Added icon for About menu item - #148097.

2004-07-21  Ray Strode  <rstrode@redhat.com>

	* eog/eog.desktop.in: Add MimeType line to desktop file
	new mime sytem.

2004-07-20  Jens Finke  <jens@triq.net>

	* configure.in: Bumped version to 2.7.1.

====== 2.7.1 ======

2004-07-20  Jens Finke  <jens@triq.net>

	* configure.in: Check for libexif = 0.5.12. Don't create Makefiles in 
	libgpi, collection, viewer and idl directories.

	* Makefile.am: Removed libgpi, collection, viewer and idl
	from SUBDIRS.

	* libeog/Makefile.am: Removed CORBA/Bonobo stuff.

	* NEWS: Updated.
	
2004-07-20  Jens Finke  <jens@triq.net>

	* libeog/eog-image-list.c (list_insert_sorted_private): Create new list 
	if list argument is NULL.

2004-07-13  Jens Finke  <jens@triq.net>

	* shell/gtk-shell-ui.xml: Renamed to eog-gtk-ui.xml
	
	* shell/eog-shell-ui.xml: Removed.

	* shell/eog-window.c (eog_window_construct_ui),
	* shell/Makefile.am: Use new ui xml.

2004-07-13  Jens Finke  <jens@triq.net>

	Implemented delete function.

	* libeog/eog-image-list.c (list_insert_sorted_private),
	(eog_image_list_remove_image),
	(remove_image_private): New function.
	(add_image_private): Return inserted position.
	
	* libeog/eog-wrap-list.c (model_image_removed): Implemented.
	(do_update): Handle N_ITEMS_CHANGED hint.

	* shell/eog-window.c (show_delete_confirm_dialog),
	(delete_image_real),
	(verb_Delete_cb): New functions.
	
	* shell/gtk-shell-ui.xml: Delete item added.

2004-07-12  Pawan Chitrakar  <pawan@nplinux.org>

	* configure.in: Added ne Nepali in ALL_LINGUAS

2004-07-11  Jens Finke  <jens@triq.net>

	'Save As' for single and multiple files.

	* eog.glade: New "Save As" dialog.

	* libeog/Makefile.am: Build eog-uri-converter and eog-save-as-dialog-helper.

	* libeog/eog-file-selection.c: Removed 'overwrite file'-checks.
	Now better handled by EogImage.

	* liboeg/eog-image-save-info.c (get_save_file_type_by_uri): 
	simplified
	(eog_image_save_info_from_vfs_uri): New function.

	* libeog/eog-image.c (eog-image_copy_file),
	(tmp_file_move_to_uri): Do file-exists-check ourselves.
	(eog_image_save_as_by_info): Don't emit changed signal.

	* libeog/eog-pixbuf-util.[ch] (eog_pixbuf_get_format_by_suffix),
	(eog_pixbuf_get_common_suffix): New method.

	* libeog/eog-save-as-dialog-helper.c: Code cleanups, some fixes.

	* libeog/eog-save-dialog-helper.c: Display target filename if available.

	* libeog/eog-uri-converter.c (eog_uri_converter_parse_string):
	Don't loose last string chars.
	(eog_uri_converter_check): Set error message.

	* shell/eog-window.c: Implemented 'Save As' function.

2004-07-04  Jens Finke  <jens@triq.net>

	* libeog/eog-uri-converter.[ch],
	* libeog/eog-save-as-dialog-helper.[ch]:
	  New files for upcoming "Save As" rework.

2004-06-21  Jens Finke  <jens@triq.net>

	* libeog/eog-collection-item.c (ensure_max_string_width): Fix compiler
	  warning.

2004-06-18  Jens Finke  <jens@triq.net>

	* libeog/eog-image-jpeg.[ch]: Build without libexif. (#144591)

2004-06-17  Jens Finke  <jens@triq.net>

	* jpegutils/: Remove every source file but transupp.[ch].

	* libeog/eog-image-save-info.[ch]
	* libeog/eog-save-dialog-helper.[ch]: New files.

	* eog.glade: New save file dialog.

	* libeog/eog-metadata-reader.[ch]: Handle duplicated EXIF markers.

	* libeog/eog-image-jpeg.[ch],
	* libeog/eog-image.[ch],
	* shell/eog-window.c: Huge patch, reworked "Save" function
	completely.

2004-06-07  Mariano Suárez-Alvarez  <mariano@gnome.org>

	* shell/eog-window.c (eog_window_construct_ui): use
	gnome_program_locate_file to locate the xml ui description file.
	* shell/Makefile.am (UI_FILES): correct the name of the xml ui 
	description file.

2004-06-02  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (verb_Undo_cb): Implemented undo.

2004-06-02  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (add_eog_icon_factory): New function.
	(eog_window_construct_ui): Construct eog stock icon factory.

	* art/Makefile.am: Added stock-flip-horizontal-16.png,
	stock-flip-vertical-16.png.

2004-05-31  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (transformation_progress_cb),
	(apply_transformation),
	(verb_FlipHorizontal_cb),
	(verb_FlipVertical_cb), 
	(verb_Rotate90_cb),
	(verb_Rotate270_cb),
	(verb_Rotate180_cb): New functions.
	(eog_window_new): Don't try to set 'win_name' property.

	* shell/gtk-shell-ui.xml: Added remaining edit and save items.

2004-05-29  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "tk" to ALL_LINGUAS.

2004-05-27  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (verb_ZoomIn_cb),
	(verb_ZoomOut_cb),
	(verb_ZoomNormal_cb),
	(verb_ZoomFit_cb): New functions.
	(eog_window_construct_ui): Create functional different action
	groups. Added accelators
	(update_ui_visibility): Disable/enable action groups, depending on
	window state.

	* shell/gtk-shell-ui.xml: Added zoom and fullscreen items.
	
2004-05-27  Jens Finke  <jens@triq.net>

	* shell/eog-window.c (eog_window_open_uri),
	(eog_window_open_uri_list): Make recently used items work.
	(image_loading_finished_cb),
	(image_loading_failed_cb): New functions.
	(handle_image_selection_changed): (Dis-)connect to image signals.
	(adapt_window_size): Reworked.

2004-05-25  Jens Finke  <jens@triq.net>

	This is a fairly large patch, which makes fundamental changes. It
	is a work in progress and is not fully functional yet again. Use
	the BEFORE_GTK_UI_MANAGER_SWITCH tag to checkout the latest
	working version.
	
	* libeog/Makefile.am: Moved eog-wrap-list.[ch],
	eog-canvas-pixbuf.[ch], eog-collection-item.[ch] here.

	* collection/Makefile.am: Removed above files from here. Killed
	eog-collection-marshal.list.

	* shell/Makefile.am: Link with jpegutils.
	
	* shell/eog-window.c: Made this a GtkWindow, using GtkUIManager
	and related stuff. 

	* shell/gtk-shell-ui.xml: New file.

2004-05-11  Narayana Pattipati <narayana.pattipati@wipro.com>

	* collection/GNOME_EOG_Collection.server.in.in:
	Add viewer_label for Image Collection Viewer.
	Bugzilla bug#142347.

2004-05-07  Jens Finke  <jens@triq.net>

	* libeog/eog-metdata-reader.[ch]: New files.
	
	* libeog/Makefile.am (SOURCES): Added new files.
	
	* libeog/eog-image-private.h: Added attributes for exif/iptc raw data.
	
	* libeog/eog-image.c (real_image_load): Use EogMetadataReader object for
	obtaining image metadata.
	(check_for_metadata_img_format): New function.
	(load_emit_signal_info_done): Removed InfoDone signal emission.
	(eog_image_load): Always use EOG_IMAGE_LOAD_COMPLETE method 
	(significantly faster).
	(image_changed_cb): Do explicit ExifData* cast.
	(eog_image_free_mem_private): Free exif raw data if used.
	
	* collection/eog-collection-view.c (create_user_interface): 
	Create always info view.

2004-04-26  Jens Finke  <jens@triq.net>

	* libeog/eog-info-view-exif.c: Build even without libexif. #141114

2004-04-26  Rhys Jones <rhys@sucs.org>

	* eog.schemas.in: Fixed typos. #136833

2004-04-25  Jens Finke  <jens@triq.net>

	* libeog/eog-info-view.c: Reworked this completely. Derived from
	GtkNotebook now with separate pages for file and exif data.	

	* libeog/eog-ifo-view-detail.[ch],
	libeog/eog-info-view-file.[ch],
	libeog/eog-info-view-exif.[ch]: 
	EogInfoViewDetail is the base class derived from a
	GtkTreeView. EogInfoViewFile and EogInfoViewExif implement the
	code for viewing file properties resp. EXIF tag information.
	
	* collection/eog-collection-view.c (create_user_interface): Don't add
	notebook with viewport.

2004-04-23  Jens Finke  <jens@triq.net>

	Synchron image loading.

	* eog-image.[ch] (eog_image_load_sync): New.
	  (real_image_load): Broadcast thread finished msg

	* eog-image-private.h: Added load_finished condition

2004-04-23  Jens Finke  <jens@triq.net>
	
	Faster image loading.

	* eog-image-private.h: Removed deprecated loading status fields.
	
	* eog-image.c (check_load_status): Removed.
	  (load_emit_signal_progress),
	  (load_emit_signal_info_done),
	  (load_emit_signal_size_prepared),
	  (load_size_prepared),
	  (load_emit_signal_done): New.
	  (real_image_load): Initiate signal emits where appropriate.
	  (eog_image_load): No more need for check_load_status idle func.
	
	* configure.in: Bumped version to 2.7.0
	
===== 2.7.0 =====