~vcs-imports/gthumb/master

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
Version 3.12.4
~~~~~~~~~~~~~~
Released: 2023-10-10

Bugfixes:
 * Crop: lost the custom sizing for Aspect Ratio "Other" (!298)
 * Do not use symbols not available in glib 2.54.0 (!294)
 * Build failed (!292)

Translations:
 * Belarusian (Yuras Shumovich)
 * Catalan (Jordi Mas i Hernàndez)
 * Deutsch (Jürgen Benvenuti)
 * Hungarian (Balázs Úr)

Version 3.12.3
~~~~~~~~~~~~~~
Released: 2023-08-27

Features:
 * Added ability to open the image stored in the clipboard with Ctrl+Shift+V (!243)
 * Added ability to sort folders by modification time from the context menu
 * Media viewer: added ability to copy the current frame to the clipboard with Ctrl+Shift+C
 * Tiff and TGA files: added support for transparency
 * Image viewer: added support for the zoom gesture (!50)
 * Drag&Drop: allow to copy pressing Shift (matthewmelvin)
 * Image tools: allow to use Return to apply the changes
 * Rename series: added special code to add the filename without extension
 * Rename series: added ability to specify the current time
 * Crop: added 1.91:1 to the list of predefined ratios
 * Added an internal video thumbnailer
 * Try to load the parent folder if the startup folder doesn't exist
 * Make keypad keys equivalent to the non-keypad counterpart (!238) (!239)
 * Improved usability when editing metadata in browser mode (!267)
 * Zoom slider: set the zoom range from 5% to 1000%

Bugfixes:
 * Allow to compile without clutter-gtk (Matt Turner) (!222)
 * Fixed build with exiv2 version 0.28 (Alex and Antonio Rojas)
 * Fixed build with libraw 0.21
 * Reduced memory usage by keeping in memory only the visible thumbnails
 * Rename series: fixed date format not applied correctly; preview does not show example values
 * Desktop background: fixed when using the dark color scheme
 * Fixed memory leaks
 * Fixed directory not loaded when cancelling the thumbnailer
 * Help: Added gThumb icon (Sabri Ünal)
 * TGA files displayed pixelated
 * Status bar reappears after exiting from full screen

Translations:
 * Basealt (Aleksandr Melman)
 * Basque (Asier Sarasua Garmendia)
 * Brazilian Portuguese (Enrico Nicoletto)
 * catalan (Jordi Mas i Hernàndez)
 * Chinese - China (Boyuan Yang)
 * Croatian (gogo)
 * Danish (Alan Mortensen)
 * Deutsch (Jürgen Benvenuti)
 * Finnish (Jiri Grönroos)
 * French (Guillaume Bernard)
 * Georgian (Temuri Doghonadze)
 * German (Jürgen Benvenuti)
 * Hebrew (Yosef Or Boczko)
 * Hungarian (Balázs Úr)
 * Icelandic (Sveinn í Felli)
 * IE (OIS)
 * Indonesian (Kukuh Syafaat) (Andika Triwidada)
 * Lietuvių (Aurimas Černius)
 * Polish (Piotr Drąg)
 * Português (Hugo Carvalho)
 * Serbian <српски (Мирослав Николић)
 * Spanish - Spain (Daniel Mustieles García)
 * Swedish (Anders Jonsson)
 * Turkish (Sabri Ünal)
 * Ukrainian (Yuri Chornoivan)
 * čeština (Marek Černocký)

Version 3.12.2
~~~~~~~~~~~~~~
Released: 2022-04-03

Features:
 * Added support for larger thumbnail sizes: 512, 768 and 1024 pixels.

Bugfixes:
 * Fixed possible crash when changing directory during thumbnails creation.

Translations:
 * Dutch (Nathan Follens)
 * Hungarian (Balázs Úr)
 * Polish (Piotr Drąg)
 * Swedish (Anders Jonsson)
 * Ukrainian (Yuri Chornoivan)

Version 3.12.1
~~~~~~~~~~~~~~
Released: 2022-03-21

Bugfixes:
 * PNG loader ignores gAMA. (#194)
 * Transparent webp images are rendered incorrectly. (#199)
 * Crash when dropping files on an empty folder/catalog. (#220)
 * Fixed location loading after mounting volume.
 * JPEG image dimensions not displayed for files inside the trash. (#214)
 * Infinite Loop when viewing more than 50 thumbnails. (Kendy Kutzner)
 * X11 window title is not set. (Bruno Vasselle)
 * Copy release notes on build from NEWS to metainfo file. (Federico Bruni)
 * Fixed build if appstream >= 0.14.6 is not available.
 * Fix incorrect usage of shared_module in extensions. (Jakub Jirutka)
 * cli: mention that user can open files and/or directories. (#167)

Translations:
 * Basealt (Olesya Gerasimenko)
 * Catalan (Jordi Mas)
 * Croatian (gogo)
 * Dutch (Nathan Follens)
 * Hebrew (Yosef Or Boczko)
 * Japanese (sicklylife)
 * Swedish (Anders Jonsson)
 * Turkish (Emin Tufan Çetin)
 * српски (Мирослав Николић)

Contributors:
 Kendy Kutzner, Bruno Vasselle, Federico Bruni, Jakub Jirutka,
 Olesya Gerasimenko, Jordi Mas, gogo, Nathan Follens, Yosef Or Boczko
 sicklylife, Anders Jonsson, Emin Tufan Çetin, Мирослав Николић

Version 3.12.0
~~~~~~~~~~~~~~
Released: 2021-09-19

Bugfixes:
 * Fix memory leak when loading webp, jxl, avif images. (Jürg Billeter)
 * Check if image is null before using it. (!189)
 * Added a Flatpak manifest. (AsciiWolf)

Translations:
 * Catalan (Jordi Mas)
 * Finnish (Jiri Grönroos)
 * Hungarian (Balázs Úr)
 * Indonesian (Andika Triwidada)
 * Lietuvių (Aurimas Černius)
 * Spanish - Spain (Daniel Mustieles)
 * Swedish (Anders Jonsson)
 * čeština (Marek Černocký)


Version 3.11.4
~~~~~~~~~~~~~~
Released: 2021-08-22

Features:
 * Added ability to load AVIF/HEIF images using libheif.
 * Added ability to save images as AVIF.
 * Allow to set shortcuts to activate filters.
 * Added a template editor to edit text values with special codes:
   script commands, rename templates, print header and footer, etc.
 * Faster navigation when a directory contains thousands of images.
 * File list: start more thumbnailers in parallel.
 * Allow to mount unmounted volumes.
 * Color picker: added other formats: rgb in % and hsl.
 * Allow to keep browsing while executing long-running external tools.
 * Status bar: added button to show the progress dialog.
 * File properties: do not reset the selection after showing another image.
 * Histogram: show the properties in a single column to save horizontal space.

Bugfixes:
 * Install the gThumb import desktop file. (Bruce Schultz)
 * Contact sheet: fixed themes list always empty.
 * Thumbnailer: try with the system thumbnailer if the image is null
   (!184)
 * Include locale.h for LC_NUMERIC (!180)
 * Raw: Make compatible with LibRaw 0.21 (Chris Mayo)
 * Folder context menu: do not allow to move if cannot delete.
 * Folder context menu: do not allow to copy not mounted volumes.
 * Terminal: enable only for local folders.
 * File chooser: correctly get the filename extension.

Translations:
 * Basque (Asier Sarasua Garmendia)
 * Brazilian Portuguese (Rafael Fontenelle)
 * Chinese - China (Boyuan Yang)
 * Danish (Ask Hjorth Larsen)
 * Indonesian (Andika Triwidada)
 * Polish (Piotr Drąg)
 * Romanian (Adi Roiban)
 * Spanish - Spain (Daniel Mustieles)
 * Swedish (Anders Jonsson)
 * Turkish (Emin Tufan Çetin)
 * Ukrainian (Yuri Chornoivan)

Version 3.11.3
~~~~~~~~~~~~~~
Released: 2021-04-11

Features:
 * Add JPEG XL (*.jxl) read support. (Ian Tester)
 * File manager: added file actions to the viewer context menu. (!102)
 * Extensions: removed facebook and picasaweb uploaders.

Bugfixes:
 * Fixed possible build error.
 * Continuously reloads image when it is only image in folder (!153)
 * Webp can have transparency as well.

Translations:
 * Basque (Asier Sarasua Garmendia)
 * Brazilian Portuguese (Enrico Nicoletto)
 * catalan (Jordi Mas)
 * Dutch (Nathan Follens, Paul Matthijsse)
 * Finnish (Jiri Grönroos)
 * Hungarian (Balázs Úr)
 * Indonesian (Kukuh Syafaat)
 * Lietuvių (Aurimas Černius)
 * Polish (Piotr Drąg)
 * Romanian (Adi Roiban)
 * Spanish - Spain (Daniel Mustieles)
 * Swedish (Anders Jonsson)
 * Turkish (Muhammet Kara)
 * Ukrainian (Yuri Chornoivan)
 * čeština (Marek Černocký)
 * српски (Мирослав Николић)
 * עברית (Yaron Shahrabani)

Version 3.11.2
~~~~~~~~~~~~~~
Released: 2021-01-10

Features:
 * Image viewer: use a proportional zoom increment. (#104)
 * Image viewer: keep the same pixel under the pointer after zooming. (#129)
 * Read color profiles from png files as well.
 * Media viewer: use accurate seeking when clicking on the progress bar.
 * Media viewer: show the pointed time when hovering over the progress bar.
 * Browser: added support for back and forward mouse buttons. (#120)
 * Preferences: added option to show/hide the statusbar.
 * Rename files: added a button to revert to the last used template.

Bugfixes:
 * Image viewer: fixed bright line visual artifacts. (#118)
 * gThumb opens import tool if the import tool is already opened. (#133)
 * Fixed jump to bottom when selecting thumbnails with mouse. (#147)
 * exiv2: remove the charset= prefix from strings. (#137)
 * Search: do not count duplicated files.
 * Search: stop searching if the user changes location.
 * Search: stop the previous search before starting the new one.

Translations:
 * Brazilian Portuguese (Enrico Nicoletto)
 * catalan (Jordi Mas)
 * Hungarian (Balázs Úr)
 * Indonesian (Andika Triwidada)
 * Japanese (sicklylife)
 * Lietuvių (Aurimas Černius)
 * Polish (Piotr Drąg)
 * Slovenian (Matej Urbančič)
 * Swedish (Anders Jonsson)
 * Turkish (Emin Tufan Çetin)
 * Ukrainian (Yuri Chornoivan)
 * čeština (Marek Černocký)

Version 3.11.1
~~~~~~~~~~~~~~
Released: 2020-09-20

Features:
 * Added configurable shortcuts for Save and Save As. (Joerg Fellmann)
 * Media player: adjust the pitch if not played at normal speed.
 * Media viewer: added keyboard shortcuts.
 * Media viewer: added actions to skip forward/backward.
 * Media viewer: fixed hardware accelerated playback.
 * Desktop file: added a 'New Window' action.
 * File list: always allow to use Control-A to select all files.

Bugfixes:
 * WebP loader: fixed an infinite loop when the operation is cancelled. (Jürg Billeter)
 * Jpeg loader: fixed crash in case of some malformed jpegs. (Joerg Fellmann)
 * Fixed crash when selecting other images after deleting. (#126)
 * Fixed long UI freeze after cutting/pasting many files.

Translations:
 * Brazilian Portuguese (Henrique Machado Campos)
 * Catalan (Jordi Mas)
 * Chinese/Traditional (Cheng-Chia Tseng)
 * Finnish (Jiri Grönroos)
 * French (Charles Monzat)
 * German - Germany (Christian Kirbach)
 * Indonesian (Andika Triwidada)
 * Italian (Gianvito Cavasoli)
 * Japanese (sicklylife)
 * Lietuvių (Aurimas Černius)
 * Polish (Piotr Drąg)
 * Spanish - Spain (Daniel Mustieles)
 * Swedish (Anders Jonsson)
 * Ukrainian (Yuri Chornoivan)

Version 3.10.0
~~~~~~~~~~~~~~
Released: 2020-04-19

Features:
 * Edit metadata dialogs: moved the lock button on the header bar; show the
   navigation bar only when the lock button is active.
 * Open location dialog: allow to use tilde as a home folder shortcut.

Bugfixes:
 * Install missing .ui file

Translations:
 * Brazilian Portuguese (Rafael Fontenelle)
 * Dutch (Justin van Steijn)
 * Indonesian (Andika Triwidada)
 * Italiano (Gianvito Cavasoli)
 * Japanese (sicklylife)
 * Polish (Piotr Drąg)
 * Spanish - Spain (Daniel Mustieles)
 * Swedish (Anders Jonsson)
 * Turkish (Emin Tufan Çetin)
 * Ukrainian (Yuri Chornoivan)

Version 3.9.1
~~~~~~~~~~~~~
Released: 2020-03-07

Features:
 * Added ability to customize the keyboard shortcuts.
 * Added a shortcuts window to show the available shortcuts.
 * Added option to change the mouse wheel action.
 * Image viewer: added ability to define the transparency style.
 * Video viewer: allow to view the video at the original size; show the zoom
   factor in the statusbar.
 * Edit comment/tags dialogs: use the header bar; allow to change the current
   image from the dialog.
 * Add to catalog: use the header bar; allow to change the current image from
   the dialog.
 * Search: added ability to search in multiple folders.
 * Scripts: added %T to insert a timestamp in the command.
 * Folder tree:
   * better drag&drop support: allow to move a catalog into a library, and a
     library into another library, show an error if the drop operation is not
     possible;
   * added an 'Open in Terminal' command in the context menu.
 * Overwrite dialog: show video previews as well, fixed dialog size.
 * Preferences: allow to specify a catalog or any other location as startup
   location.
 * Trash/Delete files: show progress for long operations.
 * File properties: added the file size in bytes.
 * File properties: added a context menu command to customize the visibile
   properties.
 * Toolbar: show edit comment/tags in browser mode as well.
 * Export tools: removed from the toolbar.  Some tools moved to the tools
   menu, others as a submenu in the gears menu.
 * Fixed window size when started the first time.
 * Updated app icon to follow the new GNOME style.
 * Rewritten README in markdown, updated screenshots.
 * Appdata: added release and OARS tags for flathub compatibility. (Tobias Mueller)

Bugfixes:
 * gThumb hangs when some mount point is unavailable. (!75)
 * Jpeg loader: crash when the original size is too big for a cairo surface.
 * PNG loader: correctly load images with transparency.
 * Fixed run-time errors if exiv2 is not used.
 * Catalog: preserve the list order after saving the properties.
 * Scripts: fixed task cancellation when using a shell script.

Notes:
 * Utility functions refactoring.
 * Added tests for the utility functions.

version 3.8.2
-------------

 User visible changes:

  * Use menus instead of popovers for menu buttons on the header bar,
    to show icons and accelerators.
  * Header bar: align menus to the right for menu buttons on the right side.
  * Tools menu: show the accelerators.
  * Search: show the matching files during the search operation.
  * Rename dialog: activate on enter. (Ivan Ershov)

 Bugs fixed:

  * Fixed filesize test for big files.
  * Overwrite dialog: do not show an error after cancelling the operation.
  * Fixed crash when moving files to the trash.
  * Install missing UI files. (Dan Horák)
  * Added image/webp support in .desktop file. (Baltix Mantas) (!55)
  * Fix callback signature for value-changed signal when setting zoom
    (Dan Horák) (!54)
  * Help: corrected wiki link. (Wylel) (!2)

 New or updated application translations:

  * Catalan (Jordi Mas)
  * Italiano (Gianvito Cavasoli)

 New or updated manual translations:

  * Spanish - Spain (Daniel Mustieles)

version 3.8.1
-------------

 Bugs fixed:

  * Selections: fixed possible crash after reordering the files.

 New or updated application translations:

  * Basque (Alexander Gabilondo)
  * catalan (Jordi Mas)
  * Croatian (gogo)
  * Dutch (Paul Matthijsse)
  * Turkish (Sabri Ünal)

version 3.8.0
-------------

 New features and user visible changes:

  * Delete dialog: make the delete button red

 Bugs fixed:

  * build error when JPEG_LIB_VERSION < 80 (!44)

version 3.7.2
-------------

 New features and user visible changes:

  * Added ability to drag an image from the viewer. (!24)
  * Image viewer: use a checked pattern as background for transparent images.
  * Thumbnails: do not use a white background for images with
    transparencies. (!37)
  * Photo importer: remember the last used filter.

 Bugs fixed:

  * Deleting picture sometimes removes wrong file. (!29)
  * When changing a file metadata update the folder as well. (!28)
  * New library: always shows 'name already used' error. (!43)
  * Fixed crash when deleting files and moving to trash is not possible.
  * JPEG loader: fixed possible crash when a jpeg image is broken.
  * Fixed JPEG lossless rotation. (!22)
  * Fixed git url in README. (!40)
  * Fix the build with exiv2 0.27 (Kalev Lember) (!30)
  * Fails to build when passing -Dgstreamer=false (!35)
  * Fixed other build issues. (Kalev Lember) (Timo Gurr)
  * Preferences dialog: fix link to "More extensions".
  * Grid view: fixed layout after changing thumbnail size.
  * Bookmarks dialog: fixed icons color.

 New or updated application translations:

  * catalan (Jordi Mas)
  * Dutch (Nathan Follens)
  * Finnish (Jiri Grönroos)
  * French (Claude Paroz)
  * German (Mario Blättermann)
  * Indonesian (Kukuh Syafaat)
  * Italiano (Gianvito Cavasoli)
  * Lietuvių (Aurimas Černius)
  * Portuguese - Brazil (Rafael Fontenelle)
  * српски (Марко М. Костић)

 New or updated manual translations:

  * Dutch (Paul Matthijsse)

version 3.7.1
-------------

 New features and user visible changes:

  * Removed the application menu.
  * Sidebar: show the property views in expandable sections.
  * Thumbnail list: spread the thumbnails horizontally to fill the available
    space.
  * Video viewer: added option to use opengl instead of cairo.
  * Show the rating as a sequence of stars.
  * Color picker: use lowercase letters for the hexadecimal value.
  * Contact sheet: set the current directory as destination if possible.
  * Script dialog: wider list to make all columns visible.
  * Use meson as build system.

 Bugs fixed:

  * Image navigator: fixed popup positioning.
  * Preferences: fixed crash when setting the current location as default.
  * About dialog: fixed website url.
  * Jpeg loader: try to load broken images.
  * Contact sheet: error if the theme file could not be loaded. (issue 18)
  * Removed deprecated functions.

version 3.6.1
-------------

 Bugs fixed:

  * Fixed crash when browsing folders with images and videos. (#760214)

 New or updated application translations:

  * Brazilian Portuguese (Isaac Ferreira Filho)
  * Croatian (gogo)
  * es (Daniel Mustieles)
  * Esperanto (Kristjan SCHMIDT)
  * Hungarian (Balázs Úr)

 New or updated manual translations:

  * es (Daniel Mustieles)

version 3.6.0
-------------

 Bugs fixed:

  * Numeric keypad nav keys don't work (#667390)

 New or updated application translations:

  * Danish (Alan Mortensen)

version 3.5.4
-------------

 Bugs fixed:

  * No application icon on Wayland.
  * Tags dialog: improved usability.  Do not select the entry content after
    opening the dialog; add a comma at the end of the tags entry to simplify
    the addition of a new tag; support keyboard navigation. (#777234)
  * Hi-DPI: "High" quality zoom is pixelated on hi-dpi monitors. (#779340)
  * Web services: fixed errors and removed features no longer supported by
    the APIs:
    * Facebook: fixed authorization process; removed photo importer.
    * PicasaWeb: removed album creation; remember application
      authorization. (#784142)
    * Photobucket: removed uploader.
  * Image viewer: use a white background for transparency. (#780207)
  * Fixed saving of uris in settings. (#783498)
  * Color manager: fixed crash when no device is found. (#789347)
  * Do not save selections. This broke workflows where selections were involved.
  * Removed obsolete file gthumb.convert (#767034)

 New or updated application translations:

  * Danish (Alan Mortensen)
  * Indonesian (Kukuh Syafaat)
  * Latvian (Rūdolfs Mazurs)
  * Lietuvių (Aurimas Černius)
  * Swedish (Anders Jonsson)

 New or updated manual translations:

  * Deutsch (Mario Blättermann)

version 3.5.3
-------------

 New features and user visible changes:

  * Add app menu entries to the gear menu if the app menu is not supported by
    the desktop environment.
  * Updated appdata file.
  * Fixed help markup. (Andre Klapper)

 New or updated application translations:

  * Brazilian Portuguese (Rafael Fontenelle)
  * catalan (Jordi Mas)
  * Chinese/Traditional (Cheng-Chia Tseng)
  * Danish (Ask Hjorth Larsen)
  * Deutsch (Mario Blättermann)
  * es (Daniel Mustieles)
  * French (Claude Paroz)
  * Hungarian (Balázs Úr)
  * Indonesian (Kukuh Syafaat)
  * Italiano (Gianvito Cavasoli)
  * Polish (Piotr Drąg)
  * srpski (Miroslav Nikolić)
  * Swedish (Josef Andersson)
  * čeština (Marek Černocký)
  * српски (Мирослав Николић)

 New or updated manual translations:

  * es (Daniel Mustieles)
  * čeština (Marek Černocký)

version 3.5.2
-------------

 New features and user visible changes:

  * Faster image loading.
  * Fixed big memory leak and other minor memory leaks.
  * Aspect ratio filtering. (Vasdi)
  * Video player works on wayland as well.
  * Color profiles work on wayland as well (requires colord).
  * Show the color profile description in the property view.
  * Headerbar: show the tools menu button in viewer mode as well; added a
    button to go to the catalogs root; added a button to go to the home folder.
  * Scripts: allow to specify a generic accelerator.
  * Selections: save at exit and restore at start.
  * Video player: added a loop button.
  * Use Unicode in translatable strings. (Piotr Drąg) (#782038)

 Bugs fixed:

  * Slideshow: no need to specify autoaudiosink as audio-sink. It is
    already the default audio sink. (#785612)
  * SEGFAULT when a svg image could not be loaded (784886)
  * Do not process bitmap thumbnails with invalid color settings.
    (Jan de Groot) (#778556)
  * Fixed possible crash when switching from the image viewer to another viewer.

 New or updated application translations:

  * Brazilian Portuguese (Rafael Fontenelle)
  * Deutsch (Mario Blättermann)
  * es (Daniel Mustieles)
  * French (Julien Hardelin)
  * Hungarian (Balázs Úr)
  * Indonesian (Kukuh Syafaat)
  * Italiano (Gianvito Cavasoli)
  * Lietuvių (Aurimas Černius)
  * Polish (Piotr Drąg)
  * Swedish (Anders Jonsson)
  * čeština (Marek Černocký)
  * Русский (Stas Solovey)

 New or updated manual translations:

  * French (Julien Hardelin)
  * Swedish (Anders Jonsson)

version 3.5.1
-------------

 New features and user visible changes:

  * Added support for double click activation.
  * Added option to open files in fullscreen mode.
  * Added a zoom popover with various zoom commands and a zoom slider.
  * Added a color picker.
  * All dialogs: use the headerbar if supported by the desktop environment
    (if 'gtk-dialogs-use-header' is set).
  * App menu: added 'keyboard shortcuts'.
  * Tag filter: added ability to filter using a regular expression.
  * Sort catalogs by name, then by date.
  * Gif animations: allow to pause and view the next frame.
  * Added the control-o accelerator to open the location dialog.
  * Keep the zoom buttons on the headerbar if the tool allow to zoom the image.
  * Added a fullscreen button to the headerbar in viewer mode.
  * Find duplicates: speed optimizations.
  * New folder: open the folder after creating it.
  * Hide the image frame when in fullscreen mode.
  * Moved the photo importer preferences to the extension section.
  * Find duplicates: more responsive when the duplicate list is huge.
  * Added support for image/x-fuji-raf raw files. (Michael J. Chudobiak) (#709385)
  * Fixed RTL icons and arrow rendering. (Michael J. Chudobiak) (#747380)

 Bugs fixed:

  * Ensure the settings have been saved before exiting.
  * Desktop background: always create a unique filename to force an update.
  * Desktop background: fixed error when setting an xcf image as background.
  * Resize: fixed wrong aspect ratio after opening. (Vaclav Brozek)
  * Slideshow: start on the same monitor of the window.
  * Sizing issues in gthumb preferences under gtk+ git master. (#770546)
  * Adjust contrast: better description of the stretch method (#767615)
  * Removed deprecated gnome-common macros (#768528)
  * Fixed scrollbars resetting their position when changing image.
  * Fixed theme errors with gtk+ 3.20.
  * Do not show rotation tools for animations.
  * Crash after pressing shift-arrow. (#760050)
  * Stopping slideshow freezes entire program. (#759787)
  * Disambiguate labels of various metadata "date" fields. (#728471)
  * Crash if trying to delete image on sftp mounted. (#759727)
  * Crash when deleting duplicate. (#750142)
  * Various minor typos fixed. (Michael J. Chudobiak) (#756486)

 New or updated application translations:

  * Albanian (Laurent Dhima)
  * Amharic (Ge'ez Frontier Foundation)
  * Arabeyes (Djihed Afifi)
  * Azerbaijani (Metin Amiroff)
  * Brazilian Portuguese (Rafael Fontenelle)
  * Bulgarian (Julia Velkova)
  * Canadian English (Adam Weinberger)
  * catalan (Jordi Mas)
  * catalan (Sílvia Miranda)
  * Chinese (Hong Kong) (taijuin)
  * Chinese (simplified) (tuhaihe)
  * Chinese/Traditional (Cheng-Chia Tseng)
  * Croatian (gogo)
  * Danish (Ask Hjorth Larsen)
  * Deutsch (Wolfgang Stoeggl)
  * Dzongkha (sonam pelden)
  * English/GB (David Lodge)
  * es (Daniel Mustieles)
  * Esperanto (Kristjan SCHMIDT)
  * French (Claude Paroz)
  * Galego (Francisco Diéguez)
  * Gujarati (Sweta Kothari)
  * Hindi (Rajesh Ranjan)
  * Hungarian (Balázs Úr)
  * Icelandic (Sveinn í Felli)
  * Indonesian (Andika Triwidada)
  * Irish (Alastair McKinstry)
  * Italiano (Gianvito Cavasoli)
  * Kannada (Shankar Prasad)
  * Kinyarwanda (Steve Murphy)
  * Korea (Young-Ho Cha)
  * Latvian (Rūdolfs Mazurs)
  * Lietuvių (Aurimas Černius)
  * Low German (Nils-Christoph Fiedler)
  * Macedonian (Arangel Angov)
  * Malay (Hasbullah Bin Pit)
  * Malayalam (FSF-India)
  * Nepali (Shyam Krishna Bal)
  * Norwegian Nynorsk (Åsmund Skjæveland)
  * Norwegian/Bokmaal (Kjartan Maraas)
  * Occitan (Yannig Marchegay (Kokoyaya))
  * Pashto (Zabeeh Khan)
  * Persian (Meelad Zakaria)
  * Polish (Piotr Drąg)
  * Português (Pedro Albuquerque)
  * Punjabi/Panjabi (A S Alam)
  * Romanian (Adi Roiban)
  * Slovak (Peter Tuhársky)
  * Slovenian (Matej Urbančič)
  * srpski (Miroslav Nikolić)
  * Swedish (Anders Jonsson)
  * Thai (Sira Nokyoongtong)
  * Turkish (Simge Sezgin)
  * Ukrainian (Maxim Dziumanenko)
  * Vietnamese (Clytie Siddall)
  * Xhosa (Canonical Ltd)
  * čeština (Marek Černocký)
  * Русский (Yuri Myasoedov)
  * српски (Мирослав Николић)
  * עברית (Yosef Or Boczko)

 New or updated manual translations:

  * Czech (Marek Černocký)
  * Deutsch (Christian Kirbach)
  * Español; Castellano (Daniel Mustieles)
  * Hungarian (Balázs Úr)
  * Swedish (Anders Jonsson)

version 3.4.1
-------------

 Bugs fixed:

  * Fixed build on Fedora 23 (Kalev Lember) (#747982)
  * Allow cross-compiling (Quentin Glidic) (#755390)

 New or updated application translations:

  * Catalan (Sílvia Miranda)
  * Español; Castellano (Daniel Mustieles)
  * Hungarian (Balázs Úr)
  * Icelandic (Sveinn í Felli)
  * Italiano (Gianvito Cavasoli)
  * Lietuvių (Aurimas Černius)
  * Polish (Piotr Drąg)
  * Русский (Stas Solovey)

 New or updated manual translations:

  * Hungarian (Balázs Úr)
  * Spanish (Daniel Mustieles)

version 3.4.0
-------------

 Bugs fixed:

  * Media player: smoother volume change.
  * History: do not remove other occurrences of the current location.
  * Don't merge translations into gschema file.
  * Facebook: fixed the authorization process.
  * Contact sheet: fixed header color not set when creating a new theme.

 New or updated application translations:

  * French (Claude Paroz)
  * עברית (Yosef Or Boczko)

version 3.3.4
-------------

 New features and user visible changes:

  * Image viewer: added 'fit to height' button.
  * Drag&Drop: move files by default.
  * Ask confirmation before moving files with a drag&drop operation.
  * Make 'delete files' and 'trash files' asyncronous.
  * Use the default gtk+ style for message dialogs.  Use the header-bar for
    request dialogs.
  * Changed 'adjust contrast' shortcut to 'a'. 'h' is now used to fit to height.
  * Added a symbolic application icon.
  * Fixed comment pane style with gtk+ 3.16.
  * Show the app menu on the headerbar if the shell doesn't show it.
  * Preferences dialog: fixed extensions activation/deactivation.

 Bugs fixed:

  * Webalbums: do not exit if a fatal error is issued (#744530)
  * Build failure on x32 (kilobyte)
  * Image viewer: the overview quickly appears and disappears sometimes.

 New or updated application translations:

  * Bosnian (Samir Ribic)
  * Czech (Marek Černocký)
  * Hungarian (Balázs Úr)
  * Lietuvių (Aurimas Černius)
  * Polish (Piotr Drąg)
  * Swedish (Daniel Nylander)
  * Ελληνικά, Σύγχρονα (Tom Tryfonidis)
  * עברית (Yosef Or Boczko)

 New or updated manual translations:

  * Czech (Marek Černocký)
  * Greek (Maria Mavridou)
  * Swedish (Daniel Nylander)

version 3.3.3
-------------

 New features and user visible changes:

  * Allow to apply the embedded color profile for jpeg images.
  * New image tools: special effects; curves.
  * Unified 'equalize histogram' and 'adjust contrast': show a preview of the
    various contrast filters.
  * Grayscale tool: show a preview of the different filters.
  * Fixed the interface style when used with gtk+ 3.14
  * File propery view: use a switcher; added a details page that show all the
    metadata, show only the important exif fields in the properties page.
  * UI changes to the preferences dialog: use a sidebar instead of a notebook
    to avoid a large dialog with some translations; better spacing; removed
    the Ok button.
  * Video player: save the screenshot without showing the dialog. Allow to set
    the screenshots location in the extension preferences dialog. Show a message
    in the statusbar after saving.
  * Gear menu: use the new icon if using gtk+ 3.13 or newer

 Bugs fixed:

  * video player: do not hide the mediabar when using the volume control
  * Forbidden when trying to upload to Flickr (#732557)
  * Build against either webkit2gtk-3.0 or webkit2gtk-4.0 (Dominique Leuenberger)

 New or updated application translations:

  * Basque (Iñaki Larrañaga Murgoitio)
  * Brazilian Portuguese (Rafael Ferreira)
  * Chinese/Traditional (Cheng-Chia Tseng)
  * Czech (Marek Černocký)
  * Español; Castellano (Daniel Mustieles)
  * Finnish (Lasse Liehu)
  * Hungarian (Balázs Úr)
  * Indonesian (Andika Triwidada)
  * Polish (Piotr Drąg)
  * Serbian (Мирослав Николић)
  * Serbian (Miroslav Nikolić)
  * Swedish (Daniel Nylander)
  * עברית (Yosef Or Boczko)

 New or updated manual translations:

  * čeština (Marek Černocký)

version 3.3.2
-------------

 Bugs fixed:

  * Allow the user to edit tags using the contextual menu also (#728467)
  * Special directories: added DOWNLOAD, removed DESKTOP (#728445,#728446)
  * Web album: fixed thumbnail size (#727775)
  * Desktop background: use the stretched option in some cases (#726708)
  * Make copy and paste in same folder equivalent to duplicating
    (#722726)
  * Can view tiff files, but can not print. (#726260)
  * image viewer: use a smaller frame border (#726091)
  * Extra image appears in image viewer (#722631)
  * Added AppData file for GNOME Software Center (#722770)
  * Ctrl+P doesn't work (#722707)
  * Script editor: help buttons don't work (#722925)
  * Toolbox: Fix the undo and the redo symbols in RTL (Yosef Or Boczko)
    (#723542)
  * Sharpen: Fix the undo symbols in RTL (Yosef Or Boczko) (#723542)
  * Rotate image: Fix the undo symbols in RTL (Yosef Or Boczko)
    (#723542)
  * Adjust colors: Fix the undo symbols in RTL (Yosef Or Boczko)
    (#723542)
  * Updated obsolete info in license text. updated using a script
    written by Andika Triwidadan (#721455)
  * gThumb doesn't honour privacy settings (#722349)
  * Remove unnecessary gdkx.h include from gth-screensaver. (Robert
    Roth) (#597594)
  * Use unity-control-center if in Unity (Rober Ancell) (#722233)
  * Fix build failing without libtiff installed. (Robert Roth) (#722183)
  * Cannot Save As with uppercase .JPG (#721281)

 New or updated application translations:

  * Brazilian Portuguese (Rafael Ferreira)
  * Czech (Marek Černocký)
  * Deutsch (Christian Kirbach)
  * Español (Daniel Mustieles)
  * Hungarian (Balázs Úr)
  * Indonesian (Andika Triwidada)
  * Italiano (Gianvito Cavasoli)
  * Lietuvių (Aurimas Černius)
  * Polish (Piotr Drąg)
  * Serbian (Miroslav Nikolić)
  * Serbian (Мирослав Николић)
  * Greek (Dimitris Spingos (Δημήτρης Σπίγγος))
  * עברית (Yosef Or Boczko)

 New or updated manual translations:

  * Greek (Dimitris Spingos (Δημήτρης Σπίγγος))
  * Español (Daniel Mustieles)
  * čeština (Marek Černocký)

version 3.3.1
-------------

 New features and user visible changes:

  * Use a GtkHeaderBar instead of a menu and a toolbar.
  * Use the dark theme.
  * Better raw image support, using libraw instead of libopenraw.
  * Image viewer: show a frame around the image; use an overview
    window to scroll the image instead of the scrollbars;
    better quality for zoomed out images.
  * Faster image loader for big images.
  * Media player: hide the mediabar after a timeout.
  * Filterbar: added buttons to view the selections.
  * File properties: show only the basic properties, allow to
    show all of them.
  * Image tools: use a grid layout for the buttons
  * Use a separate dialog for the file tool options.
  * Use symbolic icons everywhere.
  * Added a custom tiff loader.
  * Add a rating-based filter. (Louis-Marie Mouton)
  * App menu: removed 'keyboard shortcuts'.
  * Histogram view: save and restore the scale type.

 Bugs fixed:

  * Help: fix calling help from withing the application. (Dominique Leuenberger) (#710573)
  * Fixed saving of TGA files
  * Fixed the video player stopping after saving a screenshot.
  * Rotating image destroys XMP and IPTC metadata (#719622)
  * Command line ignored for the second window (#712716)
  * Empty Options dialog after Canceling it once (#711788)
  * Buttons with label toolbutton1 and toolbutton2 in Bookmark window
    (#711777)
  * Default parameters for image resizing are misleading (Christian
    Krause) (#710479)
  * Fixed broken window layout with gtk+ 3.10 (#708800)
  * Find duplicates: fixed crash when using a predefined directory
    (Christian Krause) (#706697)
  * gThumb crashes when attempting to play a video. (Christian Krause) (#706343)
  * Flickr: allow to use a facebook or google account (#703534)
  * Thumbnail list: images drawn with wrong offset (#702538)
  * Facebook: fixed authentication.
  * configure: fixed unrecognized option --disable-libjson-glib
    (#696783)
  * Removed the use of many deprecated functions.

 New or updated application translations:

  * Brazilian Portuguese (Enrico Nicoletto)
  * catalan (Sílvia Miranda)
  * Czech (Marek Černocký)
  * Dutch (Hannie Dumoleyn)
  * Español (Daniel Mustieles)
  * Hungarian (Balázs Úr)
  * Indonesian (Andika Triwidada)
  * Italiano (Gianvito Cavasoli)
  * Japanese (OKANO Takayoshi)
  * Latvian (Rūdolfs Mazurs)
  * Lietuvių (Aurimas Černius)
  * Polish (Piotr Drąg)
  * Russian (Yuri Myasoedov)
  * Serbian (Miroslav Nikolić)
  * Serbian (Мирослав Николић)
  * Slovenian (Matej Urbančič)

 New or updated manual translations:

  * Español (Daniel Mustieles)
  * Slovenian (Andrej Žnidaršič)
  * čeština (Marek Černocký)

version 3.2.0
-------------

 New features and user visible changes:

  * added ability load xcf images
  * always use a dark background in the image viewer

 New or updated application translations:

  * Deutsch (Christian Kirbach)
  * French (Claude Paroz)
  * Hungarian (Balázs Úr)
  * Italiano (Gianvito Cavasoli)

 New or updated manual translations:

  * Deutsch (Mario Blättermann)
  * French (Bruno Brouard)
  * čeština (Marek Černocký)

version 3.1.4
-------------

 Bugs fixed:

 * Fixed creation of blur thumbnails for jpeg images

 New or updated application translations:

  * Brazilian Portuguese (Rafael Ferreira)
  * Español (Daniel Mustieles)
  * Lietuvių (Aurimas Černius)
  * Polish (Piotr Drąg)
  * Serbian (Мирослав Николић)
  * Serbian (Miroslav Nikolić)
  * Slovenian (Matej Urbančič)

version 3.1.3
-------------

 New features and user visible changes:

  * Fixed uploading to Facebook and all other web services.
  * Added ability to import photos from Facebook.
  * Save and restore the thumbnail list size.
  * Selections: pressing control-n (with n in 1,2,3) again goes back to the
    previous view.
  * Monitor all the expanded locations in the folder tree.
  * Show a progress dialog for long saving operations.
  * Added keybindings to delete files in catalog view: control+delete moves to
    trash; shift+delete deletes from disk.
  * Allow to delete the tags from the default tag list.

 Bugs fixed:

  * Web album export produces invalid HTML. (#691123)
  * Fixed thumbnail generation for rotated images.
  * Fixed the thumbnail style in gtk 3.6
  * Video viewer: fixed progress bar for gtk 3.6
  * webp: fixed build for Big-Endian systems

 Internal code changes:

  * Ported to GStreamer 1.0
  * Ported to libsecret

 New or updated application translations:

  * Chinese (Hong Kong) (taijuin)
  * Chinese/Traditional (taijuin)
  * Español; Castellano (Daniel Mustieles)
  * Hungarian (Balázs Úr)
  * Polish (Piotr Drąg)
  * Serbian (Саша Петровић)
  * Serbian (Saša Petrović)
  * Slovenian Translation (Matej Urbančič)
  * čeština (Marek Černocký)

 New or updated manual translations:

  * Español; Castellano (Daniel Mustieles)
  * Occitan (Yannig Marchegay (Kokoyaya))
  * Slovenian (Andrej Žnidaršič)
  * Swedish (Daniel Nylander)
  * čeština (Marek Černocký)
  * Ελληνικά (Sterios Prosiniklis)

version 3.1.2
-------------

 Bugs fixed:

  * Fixed images scaling producing black images.
  * Use gdk-3.0 to check the GDK target (#685674)

 New or updated application translations:

  * Latvian (Rūdolfs Mazurs)

version 3.1.1
-------------

 New features and user visible changes:

  * Added ability to load and save WebP images.
  * Allow to specify the format options when saving a file (can be disabled).
  * Save and restore the window maximized state, the filterbar status, the
    visited locations history and the viewer sidebar status.
  * Image viewer: use the dark background by default, and use a more neutral
    color instead of black.
  * Video viewer: save and restore the volume level.
  * Read system bookmarks from XDG_CONFIG_HOME/gtk-3.0/bookmarks. Fallback to
    ~/.gtk-bookmarks if the new file is not found. (#675401)
  * Use XDG_CACHE_HOME/thumbnails as thumbnail cache. Fallback to the old
    ~/.thumbnails directory if the new directory doesn't exists.
  * File list: align the caption to the left and use a smaller font.
  * Browser: show loading errors in the info bar instead of using a modal
    dialog.
  * Added automatic completion to the category entry.
  * Rotation tool: allow to rotate an image from -180 to 180 degrees.
  * Selections: allow to cut the files.
  * Added a menu item to hide/show the file properties.
  * Print: set a good default filename for the print-to-file operation.
  * Enhance colors: use a faster algorithm and rename to "Adjust Contrast".
  * Equalize histogram: use a faster algorithm.
  * Desaturate tool: added ability to choose the method to use, renamed to
    "Grayscale".
  * Removed the format chooser from the file dialog.
  * Added an high resolution application icon.
  * Add an application menu if used with GNOME Shell.

 Bugs fixed:

  * Fixed image quality when the zoom factor is smaller then 0.5. (#674159)
  * Do not make modal dialogs block other windows as well.
  * Find duplicates: remember the checked state when filtering the file
    list. (#679191)
  * Sort by name if the date is the same. (#676263)

 New or updated application translations:

  * Chinese (Hong Kong) (taijuin)
  * Chinese (simplified) (tuhaihe)
  * Chinese/Traditional (taijuin)
  * Czech (Marek Černocký)
  * Español (Daniel Mustieles)
  * Hungarian (Gabor Kelemen)
  * Indonesian (Andika Triwidada)
  * Italiano (Gianvito Cavasoli)
  * Latvian (Rūdolfs Mazurs)
  * Lietuvių (Aurimas Černius)
  * Polish (Piotr Drąg)
  * Slovenian (Matej Urbančič)
  * Greek (Tom Tryfonidis)

 New or updated manual translations:

  * Deutsch (Daniel Winzen)
  * Slovenian (Andrej Žnidaršič)

version 3.0.1
-------------

 Bugs fixed:

  * Resize images: correctly restore the last used width and height
    (#675498)
  * Preserve XMP lists when saving an image. (#674908)
  * Fixed loading of thumbnails after re-enabling thumbnails again.
  * Fixed mouse wheel navigation with the video viewer.
  * Added a man page.

 New or updated application translations:

  * French (Claude Paroz)
  * German (Christian Kirbach)
  * Russian (Yuri Myasoedov)

version 3.0.0
-------------

 Bugs fixed:

  * Metadata category names WON'T show translated strings (Jiro
    Matsuzawa) (#674033)
  * Selections: fixed keyboard shortcuts for some keyboard layouts. (#673872)
  * Fixed compilation without libjpeg.
  * Ignore extensions with a different API version.
  * Fixed file navigation with the mouse wheel with Gtk+ 3.4.0 or greater.
  * Fixed possible crash when changing location.

 New or updated application translations:

  * Czech (Marek Černocký)
  * Japanese (OKANO Takayoshi)
  * Norwegian/Bokmaal (Kjartan Maraas)

version 2.90.3
--------------

 New features and user visible changes:

  * Selections: fixed reordering of files; added command Alt+Shift+n to remove
    files from selection n; added a command to open the original folder; show
    an emblem when a file is added to a selection.

 Bugs fixed:

  * Require exiv2 version 0.21. since the code uses Exiv2::LogMsg (#673711)
  * Removed potentially dangerous strncpy (#672866)
  * Fixed possible crash when changing directory quickly.
  * Fixed possible crash after closing the context menu in the folder tree.
  * Fixed run-time warning when uninhibiting the screensaver.

 New or updated application translations:

  * Czech (Marek Černocký)
  * Español (Daniel Mustieles)
  * Lietuvių (Aurimas Černius)
  * Polish (Piotr Drąg)
  * Slovenian (Matej Urbančič)

 New or updated manual translations:

  * Slovenian Translation (Andrej Žnidaršič)

version 2.90.2
--------------

 New features and user visible changes:

  * Added a Location dialog to enter the path to display.
  * Copy/Move dialog: save the list of the last 10 choosed folders.
  * Added a tool to import the embedded metadata in the gThumb comment
    system.
  * Map view: added a scale on the map.

 Bugs fixed:

  * Thumbnail pane stays empty until directory change. (#672184)
  * Always compile the cairo png loader. (#671940)
  * Fixed compilation when libtiff is not available. (#671892)
  * Fixed error when compiling with gtk+ 3.3.18. (#671451)
  * Show "Moving" instead of "Copying" when moving a file.
  * Fixed some performance issues when updating thumbnails.
  * Fixed many memory leaks.

 New or updated application translations:

  * Slovenian Translation (Matej Urbančič)

version 2.90.1
--------------

 New features and user visible changes:

  * Added 'selections' as a more powerful way to select files.  Selections are
    similar to catalogs but their content is lost after closing the application.
    Use Alt-n to add files to selection n, and Control-n to view selection n,
    for n in the 1..3 interval.
  * High quality zoom for SVG images. Requires librsvg.
  * Comment and tags dialogs: allow to save the metadata without closing the
    dialog.
  * Added option to reuse the active window when opening files from an
    external application.
  * Allow to hide/show the file properties pane.
  * Allow to change the position of the file properties in browser mode.
  * Save the image keyworks in the Xmp.dc.subject tag as well.
  * Save the Exif.Image.Software tag only if the content was modified.
  * Sync the rating with the Xmp.xmp.Rating tag.
  * Video viewer: jump to the specified position when clicking on the progress
    bar.
  * Video viewer: use symbolic icons for the play button and the volume control.
  * Make the 'shrink wrap' command work for the video viewer as well.
  * Image viewer: hide the horizontal scrollbar in 'fit width' mode.
  * Image viewer: implemented the checked transparency.
  * Show the Edit button in browser mode as well.
  * Moved the location chooser above the file list.
  * Preferences: show the slideshow preferences in the viewer tab to save some
    horizontal space.
  * Use the PICTURES special dir as the default startup location.

 Internal code changes:

  * Ported to Gtk+ 3
  * Ported from GConf to GSettings. Automatically convert the GConf values.
  * Ported from libunique to GtkApplication.
  * Ported to libchamplain version 0.12.
  * Removed use of deprecated functions.
  * Use the G_DEFINE_* macros to define GObject classes.
  * Added a custom widget to display the thumbnail list instead of GtkIconView.

 New or updated application translations:

  * Czech (Marek Černocký)
  * Español (Daniel Mustieles)
  * Esperanto (Kristjan SCHMIDT)
  * French (Claude Paroz)
  * German (Christian Kirbach)
  * Indonesian Translation (Andika Triwidada)
  * Italiano (Gianvito Cavasoli)
  * Japanese (Jiro Matsuzawa)
  * Polish (Piotr Drąg)
  * Russian (Yuri Myasoedov)
  * Slovenian Translation (Matej Urbančič)
  * Swedish (Daniel Nylander)

 New or updated manual translations:

  * Deutsch (Mario Blättermann)
  * Español (Daniel Mustieles)
  * French (Claude Paroz)

version 2.13.91
---------------

 Bugs fixed:

  * Fixed iptc fields order in the print dialog. (#659820)

 New or updated application translations:

  * Español (Daniel Mustieles)
  * French (Bruno Brouard)
  * Norwegian/Bokmaal (Kjartan Maraas)
  * Slovenian (Matej Urbančič)

version 2.13.90
---------------

 Bugs fixed:

  * Added ability to import from and export to 23hq.com (#657269)
  * Web uploaders: update the progress bar during the upload; allow to cancel
    an upload.
  * Fixed selection of the destination folder in the import dialog.
    (#657557)
  * Fixed comment synchronization when a \r character is in the text.
  * Flickr importer: fixed import of photosets greater then 500 photos.
    (#648701)
  * Facebook uploader: allow to upload high resolution images. (#652216)
  * Fixed a crash when loading remote images.

version 2.13.3
--------------

        New features and user visible changes:

        * Added ability to import photos from a folder. This is equivalent to
          importing from a removable device, with the difference that the
          user can select a folder instead of a device.  Useful to reorganize
          by date or tag an old set of photos. (#452764)
        * Find duplicates: added ability to eliminate all the duplicates at
          once leaving only the newest or the oldest one. (#342887)
        * Show the current disk free space in the status bar.
        * Make the keyboard editing shortcuts work from the file list as well.
          When the file list or the image viewer are focused the user can use
          the following shortcuts to activate some editing tools:
          h: enhance; l: flip; m: mirror; r: rotate right;
          <shift>r: rotate left; <shift>c: crop; <shift>s: resize.
        * Resize image: added buttons to set to the original image size or the
          screen size (#639012)
        * Added "copy to" and "move to" commands in the folder list as well.
        * F2 renames the folder if the folder tree is focused (#448588)
        * Web albums: always use subfolders. removed the relative option from
          the dialog (#624334)
        * Allow %F (filename) and %C (comment) in Web Album headers and
          footers (#166579)
        * Adjust colors: added a preview check button to compare the image
          with the original (#566040)
        * Save and restore the settings in the change date dialog (#451803)
        * Added Ctrl+Q to close all the windows.
        * Automatically select the last viewed file on startup if "Go to last
          visited folder or catalogue" option is active.
        * Ask confirmation before deleting a command/script (#627475)
        * Increased the number of preloaded images. preload the next 4 and the
          previous 4 images, instead of the next 2 and the previous one.
          (#564017)
        * Improved insertion of files in catalogs: when using the paste
          command the files are inserted after the last selected file;
          when using drag&drop the files are inserted in the current position
          as when moving files inside a catalog. (#371697)
        * Added "gThumb" to the window title (#627159)

        Bugs fixed:

        * Do not allow the user to create catalogs with a / in the name (#652482)
        * Progress dialog: set the task description as dialog title if the
          main window is hidden (#628769)
        * Web album: simplified code and fixed a memory leak (#644970)
        * Fixed crash opening an image from command line (#654241)
        * Use the FSF web site instead of the address in gthumb.h (#652027)
        * Disabled refresh in viewer mode (#627183)
        * Resize tool: reset size to sensible defaults when switching between
          % and pixels (#622427)
        * EXIF tags listed more than once when disabling and then re-enabling
          the EXIF extension (#621454)
        * Give the focus to the viewer after changing the image (#595575)
        * Image rotation: show the correct progress fraction and current file
          name in the progress dialog (#594796)
        * Copying or moving a file will copy or move its XMP sidecar as well
          (#581641)
        * Web albums: fixed hotkeys binding in the main dialog (#575176)
        * Contact sheet: fixed some hotkey bindings in the main dialog
          (#575171, #575170)
        * Resize images: bind width and height if size is expressed in
          percentage and keep ratio is active (#564827)
        * Exclude hidden folders from search result when view->hidden files is
          not active (#502524)
        * Fixed crash when going fullscreen with no image in the file list

        New or updated application translations:

        * Español (Daniel Mustieles)
        * Estonian (Rene Pärts)
        * Hungarian (Gabor Kelemen)
        * Norwegian/Bokmaal (Kjartan Maraas)

        New or updated manual translations:

        * Basque (Iñaki Larrañaga Murgoitio)
        * Deutsch (Christian Kirbach)

version 2.13.2
--------------

        New features and user visible changes:

	* Added a sharpen tool.
	* Added a tool to rotate images of any degree. (Stefano Pettini) (#627563)
        * Added "copy image to clipboard" and "paste image from clipboard".
        * Added a map view to view the geographical position where the picture
          was taken.
	* Added tool to delete files metadata.
	* Disable the screensaver when playing videos or slideshows.
	* Crop: added ability to maximize and center the selection.
	* Rename series: added a dialog to edit the filename template.
	* Resize images: added ability to select the file format.
	* Slideshow: make the animations smoother.
	* Moved the extensions activation in the preferences dialog.
        * Pressing the delete key in a catalog removes the file from the
          catalog instead of deleting the file from disk (#623620)
	* Image selector: show the active resize grip.
	* Red eye removal: exit from the tool only when the ok button is clicked.
	* Added VIDEO and DESKTOP directories to the entry point list.
	* Added the entry points to the bookmark menu as well.

        Bugs fixed:

	* Fixed crash when closing a window while the video viewer is active.
	* Webalbums: fixed progress dialog not showing again after the first
	  exporting.
        * Rename series: speed-up dialog appearance. (#645515)
        * Image selector: maximize the selection size when the pointer is out
          of the image bounds. (#644346)
        * Image selector: do not paint the darker background when dragging, in
          order to speed-up selection moving. (#644344)
	* Find duplicates: do not allow to select more than a file.
	* Fixed error when enabling/disabling thumbnails very fast.
        * Fixed renaming of files when the new name is entered quickly.
	* Correctly display images with wrong extension name.
	* Fixed the desktop background setting with GNOME 3.0 or higher.
        * Fixed adjust-time tool not changing minutes and seconds. (#651297)

	Internal code changes:

	* Use cairo_surface to store data instead of GdkPixbuf to speed-up
	  image loading and visualization.
	* Made the libunique library dependency optional.
	* Ported to GTK+ 2.24 with all deprecated API disabled and GSEAL enabled.
	* Change 'make dist' to create tar.xz files.

        New or updated application translations:

        * Español (Daniel Mustieles)

        New or updated manual translations:

        * German (Christian Kirbach)

version 2.13.1
--------------

        New features and user visible changes:

        * New tools: contact sheet creator, find duplicates.
        * Print: allow to specify the number of rows and columns; allow to
          specify the header and the footer of the pages.
        * Added "Copy to" and "Move to" commands to copy or move files to
          another directory.  You can still accomplish the some task using the
          Copy/Cut/Paste commands.
        * Re-added the 2.10 semi-trasparent property box in fullscreen mode.
          The 'i' key shows/hides the property box.
        * Re-added ability to view file comments in the file list.
        * Preferences dialog: added option to specify the file extension to
          use when creating jpeg and tiff files.
        * Added an histogram view to the sidebar.
        * Added ability to drag files with the middle mouse button to allow
          the user to choose the action to perform.
        * Allow to rename the files in a catalog.
        * Added ability to move catalogs with drag&drop.
        * Change date tool: added the ability to shift dates by any offset.
          (Thomas Bouffon) (#632298)
        * Edit metadata dialog: added 'Iptc.Application2.ProvinceState' field
          to the 'Other' tab (Matthew Geier) (#630279)
        * Convert and resize: allow to specify a destination folder even when
          the images are from a catalog.
        * Video player: allow to change playback speed when paused.
        * Slideshow: show the paused sign centered on the screen and hide it
          after a second.
        * Crop tool: added a new grid mode to view the center lines of the
          current selection.
        * Added ability to search and filter files with a single tag. (#633884)
        * Always use the same height for the thumbnails.  This allows to avoid
          scroll jumps when loading the thumbnails listed before the currently
          visible ones.
        * Changed the thumbnail style: use rounded corners.
        * Added a comment filter that ignores automatic camera comments such as
          "SONY DSC", "OLYMPUS DIGITAL CAMERA", etc.

        Bugs fixed:

        * Do not check if there is a thumbnail for thumbnail files. (#635948)
        * Correctly activate the default extensions when started the first
          time. (#635475)
        * Lack of the "selected" word in status bar. (#628098)
        * Compile with -fPIC -DPIC.  Re-applied patch from bug #572685.
        * Repaired sm-client support. (Josef Schmeisser)
        * Added focus stealing prevention code when launching an application.
        * Make PgUp/PgDown navigation work when started in fullscreen mode.
          (#642848)
        * Do not add a entry point if already present. (#627153)
        * The same bugfixes of the 2.12 series.

        New or updated application translations:

        * Chinese (Hong Kong) (Chao-Hsiung Liao)
        * Chinese (simplified) (lainme)
        * Chinese/Traditional (Chao-Hsiung Liao)
        * Danish (Joe Hansen)
        * Deutsch (Mario Blättermann)
        * Español (Daniel Mustieles)
        * Estonian (Rene Pärts)
        * Indonesian Translation (Andika Triwidada)
        * Russian (Yuri Myasoedov)
        * Swedish (Daniel Nylander)

        New or updated manual translations:

        * Español (Daniel Mustieles)
        * German (Mario Blättermann)

version 2.12.0
--------------

        Bugs fixed:

        * Do not make catalogs depend on search to fix a circular dependency.
          (#630311)
        * Fixed multi date update when set to 'date photo was taken'. (#630016)

        New or updated application translations:

        * Deutsch (Mario Blättermann)
        * Indonesian (Andika Triwidada)
        * Lietuvių (Aurimas Černius)
        * Punjabi/Panjabi (A S Alam)

version 2.11.92
---------------

	New features and user visible changes:

	* Slideshow: use the same keyword shortcuts used in fullscreen mode:
	  space to load the next image; backspace to load the previous image;
	  F5 and q to exit the slideshow; p to pause the slideshow.
	* Display a pause symbol when the slideshow is paused (#627529)
	* Emit a beep when there is no next or previous file.
	* Do not load non-visible thumbnails for web albums to save bandwidth.

	Bugs fixed:

	* Fixed 2.10 catalogs migration.
	* Improved image loading speed by loading the file before loading the
	  metadata.
	* Importer: fixed big memory consumption when importing videos.
	* Fixed some loading errors when quickly changing images.
	* Fixed grid not visible in crop tool when using cairo >= 1.9.2
	* Fixed generation of thumbnails when an external script is used.
	* Fixed crash when closing the main window and a directory loading is
	  underway.
	* Fixed visual glitches when scrolling an image.
	* Fixed crash when changing video in fullscreen mode.

	New or updated application translations:

	* Czech (Marek Černocký)
	* Español (Daniel Mustieles)
	* Finnish (Miika Laaksonen)
	* French (Bruno Brouard)
	* Italian (Paolo Benvenuto)
	* Slovenian Translation (Andrej Žnidaršič)

	New or updated manual translations:

	* Español (Jorge González)

version 2.11.91
---------------

        Bugs fixed:

        * Remember the inverse sorting option. (#628205)
        * Allow to print a modified image. (#595654)
        * Translate the selection type in the filter editor. (#627532)
        * Allow to create tags with spaces. (#628081)
        * Hide and disable some browser related commands in viewer mode.
          (#627534)
        * Fixed crash when changing the sorting order very fast. (#628071)
        * Fixed a crash when resizing many images. (#627688)
        * Fixed crash when saving comments. (#627929)
        * Fixed crash when closing the window. (#627535)
        * Export to PicasaWeb: show an error message if the authentication
          fails; allow to select another account if more then one is
          present. (#627531)
        * Allow to compile with libbrasero 3. (#627646)
        * Fixed the "save only modified fields" option in the comment dialog
          (#627439)
        * Fixed strings marked as translatable but not translated. (#627532)
        * Translate the property names in the property view.
        * Fixed the size of the vertical thumbnail pane: make the thumbnail
          pane big enough to avoid to scroll horizontally when its orientation
          is vertical
        * Fixed image viewer scrolling. (#627466)
        * Fixed saving of IPTC keyworks. Added support for multiple Xpm and
          Iptc metadata with the same key. (#627096)
        * Fixed saving of the 'Other' tab fields in the metadata dialog.
          Specify the type of the fields to allow to create them if they are
          not already present in the image. (#627231)
        * Allow to select non-local folders in the resize and convert tools
          (#627122)
	* More user's manual updates.

        New or updated application translations:

        * Chinese (simplified) (lainme)
        * Czech (Marek Černocký)
        * Danish (Joe Hansen)
        * Deutsch (Mario Blättermann)
        * Español (Jorge González)
        * Slovenian (Andrej Žnidaršič)

        New or updated manual translations:

        * Español (Jorge González)

version 2.11.90
---------------

	New features and user visible changes:

	* Slideshow: added ability to view the images in random order (#621244)
	* Change date tool: allow to set the date without touching the time
	  (#622245)
	* Video player: display the video speed in the status bar and allow
	  to change speed from 0.03 to 36.0 (#624454)
	* Removed the "do not change folder" option from the preferences dialog
	  as it was useless.
	* Added ability to organize files by tag: the organize command can
	  organize files by tag, creating a catalog for each tag found in the
	  scanned images.
	* The "fit window to image" is now a toggle action. (#617488)
	* Added two orientation tools: added tool to physically rotate the
	  images according to their embedded orientation; and a tool to reset
	  the embedded orientation without rotating the images.
	* Removed the preferences button from the import dialogs: instead of
	  the overwrite option just use the overwrite dialog when a file is
	  going to be overwritten; the rotate option is used only when
	  importing from a device and is set in the general preferences dialog.
	* New application icon.

	Bugs fixed:

	* Fixed escaping of UTF-chars in ui file (Gabor Kelemen) (#626990)
	* Fixed comment lost when upgrading from 2.10 to 2.11. (#626893)
	* Fixed unnecessary reloading when setting a filter (#625937)
	* Fixed saving of Xmp and Iptc description and title fields (#626284)
	* Fixed catalog reordering when the catalog is sorted and/or filtered
	  (#619442)
	* Fixed crash in fullscreen mode when viewing an image after a video.
	  (#626686)
	* Activate the web album extension b default.
	* Correctly hide and show the mouse pointer in the video player.
	* Fixed search test when the "match any" option was active.
	* Flicker importer: fixed crash when the image url is not found

	New or updated application translations:

	* Czech (Marek Černocký)
	* Deutsch (Mario Blättermann)
	* Español (Jorge González)
	* Slovenian (Andrej Žnidaršič)

	New or updated manual translations:

	* Español (Jorge González)
	* German (Mario Blättermann)

version 2.11.6
--------------

        New features and user visible changes:

        * Added ability to sort by path (#625610)
        * Crop tool: allow to force dimesions as multiple of 8 or other sizes
          (#622385)
        * Convert the old catalogs to the new format and location (#618302)
        * Show an information dialog after creating a web album. from the
          dialog allow the user to open the web album in the browser, or to
          view the destination folder with the file manager. (#624264)
        * [desktop_background] added ability to reset or open the preferences
          After setting a desktop background an info-bar is displayd at the
          bottom of the window to allow the user to reset the previous
          background or to open the background preferences.

        Bugs fixed:

        * Ignore hidden files and directories when importing files (#624579)
        * [importer] do not overwrite files with the same name (#624932)
        * [webalbums] rotate the destination file instead of the original file
          (#623906)
        * Fixed crash on paste. (#625187)
        * Fixed lossless rotation with libjpeg8. (#612809)
        * Remove the action group when a page is deactivated (#596906)
        * Do not link to the exiv2 extension if it's not built  (#624326)
        * Preserve the exif data after a lossless rotation
        * Removed use of the gdk_draw_* functions, always use cairo instead.

        New or updated application translations:

        * Deutsch (Mario Blättermann)
        * Español (Jorge González)
        * French (Claude Paroz)
        * Norwegian/Bokmaal (Kjartan Maraas)
        * Slovenian Translation (Andrej Žnidaršič)
        * Swedish (Daniel Nylander)

        New or updated manual translations:

        * Español (Daniel Mustieles)

version 2.11.5
--------------

	New features and user visible changes:

	* Added ability to add a tag to the selected files from the context
	  menu.
	* Added ability to assign a keyboard shortcut to a script.
	* Added ability to sort by image/video dimensions (#619299)
	* Added ability to search/filter by modified/original date (#623159)
	* Added other keyboard shortcuts.
	* Slideshow: added PageDown and PageUp as navigation keys (#623599)
	* Added the list of tags to the tag filter control.
	* Automatically select the catalog after creating it.
	* Use the non-clutter projector when no effect is selected.
	* Other updates to the user's manual.

	Bugs fixed:

	* Accessing exiv2 "pretty print" needs pointer to the metadata
	  container (grm1209) (#623995)
	* Facebook plugin issues: automatically select a newly created
	  catalog; apply embedded orientation before uploading; scale
	  images to have 720 pixels as max dimension (#623617)
	* Fixed crash when dropping an image to an empty Library (#619491)
	* Only include gdk-pixbuf.h as required by the latest gdk-pixbuf
	  (#623511)
	* Initialize all the info fields before registering (#620962)
	* Typing destination folder in preferences does not update it (#620765)
	* Cygwin support for 2.11 (#608115)
	* Fixed metadata write. (#623071)
	* Fixed crash when starting the slideshow with a folder without images.
	* Fixed crash when trying to print files that aren't images.
	* Fixed volume scale in the media player: allow to change the volume
	  from 0 to 200% instead of from 0 to 1000%
	* Fixed multiple selection with shift + mouse click.
	* Fixed a memory leak in the slideshow.
	* Fixed tiff image corruption when saving the metadata.

	New or updated application translations:

	* Czech (Marek Černocký)
	* Deutsch (Mario Blättermann)
	* Español (Jorge González)
	* French (Bruno Brouard)
	* Lithuanian (Žygimantas Beručka)
	* Slovenian (Andrej Žnidaršič)

	New or updated manual translations:

	* Español (Jorge González)

version 2.11.4
--------------

	New features and user visible changes:

	* Added a PhotoBucket exporter.
	* Added a static web album creation tool.
	* Allow to edit the metadata of many files at the same time.
	* Use a simple slideshow with no 3D effects if clutter is not available.
	* Added option to choose the thumbnail pane orientation.
	* Added drag&drop support to the folder tree. (#593431)
	* In slideshow mode, make button 1 view the next image and button 3
	  the previous image.
	* In the Crop tool added an optional grid. (Michael J. Chudobiak)
	  (#618026)
	* Added ability to select the aspect ratio in the Resize tool.
	* Added a share tool menu and the print command on the toolbar.
	* Allow to run gthumb even if clutter initialization fails.
	* Implemented the "confirm deletion" option. (#622386)
	* Avoid duplicates in the history. (#615442)
	* Expand parent after folder creation. (#616940)
	* Save and restore the options of "Rename files" dialog. (Christophe
	  Bisière) (#618182)
	* Save and restore the options of the Crop and Resize tools.
	* Move "Set as Desktop Background" item from "Tools" menu to
	  right-click popup menu. (Christophe Bisière) (#618430)
	* Added some aspect ratio in crop tools. (Stefano Pettini) (#587787)
	* Do not select the folder after right-clicking on it.
	* Updated the user's manual.  Migrated to Mallard. (Michael J. Chudobiak)

	Bugs fixed:

        * Fixed crash when using the red-eye removal tool. (#623000)
        * Use mtime to sort imported videos. (Matthias Hawran) (#619758)
        * Fixed crash when renaming and quickly hitting the Enter key. (#619352)
        * Removed unused DEFAULT_MAX_FILE_SIZE. (#616842)
        * Save the partial result of a cancelled search as well. (#617952)
        * Newly saved search does not immediately show up in the list of
          catalogs. (#618183)
        * Picasa export dialog too big Maximize on small resolutions (netbook)
          (Matthias Hawran) (#618262)
        * Set a minimum size for the file viewer to avoid a crash (#618442)
        * Fix some Gtk-CRITICAL messages generated by the list_tools extension
          (Christophe Bisière) (#618554)
        * Fixed "Overwrite all files" and "Do not overwrite any file" options
          (#617282)
        * Show a completed dialog after exporting to PicasaWeb. (#616782)
        * Generates thumbnails of on-camera videos much faster. (#617287)
        * Kill the script process as well when stopping the thumb loader
          (#614219)
        * Make gth_folder_tree_set_children() faster for big file lists
          (#611115)
        * Fixed crash after saving a crop with width or height of 1px.
          (Matthias Hawran) (#616454)

        New or updated application translations:

        * Czech (Marek Černocký)
        * Deutsch (Christian Kirbach)
        * Español (Jorge González)
        * Estonian (Rene Pärts)
        * French (Bruno Brouard)
        * Lietuvių (Aurimas Černius)
        * Low German (Nils-Christoph Fiedler)
        * Punjabi/Panjabi (A S Alam)
        * Slovenian (Andrej Žnidaršič)
        * Thai (Sira Nokyoongtong)

        New or updated manual translations:

        * Español (Jorge González)
        * Slovenian (Andrej Žnidaršič)

version 2.11.3
--------------

	New features and user visible changes:

	* Added an "Export to disc" tool, to burn files to optical discs.
	* Added a Flickr importer and exporter.
	* Added a Facebook exporter.
	* Save web account passwords in the GNOME Keyring if available.
	* Added option to avoid to store metadata in files. (#533819)
	* Added a thumbnail pane in viewer mode. (#533132)
	* Read the image thumbnail from the embedded metadata if available.
	* Organize extensions in categories.
	* Added a fade effect to the slide transition.
	* Make shift-click select a range of consecutive files. (#610419)
	* Use delete to move to trash and shift+delete to delete files. (#595763)
	* Updated the user manual.

        Bugs fixed:

        * Don't mark ids as translatable strings. (#615310)
        * Show the error dialog correctly, after a connection failure. (#614450)
        * Fixed listening to mount/unmount events. (#613875)
        * Use transupp 8 if libjpeg is version 8. (#612809)
        * Avoid thumbnail jumps. (#603642)
        * Fixed the default print font value. (#612629)
        * Use a better low quality zoom algorigthm. (#611812)
        * Allow to resize images larger than 10000 pixels. (#478990)
        * Fixed metadata lost after resize. (#610389)
        * Fixed crash when cancelling the export to disc operation. (#611456)
        * Reload the thumbnails when enabled again. (#610873)
        * Fixed crash when clicking Apply with no changes in the adjust colors
          tool. (#611156)

        New or updated application translations:

        * Basque (Iñaki Larrañaga Murgoitio)
        * Chinese (simplified) (Zhang Miao)
        * Danish (Joe Hansen)
        * Deutsch (Mario Blättermann)
        * Español (Jorge González)
        * Estonian (Rene Pärts)
        * Finnish (Miika Laaksonen)
        * Low German (Nils-Christoph Fiedler)
        * Norwegian/Bokmaal (Kjartan Maraas)
        * Slovenian Translation (Andrej Žnidaršič)
        * Swedish (Daniel Nylander)
        * Ukrainian (Maxim Dziumanenko)

        New or updated manual translations:

        * Español (Jorge González)
        * German (Christian Kirbach)
        * Simplified Chinese (Zhang Miao)

version 2.11.2.1
----------------

	Bugs fixed:

	* Fixed build error. (#610742)

        New or updated application translations:

        * Estonian (Rene Pärts)

version 2.11.2
--------------

	New features and user visible changes:

	* Added the "convert format" tool, the "change date" tool, the
	  "resize image" tool.
	* Added a Picasa Web importer and exporter.
	* Added ability to specify a list of audio files to play during a
	  slideshow, and to personalize the slidehoshow options for each
	  catalog.
	* Create the "command line" catalog if more than a file is specified
	  at command line.
	* Photo importer: always use the "Last imported" special catalog
	  instead of creating a new catalog for each import operation;
	  added ability to specify a custom format, the custom format consists
	  of the strftime format plus the %E code which is used to specify the
	  event name.
	* Rename files: added %D and %M for file dates; allow to specify a
	  custom date format; use %A instead of %attr for the generic attribute.
	* Resize tool changes: added ability to specify a destination
          folder; ask confirmation before overwriting a file. (#605914)
	* Wrap the file captions if they don't fit the available space. (#594134)
	* Allow to disable comment synchronization with embedded metadata.
          (#604720)
	* Allow to view an image directly in fullscreen mode double-clicking
	  with the middle mouse button.
	* Changed some key accelerators: control+delete to move the
	  selected files to the trash; control+shift+delete to delete the
	  selected files.
	* Used a preloader to speed-up image loading during a slideshow.
	* Added icons to the image tools.

        Bugs fixed:

	* Fixed double-click that sometimes doesn't open the viewer.
	* Fixed saving of tiff files when there is an alpha channel (#610388).
	* Fixed some focus issues (#608364, #608364).  Give focus to the file
          list by default (#608364).
	* Do not delete the metadata after rotating or resizing images (#610389)
	* Show a warning if no file was imported, or the delete operation is
          not supported (#610190)
	* Fixed not refreshed images after rotation (#610091).
	* Fixed importer failure if the delete operation is not supported (#610090)
	* Added missing modules and libraries to LIBADD (#608710)
	* Fixed crash when deleting files (#608717)
	* Make the code compile with the sunstudio compiler (Jerry Tan) (#608660)
	* Fixed crash on mouse wheel move (#608463)
	* Corrected minor spelling and grammar mistakes in the documentation
          (Christian Kirbach) (#597353)
	* Added a --disable-deprecated option to configure to disable
          deprecated API usage. (#607757)
	* Use a "command line catalog" if more files are specified on the
          command line (#606203)
	* Fixed crash when loading a file from a location which is not
          the current location. (#606205)
	* Fixed missing extension linking. Some extensions were "underlinked".
          (Fryderyk Dziarmagowski) (#606507)
	* Fixed slideshow crash.
	* Do not ignore CFLAGS. (Matthias Clasen) (#606227)
	* Use the default data dir instead of hardcoding the gthumb-2.0 value
          (#606052)
	* Modernized autotools syntax as suggested by autoupdate.
	* Activated silent rules by default.

	New or updated application translations:

	* Español (Jorge González)
	* Estonian (Rene Pärts)
	* Italian (Luca Ferretti)
	* Russian (Nickolay V. Shmyrev)
	* Slovenian Translation (Andrej Žnidaršič)
	* Swedish (Daniel Nylander)

	New or updated manual translations:

	* Español (Daniel Mustieles)

version 2.11.1
--------------

	New features and user visible changes:

	* Added a video/audio player.  Added ability to take a screenshot of
	  the current video.
	* Allow to edit IPTC/XMP fields.
	* Added 3D effects to the slideshow transition.
	* Use a tree view for the folders.
	* Catalogs are listed in the folder tree instead of using a different
	  pane.
	* Allow to create custom file filters.  Allow to view any kind of file
	  not just images, audio and video files.
	* Allow to search files in the libraries (catalog collections).
	* Added tool to automatically organize files in catalogs, based on
	  the file creation or modification date.
	* Allow to choose the metadata to display in the file list.
	* The cut and red-eye removal tools are now integrated in the image
	  viewer, instead of using a separate dialog.
	* Added an "Adjust colors" tool to modify the colors of an image in
	  single place.
	* Group imported files by date, automatically creating a catalog for
	  each different date, furthermore creates a catalog with all the
	  imported files.
	* Removed the Tools menu, the file list tools are now listed in a
	  toolbar dropdown button.
	* Allow to add files to catalogs using the context submenu, instead of
	  using a separate dialog.
	* Use a context submenu to open a file with an external application
	  instead of using a separate dialog.
	* Allow to set a custom name for the bookmark menu items.
	* Added a delete command to permanently delete files without moving them
	  to the trash.
	* Allow to choose the metadata to print, instead of just allowing to
	  print the comment.
	* Moved the system bookmarks in the Bookmarks menu.
	* Allow to set the file type specific options in the preferences dialog
	  instead of always asking them before saving a file.
	* The image properties are displayed in a sidebar, no more at the
	  bottom of the image.
	* Removed the Image menu. Image tools are now listed in a sidebar
	  when the image viewer mode is active.
	* Allow to set a title and a date for the catalogs.
	* Searches are updated in place, without the use of a separate dialog.
	* Removed the script menu, and moved the scripts in a toolbar dropdown
	  button. Simplified the script editor tough it still requires some
	  advanced skill to be used.
	* Started work to use modern icons. New Tango-ized application icon
	  by Ulisse Perusin.

	Technical changes:

	* Rewritten the whole code in order to use an extension (or plug-in)
	  based architecture that allows to add new features with ease.
	* Removed the use of old and deprecated libraries such as gnome-vfs,
	  libgnome, libgnomeui, libgnomecanvas, libbonobo and many others.

	Regressions:

	* Some tools, present in the 2.10 series, are missing because of the
	  complete code rewrite.  Some of these tools are considered important,
	  such as the web album exporter, and will be added during the 2.11
	  development series, other secondary tools will added in the next
	  development cycle (2.13).

version 2.10.12
---------------

	Bugs fixed:

	* Made the OK button the default widget in the rename dialog.
	* The existing import scripts did not properly unmount gvfs-mounted
        cameras. Gnome bug #560352, Ubuntu bug #351122.
	* Fixed various small memory leaks, bug #578282.


version 2.10.11
---------------

	* The "g" key now launches the "gimp" command, instead of the
	  deprecated "gimp-remote" command.
	* Added a new gthumb-import.desktop.in file to handle gvfs-mounted
          cameras more elegantly. The camera is first unmounted, and the
          libgphoto import routines are then run. Bug #560352.
	* Modified the build files to better support gtk on MAC OS / Quartz.
	  Bug #551225.
	* Provide support for the Mac OS X menubar. Bug #554240.

version 2.10.10
---------------

        New features and user visible changes:

        * Added ability to hide video and audio files, using the gconf key
          /apps/gthumb/browser/show_only_images.

        Bugs fixed:

        * #552453: gthumb 2.10.9 contains COPYING for GPL v3
        * #546383: gthumb 2.10.9 fails to link Patch by Götz Waschk.
        * Do not exclude xcf images from the file list.

version 2.10.9
--------------

	* Fixed bug #508873 - gthumb cannot scale up images
	* Fixed bug #510326 - x-content/* support
	* Fixed bug #510521 - Canceling Save stops movement between pictures
	* Fixed bug #477285 - Hitting enter in Open Location Dialog while
	  text entry is focused does nothing
	* Fixed bug #512374 - array accessed past end.
	* Fixed bug #543584 - fix build with libgphoto2 2.4.2
	* Fixed bug #544893 - Crash in web album <gthumb:if/>

version 2.10.8
--------------

	* If the directory doesn't exists go to the closest existing parent.
	  Fixes bug #495575 – infinite loop when browsing deleted dirs
	* Fixed bug #Bug 498741 – gthumb always saves thumbnails despite the
	  gconf option in apps -> gthumb -> browser -> save_thumbnails set
	  to "false"
	* Fixed bug #500719 – segfault when canceling batch operations
	* Fixed bug #486886: Crash opening an image with no Exif IFD1
	* Fixed bug #487982: can freeze gthumb during printing
	* Fixed a printing crash, g_free -> gtk_paper_size_free
	* Fixed bug #492111: Doesn't rotate pictures while importing
	* Fixed bug #492262: Rotate removes thumbnail
	* Fixed bug #492260: Crash on rotate on x86_64
	* Fixed bug #492169: Crash when moving directory to trash
	* Fixed bug #492370: monitor name conflict with libc on solaris10
	* Fixed exif tag read/write functions, so they can access 32-bit
	  values correctly on 64-bit platforms
	* Fixed bug #476989: gthumb doesn't move images if destination
	  directory is selected from folder drop down list
	* Fixed bug #495529: Search not working
	* Fixed bug #498995: gthumb gets it's locking wrong and crashes
	* When sorting by exif time, fall back to sorting by mtime if no
          exif time is present.
	* Fixed bug #438027: cancel isn't honoured in "reset exif orientation"
	  progress dialog or rotation-tool dialog
	* Fixed bug #499795: silently fails to save bmp picture
	* Fixed bug #496140: Crop Window opens too large for dual-screens

version 2.10.7
--------------

	* Fixed bug #481729: Crash browsing thru images when one is empty.
	* Fixed bug #482751: gthumb crashes if it cannot find cursor.
	* Fixed bug #485721: Crash in fullscreen mode after deleting an image.
	* Fixed bug #471234: Fix build with gcc 2.x
	* Fixed bug #485998: '[' and ']' don't work in fullscreen anymore.
	* Fixed Ubuntu bug #152246: gThumb does not allow to change
	  picture's "Last modified date" to "Photo digitalization date
	  (from EXIF data)"

version 2.10.6
--------------

	* Fixed bug #450675. Should delete the thumbnails of deleted files
	* Fixed bug #453986. Check for invalid unicode in embedded comments.
	* Fixed bug #454037. Invalid free when selecting Print in the menu.
	* Fixed bug #454489. Theme uses the wrong captions in the thumbnails.
	* The default import folder was not properly set to the correct XDG
	  "PICTURES" folder. Fixed.
	* Fixed bug #455911. Symlink/vfs problem (Ubuntu bug 109579).
        * Much faster loading of exif DataTime tags. This provides faster
          folder loading in the sort-by-DateTime mode.
	* Preload more thumbnails into memory in browser mode. Bug #457529.
	* Fixed bug #457685. Sort by Exif DateTime broken in list mode.
	* Show preview pane by default. Bug #452833.
	* Show filenames by default. Bug #452831.
	* Fixed Ctrl+H (show/hide hidden files) function.
	* Add/fix a busy cursor when loading folders and preloading the
	  selected image.
	* Fixed bug #439043. Preview area always shows last selected image.
	* Fixed bug #457936. Names with '#' character break rotation.
	* Fixed bug #446792. gThumb deletes pictures on failed import.


version 2.10.5
--------------
        * Fixed bug #448644 - Image brightness-contrast doesn't trigger
          save-ability.


version 2.10.4
--------------

        * Fixed Bug 432759 - update of the thumbnail index when files are
          added. Properly generates thumbnails for slowly generated files
          (e.g., files from a slow scanner, or oscilloscope images sent
          over a serial port).
        * Deleted unused functions: thumb_loader_get_max_file_size,
          thumb_loader_get_path, thumb_loader_set_uri, thumb_loader_get_uri,
          thumb_loader_get_image_loader.
        * When generating a new thumbnail, scale the image only if the
          original size is larger than the requested size.
        * Fixed Bug #440036 - index image maps are not xhtml compliant
	* Fixed Bug #438716 - IPTC comments are not seen by Picasa
	* Fixed Bug #444656 - write folders to CD does not work
	* Fixed Bug #446133 - Add PPM to supported types during import
	* Fixed Ubuntu bug 119769 - Escape angle brackets in filenames
	* Fixed Bug #447311 - g_thread_init warning when starting gthumb


version 2.10.3
--------------

	Bugfixes:
	* New shortcuts: Alt+S scaling, Alt+C cropping, Alt+R redeye removal.
	* New keybinding: keypad-* = zoom to fit. Bug 432700.
	* Makes PICTURES xdg-user-dir the default for import, bug #425365.
	* Try to extract embedded thumbnail from RAW images. Bug 431483.
	* Small memory leak fixed in web-exported error handling.
	* Small memory leak fixed in apply_transformation_jpeg.
	* Enable debug messages with an environment variable. Bug 361367.
	* Bypass libexif when writing tags, to avoid MakerNote corruption.
	  Bug #408185.
	* Don't list xcf files, no loader is available for them. Bug 433639.
	* Fixed bug 431838 - renaming with exif date and time doesn't work.
	* Fixed bug 432084 - Transient files confuse gThumb.
  	* When scaling down by a factor > 100, call gdk_pixbuf_scale_simple
          twice to avoid crashes, freezes. Related to bug 80925.
	* Added -w option to dcraw calls, to use the camera-specified
          white balance on raw images. Bug 431484.
	* Add support for ogg thumbnails. Bug 430777.
	* Run gtk-update-icon-cache in uninstall-hook, as per bug 362604.
	* Better code sharing: Use gdk_pixbuf_new_from_file_at_scale to load
	  jpeg thumbnails. Same speed as the old f_load_scaled_jpeg function.
	* Fixed a crash when a file has no recognized mime type. Bug 428278.
	* Fixed bug 407871 - Crash after deleting catalog file.
	* Check dimensions of all images types, not just jpegs, to avoid
          preloading giant tiff files. Bug 160460.
	* Fixed Bug 434445 - cache grows too large when viewing RAW files
        * Fixed Bug 434034 - improperly initialized GnomeVFSFileInfo instance.
        * Fixed Bug 434951 - Setting displayed date to exif date is disabled
          when the first selected image does not have exif data.
	* Fixed bug 435379. Add image/x-canon-cr2 to the list of known raw
	  photo mime types.
	* Fixed Bug 436872 - web export fails when image filenames contain
	  escapable characters
	* Fixed Bug 436881 - web export exports malformed xml
	* Fixed Bug 427986 - Navigating folder list with keyboard is difficult
	* Fixed Bug 438414 - crash when pressing e/r/l/m in empty folder


version 2.10.2
--------------
        Bugfixes:
        * Fixed bug #427868 - Import of photos cannot download RAW files
	* Return NULL if the dialog text entry is empty, instead of
          an empty string, to avoid creation of "no-name" catalogs
	* Fixed bug #423956 - Creating a web album at a ssh URI causes crash.
	* Fixed rotate-on-import function.
	* Fixed bug #423715 - Cancel pixbuf operation before closing the dialog
	* Fixed bug 427846 - Can't launch command line collections, and
	  crash when selecting "Catalogs" from the location bar.
        * Fixed a crash when a file has no recognized mime type. Bug 428278.

        Updated translations:
        Dzongkha (dz), French (fr), Brazilian Portuguese (pt_BR),
        Japanese (ja).


version 2.10.1
--------------
	Bugfixes:
	* The progess bar in the import dialog shows the overall download
	  progress now.  The delete operation is now asynchronous. (#156994)
	* Go to the destination folder when the 'go to destination folder'
	  option is active in the copy/move dialogs.
	* Fixed a bug that prevented the user to choose
	  'overwrite this image' or 'do not overwrite this image' options in
	  the overwrite dialog.
	* Fixed bug #420557 - View > Show/Hide > Toolbar is broken, no display
	* Fixed bug #414711 - thumbnail explosion if opening ~/.thumbnails
	* Do not add APPn and COM markers to the EXIF thumbnail. Bug 411861.
	* Fixed cache-pruning command on Solaris (bug 421787).
	* Added Alt+C for crop, Alt+R for resize.
	* Fixed problems resolving relative symlinks for ssh: URIs (#159884)
	* Fixed crash in search function when clicking "View". Bug #420788.
	* Fixed misdetection of CR2 files as TIFF files. Part of bug #421175.
	* Better search support for Unicode equivalencies. Bug 423272.
	* Normalize Unicode category names. Bug 423271.
	* Fixed bug #420614 - cancel async operation before closing importer

version 2.10.0
--------------
	Major bug fixes:
	* Fixed bug #414665 - Photo importer hangs and does not import photos
	* Fixed bug #389590 - List view not updated after file deleted

	Minor bug fixes:
	* Fixed bug #413595 - Add SVG to supported mime types?
	* Removed application-registry cruft.
	* Removed invalid menu categories in gthumb.desktop
	* Fixed bug #389872 - Incorrect initial cropping aspect ratio
	* Fixed bug #411861 - a JFIF marker is written, incompatible with EXIF
	* Fixed build with gcc 2 (#412444).
	* Fixed bug #407871 - Crash after deleting catalog file.
	* Fixed bug #98933 - Command Line collection should be deleted on
	  startup if no files are passed as arguments
	* Fixed bug #159884 - problems resolving relative symlinks with
	  reserved URI characters
	* Partly addressed bug #160460 - TIFF Image causes large memory
	  consumption

version 2.9.3
-------------
	New features:
	* Play audio clips using default external player

	Bug fixes:
	* Workaround for bug #329072 - gthumb doesn't display PCX image files
	* Fix for "image_loader_start" crashes. Bugs 351959, 386674 + dupes.
	* Fixed bug #378546 - Crash after exiting slideshow
	* Launch the registered video player instead of always launching "totem"
	* Use the default gtk+ overwrite confirmation dialog
	* Fixed bug #409799 - destroys file when double-clicking "Save" dialog
	* Fixed bug #347657 - Click on category text to checkmark a category
	* Fixed bug #346382 - False Positives in Catagory Search

version 2.9.2
-------------
	New features:
	* Added support for displaying gnome-vfs locations (bug #143197)
	* Added thumbnailing and player-launching for videos (bug #134366)
	* Added initial RAW photo support (bug #145564)
	* Added initial HDR photo supprt (bug #312896)
	* Added programmable hotkeys (numeric keypad 0-9)
	* Added the ability to manually specify photo print sizes
	* Added a filter bar, to limit displayed images

	Bug fixes:
	* Fixed bug #406092 - old image is displayed
	* Fixed bug #363643 - Shift+arrow expands selection, Shift+mouse doesn't
	* Fixed bug #354482 - Show "hidden" images.
	* Fixed bug #145334 - Folder list should respect .hidden files
	* Fixed bug #392632 - crash when repeatedly pressing Ctrl+E
	* Fixed bug #389870 - Add option to invert the crop aspect ratio
	* Fixed bug #361913 - greater efficiency during lossless rotates, etc
	* Removed the bonobo dependency, use gtkunique (bug #389197).
	* Reduced reported memory consumption - bug #310749.
	* Replace GnomeIconTheme with GtkIconTheme. Bugs #171593 and #396474.
	* Set manual sort mode for command line lists. Bug #326621.
	* Fixed bug #313562 - sort using same collation routines as Nautilus
	* Fixed bug #385605 - toolbar style: "text beside icons" doesn't work
	* Fixed bug #342994 - crossfading in slide shows should be optional
	* Fixed bug #335390 - "Find" should be "Search"
	* Fixed bug #389590 - update image after delete is broken.
	* Larger redeye preview area. Bug 389587.

version 2.9.1
-------------
	* Added red-eye removal tool (bug #140533).
	* Added mousewheel navigation (#131416).
	* New shortcut: press "g" to launch gimp.
	* New shortcut: press "i" for image info.
	* Added a zoom-to-width mode (#148971).
	* Removed filtering of Exif tags - all are shown now. Can display
	  GPS-related Exif tags now (#339648).  Added the ability to view
	  Exif "MakerNote" data (#339648).
	* Added "reset Exif orientation tag" tool (#361416)
	* Added proper support for the Exif orientation tag when importing,
	  rotating, and displaying JPEG images (#343867)
	* Added option to trim jpegs during transformations on images whose
	  dimensions are not multiples of the jpeg MCU, 8 (#361913)
	* Added sort-by-comment and by Exif DateTime (#373557, #167791).
	* Adds support for multiple auto-detected cameras, or
	  multiple modes for single cameras (#361967).
	* Enhancements to the crop dialog: added undo/redo support;
 	  allow to crop multiple times without exiting the dialog;
 	  allow to switch on/off the selection mask; zoom in/out with
 	  mouse wheel; zoom keeping the center of the image visible.
	* Allows file extension to be changed when bulk-renaming
	  (#338623 and #339037)
 	* Always use the rename series tool even to rename a single file
	  (#383439).
	* Added a new "BestFit" web album theme (#319933).
	* Include original filename in web-album image filenames (#173025).
	* New re-size options in web exporter to allow equal landscape and
	  portrait image sizes (#313671).
	* Added iso-code escaping of non-ASCII characters in web albums.
	* Migration to gnome-doc-utils (#346889).
	* Migrated from libgnomeprint to gtkprint (#362854).
	* Fixed comment wrapping when printing (#305046).
	* Fixed image scaling memory leak (#349576).
	* Replaced deprecated gnome_app functions (#171601).
	* Fixed bug #356623 - gth_location_new crasher.
	* More secure method of temporary file generation (#358894).
	* Removed the bonobo components.

version 2.7.9
-------------
	* Fixed bug #351058: build failure when -Wl,--as-needed is passed to
	  linker flags.
	* Fixed bug #350732: "loose" should be "lose"
	* Fixed bug #349556 - [PATCH] Little bug makes gThumb slower than it can
	  be.
	* Fixed bug #353390 – Fix default rotation angle in portrait print mode.
	* Fixed bug #353613 – Negative array access in get_extension.
	* Fixed bug #352747 – gthumb can't open folder through file selector.
	* Fixed compiler warnings.
	* Fixed compilation/installation errors when srcdir != builddir
	* Fixed bug #358326 – message: assertion `k < N_LOADERS'
	  failed
	* Fixed bug #358343 – web album: assertion `g_path_is_absolute
	  (local_full_path)' failed
	* Fixed bug #343982 – fix build with gcc 2.95
	* Fixed bug #355376 – "Help" shortcut should be "F1" instead of "Ctrl+H"

version 2.7.8
-------------
	* Set a smaller height for the progressbar to avoid an image resize.
	* Fixed memory deallocation bug that triggered random crashes.

version 2.7.7
-------------
	* Fixed bug #340406 - gthumb doesn't compain of nonexisting default
	  web-album theme.
	* Fixed bug #339645 - [2.7.5.1] caps-lock disables keyboard shortcuts
	* Fixed bug #339484 - Gthumb 2.7.5.1 doesn't store EXIF information in
	  JPEG files, when image is loaded directly
	* Fixed bug #339291 - "keep original filename" changes case
	* Fixed bug #339852 - index image maps creating wrong href
	* Fixed bug #340947 - gthumb -Wl,--as-needed patch

version 2.7.6
-------------
	* Always use the browser mode, added a --viewer command line option to
	  use the viewer mode for single images.
	* Fixed bug #336851 - gThumb crashes when I try "full screen"-mode
	* Fixed bug #337920 - created directory "doesn't exist" if it contains
	  spaces.
	* Fixed bug #336930 - Web album without JavaScript.
	* Fixed bug #334903 - Should save on hitting enter in “save as” dialog
	* Install theme-friendly icons.

version 2.7.5.1
---------------
	* Fixed photo importing.

version 2.7.5
-------------
	* Only display user visible drives in the location box.
	* Fixed bug #329889 - thumbnail generation and accentuated characters
	  in path.
	* Fixed little bug in crop dialog.
	* Fixed bug that prevented comments to be removed correctly when
	  iptc_data support was enabled.
	* Fixed command line catalog creation.
	* Fixed photo importing and fixed bug that prevented importing photos
	  when an instance of gthumb was already running.

version 2.7.4
-------------
	* Fixed bug #325833 – gthumb icon isn't on window title bar and windo
	  list applet.
	* Fixed bug #326844 – Scale Series: Prevent rename .jpg to .jpeg
	* Fixed bug #333102 – Image rotation action does not update the EXIF
	  tag correctly
	* Fixed bug #331714 - crash in Preferences Browser
	* Fixed bug #327245 - Full screen mode crippled if Xinerama is used
	* Fixed bug #313827 – Search does not work on categories with colon
	  symbol and similar names.
	* Fixed bug #331658 - EXIF attributes are not preserved after an image
	  modification + save
	* Fixed bug #327263 - Save doesn't work, save as does.
	* Fixed bug #327262 - Gthumb deletes exif data too aggressively

version 2.7.3
-------------
	* Fixed bug #329889 - thumbnail generation and accentuated characters
	  in path.
	* Fixed bug #329139 - Doesn't determine image type from content anymore
	* Improved the crop dialog.
	* Fixed bug #329600 – Deleting the Catalogue Search\ Results causes
	  erroneous behaviour.
	* Fixed bug #328010 - Add GNOME or GTK categories o the .desktop file
	* Fixed bug #327049 – Fix build with gcc 2.95
	* Fixed bug #325846 - gthumb refuses to compile with libexif-0.6.13.
	* Added ability to enable/disable many features in configure.in
	* Fixed bug #307959 - "Open With..." dialog offers gthumb as an option.
	* Fixed bug #324017 - failed to initialize Canon powerShot G5 due an GTK
	  bug.
	* Fixed bug #325211 - Image quality in web album.
	* Fixed bug #325308 - gThumb crash when reaching the end of a directory
	  during fullscreen viewing.
	* Fixed bug #325507 - gthumb crashes if startup_location gconf pref is
	  invalid.


version 2.7.2
-------------
	* Crossfading in slideshow mode (#312116)
	* Removed the location entry.  Use a specialized combobox with the
	  parent folders, drives and bookmarks (#324970)
	* Added ability to select the image type in the scale series dialog.
	* Adjust photo orientation on import.
	* Use a more accurate method to check whether an image is a gif
	  animation.
	* Added a Flickr like web album theme. Remove the BlueStrips theme.
	  Updated the Wiki web album theme.
	* Use gnome-vfs as much as possible.
	* Use p as keyword shortcut to pause/resume a slideshow.
	* Fixed bug #301726 – "Create Web Album" does not use relative
	  paths for images.
	* Fixed bug #310649 – Next/prev keyboard shortcuts in slides mode
	  shouldn't block
	* Fixed bug #319467 – Add keyboard shortcut to Lossless JPEG rotation.
	* Fixed bug #323872 – Import button should be greyed out while importing
	* Fixed bug #324812 – rotating images not working in gthumb fullscreen
	  mode.
	* Fixed bug #318828: Exif Orientation Tag Incorrectly Updated.
	* Fixed bug #322158: please add a generic name to the desktop file
	* Fixed bug #321924: "Sigle Window" is a typo
	* Fixed bug #321500: Makefile.am in components/catalog-view is broken
	* Fixed bug #305165: gthumb crash resize.
	* Fixed bug #321124: Confusing handling of --disable-schemas-install
	* Fixed bug #320947: Create Web Album Tool doesn't generate HTML pages
	  with International characters.
	* Fixed bug #321274: Incorrect log2 definition/detection.

version 2.7.1
-------------
	* Requires gtk+ >= 2.6.0 and glib >= 2.6.0.  Use gtk_about_dialog,
	  gtk_filechooser_button, gtk_font_button instead of gnome_font_picker
	  and gtk_color_button instead of gnome_color_picker.
	* Added a viewer window to view single images, with the optional
	  ability to reuse an already opened viewer window.
	* Added a window factory to use only one executable.
	* Added undo/redo support.
	* Added ability to manually reorder images in a catalog (#130063).
	  Allow to use the manual order in the "web exporter", "png exporter"
	  and "rename series" tools.
	* Added a 'scale series' tool.
	* Optionally store comments inside jpeg images using the libiptcdata
	  library.
	* Added ability to rotate to left/right a series of images,
	  or to auto-adjust the images orientation directly from the toolbar.
	* Added ability to customize the paper margins in the print dialog.
	* Added ability to print a non-saved image, and to set as wallpaper a
	  non-saved image.
	* Added a "View destination" option in the choose folder dialog.
	* Added ability to view the destination catalog after adding the images
	  to a catalog, and remember the user choice.
	* Added 'open' and 'open in new window' in the catalog list context
	  menu.
	* Removed Clean and NeatSquare album themes.  Added a Wiki theme
	  inspired by the wikipedia style.
	* Added time offset to the 'Change Date' tool and allow to change the
	  comment date as well.
	* Disable the screensaver during a slideshow.  Allow to pause/resume
	  a slideshow.
	* Added image dithering operations using the web palette or in
	  black and white.
	* Removed 'normalize contrast' and 'stretch contrast' commands.
	* Use the Edit->Rename command even to rename a series of images
	  (#171050).
	* Added a navigation bar below the location entry.  Removed the
	  navigation buttons from the main toolbar.  Added fullscreen button
	  on the main toolbar.
	* Added the image type in the metadata pane.
	* Underline the item name only when the mouse is over it in single click
	  mode.
	* Applied the same bugfixes of the 2.6.x series.

version 2.6.4
-------------
	* Fixed bug #145325: xhtml/xml support for Web Albums
	* Create high quality thumbnails when the thumbnail size is greater
	  than 128.  Fixes bug #152441: fuzzy thumbnails, not sharp thumbnails.
	* Fixed bug #164961: Browsing for Web Album location adds %20 to names
	  with spaces.
	* Fixed bug #160232: gthumb doesn't import pictures from
	  ARGUS DC1500 camera.
	* Fixed bug #165478: Rotated images no longer auto-refresh in image
	  viewer.
	* Fixed bug #167502: crash trying to open specific image.
	* Fixed bug #168938: Crash when loading a photo.

version 2.6.3
-------------
	* Fixed bug #161635: Scrollbar doesn't reset when viewing with next and
	  previous.
	* Fixed bug #156870: Duplicates allowed in catalogues.
	* Fixed bug #149883: Saving pictures with files extensions in
	  uppercase doesn't work.
	* Fixed bug #142897: Selected Categories area of Categories window
	  appears to be directly editable, but it is not.
	* Fixed bug #160003: gthumb toolbar horizontal icons + text only shows
	  icons.
	* Fixed bug #162323: Doesn't remember settings for serial port cameras.
	* Fixed bug #162852: pressing the camera icon while importing photos
	  does bad things
	* Fixed bug #163417: Filename in Rename Series (date %d) contains ":"
	  which is invalid filename under Windows.
	* Fixed bug #156677:  - ctrl+S should be the save shortcut, not the
	  Slide Show
	* Fixed bug #143102: gThumb SHOULD save sizes when window is maximized.
	* Fixed bug #164344: EXIF hour off by one (DST)
	* Fixed bug #164293: bad time in rename functionality
	* Fixes bug #143161: Select previous directory in directory list.
	* Fixes bug #149707: Remember last catalog for next catalog operation.
	* Fixes bug #164325: "Import Photos" error handling when import
	  destination is read-only or device is full.
	* Classic and ClassicClips album themes are now xhtml compliant.

version 2.6.2
-------------
	* Fixed bug #159492: freezes when trying to create thumbnail for a JPEG
	  file.
	* Fixed bug #159672: log2() function already defined under cygwin.
	* Fixed bug #159661: Symlinks in the root directory are incorrectly
  	  resolved.

version 2.6.1
-------------
	* Fixed bug #158682: Modified image auto-saved through confirmation
	  dialog loses EXIF data.
	* Fixed bug #158253: Crash when parsing dir with UTF8(?) filenames
	* Fixed bug #158174: Clicking cancel while thumbnail list is still
	  being extracted from camera crashes gthumb.
	* Fixed Bug #156851: Crash on startup on 64-bit architectures,
	  and other 64-bit cleanliness issues.
	* Fixed bug #156933: Patch to enable resizing of Import Photos dialog.
	* Fixes bug #152542: Add F12 keybinding to the Revert action.
	* Fixes bug #157761: Cannot resize the columns in the
	  "find duplicates" dialog of gthumb.
	* Enhanced usability with non-loadable images, for example xcf images.

version 2.6.0.1
---------------
	* Fixed bug #155958: Save as report incorrect write permissions issue.

version 2.6.0
-------------
	* Check libraries version when configuring.

version 2.5.2
-------------
	* Allow to burn the current catalog.
	* Save and restore the geometry of the comment and categories dialogs.
	* Fixed bug #134671: `Zoom to Fit' needlessly scales down image
	* Display a "no image" message in the image list when no image
	  is present in the current folder/cartalog.
	* Removed the "click on image to enlarge" message from the web
	  album themes.
	* Updated the user's manual.

version 2.5.1
-------------
	* Added supported mime types list to the .desktop file.
	* Fixed bug #150729: Problems saving .JPEG images.
	* Added a resize grip to the statubar.
	* Added nautilus:required_directory_content_mime_types
	  attribute to the catalog view component.

version 2.5.0
-------------
	* Use the Gtk+ UI Manager to handle menus and toolbar.
	* Use the Gtk+ FileChooser for saving and loading images or selecting
	  folders.
	* New comment system that saves comments in the .comments subfolder.
	* Added ability to write images and their comments to CDs using
	  Nautilus.
	* Make the comments dialog and the categories dialog modeless.
	* Preserve EXIF data when saving an image.

version 2.4.0
-------------
	* Allow to download video and audio files from a digital camera.
	* Resized album theme previews.
	* Removed the style attributes from the album theme files, uses css
	  classes instead.
	* Use '2' to set the zoom level to 200% and '3' to set it to 300%.
	* Fixes debian bug #241800: gthumb: incorrect treatment of accented
	  character in tools - rename series

version 2.3.3
-------------
	* Fixed bug #138979: DnD for non-Latin1 filenames fails.
	* Fixed comment saving in folders with spacial characters.
	* Recognize .JPG or .JPEG files as images.
	* Added zoom buttons to the fullscreen toolbar.
	* Updated the manual.
	* The thumbnail inner border is slimmer now.
	* Properly reset the modified flag when the current image is saved.
	* Save the position of the paned window.

version 2.3.2
-------------
	* Fixed bug #136097 (gthumb 2.2.1 ignores "save only changed fields"
	  tickbox).
	* Fixed bug #135110 (An UTF8 string was not converted to the current
	  locale (again)).
	* Fixed bug #126452 (Compilation error in data/albumthemse/BlueStripes
	  with index.xml.in parsing.
	* Fixed bug #136168 (Images with capitalized extensions (.JPG) are not
	  found by the image search/browser).
	* Fixed bug #136451 (Quick multiple selection problem).
	* Fixed bug #133452 (thumbnail-pane is resized when the application
	  window is resized).
	* Removed the destination manager in the Create Web Album dialog.
	* Fixed drag & drop (again :).

version 2.3.1
-------------
	* Fixed bug #133131 (exif orientation tag not updated).
	* Fixed bug #132614 (Comment font option menu in print dialog is
	  not disabled by default).
	* Fixed bug #109016 (Searches should match directories too).
	* Fixed bug #112254 (status line shoudl use date from comment rather
	  than mtime).
	* Fixed bug #130473 ("add comment" dialog uses ctime instead of mtime).
	* Fixed bug #130382 (gthumb keyboard usability issue).
	* Fixed bug #112254 (Needs Randomize Option on Slide Show).
	* Fixed bug #130823 (gthumb does not maintain permissions on files).
	* Fixed bug #130824 (gthumb does not complain about lack of
	  permissions).
	* Fixed bug #130829 (gthumb ignores current directory when starting).
	* Fixed bug #131852 (Moving images via drag-and-drop no longer works).
	* Fixed bug #131853 (Changing folders produces flicker in image
	  viewer).
	* Fixed thumbnail creation for jpeg images.
	* Fixed drag and drop.

version 2.3.0
-------------
	* Added photo importer tool.
	* Added crop image tool.
	* Added ability to print more images on one sheet.
	* Ask whether to save a modified image.
	* Implement generic transformations of non jpeg images.
	* Use %f, %d, %s instead of *, ! and ? in the renaming tool.
	* Allow to save void searches.
	* Update "View Next Images" and "View Prev Image" sensitivity.
	* New search icon.
	* When serching use the file mtime if no time is defined in the
	  comment.
	* Removed Exit from the File menu.
	* Simplify the Index Image dialog.
	* Check write permissions before saving an image.
	* Use a faster loader for jpeg images when creating thumbnails.
	* Do not launch Nautilus explicitly, use gnome_url_show instead.
	* Added --import-photos option to automatically open the import
	  photos dialog.

version 2.2.0
-------------
	* Bugfixes.

version 2.1.9
-------------
	* Bugfixes.

version 2.1.8
-------------
	* Bugfixes.

version 2.1.7
-------------
	* Manual updated.
	* Bugfixes.

version 2.1.6
-------------
	* Bugfixes.

version 2.1.5
-------------
	* Bugfixes.

version 2.1.4
-------------
	* Bugfixes.

version 2.1.3
-------------
	* Web Album: added ability to resize images before copying them
	  to the destination, and to personalize the theme choosing the
	  image caption.
	* Print dialog: the user can choose the comment font;
	  better preview; remember all settings; allow to set a custom
	  paper size.
	* Bugfixes.

version 2.1.2
-------------
	* Auto load a folder when hovering on it during a
	  'drag & drop' operation.
	* Added normilize and stretch contrast.
	* Added ability to change the preview content, now you can
	  view the image itself (old behaviour), the image data
	  (including exif data if present), or the comment.
	* Added ability to insert the image size in the 'rename
	  series' tool.
	* Search is case insensitive now.
	* Added prev, next buttons to the fullscreen toolbar.
	* New print dialog, easier, prettier and saves the preferences.

version 2.1.1
-------------
	* Added ability to insert image date in the 'rename series' tool.
	* Fixed jpeg saving.
	* Fixed toolbar not following the system style.
	* Fixed album exporter creating a broken previous page link.

version 2.1.0
-------------
	* New (faster) icon list widget.
	* Use the new thumbnail system (share thumbnails with Nautilus 2.2).
	* Print dialog ported to libgnomeprint 2.2.
	* New tool: Create Web Album.
	* Added ability to change list view (list or thumbnails).
	* Compile some tools as dynamic modules, and load them only
	  when needed.
	* Slideshow includes only selected images when more than one
	  image is selected.
	* Update the icon theme on the fly.
	* Added a black_background option to always use a black
	  background for the image viewer (only settable via gconf).

version 2.0.1
-------------
	* Bugfixes.

version 2.0.0
-------------
	* Updated manual.
	* Bugfixes.

version 1.108
-------------
	* Update only visible thumbnails.
	* Bugfixes.

version 1.107
-------------
	* Make image operations asynchronous and cancellable.
	* Added image saving support to the viewer component.
	* Bugfixes.

version 1.106
-------------
	* New image operations: auto adjust color levels, equalize histogram.
	* Added an histogram tab to the image properties dialog.
	* Delete operations now move files and folders to the Trash.
	* Added ability to copy, move and delete recursively folders.
	* Better Drag & Drop support.
	* Added a rename option to the overwrite dialog.
	* Use a folder selector dialog to select the destination folder when
	  copying or moving files.
	* Bugfixes.

version 1.105
-------------
	* New tools: edit image (hue, brightness, contrast, saturation,
	  color balance, etc.), convert format, change timestamp.
	* Use gconf as configuration system instead of gnome-config.
	* Added session management support.

version 1.104
-------------
	* New tool: find duplicates.
	* Added an image properties dialog that displays various image
	  properties and EXIF data if present (you need libexif).
	* Added ability to print the comment alongside the image.
	* Added option to choose the click policy.
	* Added "duplicate image" operation.
	* Better handling of long comments.
	* The image view component now supports printing, so you can print
	  an image (and its comment) using Nautilus.

version 1.103
-------------
	* New tool: jpeg lossless transformations.
	* The user can edit/view comments and delete images in fullscreen
	  mode.
	* Changed the fourth layout type to something more usefull.
	* Automatically update the content of a folder.

version 1.102
-------------
	* New tool: rename series of images.
	* Added a maintenance dialog where the user can delete old/all
	  comments/thumbnails, and backup and restore comments.
	* Added header and footer support to the "Index Image" tool.
	* Re-added the "Toolbar Style" option.
	* Added Next/Prev Image buttons on toolbar.
	* Click on an image to view the next one.
	* Minor usability improvements.
	* Bugfixes.

version 1.101
-------------
	* Changed arrangement of menus.
	* Preload next 2 images and previous one when browsing.
	* Added ability to view an image in black and white.
	* Bugfixes.
	* Removed a few memleaks.

version 1.100
-------------
	* Ported to GNOME 2.
	* Added ability to go back and forward in history.
	* Added ability to rename and delete folders.
	* Better error reporting.
	* Removed redundant options.

version 0.10
-------------
	* Improved usability of the "Open with" dialog.

version 0.9.9
-------------
	* View fullscreen directly from the contextual menu of a thumbnail.
	* Option to switch automatically to full screen mode when the
	  slideshow starts.
	* The user can specify an editor different from the ones associated
	  with images.
	* Bugfixes.

version 0.9.8
-------------
	* Minor features added.
	* Bugfixes.

version 0.9.7
-------------
	* Bugfixes.

version 0.9.6
-------------
	* Selection works better when directories contain a lot of files.
	* The location entry can stay on a separate toolbar.
	* More keyboard shortcuts.
	* Added "fit image to window only if larger" mode.
	* Bugfixes.

version 0.9.5
-------------
	* Added a search tool.
	* Made an image viewer component.
	* New icon.
	* Bugfixes.

version 0.9.4
-------------
	* Bugfixes.

version 0.9.3
-------------
	* New feature: Add comments to images.
	* Ask what to do when trying to overwrite a file.
	* Bugfixes.

version 0.9.2
---------------
	* Fixed RPM build.
	* Added 2 more layouts (Josua Groeger).

version 0.9.1
-------------
	* New feature: Save thumbnails as single image.
	* Various usability improvements.
	* Mouse wheel support.

version 0.9
----------
	* Faster zooming.
	* Added a navigation window ala GIMP.
	* Fully usable with the keyboard.
	* Added a little manual.
	* Can accept multiple directories at command line.

version 0.8
-----------
	* Uses Gnome-VFS.
	* Bugfixes.

version 0.7.2
-------------
	* Added print support (optional).
	* Fixed gdk-pixbuf detection.

version 0.7.1
-------------
	* Translations: French, Japanese.

version 0.7
-----------
	* New option: Thumbnails size.
	* Added history menu.

version 0.6.4
-------------
	* Bookmarks are in a menu now (ala Nautilus).
	* Bugfixes.

version 0.6
-----------
	* New thumbnails view.
	* New option: change window layout.

version 0.5
-----------
	* New options: transparency type, checks color and size (ala Gimp).
	* Rotate, Flip and Mirror image (not for animations).
	* Faster image scrolling.

version 0.4
-----------
	* Play GIF animations.
	* Drag & Drop.
	* Use Nautilus thumbnails (read only).

version 0.3
-----------
	* Options dialog.
	* TAB completion in location entry.
	* More keyboard shortcuts.
	* Translations: Dutch, Korean.

version 0.2
-----------
	* First public version.