summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: a90bb97bed4bc8115bdd5af4dfd51bd68a502273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
2006-02-06  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.13.7 release

2006-02-06  Rodney Dawes  <dobey@novell.com>

	* configure.in:
	* 24x24/Makefile.am:
	* 48x48/Makefile.am:
	* 24x24/animations/Makefile.am:
	* 48x48/animations/Makefile.am:
	Update for the new 24px and 48px size animation sequences

2006-02-06  Jakub Steiner <jimmac@ximian.com>

	* process-working: use a gradinet to better work on grey gtk
		themes. add 24x24 and 48x48 versions.
	
2006-02-06  Rodney Dawes  <dobey@novell.com>

	* configure.in:
	* 16x16/Makefile.am:
	* 16x16/animations/Makefile.am:
	Add all the Makefile magic to install the animations

	* 16x16/animations/process-idle.png: Single frame of the animation
	for compatibility with gnome-spinner-rest

2006-02-06  Jakub Steiner <jimmac@ximian.com>

	* scalable/places/folder-remote.svg
	* scalable/places/folder.svg
	* scalable/places/user-home.svg
	* scalable/status/folder-drag-accept.svg
	* scalable/status/folder-open.svg
	* scalable/status/folder-visiting.svg: lighten up a bit


2006-02-06  Jakub Steiner <jimmac@ximian.com>

	* folder-remote: in SVG now
	* document-print-preview: only bitmap for now
	* animations/process-working: new throbber in the animation
		context
	
2006-02-04  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.13.6 release

2006-02-03  Rodney Dawes  <dobey@novell.com>

	* configure.in: Up icon-naming-utils requirement to 0.6.7

2006-02-03  Rodney Dawes  <dobey@novell.com>

	* */filesystems/gnome-fs-regular.*:
	Remove this icon to be replaced by text-x-preview

	* */mimetypes/Makefile.am:
	Update for additions/removals of icons

	* */mimetypes/gnome-mime-application-x-gnome-saved-search.*:
	This is replaced by folder-saved-search in the places context

	* */mimetypes/text-x-preview.*: New icon to replace the ugly old
	gnome-fs-regular icon for people who use text previews

	* 24x24/*/*.png: Updated to use the 22x22 icons with 1px border
	
2006-02-03  Rodney Dawes  <dobey@novell.com>

	* 16x16/filesystems/Makefile.am:
	* 16x16/filesystems/gnome-fs-regular.png:
	Add new-style icon for gnome-fs-regular at 16x16 size

2006-02-03  Luca Ferretti  <elle.uca@libero.it>

	* 48x48/Makefile.am: remove mimetype from SUBDIRS to fix the build

2006-02-01  Rodney Dawes  <dobey@novell.com>

	* configure.in: Remove 48x48/mimetypes/Makefile from AC_CONFIG_FILES

	* 48x48/mimetypes: Remove these icons

2006-01-23  Luca Ferretti  <elle.uca@libero.it>

	* 48x48/mimetypes/Makefile.am: remove all entries in icon_DATA, icons
	for MIME types are now under scalable (someone should remove files from
	repository too).

2006-01-23  Luca Ferretti  <elle.uca@libero.it>

	* scalable/devices/Makefile.am:
	* scalable/mimetypes/Makefile.am: tab, not spaces.

2006-01-23  Luca Ferretti  <elle.uca@libero.it>

	* scalable/devices/Makefile.am: add MAINTAINERCLEANFILES and 
	install-data-local rules
	* scalable/mimetypes/Makefile.am: ditto, plus add package-x-generic.svg
	to icons_DATA

2006-01-19  Jakub Steiner <jimmac@ximian.com>

	* mimetypes/Makefile.am: install the icons
	* mimetypes/font-x-generic.svg
	* mimetypes/fonx-x-generic.svg: fix typo
	* mimetypes/gnome-mime-application-x-gnome-saved-search.svg:
		removed. will need to go to icon-naming-utils (linking to
		folder-saved-search)
	* mimetypes/text-html.svg: small tweaks

2006-01-19  Jakub Steiner <jimmac@ximian.com>

	* scalable/mimetypes/application-x-executable.svg
	* scalable/mimetypes/audio-x-generic.svg
	* scalable/mimetypes/fonx-x-generic.svg
	* scalable/mimetypes/image-x-generic.svg
	* scalable/mimetypes/package-x-generic.svg
	* scalable/mimetypes/text-html.svg
	* scalable/mimetypes/text-x-generic.svg
	* scalable/mimetypes/text-x-script.svg
	* scalable/mimetypes/video-x-generic.svg
	* scalable/mimetypes/x-office-address-book.svg
	* scalable/mimetypes/x-office-calendar.svg
	* scalable/mimetypes/x-office-document.svg
	* scalable/mimetypes/x-office-presentation.svg
	* scalable/mimetypes/x-office-spreadsheet.svg: scalable mimetypes

2006-01-18  Jakub Steiner <jimmac@ximian.com>

	* scalable/places/user-trash.svg
	* scalable/status/user-trash-full.svg: alignment/color fixes

2006-01-18  Jakub Steiner <jimmac@ximian.com>

	* document-print: bitmaps for print icon
	
2006-01-17  Luca Ferretti  <elle.uca@libero.it>

	* index.theme.in: fixed a typo in Directories key

2006-01-17  Jakub Steiner <jimmac@ximian.com>

	*	22x22/mimetypes/audio-x-generic.png
	* 22x22/mimetypes/font-x-generic.png
	* 22x22/mimetypes/image-x-generic.png
	* 22x22/mimetypes/package-x-generic.png
	* 22x22/mimetypes/text-html.png
	* 22x22/mimetypes/text-x-generic.png
	* 22x22/mimetypes/text-x-script.png
	* 22x22/mimetypes/video-x-generic.png
	* 22x22/mimetypes/x-office-address-book.png
	* 22x22/mimetypes/x-office-calendar.png
	* 22x22/mimetypes/x-office-document.png
	* 22x22/mimetypes/x-office-presentation.png
	* 22x22/mimetypes/x-office-spreadsheet.png
	*	16x16/mimetypes/audio-x-generic.png
	* 16x16/mimetypes/font-x-generic.png
	* 16x16/mimetypes/image-x-generic.png
	* 16x16/mimetypes/package-x-generic.png
	* 16x16/mimetypes/text-html.png
	* 16x16/mimetypes/text-x-generic.png
	* 16x16/mimetypes/text-x-script.png
	* 16x16/mimetypes/video-x-generic.png
	* 16x16/mimetypes/x-office-address-book.png
	* 16x16/mimetypes/x-office-calendar.png
	* 16x16/mimetypes/x-office-document.png
	* 16x16/mimetypes/x-office-presentation.png
	* 16x16/mimetypes/x-office-spreadsheet.png: mimetype refresh

	
2006-01-17  Jakub Steiner <jimmac@ximian.com>

	* 16x16/actions/new-appointment.png:
	* 22x22/actions/new-appointment.png: cleanup

2006-01-17  Jakub Steiner <jimmac@ximian.com>

	* 16x16/status/folder-open.png:
	* 22x22/status/folder-open.png: updated style
	* 16x16/status/folder-drag-accept.png:
	* 22x22/status/folder-drag-accept.png: updated style
	* 16x16/status/folder-visiting.png:
	* 22x22/status/folder-visiting.png: updated style

2006-01-17  Jakub Steiner <jimmac@ximian.com>

	* 22x22/status/user-trash-full.png:
	* 22x22/places/*: let icon-naming-utilities deal with the legacy
		24x24 size.

2006-01-17  Rodney Dawes  <dobey@novell.com>

	* 24x24/apps/Makefile.am:
	* scalable/apps/Makefile.am:
	Cleanups and use of icon-naming-utils to map compat names

	* 24x24/apps/volume-knob.*:
	* scalable/apps/volume-knob.*:
	Renamed to multimedia-volume-control as	per the Icon Naming Spec

2006-01-17  Rodney Dawes  <dobey@novell.com>

	* 16x16/devices/computer.png: Use a blue screen like the larger
	versions of this bitmap

	Fixes #165860

2006-01-17  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.13.5.1 release

2006-01-17  Rodney Dawes  <dobey@novell.com>

	* 48x48/devices/Makefile.am:
	* 48x48/places/Makefile.am:
	Fix a couple of incorrect size settings that break the theme

2006-01-17  Jakub Steiner <jimmac@ximian.com>

	* 16x16/places/folder-remote
	* 16x16/places/folder
	* 16x16/places/network-server
	* 16x16/places/network-workgroup
	* 16x16/places/user-desktop
	* 16x16/places/user-home
	* 16x16/places/user-trash
	* 16x16/status/user-trash-full: follow tango style guidelines more
		closely

2006-01-16  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.13.5 release
	
2006-01-16  Rodney Dawes  <dobey@novell.com>

	* configure.in: Require icon-naming-utils >= 0.6.5 for compat
	Set the themedir variable here, to improve maintainability

	* index.theme.in: Update for new contexts, and removals

	* *: Update to use the icon naming spec where we can for now
	Get rid of extra duplicate icons, and use generic versions instead
	Remove extraneous sizes to prepare for 16, 22, and scalable only in
	the future

	Solves #317460, #318505, #163693, #303601, #112909, #169745

2006-01-13  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_person.xcf.bz2:
	* 16x16/stock/generic/stock_person.png:
	* 24x24/stock/generic/stock_person.xcf.bz2:
	* 24x24/stock/generic/stock_person.png: 
	* scalable/stock/generic/stock_person.svg: An abstract figure 
		to avoid bug #311844 I'm expecting being labeled racist 
		in the next bugreport.
	
2006-01-09  Jakub Steiner <jimmac@ximian.com>

	* stock_media-shuffle.png: syncing proper names >> now stock_shuffle. 
		Unfortunately thing look for stock_repeat and stock_shuffle.
		
2006-01-03  Rodney Dawes  <dobey@novell.com>

	* Makefile.am:
	* configure.in: Disable the checks for hicolor, as we no longer install
	icons into the hicolor theme, with this commit

	* */*/Makefile.am: Don't install gnome icons to hicolor, to avoid the
	possibility for conflicts, when we move all the gnome icons over to the
	Icon Naming Specification names
	
2006-01-02  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.13.4 release

2006-01-02  Jakub Steiner <jimmac@ximian.com>

	* index.theme.in: reverted on Rodney's request

2006-01-02  Jakub Steiner <jimmac@ximian.com>

	* index.theme.in: sort directories by size, ascending.
	
2006-01-02  Jakub Steiner <jimmac@ximian.com>

	* gnome-mime-application-x-gnome-saved-search: saved search
		mimetype. Alex' request.
		
2005-12-22  Rodney Dawes  <dobey@novell.com>

	* index.theme.in: Fix filesystems and mimetypes at 48x48 size to be
	Fixed instead of Scalable (probable fix for bug #315841)
	Change minimum size of scalable directories to 32, so that we don't
	scale the images down too far, for weird smaller sizes

2005-12-13  Sunil Mohan Adapa  <sunil@atc.tcs.co.in>

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

2005-11-14  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.13.2 release

2005-11-14  Rodney Dawes  <dobey@novell.com>

	* */mimetypes/Makefile.am: Remove specific video type icons
	
	* */mimetypes/gnome-mime-video-*.*: Removed these specific video type
	icons so that we only have the generic video icon

2005-10-24  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.13.0 release

2005-10-24  Jakub Steiner <jimmac@ximian.com>

	* gnome-mime-image: fixups

2005-10-24  Rodney Dawes  <dobey@novell.com>

	* 48x48/mimetypes/Makefile.am: Removed the svg+xml symlink bit
	in the install-data-local rule

2005-10-24  Rodney Dawes  <dobey@novell.com>

	* */mimetypes/Makefile.am: Remove specific image type icons
	
	* */mimetypes/gnome-mime-image-*.*: Removed these specific image type
	icons so that we only have the generic image icon

2005-10-22  Jakub Steiner <jimmac@ximian.com>

	* gnome-mime-application-x-ruby.png: based on artwork by Geoff
	  Young. Fixes bug # 317102
	
2005-10-03  Rodney Dawes  <dobey@novell.com>
	
	* NEWS:
	* configure.in: Update for 2.12.1 release

2005-10-02  Stanislav Brabec <sbrabec@suse.cz>

	* Makefile.am: Install gnome-icon-theme.pc to $(datadir)/pkgconfig
	
	* configure.in: Require pkg-config 0.19 for bug fixes and support for
	installing pc files into $(datadir)/pkgconfig

	* gnome-icon-theme.pc.in: Remove all the path variables as we don't
	need theme for gnome-icon-theme since implementations should follow
	the Icon Theme specification, and we don't install libraries or headers

	Fixes #316200

2005-10-02  Stanislav Brabec <sbrabec@suse.cz>

	* 16x16/stock/io/Makefile.am:
	* 16x16/stock/net/Makefile.am:
	* 24x24/stock/io/Makefile.am:
	* 24x24/stock/net/Makefile.am:
	* 48x48/mimetypes/Makefile.am:
	Replace $(INSTALL) with $(INSTALL_DATA) so that the installed icons
	are not flagged as executable

	Fixes #316173

2005-10-02  Rodney Dawes  <dobey@novell.com>

	* 16x16/stock/media/Makefile.am:
	* 24x24/stock/media/Makefile.am:
	* 32x32/stock/media/Makefile.am:
	Install these icons to the gnome theme instead of the hicolor theme,
	as it does not provide the proper directories to find the icons

2005-10-02  Jakub Steiner <jimmac@ximian.com>

	* stock_volume.png:
	* stock_volume-0.png:
	* stock_volume-max.png:
	* stock_volume-med.png:
	* stock_volume-min.png:
	* stock_volume-mute.png: new volume applet icons at 32x32px

2005-09-23  Rodney Dawes  <dobey@novell.com>

	* 16x16/stock/emoticons/Makefile.am: Install these into the gnome
	icon theme directory and not the hicolor theme directory

	Fixes http://bugzilla.novell.com/show_bug.cgi?id=91387

2005-09-08  Jakub Steiner <jimmac@ximian.com>

	* scalable/apps/volume-knob.svg: forgot to add

2005-09-07  Jakub Steiner <jimmac@ximian.com>

	* 24x24/apps/evolution.png: make the envelope larger.

2005-09-06  Jakub Steiner <jimmac@ximian.com>

	* volume-knob: remove 48x48, replace with an SVG and provide the
	  16x16 and 24x24 bitmaps. Fixes bug #308160.
	
2005-09-04  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.12.0 release

	* 16x16/stock/net/Makefile.am (install-data-local):
	Fix an issue with Tor's patch that caused a missing separator error

2005-09-04  Tor Lillqvist  <tml@novell.com>

	* 16x16/stock/net/Makefile.am (install-data-local):
	* 24x24/stock/net/Makefile.am (install-data-local):
	* 48x48/mimetypes/Makefile.am (install-data-hook):
	Create icondir before installing into it.
	No / between $(DESTDIR) and $(icondir).

2005-09-03  Jakub Steiner <jimmac@ximian.com>

	* scalable/apps/Makefile.am: this actually goes to hicolor
	* 24x24/apps/evolution.png: updated
	* 32x32/apps/evolution.png: removed

2005-08-26  Jakub Steiner <jimmac@ximian.com>

	* index.theme.in: also make 48x48 filesystems 
	  scalable (as per bug #314346
	
2005-08-22  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.11.92 release

2005-08-15  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24,48x48}/apps/image-viewer.png: generic image view
	icon. bug #167087
	
2005-08-15  Jakub Steiner <jimmac@ximian.com>

	* index.theme.in: while it looks crap, I don't have the motivation
	to create all the missing 16x16 and 24x24 versions, so let's bring
	the 48x48 scaled bluriness back. fixes bug #313052

2005-08-15  Jakub Steiner <jimmac@ximian.com>

	* 24x24/apps/postscript-viewer.png: remove adobe logo. fixes bug #313390

2005-08-09  Jakub Steiner <jimmac@ximian.com>

	* */apps/blender.png: unfortunately only the blender foundation is
	free to use the logo.

2005-08-08  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.11.91 release

2005-08-08  Rodney Dawes  <dobey@novell.com>

	* 16x16/mimetypes/Makefile.am:
	* 16x16/mimetypes/gnome-mime-application-x-kde-app-info.png:
	Removed this icon as it used the KDE logo and the mime type does not
	exist in the shared-mime-info database (application/x-desktop is used
	now instead, as both desktops use the menu spec and these files)

	* 24x24/apps/Makefile.am:
	* 24x24/apps/mozilla-icon.png:
	* 24x24/apps/realplayer.png:
	Remove these two icons as they contain trademarked logos

	* 48x48/apps/Makefile.am:
	* 48x48/apps/realplayer.png:
	Remove this icon as it contains a trademarked logo
	
	* 48x48/mimetypes/Makefile.am:
	* 48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia.png:
	* 48x48/mimetypes/gnome-mime-application-x-kde-app-info.png:
	* 48x48/mimetypes/gnome-mime-audio-x-pn-realaudio.png:
	Remove these icons as they are contain trademarked logos

	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png:
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.xcf.bz2:
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png:
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.xcf.bz2:
	* 48x48/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png:
	* 48x48/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png:
	* 48x48/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png:
	* 48x48/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png:
	* 48x48/mimetypes/gnome-mime-application-vnd.sun.xml.writer.template.png:
	Remove the OpenOffice.org seagulls from these icons

	* 48x48/mimetypes/gnome-mime-application-x-killustrator.png:
	* 48x48/mimetypes/gnome-mime-application-x-kpresenter.png:
	* 48x48/mimetypes/gnome-mime-application-x-kspread.png:
	* 48x48/mimetypes/gnome-mime-application-x-kword.png:
	Remove the old KDE logo from these icons

2005-08-08  Rodney Dawes  <dobey@novell.com>

	* 48x48/mimetypes/gnome-mime-application-vnd.stardivision.writer.png:
	Remove the Staroffice butterfly logo from the mime type icon

	* 48x48/mimetypes/gnome-mime-application-x-shockwave-flash.png:
	Remove the Macromedia Flash logo from the mime type icon

	* 48x48/mimetypes/gnome-mime-audio-ac3.png:
	Remove the Dolby Digital icon from the mime type icon

2005-08-08  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.chart.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.chart.xcf.bz2
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.database.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.database.xcf.bz2
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.drawing.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.drawing.xcf.bz2
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.formula.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.formula.xcf.bz2
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.graphics-template.xcf.bz2
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation-template.xcf.bz2
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.xcf.bz2
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.xcf.bz2
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.xcf.bz2
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-template.xcf.bz2
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.xcf.bz2M 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png
	* 48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.xcf.bz2: 
	  remove seagulls (bug #303599)

2005-08-08  Jakub Steiner <jimmac@ximian.com>

	* 16x16/filesystems/gnome-fs-directory-accept.png:
		DnD accept at 16x16px (bug #306188)

2005-08-08  Jakub Steiner <jimmac@ximian.com>

	* 192x192/filesystems/gnome-dev-cdrom.png: Somehow this managed to
	  survive here. (bug #312099)

2005-08-08  Jakub Steiner <jimmac@ximian.com>

	* 24x24/apps/mozilla-firefox.png: removed due to licensing issues
	 (bug #312839)

2005-07-25  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Update for 2.11.90 release

	* 16x16/stock/net/Makefile.am:
	* 24x24/stock/net/Makefile.am:
	* 48x48/mimetypes/Makefile.am: Add $(srcdir) to $(INSTALL) commands
	in install-data-local to support srcdir != builddir

2005-07-25  Rodney Dawes  <dobey@novell.com>

	* 16x16/stock/net/Makefile.am:
	* 24x24/stock/net/Makefile.am:
	* 48x48/mimetypes/Makefile.am: Work around automake wanting to do
	install-data-local before install-data, and install the files that
	ln creates symlinks to, so that we don't break win32's usage of cp

2005-07-14  Rodney Dawes  <dobey@novell.com>

	* NEWS: Updated for release

	* autogen.sh: Require automake 1.9
	
	* configure.in: Up version to 2.11.5
	Require automake 1.9 and use tar-ustar

2005-07-11  Rodney Dawes  <dobey@novell.com>

	* configure.in: Add -f argument to the $LN_S variable so that we do
	not error out if the link already exists

	Fixes #309635

2005-07-02  Rodney Dawes  <dobey@novell.com>

	* Makefile.am (EXTRA_DIST): Remove the spec file stuff, and the
	zip script for creating zip files for win32
	(DISTCLEANFILES): Remove po/.intltool-merge-cache
	(MAINTAINERCLEANFILES): Remove po/ stuff and add mkinstalldirs

	* NEWS: Updated for release

	* configure.in: Up version to 2.11.4
	Remove check for win32 and allocation of OS_WIN32 Makefile variable
	Add AC_PROG_LN_S so that $(LN_S) can be used for symlinks
	Remove gnome-icon-theme.spec and gnome-icon-theme-zip from the
	AC_CONFIG_FILES macro call

	* gnome-icon-theme-zip.in:
	* gnome-icon-theme.spec.in: Removed these two files

	* 16x16/stock/net/Makefile.am:
	* 24x24/stock/net/Makefile.am:
	* 48x48/stock/net/Makefile.am: Use $(LN_S) instead of calling ln -s
	directly, so that we work better on win32

2005-07-01  Rodney Dawes  <dobey@novell.com>

	* 16x16/mimetypes/Makefile.am: Remove the text/plain and text/plaintext
	icons from the list of icons

	* 16x16/mimetypes/gnome-mime-text-plain.png:
	* 16x16/mimetypes/gnome-mime-text-plaintext.png: Removed

2005-06-16  Jakub Steiner <jimmac@ximian.com>

	* 16x16/mimetypes/gnome-mime-image-xcf.png:
	* 16x16/mimetypes/gnome-mime-application-pdf.png: missing bits

2005-06-16  Jakub Steiner <jimmac@ximian.com>

	* 16x16/mimetypes/*: more merges from gperfection

2005-06-16  Jakub Steiner <jimmac@ximian.com>

	* index.theme.in: s/Scalable/Fixed/g for bitmap icons. Been broken
	  for so long...
		
2005-05-20  Jakub Steiner <jimmac@ximian.com>

	* 24x24/apps: merge back some work from William Szilveszter 
	  <wszilveszter@gmail.com> (gperfection derivate theme).
		
2005-04-05  Jakub Steiner <jimmac@ximian.com>

	* 48x48/emblems/Makefile.am
	* 48x48/emblems/emblem-bin.icon.in
	* 48x48/emblems/emblem-bin.png
	* 48x48/emblems/emblem-generic.icon.in
	* 48x48/emblems/emblem-generic.png
	* 48x48/emblems/emblem-important.icon.in
	* 48x48/emblems/emblem-important.png
	* 48x48/emblems/emblem-special.icon.in
	* 48x48/emblems/emblem-special.png: remove bitmaps
	
	* scalable/emblems/Makefile.am
	* scalable/emblems/emblem-bin.icon.in
	* scalable/emblems/emblem-bin.svg
	* scalable/emblems/emblem-generic.icon.in
	* scalable/emblems/emblem-generic.svg
	* scalable/emblems/emblem-important.icon.in
	* scalable/emblems/emblem-important.svg
	* scalable/emblems/emblem-special.icon.in
	* scalable/emblems/emblem-special.svg: make them SVG 

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

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

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

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

2005-03-30  Jakub Steiner <jimmac@ximian.com>

	* HACKING: this will include a style guide in future

2005-03-25  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24,32x32}/apps/evolution.png: requires bitmap versions

2005-03-25  Jakub Steiner <jimmac@ximian.com>

	* scalable/Makefile.am
	* scalable/apps/Makefile.am
	* scalable/apps/evolution.svg: new Evolution icon
	* 48x48/apps/Makefile.am
	* 48x48/apps/evolution.png
	* 32x32/apps/Makefile.am
	* 32x32/apps/evolution.png: removed

2005-03-25  Tor Lillqvist  <tml@novell.com>

	Windows "port".

	* gnome-icon-theme-zip.in: New file, to build Win32 zipfile
	distribution.

	* configure.in
	* Makefile.am: Expand and dist in.

	* configure.in: Set up new Automake conditional OS_WIN32.

	* 16x16/stock/net/Makefile.am
	* 24x24/stock/net/Makefile.am
	* 48x48/mimetypes/Makefile.am: Don't use symlinks on Win32.

2005-03-23  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-python.png: removed
	* 48x48/mimetypes/gnome-mime-text-x-python.png: rename as per bug #167182

2005-03-23  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-pgp-signature.png: pgp
	signature files (request #159614)

2005-03-23  Jakub Steiner <jimmac@ximian.com>

	* 48x48/emblems/emblem-urgent*: remove
	* scalable/emblems/emblem-urgent*: vectorize the emblem

2005-03-23  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24}/stock/data/stock_database.png: fixes request #132769

2005-03-22  Rodney Dawes  <dobey@novell.com>

	* configure.in, NEWS: Update for 2.10.1 release

	* (16x16,24x24)/stock/net/Makefile.am: Install symlinks for the old
	gnome-fs-locally-shared and gnome-fs-share-private icon names

2005-03-22  Jakub Steiner <jimmac@ximian.com>

	* gnome-mime-application-vnd.oasis.opendocument.graphics-template.png
	* gnome-mime-application-vnd.oasis.opendocument.image.png
	* gnome-mime-application-vnd.oasis.opendocument.presentation-template.png
	* gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png
	* gnome-mime-application-vnd.oasis.opendocument.text-template.png:
		finish the OOo mimetypes. fixes bug #167296

2005-03-22  Jakub Steiner <jimmac@ximian.com>

	* *oasis*: got the mime type wrong. s/-x//

2005-03-21  Jakub Steiner <jimmac@ximian.com>

	* gnome-mime-application-x-vnd.oasis.openoffice.database.png
	* gnome-mime-application-x-vnd.oasis.openoffice.drawing.png
	* gnome-mime-application-x-vnd.oasis.openoffice.formula.png
	* gnome-mime-application-x-vnd.oasis.openoffice.presentation.png
	* gnome-mime-application-x-vnd.oasis.openoffice.text-master.png
	* gnome-mime-application-x-vnd.oasis.openoffice.text.png
	* gnome-mime-application-x-vnd.oasis.openoffice.text-web.png:
	new OOo mime types

2005-03-10  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24}/filesystems/Makefile.am:
	* {16x16,24x24}/filesystems/gnome-fs-locally-shared.png:
	* {16x16,24x24}/filesystems/gnome-fs-share-private.png: removed
	* {16x16,24x24}/stock/net/Makefile.am:
	* {16x16,24x24}/stock/net/stock_shared-by-me.png:
	* {16x16,24x24}/stock/net/stock_shared-to-me.png: renamed as per
	  Vivek's request

2005-03-07  Rodney Dawes  <dobey@novell.com>

	* configure.in, NEWS: Update for 2.10.0 release

2005-02-28  Rodney Dawes  <dobey@novell.com>

	* configure.in, NEWS: Update for 2.9.92 release

2005-02-23  Jakub Steiner <jimmac@ximian.com>

	* scalable/emblems/emblem-mail.svg: Mail Emblem by 
	  Andreas Nilsson <nisses.mail@home.se>
	
2005-02-08  Jakub Steiner <jimmac@ximian.com>

	* scalable/filesystems/gnome-fs-directory-accept.svg
	* scalable/filesystems/gnome-fs-directory-visiting.svg: properly
	  sized and reflecting the 48x48px rendering. 
	
	* {72x72,96x96}/filesystems/gnome-fs-directory*:
	* {72x72,96x96}/filesystems/gnome-fs-home*: replaced by the scalable
		version

2005-02-08  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24,32x32,48x48}/filesystems/gnome-fs-client.png: 
	  make wallpaper blue consistently across all icons (bug #165860)

2005-02-08  Jakub Steiner <jimmac@ximian.com>

	* 16x16/filesystems/gnome-fs-ftp.png:
	* 16x16/filesystems/gnome-fs-nfs.png:
	* 16x16/filesystems/gnome-fs-smb.png:
	* 16x16/filesystems/gnome-fs-ssh.png: 16x16 versions for
	  the file dialog. Fixes bug #166192

2005-02-08  Jakub Steiner <jimmac@ximian.com>

	* 16x16/devices/gnome-dev-harddisk-1394.png:
	* 16x16/devices/gnome-dev-removable-1394.png:
	* 16x16/devices/gnome-dev-harddisk-usb.png:
	* 16x16/devices/gnome-dev-removable-usb.png: 16x16 versions for
	  the file dialog. Fixes bug #166193

2005-02-08  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/text-editor.png:
	* 24x24/apps/text-editor.png:
	* 32x32/apps/text-editor.png:
	* 16x16/apps/text-editor.png: generic Text editor icon

2005-02-07  Rodney Dawes  <dobey@novell.com>

	* configure.in, NEWS: Update for 2.9.91 release

2005-02-04  Jakub Steiner <jimmac@ximian.com>

	* scalable/apps/gnome-fs-trash*svg: vector trash (full state unfinished)

2005-02-03  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24,32x32,48x48}/apps/gnome-window-manager.png:
	  added all sizes provided by Luca Ferretti (bug #144880)

2005-02-03  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24,48x48}/apps/gnome-run.png:
	* {16x16,24x24,48x48}/apps/gnome-help.png:
	* {16x16,24x24,48x48}/apps/gnome-logout.png: missing sizes
		(#166156)

2005-02-02  Jakub Steiner <jimmac@ximian.com>

	* scalable/filesystems/gnome-fs-directory.svg: pixel perfect trace
	* scalable/filesystems/gnome-fs-home.svg: dtto
	* scalable/emblems/emblem-favorite.svg: add metadata

2005-02-01  Jakub Steiner <jimmac@ximian.com>

	* scalable/emblems/emblem-favorite.icon.in
	* scalable/emblems/emblem-favorite.svg: start phasing in
	  pixel-perfect(TM) SVG icons again.

	* 48x48/emblems/emblem-favorite.icon.in
	* 48x48/emblems/emblem-favorite.png: remove


2005-01-31  Jakub Steiner <jimmac@ximian.com>

	* 24x24/filesystems/gnome-fs-home.png: 24x24 version, completes
	  bug #164502

2005-01-31  Jakub Steiner <jimmac@ximian.com>

	* 16x16/filesystems/gnome-fs-home.png 
	* 16x16/filesystems/gnome-fs-directory.png: 16x16 version of the
	  folder icons

2005-01-24  Rodney Dawes  <dobey@novell.com>

	* NEWS, configure.in: Update for 2.9.90 release
	
2005-01-24  Rodney Dawes  <dobey@novell.com>

	* 48x48/emblems/Makefile.am: Dist the icon.in files, and not only the
	resulting generated icon files
	Add emblem-distinguished.icon.in to the list of icon files
	Add emblem-distinguished.png to the list of images

2005-01-24  Jakub Steiner <jimmac@ximian.com>

	* 192x192/filesystems/gnome-fs-trash*: remove old icons. Vectors
	  in progress.

2005-01-20  Jakub Steiner <jimmac@ximian.com>

	* 16x16/filesystems/Makefile.am
	* 16x16/filesystems/gnome-fs-locally-shared.png
	* 16x16/filesystems/gnome-fs-share-private.png
	* 24x24/filesystems/Makefile.am
	* 24x24/filesystems/gnome-fs-locally-shared.png
	* 24x24/filesystems/gnome-fs-share-private.png
	* 24x24/filesystems/gnome-fs-share.png: network shares and locally shared
		folders.

2005-01-19  Jakub Steiner <jimmac@ximian.com>

	* 48x48/filesystems/gnome-fs-trash-empty.png
	* 48x48/filesystems/gnome-fs-trash-full.png
	* 32x32/filesystems/gnome-fs-trash-empty.png
	* 32x32/filesystems/gnome-fs-trash-full.png
	* 24x24/filesystems/gnome-fs-trash-empty.png
	* 24x24/filesystems/gnome-fs-trash-full.png
	* 16x16/filesystems/gnome-fs-trash-empty.png
	* 16x16/filesystems/gnome-fs-trash-full.png: new trash icons,
	  fixes bug #163848

2005-01-19  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_leave-fullscreen.png:
	* 24x24/stock/generic/stock_leave-fullscreen.png: leave fullscreen mode,
	  fixes #164017

2005-01-10  Rodney Dawes  <dobey@novell.com>

	* NEWS, configure.in: Update for 2.9.3 release

	* 16x16/stock/media/Makefile.am:
	* 24x24/stock/media/Makefile.am: Add the new volume stock icons back
	as they are in CVS now

2005-01-03  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24}/stock/media/stock_volume*: screwed up a lot of
	  things just before leaving for vacation
	
2004-12-07 Garrett LeSage <garrett@novell.com>

	* 48x48/stock/object/Makefile.am
	* 48x48/stock/object/stock_insert-floating-frame.png: 
	Add 48x48 version of stock_insert-floating-frame (generic window)

2004-12-01  Rodney Dawes  <dobey@novell.com>

	* 16x16/stock/media/Makefile.am:
	* 24x24/stock/media/Makefile.am: Revert previous commit
	The files weren't actually added to CVS

2004-11-30  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/media/stock_volume.png
	* 16x16/stock/media/stock_volume-0.png
	* 16x16/stock/media/stock_volume-max.png
	* 16x16/stock/media/stock_volume-med.png
	* 16x16/stock/media/stock_volume-min.png
	* 16x16/stock/media/stock_volume-mute.png
	* 24x24/stock/media/stock_volume.png
	* 24x24/stock/media/stock_volume-0.png
	* 24x24/stock/media/stock_volume-max.png
	* 24x24/stock/media/stock_volume-med.png
	* 24x24/stock/media/stock_volume-min.png
	* 24x24/stock/media/stock_volume-mute.png: Volume icons. 
	  Fixes bug #159571

2004-11-28  Rodney Dawes  <dobey@novlel.com>

	* NEWS, configure.in: Update for 2.9.2 release

	* 16x16/stock/generic/Makefile.am:
	* 16x16/stock/generic/stock_weather-night-*.png:
	* 48x48/stock/generic/Makefile.am:
	* 48x48/stock/generic/stock_weather-night-*.png:
	Add icons for gweather on clear or partly cloudy nights (bug #68616)

2004-11-24  Jakub Steiner <jimmac@ximian.com>

	* 24x24/stock/object/stock_new-window.png:
	* 16x16/stock/object/stock_new-window.png: dobey's request

2004-11-22  Jakub Steiner <jimmac@ximian.com>

	* 16x16/filesystems/gnome-fs-desktop.png
	* 24x24/filesystems/gnome-fs-desktop.png
	* 32x32/filesystems/gnome-fs-desktop.png: from Garrett and Luca.

2004-11-17  Jakub Steiner <jimmac@ximian.com>

	* scalable/filesystems/gnome-fs-directory-accept.svg
	* scalable/filesystems/gnome-fs-directory-visiting.svg
	* scalable/filesystems/gnome-fs-directory.svg
	* scalable/filesystems/gnome-fs-home.svg: scalable icons from 
	  Luca Ferretti <elle.uca@libero.it>

2004-11-16  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/xcdroast.png: (r)
	* 48x48/apps/burner.png: Use more generic name

2004-11-14  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/document/stock_print-resolution.png:
	* 16x16/stock/document/stock_print-resolution.png: print
	  resolution. Should be handy outside the GIMP
	
2004-11-12  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/Makefile.am: add launcher-program.png

2004-11-11  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/launcher-program.png: gnome2 style icon

2004-11-10  Jakub Steiner <jimmac@ximian.com>

	* gnome-mime-application-x-bla.png
	* gnome-mime-application-x-blf.png
	* gnome-mime-application-x-blv.png: coaster project files. 
		Fixes #157864

2004-11-05  Jakub Steiner <jimmac@ximian.com>

	* gnome-mime-application-vnd.sun.xml.calc.png
	* gnome-mime-application-vnd.sun.xml.draw.png
	* gnome-mime-application-vnd.sun.xml.impress.png
	* gnome-mime-application-vnd.sun.xml.writer.png
	* gnome-mime-application-vnd.sun.xml.writer.template.png: OOo
	  mimetypes. Updates the logo and fixes bug #157345

2004-11-05  Tuomas Kuosmanen  <tigert@novell.com>

	* 48x48/stock/net/stock_mail-replied.png: added a 48x48 version 
	(for beagle, we need a larger version there..)

2004-11-01  Rodney Dawes  <dobey@novell.com>

	* NEWS, configure.in: Update for 2.9.1 release
	* ChangeLog: Fix spelling of Luca's name in last entry

2004-10-31  Jakub Steiner <jimmac@ximian.com>

	* 72x72/filesystems/Makefile.am:
	* 72x72/filesystems/gnome-fs-home.png:
	* 96x96/filesystems/Makefile.am:
	* 72x72/filesystems/gnome-fs-home.png: larger versions of the home
	  folder hacked up by Luca Ferretti <elle.uca@libero.it>

2004-10-30  Marco Pesenti Gritti  <marco@gnome.org>

	* 48x48/apps/Makefile.am:

	Add launcher-program icon. Several themes are already
	shipping it and it's necessary for the panel.

2004-10-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/devices/gnome-dev-disc-cdr.png
	* 48x48/devices/gnome-dev-disc-cdrw.png
	* 48x48/devices/gnome-dev-disc-dvdr-plus.png
	* 48x48/devices/gnome-dev-disc-dvdr.png
	* 48x48/devices/gnome-dev-disc-dvdram.png
	* 48x48/devices/gnome-dev-disc-dvdrom.png
	* 48x48/devices/gnome-dev-disc-dvdrw.png
	* 24x24/devices/gnome-dev-disc-cdr.png
	* 24x24/devices/gnome-dev-disc-cdrw.png
	* 24x24/devices/gnome-dev-disc-dvdr-plus.png
	* 24x24/devices/gnome-dev-disc-dvdr.png
	* 24x24/devices/gnome-dev-disc-dvdram.png
	* 24x24/devices/gnome-dev-disc-dvdrom.png
	* 24x24/devices/gnome-dev-disc-dvdrw.png
	* 24x24/devices/Makefile.am
	* 48x48/devices/Makefile.am: disc types needed by hal.
	  fixes bug #156066

2004-10-29  Jakub Steiner <jimmac@ximian.com>

	* gnome-mime-application-x-x509-ca-cert.png: Certificates. fixes 
	  bug #153245
	
2004-10-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/Makefile.am:
	* 48x48/apps/palm-pilot-sync.png: Palm Applet. fixes bug #155567

2004-10-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/Makefile.am:
	* 48x48/mimetypes/gnome-mime-application-x-dv.png: raw DV video streams

2004-10-13  Rodney Dawes  <dobey@novell.com>

	* autogen.sh: Remove duplicate declaration of REQUIRED_AUTOMAKE_VERSION
	Remove duplicated effort to run glib-gettextize and intltoolize

	* configure.in: Add requirement of Autoconf 2.53 or newer
	Update to use newer autoconf API and define bugzilla url
	General cleanup of layout and ordering
	Add workaround to define ACLOCAL_AMFLAGS for calling aclocal
	Add declaration and substitution of localedir

	Fixes #154668

2004-10-03  Jesus Bravo Alvarez  <suso@trasno.net>

	* configure.in: Added gl (Galician) to ALL_LINGUAS

2004-10-02  Rodney Dawes  <dobey@novell.com>

	* NEWS: Update for 2.9.0 release

2004-10-02  Rodney Dawes  <dobey@novell.com>

	* configure.in: Bump version to 2.9.0

	* 48x48/emblems/Makefile.am:
	* 48x48/emblems/emblem-shared.(png|icon.in):
	Add a shared emblem for file sharing solutions

2004-10-01  Jon K Hellan  <hellan@acm.org>

	* .cvsignore, 32x32/devices/.cvsignore,
	16x16/stock/emoticons/.cvsignore: Update/add cvsignore files.

2004-09-24  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps:
	  - character-picker.png
	  - clock.png
	  - drawer.png
	  - eyes.png
	  - modem.png
	  - stock-ticker.png
	  - volume-knob.png: new look for the applets. Can someone please
	    take a look at making the applets use these?

2004-09-13  Rodney Dawes  <dobey@novell.com>
	
	* NEWS:
	* configure.in: Bump version to 2.8.0

2004-09-01  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/navigation/stock_new-tab.png
	* 24x24/stock/navigation/stock_new-tab.png: make the stroke more Gnomeish

	* 48x48/mimetypes/gnome-mime-application-wordperfect.png
	* 48x48/mimetypes/Makefile.am: WP documents

2004-08-29  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Bump version to 2.7.90 for release and to sync with
	the GNOME Desktop version

2004-08-27  Akagic Amila  <bono@linux.org.ba>

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

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

	* configure.in: Add nb to ALL_LINGUAS.

2004-08-16  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Bump version to 1.3.7 for release

2004-08-03  Jakub Steiner <jimmac@ximian.com>

	* 16x16/devices/Makefile.am
	* 16x16/devices/gnome-dev-ethernet.png
	* 16x16/devices/gnome-dev-pci.png
	* 16x16/devices/gnome-dev-wavelan-encrypted.png
	* 16x16/devices/gnome-dev-wavelan.png
	* 24x24/devices/Makefile.am
	* 24x24/devices/gnome-dev-ethernet.png
	* 24x24/devices/gnome-dev-harddisk-1394.png
	* 24x24/devices/gnome-dev-harddisk-usb.png
	* 24x24/devices/gnome-dev-media-cf.png
	* 24x24/devices/gnome-dev-media-ms.png
	* 24x24/devices/gnome-dev-media-sdmmc.png
	* 24x24/devices/gnome-dev-media-sm.png
	* 24x24/devices/gnome-dev-pci.png
	* 24x24/devices/gnome-dev-removable-1394.png
	* 24x24/devices/gnome-dev-removable-usb.png
	* 24x24/devices/gnome-dev-wavelan-encrypted.png
	* 24x24/devices/gnome-dev-wavelan.png
	* 48x48/devices/Makefile.am
	* 48x48/devices/gnome-dev-cdrom-audio.png
	* 48x48/devices/gnome-dev-cdrom.png
	* 48x48/devices/gnome-dev-dvd.png
	* 48x48/devices/gnome-dev-harddisk-1394.png
	* 48x48/devices/gnome-dev-harddisk-usb.png
	* 48x48/devices/gnome-dev-media-cf.png
	* 48x48/devices/gnome-dev-media-ms.png
	* 48x48/devices/gnome-dev-media-sdmmc.png
	* 48x48/devices/gnome-dev-media-sm.png
	* 48x48/devices/gnome-dev-removable-1394.png
	* 48x48/devices/gnome-dev-removable-usb.png: more device icons

2004-08-02  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Bump version to 1.3.6 for release

2004-07-29  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/data/stock_lock-open.png
	* 24x24/stock/data/stock_lock-open.png
	* 24x24/stock/data/stock_lock-open.png
	* 24x24/stock/data/stock_lock-open.png
	* {16x16,24x24,32x32,48x48}/stock/data/Makefile.am: fixes #141458

2004-07-23  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-bittorrent.png
	* 48x48/mimetypes/Makefile.am: P2p network info file 
	  fixes bug #148226

2004-07-20  Jakub Steiner <jimmac@ximian.com>

	* 48x48/devices/Makefile.am
	* 32x32/Makefile.am
	* 32x32/devices/Makefile.am
	* 24x24/devices/Makefile.am
	* 16x16/devices/Makefile.am
	* configure.in
	* 48x48/devices/gnome-dev-ipod.png
	* 32x32/devices/gnome-dev-ipod.png
	* 24x24/devices/gnome-dev-ipod.png
	* 16x16/devices/gnome-dev-ipod.png
	* 48x48/mimetypes/gnome-mime-application-x-ipod-firmware.png: new apple
	  ipod ;)

2004-07-20  Jakub Steiner <jimmac@ximian.com>

	* 32x32/stock/net/stock_mail-send-receive.png
	* 48x48/stock/net/stock_mail-send-receive.png
	* 32x32/stock/net/Makefile.am
	* 48x48/stock/net/Makefile.am: needed for alt+tab in metacity

2004-07-18  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Bump version to 1.3.5 for release

2004-06-28  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Bump version to 1.3.4 for release

2004-06-25  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/Makefile.am
	* 48x48/mimetypes/gnome-mime-text-x-objcsrc.png: fixes #144987,
	  thanks to Álvaro Pe¿a <apg@esware.com>

2004-06-10  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24}/stock/media/stock_3dsound.png:
	* {16x16,24x24}/stock/media/stock_headphones.png: more media
	  icons

2004-06-06  Rodney Dawes  <dobey@novell.com>

	* NEWS:
	* configure.in: Bump version to 1.3.3 for release

2004-06-06  Rodney Dawes  <dobey@novell.com>

	* Makefile.am (DISTCLEANFILES, MAINTAINERCLEANFILES):
	Add these variables so we can clean up stuff

	* 16x16/stock/io/Makefile.am (install-data-hook):
	* 24x24/stock/io/Makefile.am (install-data-hook):
	Fix support for srcdir != builddir installs
	(uninstall-hook): Add uninstall rules for distcheck to pass

2004-06-06  Rodney Dawes  <dobey@novell.com>

	* 16x16/stock/io/Makefile.am (install-data-local):
	* 24x24/stock/io/Makefile.am (install-data-local):
	Install stock_save-as.png as stock_save_as.png as well, to fix
	API breakage from April 14, 2004

2004-05-29  Christian Rose  <menthos@menthos.com>

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

2004-05-29  Rodney Dawes  <dobey@novell.com>

	* Makefile.am (EXTRA_DIST): Get rid of OrigTree.pm, as new intltool
	versions don't have it
	Add mkinstalldirs here

	* autogen.sh: Add check to copy in mkinstalldirs from gettext
	This is needed for installation to work
	
	* NEWS:
	* configure.in: Bump version to 1.3.2 for release

2004-05-28  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/emoticons/Makefile.am
	* 16x16/stock/emoticons/stock_smiley-1.png
	* 16x16/stock/emoticons/stock_smiley-10.png
	* 16x16/stock/emoticons/stock_smiley-11.png
	* 16x16/stock/emoticons/stock_smiley-12.png
	* 16x16/stock/emoticons/stock_smiley-13.png
	* 16x16/stock/emoticons/stock_smiley-14.png
	* 16x16/stock/emoticons/stock_smiley-15.png
	* 16x16/stock/emoticons/stock_smiley-16.png
	* 16x16/stock/emoticons/stock_smiley-17.png
	* 16x16/stock/emoticons/stock_smiley-18.png
	* 16x16/stock/emoticons/stock_smiley-19.png
	* 16x16/stock/emoticons/stock_smiley-2.png
	* 16x16/stock/emoticons/stock_smiley-20.png
	* 16x16/stock/emoticons/stock_smiley-21.png
	* 16x16/stock/emoticons/stock_smiley-22.png
	* 16x16/stock/emoticons/stock_smiley-23.png
	* 16x16/stock/emoticons/stock_smiley-24.png
	* 16x16/stock/emoticons/stock_smiley-25.png
	* 16x16/stock/emoticons/stock_smiley-26.png
	* 16x16/stock/emoticons/stock_smiley-3.png
	* 16x16/stock/emoticons/stock_smiley-4.png
	* 16x16/stock/emoticons/stock_smiley-5.png
	* 16x16/stock/emoticons/stock_smiley-6.png
	* 16x16/stock/emoticons/stock_smiley-7.png
	* 16x16/stock/emoticons/stock_smiley-8.png
	* 16x16/stock/emoticons/stock_smiley-9.png
	* 16x16/stock/Makefile.am
	* index.theme.in
	* configure.in: Gnome emoticons

	* 24x24/stock/text/Makefile.am
	* 24x24/stock/text/stock_text-monospaced.png
	* 24x24/stock/table/Makefile.am
	* 24x24/stock/table/stock_insert-table.png
	* 24x24/stock/object/Makefile.am
	* 24x24/stock/object/stock_insert-rule.png
	* 24x24/stock/generic/Makefile.am
	* 24x24/stock/generic/stock_search-and-replace.png
	* 16x16/stock/text/Makefile.am
	* 16x16/stock/text/stock_text-monospaced.png
	* 16x16/stock/table/Makefile.am
	* 16x16/stock/table/stock_insert-table.png
	* 16x16/stock/object/Makefile.am
	* 16x16/stock/object/stock_insert-rule.png
	* 16x16/stock/generic/Makefile.am
	* 16x16/stock/generic/stock_search-and-replace.png: leftovers

2004-05-22  Rodney Dawes  <dobey@ximian.com>

	* 48x48/mimetypes/Makefile.am (install-data-hook):
	Fix symlink creation, patch from Christian Lohmaier

	Fixes #142977

2004-05-20  Rodney Dawes  <dobey@ximian.com>

	* 48x48/emblems/Makefile.am (icon_in_files): Added new emblem icon
	files for translations

	* 48x48/emblems/emblem-cvs-*.icon.in:
	* 48x48/emblems/emblem-dekstop.icon.in:
	* 48x48/emblems/emblem-noread.icon.in:
	* 48x48/emblems/emblem-note.icon.in:
	* 48x48/emblems/emblem-nowrite.icon.in:
	* 48x48/emblems/emblem-symbolic-link.icon.in:
	* 48x48/emblems/emblem-trash.icon.in:

	Added these new files for translating the emblems

2004-05-18  Rodney Dawes  <dobey@ximian.com>

	* configure.in: Fix variable names in hicolor check conditional

	Fixes #142001

2004-04-20  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Bump version to 1.3.1 for HEAD work. 
	Gnome 2.6 work is on the gnome-2-6 branch.

2004-04-19  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24}/stock/table/Makefile.am 
	* {16x16,24x24}/stock/table/stock_select-cell.png: fixup for rodo
	
2004-04-19  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/stock_mail-priority-high.png: fix canvas size
	
2004-04-16  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/Makefile.am:
	* 48x48/mimetypes/gnome-mime-text-x-vcalendar.png
	* 48x48/mimetypes/gnome-mime-text-x-vcard.png: not the same thing

2004-04-19  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Post-release bump of version to 1.2.2

=== gnome-icon-theme 1.2.1 ===

2004-04-19  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump version to 1.2.1

2004-04-14  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/Makefile.am:
	* 48x48/apps/Makefile.am:
	* 16x16/apps/im-nov.png:
	* 48x48/apps/im-nov.png: groupwise messager

2004-04-14  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/Makefile.am:
	* 48x48/apps/Makefile.am:
	* 16x16/apps/im.png:
	* 48x48/apps/im.png: generic instant messaging icon

2004-04-14  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_notebook.png:
	* 24x24/stock/generic/stock_notebook.png:
	* 32x32/stock/generic/stock_notebook.png:
	* 48x48/stock/generic/stock_notebook.png: minor fixups

2004-04-14  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/im-jabber.png: oops, had a wrong size there

2004-04-14  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24}/stock/io/stock_save_as.png (r)
	* {16x16,24x24}/stock/io/stock_save-as.png: renamed to be
	  consistent. Discussed in bugzilla (bug #129294)
	* {16x16,24x24}/stock/io/Makefile.am: updated

2004-04-14  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-archive.png: ar
	  archives. fixes bug #130905
	* 48x48/mimetypes/Makefile.am: added here

2004-04-14  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-cd-image.png: ISO
	  images
	* 48x48/mimetypes/Makefile.am: add

2004-04-14  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-desktop.png: make
	  different from unknown mimetype. fixes bug #135970

2004-04-09  Guntupalli Karunakar  <karunakar@freedomink.org>

        * configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.

2004-04-09  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/text/stock_text-strikethrough.png
	* 24x24/stock/text/stock_text-strikethrough.png: match style of
	  the oter text icons

2004-04-08  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-executable.png:
	  mimetype for executables
	
	* 48x48/mimetypes/gnome-mime-application-x-perl.png
	* 48x48/mimetypes/gnome-mime-application-x-python.png
	* 48x48/mimetypes/gnome-mime-text-x-perl.png(r)
	* 48x48/mimetypes/gnome-mime-text-x-python.png(r): rename to
	  reflect current mime database
	* 48x48/mimetypes/Makefile.am: updated

2004-04-06  Jakub Steiner <jimmac@ximian.com>

	* 24x24/stock/net/stock_hyperlink.png: fix canvas size

2004-04-06  Jakub Steiner <jimmac@ximian.com>

	* 48x48/stock/generic/Makefile.am
	* 48x48/stock/generic/stock_autocompletion.png
	* 24x24/stock/net/Makefile.am
	* 24x24/stock/net/stock_hand-signed.png
	* 24x24/stock/net/stock_mail-accounts.png
	* 24x24/stock/net/stock_mail-handling.png
	* 24x24/stock/net/stock_message-display.png
	* 24x24/stock/generic/Makefile.am
	* 24x24/stock/generic/stock_autocompletion.png
	* 24x24/stock/generic/stock_calendar-and-tasks.png
	* 24x24/stock/generic/stock_color.png
	* 24x24/stock/document/Makefile.am
	* 24x24/stock/document/stock_certificate.png
	* 16x16/stock/net/Makefile.am
	* 16x16/stock/net/stock_color.png
	* 16x16/stock/net/stock_mail-accounts.png
	* 16x16/stock/net/stock_mail-handling.png
	* 16x16/stock/net/stock_message-display.png
	* 16x16/stock/generic/Makefile.am
	* 16x16/stock/generic/stock_autocompletion.png
	* 16x16/stock/generic/stock_calendar-and-tasks.png
	* 16x16/stock/document/Makefile.am
	* 16x16/stock/document/stock_certificate.png: various icons (for
	  Evo)

2004-03-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-rar.png: labeled icon
	* 48x48/mimetypes/Makefile.am
	* 48x48/mimetypes/gnome-mime-text-x-vcard.png: (removed)
	* 48x48/mimetypes/gnome-mime-text-x-vcalendar.png: renamed
	
2004-03-29  Jakub Steiner <jimmac@ximian.com>

	* M 48x48/mimetypes/gnome-mime-application-x-cpio-compressed.png
	* 48x48/mimetypes/gnome-mime-application-x-cpio.png
	* 48x48/mimetypes/gnome-mime-application-x-lha.png
	* 48x48/mimetypes/gnome-mime-application-x-lhz.png
	* 48x48/mimetypes/gnome-mime-application-x-rar.png: let's not use
	  the old package. Some of these deserve a unique icon (future).

=== gnome-icon-theme 1.2.0 ===
	
2004-03-22  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Update to 1.2.0

2004-03-19  Jakub Steiner <jimmac@ximian.com>

	* 24x24/stock/document/Makefile.am
	* 24x24/stock/document/stock_duplex-doc.png
	* 24x24/stock/document/stock_duplex-tumble.png: removing, since
	  something a bit different was needed.

	* 48x48/stock/io/stock_print-duplex-no-tumble.png
	* 48x48/stock/io/stock_print-duplex-tumble.png
	* 48x48/stock/io/stock_print-duplex.png
	* 48x48/stock/io/stock_print-non-duplex.png
	* 48x48/stock/io/Makefile.am: for the print dialog.
	
2004-03-18  Gareth Owen  <gowen72@yahoo.com>

	* configure.in: Added en_GB to ALL_LINGUAS

2004-03-17  Jody Goldberg <jody@gnome.org>

	* configure.in : bump the version number to give gnomeprint something
	  to hook into

2004-03-17  Jakub Steiner <jimmac@ximian.com>

	* 24x24/stock/document/Makefile.am
	* 24x24/stock/document/stock_duplex-doc.png
	* 24x24/stock/document/stock_duplex-tumble.png: for the print
	  dialog. fixes bug #128301

=== gnome-icon-theme 1.1.91 ===
	
2004-03-15  Alexander Larsson  <alexl@redhat.com>

	* configure.in: 
	Update to 1.1.91

=== gnome-icon-theme 1.1.90 ===
	
2004-03-08  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Update to 1.1.90

2004-03-05  Jeroen Zwartepoorte  <jeroen@xs4all.nl>

	* 48x48/mimetypes/Makefile.am: s/csharpsrc/csharp/.

2004-03-06  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-text-x-csharpsrc.png: (r)
	* 48x48/mimetypes/gnome-mime-text-x-csharp.png: rename back.
	  fixes bug #135456

2004-03-04  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/text/stock_text_indent.png
	* 16x16/stock/text/stock_text_unindent.png
	* 24x24/stock/text/stock_text_indent.png
	* 24x24/stock/text/stock_text_unindent.png: making the indenting 
	  arrows more aparent

2004-03-04  Guntupalli Karunakar  <karunakar@freedomink.org>

	* configure.in: Added "pa" (Punjabi) to ALL_LINGUAS.

=== gnome-icon-theme 1.1.8 ===
	
2004-02-23  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump to 1.1.8

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

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

2004-02-17  Jakub Steiner <jimmac@ximian.com>

	* 96x96/filesystems/Makefile.am
	* 72x72/filesystems/Makefile.am
	* 48x48/filesystems/Makefile.am
	* 36x36/filesystems/Makefile.am
	* 24x24/filesystems/Makefile.am
	* 96x96/filesystems/gnome-fs-directory-visiting.icon
	* 72x72/filesystems/gnome-fs-directory-visiting.icon
	* 48x48/filesystems/gnome-fs-directory-visiting.icon
	* 36x36/filesystems/gnome-fs-directory-visiting.icon
	* 24x24/filesystems/gnome-fs-directory-visiting.icon
	* 96x96/filesystems/gnome-fs-directory-visiting.png
	* 72x72/filesystems/gnome-fs-directory-visiting.png
	* 48x48/filesystems/gnome-fs-directory-visiting.png
	* 36x36/filesystems/gnome-fs-directory-visiting.png
	* 24x24/filesystems/gnome-fs-directory-visiting.png
	* 12x12/filesystems/gnome-fs-directory-visiting.png: something
	  similar to what mac os9 finder had
	
2004-02-12  Jakub Steiner <jimmac@ximian.com>

	* 24x24/stock/generic/stock_dialog-error.png
	* 24x24/stock/generic/stock_dialog-info.png
	* 24x24/stock/generic/stock_dialog-warning.png
	* 24x24/stock/generic/Makefile.am
	* 16x16/stock/generic/stock_dialog-error.png
	* 16x16/stock/generic/stock_dialog-info.png
	* 16x16/stock/generic/stock_dialog-warning.png
	* 16x16/stock/generic/Makefile.am: small sized-versions

2004-02-11  Jakub Steiner <jimmac@ximian.com>

	* 48x48/stock/generic/Makefile.am
	* 48x48/stock/generic/stock_dialog-error.png
	* 48x48/stock/generic/stock_dialog-info.png
	* 48x48/stock/generic/stock_dialog-warning.png: 48x48 version
	  were missing

=== gnome-icon-theme 1.1.7 ===
	
2004-02-11  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump to 1.1.7

2004-02-06  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/Makefile.am
	* 16x16/stock/generic/stock_active.png
	* 16x16/stock/generic/stock_properties.png
	* 24x24/stock/generic/Makefile.am
	* 24x24/stock/generic/stock_active.png
	* 24x24/stock/generic/stock_properties.png: from OOo
	* 48x48/devices/Makefile.am
	* 48x48/devices/gnome-dev-mouse-ball.png: 48x48 version

2004-02-06  Robert Sedak  <robert.sedak@sk.htnet.hr>

        * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.

2004-02-03  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/Makefile.am
	* 16x16/apps/im-jabber.png
	* 48x48/apps/Makefile.am
	* 48x48/apps/im-jabber.png: jabber icon (Evo)

2004-01-30  Christophe Merlet  <redfox@redfoxcenter.org>

	* 48x48/mimetypes/Makefile.am: Added DESTDIR variable in
	install-data-hook section.

=== gnome-icon-theme 1.1.6 ===
	
2004-01-30  Alexander Larsson  <alexl@redhat.com>

	* configure.in: 
	* NEWS:
	Release 1.1.6

2004-01-29  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/Makefile.am
	* 16x16/apps/im-aim.png
	* 16x16/apps/im-icq.png
	* 16x16/apps/im-msn.png
	* 16x16/apps/im-yahoo.png: IM clients at 16x16

2004-01-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/Makefile.am
	* 48x48/apps/im-aim.png
	* 48x48/apps/im-icq.png
	* 48x48/apps/im-msn.png
	* 48x48/apps/im-yahoo.png: IM clients (for Evo)

2004-01-29  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/Makefile.am
	* 16x16/stock/net/stock_video-conferencing.png
	* 24x24/stock/net/Makefile.am
	* 24x24/stock/net/stock_video-conferencing.png: needed in Evo;
	  originating from gnome-meeting

2004-01-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/stock/generic/stock_home.png
	* 48x48/stock/generic/Makefile.am: needed by Evolution. drawn by tigert

2004-01-29  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/object/Makefile.am
	* 16x16/stock/object/stock_insert_bookmark.png (r)
	* 16x16/stock/object/stock_pin.png (a)
	* 24x24/stock/object/Makefile.am
	* 24x24/stock/object/stock_insert_bookmark.png (r)
	* 24x24/stock/object/stock_pin.png (a): renamed to a generic name

2004-01-29  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/Makefile.am
	* 16x16/stock/generic/stock_mark.png
	* 24x24/stock/generic/Makefile.am
	* 24x24/stock/generic/stock_mark.png
	* 32x32/stock/net/Makefile.am
	* 32x32/stock/net/stock_mail-receive.png
	* 32x32/stock/net/stock_mail-send.png
	* 48x48/stock/net/Makefile.am
	* 48x48/stock/net/stock_mail-compose.png
	* 48x48/stock/net/stock_mail-receive.png
	* 48x48/stock/net/stock_mail-send.png: last bits of bug #129294

2004-01-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/stock/generic/Makefile.am
	* 48x48/stock/generic/stock_creditcard.png
	* 48x48/stock/generic/stock_init.png
	* 48x48/devices/Makefile.am
	* 48x48/devices/gnome-dev-pcmcia.png
	* 48x48/apps/Makefile.am
	* 48x48/apps/beast.png
	* 48x48/apps/file-roller.png
	* 48x48/apps/hint.png
	* 48x48/apps/palm-pilot.png
	* 48x48/apps/user-info.png
	* 48x48/apps/visor.png
	* 48x48/apps/wallpaper.png
	* 48x48/apps/wine.png
	* 24x24/devices/Makefile.am
	* 24x24/devices/gnome-dev-battery.png: various leftovers that
	  should have been commited.

2004-01-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/screensaver.png
	* 48x48/apps/Makefile.am
	* 48x48/stock/net/stock_proxy.png
	* 48x48/stock/net/Makefile.am: Some icons comming from
	  control-center. fixes bug #130644

2004-01-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/gnome-applications.png
	* 48x48/apps/Makefile.am: 48x48 version was missing

2004-01-29  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_keyring.png
	* 24x24/stock/generic/stock_keyring.png
	* 32x32/stock/generic/stock_keyring.png
	* 48x48/stock/generic/stock_keyring.png
	* 16x16/stock/generic/Makefile.am
	* 24x24/stock/generic/Makefile.am
	* 32x32/stock/generic/Makefile.am
	* 48x48/stock/generic/Makefile.am: fixes bug #132768

2004-01-22  Alexander Larsson  <alexl@redhat.com>

	* 48x48/mimetypes/Makefile.am:
	* 48x48/mimetypes/gnome-mime-text-x-csharp.png:
	* 48x48/mimetypes/gnome-mime-text-x-csharpsrc.png:
	Fix mime name to match the freedesktop mime spec addition

2004-01-21  Jakub Steiner <jimmac@ximian.com>

	* 24x24/stock/generic/Makefile.am
	* 24x24/stock/generic/stock_home.png: dunno why I missed that one

2004-01-21  Jakub Steiner <jimmac@ximian.com>

	* 48x48/stock/net/Makefile.am
	* 48x48/stock/net/stock_mail-druid-account.png: Evo

2004-01-21  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_score-high.png
	* 16x16/stock/generic/stock_score-higher.png
	* 16x16/stock/generic/stock_score-highest.png
	* 16x16/stock/generic/stock_score-low.png
	* 16x16/stock/generic/stock_score-lower.png
	* 16x16/stock/generic/stock_score-lowest.png
	* 16x16/stock/generic/stock_score-normal.png
	* 16x16/stock/generic/Makefile.am: scoring icons for Evo

2004-01-21  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/Makefile.am
	* 16x16/stock/net/stock_mail-unread-multiple.png
	* 24x24/stock/net/Makefile.am
	* 24x24/stock/net/stock_mail-unread-multiple.png: Evo icons

2004-01-20  Alexander Larsson  <alexl@redhat.com>

	* 48x48/mimetypes/Makefile.am:
	* 48x48/mimetypes/gnome-mime-text-x-shellscript.png:
	* 48x48/mimetypes/gnome-mime-application-x-shellscript.png:
	Fix shellscript icon name.

2004-01-20  Alexander Larsson  <alexl@redhat.com>

	* 48x48/mimetypes/Makefile.am:
	* 48x48/mimetypes/gnome-mime-application-qif.png:
	* 48x48/mimetypes/gnome-mime-application-smil.png:
	* 48x48/mimetypes/gnome-mime-application-x-backup.png:
	* 48x48/mimetypes/gnome-mime-application-x-class-file.png:
	* 48x48/mimetypes/gnome-mime-application-x-core-file.png:
	* 48x48/mimetypes/gnome-mime-application-x-core.png:
	* 48x48/mimetypes/gnome-mime-application-x-cpio-compressed.png:
	* 48x48/mimetypes/gnome-mime-application-x-cpio.png:
	* 48x48/mimetypes/gnome-mime-application-x-desktop.png:
	* 48x48/mimetypes/gnome-mime-application-x-gnome-app-info.png:
	* 48x48/mimetypes/gnome-mime-application-x-jar.png:
	* 48x48/mimetypes/gnome-mime-application-x-java-archive.png:
	* 48x48/mimetypes/gnome-mime-application-x-java-byte-code.png:
	* 48x48/mimetypes/gnome-mime-application-x-lha.png:
	* 48x48/mimetypes/gnome-mime-application-x-lhz.png:
	* 48x48/mimetypes/gnome-mime-application-x-object-file.png:
	* 48x48/mimetypes/gnome-mime-application-x-object.png:
	* 48x48/mimetypes/gnome-mime-application-x-rar.png:
	* 48x48/mimetypes/gnome-mime-application-x-sharedlib.png:
	* 48x48/mimetypes/gnome-mime-application-x-smil.png:
	* 48x48/mimetypes/gnome-mime-application-x-trash.png:
	* 48x48/mimetypes/gnome-mime-audio-midi.png:
	* 48x48/mimetypes/gnome-mime-audio-x-midi.png:
	* 48x48/mimetypes/gnome-mime-image-svg+xml.png:
	* 48x48/mimetypes/gnome-mime-image-svg.png:
	* 48x48/mimetypes/gnome-mime-text-x-c++.png:
	* 48x48/mimetypes/gnome-mime-text-x-c++src.png:
	* 48x48/mimetypes/gnome-mime-text-x-c-header.png:
	* 48x48/mimetypes/gnome-mime-text-x-c.png:
	* 48x48/mimetypes/gnome-mime-text-x-chdr.png:
	* 48x48/mimetypes/gnome-mime-text-x-csrc.png:
	* 48x48/mimetypes/gnome-mime-text-x-sh.png:
	* 48x48/mimetypes/gnome-mime-text-x-shellscript.png:
	Update for the new mime types in shared-mime-info.

2004-01-15  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/Makefile.am
	* 48x48/mimetypes/gnome-mime-application-x-java-archive.png: 
	  java archives. Fixes #130650

2004-01-14  Dennis Cranston <dennis_cranston at yahoo.com>

	* 48x48/apps/gnome-searchtool-animation.png:  Fix
	off by one page positions.
	
2004-01-14  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/stock_mail-open-multiple.png
	* 16x16/stock/net/Makefile.am
	* 24x24/stock/net/stock_mail-open-multiple.png
	* 24x24/stock/net/Makefile.am: more Evo icons

2004-01-14  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/document/stock_task.png
	* 16x16/stock/document/Makefile.am
	* 24x24/stock/document/stock_task.png
	* 24x24/stock/document/Makefile.am: as per request in bug #129294

2004-01-13  Jody Goldberg <jody@gnome.org>

	* autogen.sh (REQUIRED_AUTOMAKE_VERSION) : require newer automake so
	  that we can distcheck.

2004-01-13  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_show-all.png
	* 16x16/stock/generic/Makefile.am
	* 24x24/stock/generic/stock_show-all.png
	* 24x24/stock/generic/Makefile.am: Evo again

2004-01-13  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/stock_connect-to-url.png
	* 16x16/stock/net/Makefile.am
	* 24x24/stock/net/stock_connect-to-url.png
	* 24x24/stock/net/Makefile.am: another Evo-required icon
	
2004-01-13  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/stock_not-spam.png
	* 16x16/stock/net/Makefile.am
	* 24x24/stock/net/stock_not-spam.png
	* 24x24/stock/net/Makefile.am
	* 32x32/stock/net/stock_not-spam.png
	* 32x32/stock/net/Makefile.am
	* 48x48/stock/net/stock_not-spam.png
	* 48x48/stock/net/Makefile.am: for marking false-positives in
	  Evolution

=== gnome-icon-theme 1.1.5 ===
	
2004-01-13  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am: 
	Add to --disable-hicolor-check to pass distcheck
	add CLEANFILES & DISTCLEANFILES
	
2004-01-13  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/stock_not-spam.png
	* 16x16/stock/net/Makefile.am
	* 24x24/stock/net/stock_not-spam.png
	* 24x24/stock/net/Makefile.am
	* 32x32/stock/net/stock_not-spam.png
	* 32x32/stock/net/Makefile.am
	* 48x48/stock/net/stock_not-spam.png
	* 48x48/stock/net/Makefile.am: for marking false-positives in
	  Evolution

=== gnome-icon-theme 1.1.5 ===
	
2004-01-13  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am: 
	Add to --disable-hicolor-check to pass distcheck
	add CLEANFILES & DISTCLEANFILES
	
	* configure.in:
	Add --disable-hicolor-check

	* autogen.sh (REQUIRED_AUTOMAKE_VERSION):
	Require 1.6 for DISTCHECK_CONFIGURE_FLAGS

2004-01-13  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump to 1.1.5

2004-01-12  Jody Goldberg <jody@gnome.org>

	* Makefile.am (install-data-local) : Cause more problems.  Put in an
	  install time test that hicolor exists.  It is not strictly correct.
	  What we really need is a _package_ dependency.  But it should at
	  least light off a few warning bells.

2004-01-12  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/Makefile.am
	* 48x48/mimetypes/gnome-mime-application-x-glade.png: glade
	  files. Fixes #130906

2004-01-12  Jakub Steiner <jimmac@ximian.com>

	* 96x96/filesystems/gnome-fs-directory-visiting.png
	* 72x72/filesystems/gnome-fs-directory-visiting.png
	* 48x48/filesystems/gnome-fs-directory-visiting.png
	* 36x36/filesystems/gnome-fs-directory-visiting.png
	* 24x24/filesystems/gnome-fs-directory-visiting.png
	* 12x12/filesystems/gnome-fs-directory-visiting.png: a stroke
	  works better than transparency/hue shift.

2004-01-12  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/Makefile.am
	* 16x16/stock/generic/stock_briefcase.png
	* 24x24/stock/generic/Makefile.am
	* 24x24/stock/generic/stock_briefcase.png
	* 32x32/stock/generic/Makefile.am
	* 32x32/stock/generic/stock_briefcase.png
	* 48x48/stock/generic/Makefile.am
	* 48x48/stock/generic/stock_briefcase.png: for Evolution

2004-01-12  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/gnome-searchtool-animation.png
	* 48x48/apps/gnome-searchtool-animation-rest.png: the high
	  contrast icons are not ideal for this. Fixed.
	
2004-01-11  Dennis Cranston <dennis_cranston at yahoo.com>

	* 48x48/apps/gnome-searchtool-animation.png:  Small
	touch up.
	
2004-01-11  Dennis Cranston <dennis_cranston at yahoo.com>

	* 48x48/apps/gnome-searchtool-animation.png
	* 48x48/apps/gnome-searchtool-animation-rest.png
	* 48x48/apps/Makefile.am: Add gnome-search-tool animation files.
	
2004-01-04  Åsmund Skjæveland  <aasmunds@fys.uio.no>

	* configure.in: Added 'nn' to ALL_LINGUAS
	* po/nn.po: Added Norwegian Nynorsk translation

=== gnome-icon-theme 1.1.4 ===
	
2003-12-28  Alexander Larsson  <alexl@redhat.com>

	* NEWS:
	Updates

	* Makefile.am:
	Added OrigTree to EXTRA_DIST.

2003-12-20  Arafat Medini <lumina@silverpen.de>

	* configure.in: Added Arabic locale "ar" to ALL_LINGUAS

2003-12-18  Jody Goldberg <jody@gnome.org>

	* configure.in : Add a pkgconfig file
	  And bump the version so that CVS is > than the last release
	  Move stock and app icons into hicolor from gnome so that they exist
	  even if a gnome theme is not selected (eg the default)

2003-12-18  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/document/stock_task-assigned-to.png
	* 16x16/stock/document/stock_task-assigned.png
	* 16x16/stock/document/stock_task-recurring.png
	* 16x16/stock/generic/stock_bell.png
	* 16x16/stock/generic/stock_check-filled.png
	* 16x16/stock/generic/stock_folder-properties.png
	* 16x16/stock/generic/stock_timezone.png
	* 24x24/stock/document/stock_task-assigned-to.png
	* 24x24/stock/document/stock_task-assigned.png
	* 24x24/stock/document/stock_task-recurring.png
	* 24x24/stock/generic/stock_folder-properties.png
	* 24x24/stock/generic/stock_folder.png
	* 24x24/stock/generic/stock_timezone.png
	* 24x24/stock/net/stock_mail-filters-apply.png
	* 32x32/apps/evolution.png
	* 32x32/stock/net/stock_mail-import.png
	* 48x48/apps/evolution.png
	* 48x48/stock/generic/stock_timezone.png
	* 48x48/stock/net/stock_mail-druid.png
	* 48x48/stock/net/stock_mail-import.png
	* 16x16/stock/document/Makefile.am
	* 16x16/stock/generic/Makefile.am
	* 24x24/stock/document/Makefile.am
	* 24x24/stock/generic/Makefile.am
	* 24x24/stock/net/Makefile.am
	* 32x32/apps/Makefile.am
	* 32x32/stock/net/Makefile.am
	* 48x48/apps/Makefile.am
	* 48x48/stock/generic/Makefile.am
	* 48x48/stock/net/Makefile.am: more Evolution icons

2003-12-18  Jakub Steiner <jimmac@ximian.com>

	* {12x12,24x24,36x36,48x48,72x72,96x96}/
	   filesystems/gnome-fs-directory-visiting.png &
	   filesystems/Makefile.am: quickly hacked icon for spatialtilus

2003-12-18  Jakub Steiner <jimmac@ximian.com>

	* 24x24/stock/net/stock_mail-next.png
	* 24x24/stock/net/stock_mail-previous.png
	* 24x24/stock/net/Makefile.am: redundant (removed)

2003-12-17  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/gnome-settings.png
	* 16x16/stock/generic/stock_folder-copy.png
	* 16x16/stock/generic/stock_folder-move.png
	* 16x16/stock/generic/stock_undelete.png
	* 16x16/stock/net/stock_contact-list.png
	* 16x16/stock/net/stock_mail-copy.png
	* 16x16/stock/net/stock_mail-filters-apply.png
	* 16x16/stock/net/stock_mail-flag-for-followup-done.png
	* 16x16/stock/net/stock_mail-flag-for-followup.png
	* 16x16/stock/net/stock_mail-hide-deleted.png
	* 16x16/stock/net/stock_mail-hide-read.png
	* 16x16/stock/net/stock_mail-hide-selected.png
	* 16x16/stock/net/stock_mail-import.png
	* 16x16/stock/net/stock_mail-move.png
	* 16x16/stock/net/stock_mail-priority-high.png
	* 16x16/stock/net/stock_mail-replied.png
	* 16x16/stock/net/stock_mail-send-receive.png
	* 16x16/stock/net/stock_mail-unread.png
	* 24x24/apps/gnome-settings.png
	* 24x24/stock/generic/stock_folder-copy.png
	* 24x24/stock/generic/stock_folder-move.png
	* 24x24/stock/generic/stock_undelete.png
	* 24x24/stock/net/stock_contact-list.png
	* 24x24/stock/net/stock_mail-copy.png
	* 24x24/stock/net/stock_mail-import.png
	* 24x24/stock/net/stock_mail-move.png
	* 24x24/stock/net/stock_mail-next.png
	* 24x24/stock/net/stock_mail-previous.png
	* 24x24/stock/net/stock_mail-replied.png
	* 24x24/stock/net/stock_mail-send-receive.png
	* 24x24/stock/net/stock_mail-unread.png
	* 32x32/stock/generic/stock_alarm.png
	* 48x48/stock/generic/stock_alarm.png
	* 48x48/stock/net/stock_mail-flag-for-followup-done.png
	* 48x48/stock/net/stock_mail-flag-for-followup.png
	* 16x16/apps/Makefile.am
	* 16x16/stock/generic/Makefile.am
	* 16x16/stock/net/Makefile.am
	* 24x24/apps/Makefile.am
	* 24x24/stock/generic/Makefile.am
	* 24x24/stock/net/Makefile.am
	* 32x32/stock/generic/Makefile.am
	* 48x48/stock/generic/Makefile.am
	* 48x48/stock/net/Makefile.am: more Evolution icons

2003-12-17  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/gnome-settings-font.png
	* 48x48/apps/gnome-settings-keybindings.png
	* 48x48/apps/gnome-settings-theme.png: these are more recent

2003-12-16  Jody Goldberg <jody@gnome.org>

	* 48x48/apps/accessibility-directory.png
	* 48x48/apps/gnome-settings-background.png
	* 48x48/apps/gnome-settings-font.png
	* 48x48/apps/gnome-settings-keybindings.png
	* 48x48/apps/gnome-settings-ui-behavior.png
	* 48x48/apps/gnome-settings-sound.png
	* 48x48/apps/gnome-settings-theme.png
	* 48x48/apps/gnome-settings-accessibility-technologies.png
	* 48x48/apps/gnome-settings-accessibility-keyboard.png
	* 48x48/apps/gnome-settings-default-applications.png
	* 48x48/apps/Makefile.am : Add some control-center icons

2003-12-15  Jakub Steiner <jimmac@ximian.com>

	* 24x24/stock/generic/stock_calendar-view-day.png
	* 24x24/stock/generic/stock_calendar-view-list.png
	* 24x24/stock/generic/stock_calendar-view-month.png
	* 24x24/stock/generic/stock_calendar-view-week.png
	* 24x24/stock/generic/stock_calendar-view-work-week.png
	* 24x24/stock/generic/stock_calendar-view-year.png
	* 24x24/stock/generic/Makefile.am: move Evolution calendar icons in

2003-12-15  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/gnome-panel.png
	* 48x48/apps/gnome-session.png
	* 48x48/apps/gnome-window-manager.png
	* 48x48/apps/Makefile.am: control center icons

2003-12-15  Jakub Steiner <jimmac@ximian.com>

	* configure.in
	* 16x16/stock/Makefile.am: don't install flags, they are not
	  politically acceptable globally

2003-12-15  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/Makefile.am
	* 16x16/stock/net/stock_mail-forward.png
	* 16x16/stock/net/stock_mail-open.png
	* 16x16/stock/net/stock_mail-receive.png
	* 16x16/stock/net/stock_mail-reply.png
	* 16x16/stock/net/stock_mail-send.png
	* 24x24/stock/net/Makefile.am
	* 24x24/stock/net/stock_mail-forward.png
	* 24x24/stock/net/stock_mail-open.png
	* 24x24/stock/net/stock_mail-receive.png
	* 24x24/stock/net/stock_mail-reply.png
	* 24x24/stock/net/stock_mail-send.png
	* 32x32/stock/net/Makefile.am
	* 32x32/stock/net/stock_mail-open.png
	* 48x48/stock/net/Makefile.am
	* 48x48/stock/net/stock_mail-open.png: added

	* 16x16/stock/net/stock_insert-url.png
	* 16x16/stock/net/stock_insert_url.png
	* 16x16/stock/net/stock_mail_forward.png
	* 16x16/stock/net/stock_mail_open.png
	* 16x16/stock/net/stock_mail_receive.png
	* 16x16/stock/net/stock_mail_reply.png
	* 16x16/stock/net/stock_mail_send.png
	* 24x24/stock/net/stock_insert-url.png
	* 24x24/stock/net/stock_insert_url.png
	* 24x24/stock/net/stock_mail_forward.png
	* 24x24/stock/net/stock_mail_open.png
	* 24x24/stock/net/stock_mail_receive.png
	* 24x24/stock/net/stock_mail_reply.png
	* 24x24/stock/net/stock_mail_send.png
	* 32x32/stock/net/stock_mail_open.png
	* 48x48/stock/net/stock_mail_open.png: removed. This fixes naming
	  naming inconsistency as described in #129294

2003-12-14  Jakub Steiner <jimmac@ximian.com>

	* 32x32/apps/gnome-calculator.png
	* 32x32/apps/Makefile.am
	* 48x48/apps/gnome-calculator.png
	* 48x48/apps/Makefile.am: add calculator icon (fixes #129282)

2003-12-12  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/Makefile.am
	* 16x16/stock/net/stock_mail-reply-to-all.png
	* 24x24/stock/net/Makefile.am
	* 24x24/stock/net/stock_mail-reply-to-all.png: make reply to all
	  distinguishable from reply

2003-12-12  Jakub Steiner <jimmac@ximian.com>

	* 16x16/devices/Makefile.am
	* 16x16/devices/gnome-dev-cdrom-audio.png
	* 16x16/devices/gnome-dev-cdrom.png
	* 16x16/devices/gnome-dev-dvd.png
	* 16x16/devices/gnome-dev-floppy.png
	* 16x16/devices/gnome-dev-harddisk.png
	* 16x16/devices/gnome-dev-memory.png
	* 16x16/devices/gnome-dev-mouse-ball.png
	* 16x16/devices/gnome-dev-printer.png
	* 16x16/devices/gnome-dev-removable.png
	* 16x16/Makefile.am
	* 24x24/devices/Makefile.am
	* 24x24/devices/gnome-dev-cdrom-audio.png
	* 24x24/devices/gnome-dev-cdrom.png
	* 24x24/devices/gnome-dev-dvd.png
	* 24x24/devices/gnome-dev-floppy.png
	* 24x24/devices/gnome-dev-harddisk.png
	* 24x24/devices/gnome-dev-memory.png
	* 24x24/devices/gnome-dev-mouse-ball.png
	* 24x24/devices/gnome-dev-printer.png
	* 24x24/devices/gnome-dev-removable.png
	* configure.in
	* index.theme.in: more devices
	
2003-12-12  Jakub Steiner <jimmac@ximian.com>

	* 48x48/devices/Makefile.am
	* 48x48/devices/gnome-dev-battery.png
	* 48x48/devices/gnome-dev-keyboard.png
	* 48x48/devices/gnome-dev-mouse-optical.png: working on some
	  devices for HAL stuff

	* 48x48/stock/generic/Makefile.am
	* 48x48/stock/generic/stock_unknown.png
	* 24x24/stock/generic/Makefile.am
	* 24x24/stock/generic/stock_unknown.png
	* 16x16/stock/generic/Makefile.am
	* 16x16/stock/generic/stock_unknown.png: gweather missed
	  weather-unknown, but I gave it a generic name. (fixes #129051)

2003-12-11  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/image/Makefile.am
	* 16x16/stock/image/stock_wallpaper-center.png
	* 16x16/stock/image/stock_wallpaper-fill.png
	* 16x16/stock/image/stock_wallpaper-scale.png
	* 16x16/stock/image/stock_wallpaper-tile.png: wallpaper capplet
	  icons

2003-12-10  Jakub Steiner <jimmac@ximian.com>

	* 96x96/apps/Makefile.am
	* 96x96/apps/gnome-globe.png
	* 72x72/apps/Makefile.am
	* 72x72/apps/gnome-globe.png
	* 72x72/Makefile.am
	* 48x48/mimetypes/gnome-mime-audio.png
	* 48x48/emblems/Makefile.am
	* 48x48/devices/Makefile.am
	* 48x48/devices/gnome-dev-symlink.png
	* 48x48/apps/Makefile.am
	* 48x48/apps/realplayer.png
	* 24x24/mimetypes/Makefile.am
	* 24x24/mimetypes/gnome-mime-x-directory-nfs-server.png
	* 24x24/mimetypes/gnome-mime-x-directory-smb-workgroup.png
	* 192x192/apps/Makefile.am
	* 192x192/apps/gnome-globe.png
	* 192x192/Makefile.am
	* 16x16/mimetypes/Makefile.am
	* 16x16/mimetypes/gnome-mime-x-directory-nfs-server.png
	* 16x16/mimetypes/gnome-mime-x-directory-smb-workgroup.png
	* configure.in: forgot some stuff in XD2

2003-12-09  Jakub Steiner <jimmac@ximian.com>

	* 48x48/emblems/Makefile.am
	* 48x48/emblems/emblem-cvs-new-file.png
	* 48x48/emblems/emblem-cvs-removed.png: two more missing emblems

2003-12-09  Jakub Steiner <jimmac@ximian.com>

	* 48x48/emblems/Makefile.am
	* 48x48/emblems/emblem-cvs-added.png
	* 48x48/emblems/emblem-cvs-conflict.png
	* 48x48/emblems/emblem-cvs-controlled.png
	* 48x48/emblems/emblem-cvs-modified.png
	* 48x48/emblems/emblem-cvs-sticky-tag.png: CVS emblems for
	  nautilus

=== gnome-icon-theme 1.1.3 ===
	
2003-12-08  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump to 1.1.3

2003-12-05  Jakub Steiner <jimmac@ximian.com>

   * {16x16,24x24,32x32,48x48}/stock/data/Makefile.am
	* 16x16/stock/data/stock_signature-bad.png
	* 16x16/stock/data/stock_signature-ok.png
	* 16x16/stock/data/stock_signature.png
	* 24x24/stock/data/stock_signature-bad.png
	* 24x24/stock/data/stock_signature-ok.png
	* 24x24/stock/data/stock_signature.png
	* 32x32/stock/data/stock_signature-bad.png
	* 32x32/stock/data/stock_signature-ok.png
	* 32x32/stock/data/stock_signature.png
	* 48x48/stock/data/stock_signature-bad.png
	* 48x48/stock/data/stock_signature-ok.png
	* 48x48/stock/data/stock_signature.png: icons for signed messages
	  (Evolution)

2003-12-05  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/config-language.png: this is weird, I didn't add
	  this one either.
	
2003-12-05  Jakub Steiner <jimmac@ximian.com>

	* 24x24/apps/config-language.png: this wasn't added for some
	  reason
	* 32x32/stock/generic/stock_language.png: removed a duplicate of
	  config-language
	
2003-12-04  Jakub Steiner <jimmac@ximian.com>

	* 48x48/stock/data/Makefile.am
	* 48x48/stock/data/stock_lock-broken.png
	* 48x48/stock/data/stock_lock-ok.png
	* 48x48/stock/data/stock_lock.png
	* 48x48/stock/Makefile.am
	* 32x32/stock/data/Makefile.am
	* 32x32/stock/data/stock_lock-broken.png
	* 32x32/stock/data/stock_lock-ok.png
	* 32x32/stock/data/stock_lock.png
	* 24x24/stock/data/Makefile.am
	* 24x24/stock/data/stock_lock-broken.png
	* 24x24/stock/data/stock_lock-ok.png
	* 24x24/stock/data/stock_lock.png
	* 16x16/stock/data/Makefile.am
	* 16x16/stock/data/stock_lock-broken.png
	* 16x16/stock/data/stock_lock-ok.png
	* 16x16/stock/data/stock_lock.png
	* onfigure.in: icons for encrypted messages (Evolution)

2003-11-26  Vincent Untz  <vincent@vuntz.net>

	* 48x48/apps/Makefile.am: we want to install
	panel-notification-area.png too

=== gnome-icon-theme 1.1.2 ===
	
2003-11-24  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	1.1.2

2003-11-14  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/web-calendar.png:
	* 24x24/stock/generic/web-calendar.png:
	* 32x32/stock/generic/web-calendar.png:
	* 48x48/stock/generic/web-calendar.png:
	* {16x16,24x24,32x32,48x48}/stock/generic/Makefile.am: web
	  calendars (Evolution)

2003-11-11  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-text-x-vcard.png:
	* 48x48/mimetypes/Makefile.am: vcard files

=== gnome-icon-theme 1.1.1 ===
	
2003-11-10  Alexander Larsson  <alexl@redhat.com>

	* configure.in: 
	* NEWS:
	Bump to 1.1.1

2003-11-04  Alexander Larsson  <alexl@redhat.com>

	* 48x48/devices/gnome-dev-harddisk.png:
	Update from jimmacs site	
	
	* 48x48/devices/Makefile.am:
	* 48x48/devices/gnome-dev-removable.png:
	Add from jimmacs site
	
	* 72x72/devices/Makefile.am:
	* 72x72/devices/gnome-dev-harddisk.png:
	remove

2003-11-01  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/gnome-devel.png
	* 24x24/apps/gnome-devel.png: fix stroke

2003-10-23  Tuomas Kuosmanen  <tigert@ximian.com>

	* 16x16/stock/data/stock_record-number.png
	* 24x24/stock/data/stock_record-number.png: from OOo
	* 16x16/stock/data/Makefile.am (icon_DATA) 
	* 24x24/stock/data/Makefile.am (icon_DATA): added here
	
	* 16x16/stock/form/stock_form-line-horizontal.png
	* 24x24/stock/form/stock_form-line-horizontal.png
	* 16x16/stock/form/stock_form-line-vertical.png
	* 24x24/stock/form/stock_form-line-vertical.png
	* 24x24/stock/form/stock_form-progressbar.png
	* 16x16/stock/form/stock_form-progressbar.png: added from OOo
	* 16x16/stock/form/Makefile.am (icon_DATA) 
	* 24x24/stock/form/Makefile.am (icon_DATA): added here

	* 24x24/stock/generic/stock_test-mode.png
	* 16x16/stock/generic/stock_test-mode.png: added from OOo
	* 16x16/stock/generic/Makefile.am (icon_DATA)
	* 24x24/stock/generic/Makefile.am (icon_DATA): added

2003-10-23  Jakub Steiner <jimmac@ximian.com>

	* 48x48/stock/document/stock_certificate.png
	* 48x48/stock/generic/stock_calendar-and-tasks.png: for
	  Evolution's preferences dialog

2003-10-23  Jakub Steiner <jimmac@ximian.com>

	* 24x24/stock/generic/stock_edit.png
	* 32x32/stock/generic/stock_edit.png
	* 48x48/stock/generic/stock_edit.png
	* {24x24,32x32,48x48}/stock/generic/Makefile.am:
	  for some reason 24x24 was missing. I added 32x32 and 48x48
	  since it may be used in Evolution prefrences dialog.

	* 16x16/stock/flag/??.png: some minor updates of the flags

2003-10-22  Jakub Steiner <jimmac@ximian.com>

	* TODO: updated
	* configure.in
	* 16x16/stock/Makefile.am
	* 16x16/stock/flag/Makefile.am
	* 16x16/stock/flag/*.png: small icons for gkb

2003-10-21  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_weather-showers.png
	* 16x16/stock/generic/stock_weather-snow.png: ehm. I
	  actually found my older Evolution icons that work better
	  in that they are distiguishable from each other.

2003-10-21  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/media/stock_music-library.png
	* 24x24/stock/media/stock_music-library.png
	* {16x16,24x24}/stock/media/Makefila.am: for Rhythmbox

2003-10-21  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/media/stock_playlist.png
	* 16x16/stock/media/stock_smart-playlist.png
	* 24x24/stock/media/stock_playlist.png
	* 24x24/stock/media/stock_smart-playlist.png
	* {16x16,24x24}/stock/media/Makefile.am:
	  Rhythmbox icons

	* 16x16/stock/net/stock_channel.png
	* 24x24/stock/net/stock_channel.png
	* 32x32/stock/net/stock_channel.png
	* 48x48/stock/net/stock_channel.png
	* {16x16,24x24,32x32,48x48}/stock/net/Makefile.am:
	  from RC

2003-10-21  Jakub Steiner <jimmac@ximian.com>

	* TODO: update

2003-10-21  Jakub Steiner <jimmac@ximian.com>

	* 48x48/emblems/emblem-distinguished.icon.in
	* 48x48/emblems/emblem-distinguished.png
	* 48x48/emblems/emblem-draft.icon.in
	* 48x48/emblems/emblem-draft.png
	* 48x48/emblems/emblem-new.icon.in
	* 48x48/emblems/emblem-new.png
	* 48x48/emblems/emblem-personal.icon.in
	* 48x48/emblems/emblem-personal.png
	* 48x48/emblems/emblem-sound.png
	* 48x48/emblems/emblem-urgent.icon.in
	* 48x48/emblems/emblem-urgent.png
	* 48x48/emblems/Makefile.am
	* po/POTFILES.in: finished the remaining emblems

	* scalable/emblems/emblem-OK.icon.in
	* scalable/emblems/emblem-OK.svg
	* scalable/emblems/emblem-certified.icon.in
	* scalable/emblems/emblem-certified.svg
	* scalable/emblems/emblem-distinguished.icon.in
	* scalable/emblems/emblem-distinguished.svg
	* scalable/emblems/emblem-draft.icon.in
	* scalable/emblems/emblem-draft.svg
	* scalable/emblems/emblem-generic.icon.in
	* scalable/emblems/emblem-generic.svg
	* scalable/emblems/emblem-important.icon.in
	* scalable/emblems/emblem-important.svg
	* scalable/emblems/emblem-new.icon.in
	* scalable/emblems/emblem-new.svg
	* scalable/emblems/emblem-noread.svg
	* scalable/emblems/emblem-nowrite.svg
	* scalable/emblems/emblem-personal.icon.in
	* scalable/emblems/emblem-personal.svg
	* scalable/emblems/emblem-special.icon.in
	* scalable/emblems/emblem-special.svg
	* scalable/emblems/emblem-urgent.icon.in
	* scalable/emblems/emblem-urgent.svg: removed

2003-10-21  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/media/stock_shuffle.png
	* 16x16/stock/media/Makefile.am: missed one

2003-10-21  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/media/stock_media-stop.png
	* 16x16/stock/media/stock_media-rew.png
	* 16x16/stock/media/stock_media-rec.png
	* 16x16/stock/media/stock_media-prev.png
	* 16x16/stock/media/stock_media-play.png
	* 16x16/stock/media/stock_media-pause.png
	* 16x16/stock/media/stock_media-next.png
	* 16x16/stock/media/stock_media-fwd.png
	* 16x16/stock/media/Makefile.am: media icons in menu size

=== gnome-icon-theme 1.1.0 ===
	
2003-10-20  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Release 1.1.0 for gnome 2.5.0

2003-10-20  Jakub Steiner <jimmac@ximian.com>

	minor indentation a various updates patch 
	from Luca Ferretti <elle.uca@infinito.it>:
	
	* use GNOME (not Gnome) in index.theme
	* add missed 32x32/stock/object to index.theme
	* remove from scalable/emblems/Makefile.am replaced emblems
	* add some missed icon.in files in po/POTFILES.in 
	* update entry for replaced emblems in POTFILES.in

2003-10-17  Jakub Steiner <jimmac@ximian.com>

	* index.theme.in
	* configure.in
	* 16x16/stock/code/stock_script.png
	* 24x24/stock/code/stock_script.png
	* 32x32/stock/code/stock_script.png
	* 48x48/stock/code/stock_script.png
	* {32x32/48x48}/stock/Makefile.am
	* {16x16,24x24,32x32,48x48}/stock/code/Makefile.am: liked the emblem in
	  GIMP's preferences. Will be handy I'm sure.
	
	* 48x48/emblems/emblem-OK.icon.in
	* 48x48/emblems/emblem-OK.png
	* 48x48/emblems/emblem-certified.icon.in
	* 48x48/emblems/emblem-certified.png
	* 48x48/emblems/emblem-generic.icon.in
	* 48x48/emblems/emblem-generic.png
	* 48x48/emblems/emblem-important.icon.in
	* 48x48/emblems/emblem-important.png
	* 48x48/emblems/emblem-special.png
	* 48x48/emblems/Makefile.am: more emblems as bitmaps

2003-10-16  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/io/stock_bluetooth.png
	* 24x24/stock/io/stock_bluetooth.png
	* 32x32/stock/io/stock_bluetooth.png
	* 48x48/stock/io/stock_bluetooth.png
	* {16x16,24x24,32x32,48x48}/stock/io/Makefile.am: Bluetooth
	  devices

2003-10-15  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_example.png
	* 24x24/stock/generic/stock_example.png
	* 32x32/stock/generic/stock_example.png
	* 48x48/stock/generic/stock_example.png
	* {16x16,24x24,32x32,48x48}/stock/generic/Makefile.am: example

2003-10-14  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_weather-cloudy.png
	* 16x16/stock/generic/stock_weather-few-clouds.png
	* 16x16/stock/generic/stock_weather-fog.png
	* 16x16/stock/generic/stock_weather-showers.png
	* 16x16/stock/generic/stock_weather-snow.png
	* 16x16/stock/generic/stock_weather-storm.png
	* 16x16/stock/generic/stock_weather-sunny.png
	* 48x48/stock/generic/stock_weather-cloudy.png
	* 48x48/stock/generic/stock_weather-few-clouds.png
	* 48x48/stock/generic/stock_weather-showers.png
	* 48x48/stock/generic/stock_weather-snow.png
	* 48x48/stock/generic/stock_weather-storm.png
	* 48x48/stock/generic/stock_weather-sunny.png
	* {16x16,48x48}/stock/generic/Makefile.am: gWeather icons

2003-10-14  Jakub Steiner <jimmac@ximian.com>

	* 36x36/apps/gnome-spinner-rest.png
	* 36x36/apps/gnome-spinner.png: experimental 'toe-roll' spinner

2003-10-10  Jakub Steiner <jimmac@ximian.com>

	* 36x36/apps/gnome-spinner-rest.png
	* 36x36/apps/gnome-spinner.png: use a distinctive spinning gnome2 foot

2003-10-09  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/panel-window-list.png
	* 24x24/apps/panel-window-list.png
	* 32x32/apps/panel-window-list.png
	* 48x48/apps/panel-window-list.png: make window list applet
	 distinguishable from window menu

2003-10-09  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/panel-window-menu.png
	* 24x24/apps/panel-window-menu.png
	* 32x32/apps/panel-window-menu.png
	* 48x48/apps/panel-window-menu.png: window menu applet

2003-10-09  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/stock_spam.png
	* 24x24/stock/net/stock_spam.png
	* 32x32/stock/net/stock_spam.png
	* 48x48/stock/net/stock_spam.png: spam folder for Evo

2003-10-07  Jakub Steiner <jimmac@ximian.com>

	* 36x36/apps/gnome-spinner-rest.png
	* 36x36/apps/gnome-spinner.png: fancier spinner. Wanted something
	  else initially, but lattices behave differently in blender than
	  I thought. May change if I figure it out.

2003-10-07  Jakub Steiner <jimmac@ximian.com>

	* 12x12/emblems/emblem-symbolic-link.png
	* 24x24/emblems/emblem-symbolic-link.png
	* 36x36/emblems/emblem-symbolic-link.png: update smaller sized
	  versions of the emblem.

	* 16x16/apps/gnome-devel.png
	* 24x24/apps/gnome-devel.png
	* 32x32/apps/gnome-devel.png
	* 48x48/apps/gnome-devel.png: use the classic float

2003-10-02  Jakub Steiner <jimmac@ximian.com>

	* 192x192/filesystems/Makefile.am
	* 192x192/filesystems/gnome-fs-regular.icon
	* 192x192/filesystems/gnome-fs-regular.png
	* 72x72/filesystems/gnome-fs-regular.icon
	* 72x72/filesystems/gnome-fs-regular.png
	* 96x96/filesystems/gnome-fs-regular.icon
	* 96x96/filesystems/gnome-fs-regular.png: use XD regular -
	  stretches better.

2003-10-02  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/Makefile.am
	* 48x48/mimetypes/gnome-mime-application-ogg.png
	* 48x48/mimetypes/gnome-mime-application-x-ogg.png: renamed. It
	  appears the mimetype changed to application/ogg.

	* TODO: updated

2003-10-02  Jakub Steiner <jimmac@ximian.com>

	* ./48x48/filesystems/gnome-fs-home.png: works better for home
	  folder I think.
	
2003-10-02  Jakub Steiner <jimmac@ximian.com>

	* 48x48/filesystems/gnome-fs-directory-accept.icon
	* 48x48/filesystems/gnome-fs-directory.icon
	* 72x72/filesystems/gnome-fs-directory-accept.icon
	* 72x72/filesystems/gnome-fs-directory.icon
	* 96x96/filesystems/gnome-fs-directory-accept.icon
	* 96x96/filesystems/gnome-fs-directory.icon: fix emblem placement

	* 48x48/emblems/emblem-people.png: no cropping

2003-10-02  Jakub Steiner <jimmac@ximian.com>

	* 48x48/emblems/Makefile.am
	* 48x48/emblems/emblem-nowrite.png
	* 48x48/emblems/emblem-noread.png
	* 48x48/emblems/emblem-pictures.png
	* 48x48/emblems/emblem-symbolic-link.png
	* 48x48/emblems/emblem-trash.png: update basic emblems

2003-09-30  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/code/stock_error-next.png
	* 16x16/stock/code/stock_error-previous.png: was mistakenly 24x24

2003-09-30  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/io/stock_network-printer.png
	* 16x16/stock/io/stock_printers.png
	* 24x24/stock/io/stock_network-printer.png
	* 24x24/stock/io/stock_printers.png
	* 32x32/stock/io/stock_network-printer.png
	* 32x32/stock/io/stock_printers.png
	* 48x48/stock/io/stock_network-printer.png
	* 48x48/stock/io/stock_printers.png
	* {16x16,24x24,32x32,48x48}/stock/io/Makefile.am: more printer
	  icons

2003-09-30  Jakub Steiner <jimmac@ximian.com>

	* {32x32,48x48}/apps/Makefile.am: forgot to remove
	  gnome-printers-properties.png 

2003-09-30  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_print-preview-print.png
	* 16x16/stock/generic/stock_print-preview.png
	* 16x16/stock/generic/stock_print-setup.png
	* 16x16/stock/generic/stock_print.png
	* 24x24/stock/generic/stock_print-preview-print.png
	* 24x24/stock/generic/stock_print-preview.png
	* 24x24/stock/generic/stock_print-setup.png
	* 24x24/stock/generic/stock_print.png: (re)moved to stock/io.
	  redesigned some
	
	* 32x32/apps/gnome-printers-properties.png
	* 48x48/apps/gnome-printers-properties.png: removed duplicate

	* 16x16/stock/io/stock_print-driver.png
	* 16x16/stock/io/stock_print-preview-print.png
	* 16x16/stock/io/stock_print-preview.png
	* 16x16/stock/io/stock_print-setup.png
	* 16x16/stock/io/stock_print.png
	* 24x24/stock/io/stock_print-driver.png
	* 24x24/stock/io/stock_print-preview-print.png
	* 24x24/stock/io/stock_print-preview.png
	* 24x24/stock/io/stock_print-setup.png
	* 24x24/stock/io/stock_print.png
	* 32x32/stock/io/stock_print-preview-print.png
	* 32x32/stock/io/stock_print-preview.png
	* 32x32/stock/io/stock_print-setup.png
	* 32x32/stock/io/stock_print.png
	* 32x32/stock/io/stock_print-driver.png
	* 48x48/stock/io/Makefile.am
	* 48x48/stock/io/stock_print-driver.png
	* 48x48/stock/io/stock_print-preview-print.png
	* 48x48/stock/io/stock_print-preview.png
	* 48x48/stock/io/stock_print-setup.png
	* 48x48/stock/io/stock_print.png
	* {16x16,24x24,32x32,48x48}/stock/io/Makefile.am
	* configure.in,index.theme.in: add, tweak and reorganize the
	  print icons

2003-09-30  Jakub Steiner <jimmac@ximian.com>

	* 16x16/filesystems/gnome-fs-client.png
	* 24x24/filesystems/gnome-fs-client.png
	* 32x32/filesystems/gnome-fs-client.png
	* 48x48/filesystems/gnome-fs-client.png
	* 16x16/filesystems/gnome-fs-network.png
	* 24x24/filesystems/gnome-fs-network.png
	* 32x32/filesystems/gnome-fs-network.png: missing network, client
	
	* {32x32,48x48}/apps/Makefile.am
	* 48x48/apps/network.png
	* 32x32/apps/network.png: remove duplicate (gnome-fs-network)

	* 48x48/mimetypes/gnome-mime-x-directory-smb-server.png: bring to
	  style

2003-09-29  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_notebook.png
	* 24x24/stock/generic/stock_notebook.png
	* 32x32/stock/generic/stock_notebook.png
	* 48x48/stock/generic/stock_notebook.png
	* 16x16/stock/generic/Makefile.am
	* 24x24/stock/generic/Makefile.am
	* 32x32/stock/generic/Makefile.am
	* 48x48/stock/generic/Makefile.am: updated

2003-09-30  Christian Rose  <menthos@menthos.com>

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

2003-09-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-text-x-csharp.png:
	* 48x48/mimetypes/Makefile.am: forgot about C-sharp files

2003-09-26  Jakub Steiner <jimmac@ximian.com>

	* 16x16/filesystems/gnome-fs-server.png
	* 24x24/filesystems/gnome-fs-server.png
	* 32x32/filesystems/gnome-fs-server.png: add low-res versions
	* 16x16/stock/net/stock_directory-server.png
	* 24x24/stock/net/stock_directory-server.png
	* 32x32/stock/net/stock_directory-server.png
	* 48x48/stock/net/stock_directory-server.png: for Evo
	* 16x16/filesystems/Makefile.am
	* 24x24/filesystems/Makefile.am
	* 32x32/filesystems/Makefile.am
	* 16x16/stock/net/Makefile.am
	* 24x24/stock/net/Makefile.am
	* 32x32/stock/net/Makefile.am
	* 48x48/stock/net/Makefile.am: updated

2003-09-25  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_people.png
	* 16x16/stock/generic/stock_person.png
	* 24x24/stock/generic/stock_people.png
	* 24x24/stock/generic/stock_person.png
	* 32x32/stock/generic/stock_people.png
	* 32x32/stock/generic/stock_person.png
	* 48x48/stock/generic/stock_people.png
	* 48x48/stock/generic/stock_person.png: more Evo icons (although
	  these are very useful elsehwer too)
	* TODO
	* 16x16/stock/generic/Makefile.am
	* 24x24/stock/generic/Makefile.am
	* 32x32/stock/generic/Makefile.am
	* 48x48/stock/generic/Makefile.am: updated

2003-09-24  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/stock_connect.png
	* 16x16/stock/net/stock_disconnect.png
	* 24x24/stock/net/stock_connect.png
	* 24x24/stock/net/stock_disconnect.png: this is quite useful to
	  have in the theme
	* 24x24/Makefile.am
	* 16x16/Makefile.am: updated

2003-09-23  Jakub Steiner <jimmac@ximian.com>

	* 32x32/stock/object/stock_add-bookmark.png
	* 32x32/stock/object/stock_bookmark.png
	* 32x32/stock/object/stock_delete-bookmark.png
	* 32x32/stock/object/stock_edit-bookmark.png
	* configure.in
	* 32x32/stock/object/Makefile.am
	* 32x32/stock/Makefile.am: supposedly Epiphany needs it in 32x32
	  as well
	
2003-09-23  Jakub Steiner <jimmac@ximian.com>

	* TODO: add new stuff

2003-09-23  Jakub Steiner <jimmac@ximian.com>

	* 16x16/mimetypes/gnome-mime-image-gif.png
	* 16x16/mimetypes/gnome-mime-image-tiff.png
	* 16x16/mimetypes/gnome-mime-image-wmf.png
	* 32x32/mimetypes/gnome-mime-image-gif.png
	* 32x32/mimetypes/gnome-mime-image-tiff.png
	* 32x32/mimetypes/gnome-mime-image-wmf.png: more MIME types
	* 32x32/Makefile.am
	* 16x16/Makefile.am: updated

2003-09-22  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/object/stock_add-bookmark.png
	* 16x16/stock/object/stock_bookmark.png
	* 16x16/stock/object/stock_delete-bookmark.png
	* 16x16/stock/object/stock_edit-bookmark.png
	* 24x24/stock/object/stock_add-bookmark.png
	* 24x24/stock/object/stock_bookmark.png
	* 24x24/stock/object/stock_delete-bookmark.png
	* 24x24/stock/object/stock_edit-bookmark.png
	* 16x16/stock/object/Makefile.am
	* 24x24/stock/object/Makefile.am: bookmark icons
	* TODO: update

2003-09-19  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/blender.png
	* 24x24/apps/blender.png
	* 32x32/apps/blender.png
	* 48x48/apps/blender.png: realised I need a desktop icon for
	  blender ;) Although I spend considerable time clicking myself
	  away to anti-alias it still seems imperfect at 32x32 and 48x48.
 	* 16x16/apps/generic/Makefile.am
	* 24x24/apps/generic/Makefile.am
	* 32x32/apps/generic/Makefile.am
	* 48x48/apps/generic/Makefile.am: added

2003-09-19  Jakub Steiner <jimmac@ximian.com>

	* 16x16/mimetypes/gnome-mime-image-bmp.png
	* 16x16/mimetypes/gnome-mime-image-svg.png
	* 32x32/mimetypes/gnome-mime-image-bmp.png
	* 32x32/mimetypes/gnome-mime-image-svg.png: more image types
	* 32x32/Makefile.am
	* 16x16/Makefile.am: updated

2003-09-18  Jakub Steiner <jimmac@ximian.com>

	* 16x16/mimetypes/gnome-mime-image-jpeg.png
	* 16x16/mimetypes/gnome-mime-image-png.png
	* 32x32/mimetypes/gnome-mime-image-jpeg.png
	* 32x32/mimetypes/gnome-mime-image-png.png: image filetypes (from
	  OOo)
	* 32x32/Makefile.am
	* 16x16/Makefile.am: updated

2003-09-18  Jakub Steiner <jimmac@ximian.com>

	* 32x32/mimetypes/Makefile.am
	* 32x32/mimetypes/gnome-mime-application-msword.png
	* 32x32/mimetypes/gnome-mime-application-vnd.ms-excel.png
	* 32x32/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png
	* 32x32/Makefile.am
	* 16x16/mimetypes/Makefile.am
	* 16x16/mimetypes/gnome-mime-application-msword.png
	* 16x16/mimetypes/gnome-mime-application-vnd.ms-excel.png
	* 16x16/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png
	* 16x16/Makefile.am
	* configure.in
	* index.theme.in: MS format MIME icons for 16x16 and 32x32
	  (comming from OOo)

2003-09-17  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_landline-phone.png
	* 24x24/stock/generic/stock_landline-phone.png
	* 32x32/stock/generic/stock_landline-phone.png
	* 48x48/stock/generic/stock_landline-phone.png
 	* 16x16/stock/generic/Makefile.am
	* 24x24/stock/generic/Makefile.am
	* 32x32/stock/generic/Makefile.am
	* 48x48/stock/generic/Makefile.am: Phone (Evo)
	* TODO: updated

2003-09-16  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_new-meeting.png
	* 24x24/stock/generic/stock_new-meeting.png
	* 32x32/stock/generic/stock_new-meeting.png
	* 48x48/stock/generic/stock_new-meeting.png
 	* 16x16/stock/generic/Makefile.am
	* 24x24/stock/generic/Makefile.am
	* 32x32/stock/generic/Makefile.am
	* 48x48/stock/generic/Makefile.am: New meeting (Evo)
	* TODO: updated

2003-09-12  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_new-appointment.png
	* 24x24/stock/generic/stock_new-appointment.png
	* 32x32/stock/generic/stock_new-appointment.png
	* 48x48/stock/generic/stock_new-appointment.png
	* 16x16/stock/generic/stock_new-24h-appointment.png
	* 24x24/stock/generic/stock_new-24h-appointment.png
	* 32x32/stock/generic/stock_new-24h-appointment.png
	* 48x48/stock/generic/stock_new-24h-appointment.png
 	* 16x16/stock/generic/Makefile.am
	* 24x24/stock/generic/Makefile.am
	* 32x32/stock/generic/Makefile.am
	* 48x48/stock/generic/Makefile.am: New appointment and 24h app.
	  (for Evolution)
	* TODO: done

2003-09-11  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_news.png
	* 24x24/stock/generic/stock_news.png
	* 32x32/stock/generic/stock_news.png
	* 48x48/stock/generic/stock_news.png
 	* 16x16/stock/generic/Makefile.am
	* 24x24/stock/generic/Makefile.am
	* 32x32/stock/generic/Makefile.am
	* 48x48/stock/generic/Makefile.am: News (ment for Evo component)

2003-09-11  Tuomas Kuosmanen  <tigert@ximian.com>

	* 16x16/stock/net/stock_contact.png
	* 24x24/stock/net/stock_contact.png
	* 32x32/stock/net/stock_contact.png
	* 48x48/stock/net/stock_contact.png: new icon
 	* 16x16/stock/net/Makefile.am
	* 24x24/stock/net/Makefile.am
	* 32x32/stock/net/Makefile.am
	* 48x48/stock/net/Makefile.am: added
	* TODO: updated.

2003-09-09  Jakub Steiner <jimmac@ximian.com>

	* TODO: make sure we don't clash with Tuomas

2003-09-09  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/stock_exchange-connector.png
	* 24x24/stock/net/stock_exchange-connector.png
	* 32x32/stock/net/stock_exchange-connector.png
	* 48x48/stock/net/stock_exchange-connector.png
	* 16x16/stock/net/stock_groupwise-connector.png
	* 24x24/stock/net/stock_groupwise-connector.png
	* 32x32/stock/net/stock_groupwise-connector.png
	* 48x48/stock/net/stock_groupwise-connector.png
	* 16x16/stock/net/Makefile.am
	* 24x24/stock/net/Makefile.am
	* 32x32/stock/net/Makefile.am
	* 48x48/stock/net/Makefile.am: Evolution Exchange and Groupwise
	  connector icons

2003-09-09  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_toilet-paper.png
	* 24x24/stock/generic/stock_toilet-paper.png
	* {16x16,24x24}/stock/generic/Makefile.am
	* 16x16/stock/navigation/stock_undo-history.png
	* 24x24/stock/navigation/stock_undo-history.png
	* {16x16,24x24}/stock/navigation/Makefile.am: might be useful
	  in gnome too (originally made for the GIMP)

2003-09-09  Tuomas Kuosmanen  <tigert@ximian.com>

	* 16x16/stock/net/stock_post-message.png
	* 24x24/stock/net/stock_post-message.png
	* 32x32/stock/net/stock_post-message.png
	* 48x48/stock/net/stock_post-message.png: new icon for evolution
	shell.

2003-09-08  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/navigation/stock_new-tab.png:
	* 16x16/stock/navigation/Makefile.am:
	* 24x24/stock/navigation/stock_new-tab.png:
	* 24x24/stock/navigation/Makefile.am: new tab toolbar/menu icon

2003-09-08  Jakub Steiner <jimmac@ximian.com>

	* configure.in:
	* 16x16/filesystems/gnome-fs-bookmark-missing.png:
	* 16x16/filesystems/gnome-fs-bookmark.png:
	* 16x16/Makefile.am:
	* 24x24/filesystems/gnome-fs-bookmark-missing.png:
	* 24x24/filesystems/gnome-fs-bookmark.png:
	* 32x32/Makefile.am:
	* 32x32/filesystems/gnome-fs-bookmark-missing.png:
	* 32x32/filesystems/gnome-fs-bookmark.png:
	* 48x48/filesystems/gnome-fs-bookmark-missing.png:
	* 48x48/filesystems/gnome-fs-bookmark.png: proper bookmark icons

=== gnome-icon-theme 1.0.9 ===
	
2003-09-08  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in: 1.0.9

2003-09-05  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/calendar.png
	* 24x24/stock/generic/calendar.png
	* 32x32/stock/generic/calendar.png
	* 48x48/stock/generic/calendar.png
	* {16x16,24x24,32x32,48x48}/stock/generic/Makefile.am: Evo calendar

2003-09-03  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_notes.png
	* 16x16/stock/generic/stock_summary.png
	* 24x24/stock/generic/stock_notes.png
	* 24x24/stock/generic/stock_summary.png
	* 32x32/stock/generic/stock_notes.png
	* 32x32/stock/generic/stock_summary.png
	* 48x48/stock/generic/stock_notes.png
	* 48x48/stock/generic/stock_summary.png
	* {16x16,24x24,32x32,48x48}/stock/generic/Makefile.am: more Evolution icons

2003-09-03  Jakub Steiner <jimmac@ximian.com>

	* 48x48/stock/net/stock_mail_open.png: fix antialiasing
	* 16x16/stock/net/stock_mail.png: make white
	* 32x32/stock/net/stock_mail.png:
	* 48x48/stock/net/stock_mail.png: missing sizes
	* {32x32,48x48}/stock/net/Makefile.am: add icons
	
2003-09-03  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/generic/stock_id.png
	* 24x24/stock/generic/stock_id.png
	* 32x32/stock/generic/stock_id.png
	* 48x48/stock/generic/stock_id.png
	* 16x16/stock/net/stock_inbox.png
	* 24x24/stock/net/stock_inbox.png
	* 32x32/stock/net/stock_inbox.png
	* 48x48/stock/net/stock_inbox.png
	* 16x16/stock/net/stock_outbox.png
	* 24x24/stock/net/stock_outbox.png
	* 32x32/stock/net/stock_outbox.png
	* 48x48/stock/net/stock_outbox.png
	* 16x16/stock/net/stock_sent-mail.png
	* 24x24/stock/net/stock_sent-mail.png
	* 32x32/stock/net/stock_sent-mail.png
	* 48x48/stock/net/stock_sent-mail.png
	* 16x16/stock/{net,generic}/Makefile.am
	* 24x24/stock/{net,generic}/Makefile.am
	* 32x32/stock/{net,generic}/Makefile.am
	* 48x48/stock/{net,generic}/Makefile.am: stock_id and more Evolution icons

=== gnome-icon-theme 1.0.8 ===
	
2003-09-02  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in: 1.0.8

2003-09-02  Gediminas Paulauskas  <menesis@delfi.lt>

	* configure.in: Added lt to ALL_LINGUAS.

2003-08-29  Jakub Steiner <jimmac@ximian.com>

	* {16x16,24x24,32x32,48x48}/stock/document/stock_todo.png:
	* {16x16,24x24,32x32,48x48}/stock/document/Makefile.am: TODO
	* {16x16,24x24,32x32,48x48}/stock/generic/stock_cell-phone.png:
	* {16x16,24x24,32x32,48x48}/stock/generic/Makefile.am: cell phone
	  icon

2003-08-28  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/Makefile.am
	* 16x16/stock/net/stock_addressbook.png
	* 24x24/stock/net/Makefile.am
	* 24x24/stock/net/stock_addressbook.png
	* 32x32/stock/net/Makefile.am
	* 32x32/stock/net/stock_addressbook.png
	* 48x48/stock/net/Makefile.am
	* 48x48/stock/net/stock_addressbook.png: addressbook

2003-08-28  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/Makefile.am
	* 16x16/stock/net/stock_appointment-reminder-excl.png
	* 16x16/stock/net/stock_appointment-reminder.png
	* 24x24/stock/net/Makefile.am
	* 24x24/stock/net/stock_appointment-reminder-excl.png
	* 24x24/stock/net/stock_appointment-reminder.png
	* 32x32/stock/net/Makefile.am
	* 32x32/stock/net/stock_appointment-reminder-excl.png
	* 32x32/stock/net/stock_appointment-reminder.png
	* 48x48/stock/net/Makefile.am
	* 48x48/stock/net/stock_appointment-reminder-excl.png
	* 48x48/stock/net/stock_appointment-reminder.png: appointment
	  reminder for system tray

2003-08-28  Christian Rose  <menthos@menthos.com>

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

=== gnome-icon-theme 1.0.7 ===
	
2003-08-25  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in: 1.0.7

2003-08-20  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/gnome-pdf.png:
	* 32x32/apps/gnome-pdf.png: Adobe doesn't allow the use of a logo
	  for applictaions.
	  (http://www.adobe.com/misc/linking.html#pdficon)

2003-08-12  Jakub Steiner <jimmac@ximian.com>

	* 16x16/stock/net/stock_mail_open.png
	* 24x24/stock/net/stock_mail_open.png
	* 32x32/stock/net/stock_mail_open.png
	* 48x48/stock/net/stock_mail_open.png
	* 48x48/stock/net/Makefile.am
	* 48x48/stock/Makefile.am
	* 32x32/stock/net/Makefile.am
	* 24x24/stock/net/Makefile.am
	* 16x16/stock/net/Makefile.am
	* configure.in: letter in an envelope (used for 'mail this file')

2003-07-11  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* configure.in: Added Walloon (wa) to ALL_LINGUAS

2003-07-09  Frederic Crozat  <fcrozat@mandrakesoft.com>

	* .cvsignore:
	* 16x16/.cvsignore:
	* 16x16/apps/.cvsignore:
	* 16x16/stock/.cvsignore:
	* 16x16/stock/chart/.cvsignore:
	* 16x16/stock/code/.cvsignore:
	* 16x16/stock/data/.cvsignore:
	* 16x16/stock/document/.cvsignore:
	* 16x16/stock/form/.cvsignore:
	* 16x16/stock/generic/.cvsignore:
	* 16x16/stock/image/.cvsignore:
	* 16x16/stock/io/.cvsignore:
	* 16x16/stock/media/.cvsignore:
	* 16x16/stock/navigation/.cvsignore:
	* 16x16/stock/net/.cvsignore:
	* 16x16/stock/object/.cvsignore:
	* 16x16/stock/table/.cvsignore:
	* 16x16/stock/text/.cvsignore:
	* 24x24/apps/.cvsignore:
	* 24x24/stock/.cvsignore:
	* 24x24/stock/chart/.cvsignore:
	* 24x24/stock/code/.cvsignore:
	* 24x24/stock/data/.cvsignore:
	* 24x24/stock/document/.cvsignore:
	* 24x24/stock/form/.cvsignore:
	* 24x24/stock/generic/.cvsignore:
	* 24x24/stock/image/.cvsignore:
	* 24x24/stock/io/.cvsignore:
	* 24x24/stock/media/.cvsignore:
	* 24x24/stock/navigation/.cvsignore:
	* 24x24/stock/net/.cvsignore:
	* 24x24/stock/object/.cvsignore:
	* 24x24/stock/table/.cvsignore:
	* 24x24/stock/text/.cvsignore:
	* 32x32/.cvsignore:
	* 32x32/apps/.cvsignore:
	* 32x32/stock/.cvsignore:
	* 32x32/stock/chart/.cvsignore:
	* 32x32/stock/data/.cvsignore:
	* 32x32/stock/document/.cvsignore:
	* 32x32/stock/generic/.cvsignore:
	* 32x32/stock/io/.cvsignore:
	* 32x32/stock/media/.cvsignore:
	* 32x32/stock/net/.cvsignore:
	* 36x36/stock/.cvsignore:
	* 36x36/stock/document/.cvsignore:
	* 36x36/stock/generic/.cvsignore:
	* 48x48/stock/.cvsignore:
	* 48x48/stock/document/.cvsignore:
	* 48x48/stock/generic/.cvsignore:
	Quiet cvs..
	* Makefile.am:
	Uninstall locale files at install time, since theme files already
	contains translations and we shouldn't install catalog files.

2003-07-08  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump to 1.0.6

2003-06-26  Jakub Steiner <jimmac@ximian.com>

	* scalable/emblems/Makefile.am
	* po/POTFILES.in: remove the replaced emblems:

	* scalable/emblems/emblem-cool.icon.in
	* scalable/emblems/emblem-cool.svg
	* scalable/emblems/emblem-danger.icon.in
	* scalable/emblems/emblem-danger.svg
	* scalable/emblems/emblem-favorite.icon.in
	* scalable/emblems/emblem-favorite.svg
	* scalable/emblems/emblem-ohno.icon.in
	* scalable/emblems/emblem-ohno.svg

2003-06-25  Jakub Steiner <jimmac@ximian.com>

	* 24x24/stock/media/stock_media*: playback icons

2003-06-25  Jakub Steiner <jimmac@ximian.com>

	* */stock: added libgnomeui stock and OOo stock. gtk+ to go
	  I spent the whole f***ing day moving stuff over, let's hope
	  it's ok.
	* 32/apps/*:
	* 48/apps/*: XD2 stuff

2003-06-20  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/Makefile.am: forgot to add the blender icon here
	  :/
	
2003-06-16 Mark Finlay <sisob@eircom.net>

	* 48x48/apps/gnome-util.png: Replacing icon with one created by Luca Ferretti 
	(inspired by XD2). The one I added before was too red and thus vidually distracting .

	* 48x48/apps/MakeFile.am:
	* 48x48/apps/gnome-other.png: The other menu entry should have a unique icon. 
	This is possibly not perfect but it is better than using gnome-applications.png

2003-06-11  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-blender.png: Blender files
	  seem to lack an icon. Needs to be added to gnome-vfs too.
	* 48x48/mimetypes/gnome-mime-text-x-troff-man.png: man files
	* 48x48/mimetypes/gnome-mime-text-x-readme.png: readme files

2003-06-10  Jakub Steiner <jimmac@ximian.com>

	* 48x48/apps/gnome-audio2.png:
	* 48x48/apps/gnome-globe.png:
	* 48x48/apps/gnome-graphics.png:
	* 48x48/apps/gnome-joystick.png:
	* 48x48/apps/gnome-multimedia.png:
	* 48x48/apps/gnome-system.png: more crisp gnome2 style

=== gnome-icon-theme 1.0.5 ===
	
2003-06-10  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump version to 1.0.5.

2003-06-08 Mark Finlay <sisob@eircom.net>

	* 48x48/apps/Makefile.am

	Opps, forgot to fix the makefile

2003-06-08 Mark Finlay <sisob@eircom.net>

	* 48x48/apps/gnome-accessories.png: renamed to
	gnome-util.png
	* 48x48/apps/gnome-programming.png:
	renamed to gnome-devel.png
	* 48x48/apps/gnome-games.png:
	renamed to gnome-joystick.png

	Changing icon names breaks backwards compatability,
	so I''m changing them back.

2003-06-06 Mark Finlay <sisob@eircom.net>
	
	* 48x48/apps/gnome-audio2.png:
	* 48x48/apps/gnome-games.png:
	* 48x48/apps/gnome-globe.png:
	* 48x48/apps/gnome-graphics.png:
	* 48x48/apps/gnome-help.png:
	* 48x48/apps/gnome-multimedia.png:
	* 48x48/apps/gnome-programming.png:
	* 48x48/apps/gnome-settings.png:
	* 48x48/apps/gnome-unknown.png:
	* 48x48/apps/gnome-system.png:
	* 48x48/MakeFile.am:

	Add new icons for use in the gnome menu and elsewhere.
	Part of the clean up of gnome-desktop/pixmaps

2003-06-05 Mark Finlay <sisob@eircom.net>

	* 48x48/apps/gnome-logout.png:
	* 48x48/apps/gnome-shutdown.png:
	* 48x48/apps/gnome-reboot.png:
	* 48x48/apps/gnome-lockscreen.png:
	* 48x48/apps/gnome-accessories.png:
	* 48x48/MakeFile.am:

	Add new icons for use in the gnome menu and elsewhere.

2003-06-05 Kenneth Rohde Christiansen <kenneth@gnu.org>

	* configure.in: Added li to ALL_LINGUAS.

=== gnome-icon-theme 1.0.4 ===
	
2003-06-04  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump to 1.0.4

2003-05-30  Marco Pesenti Gritti  <marco@it.gnome.org>

	* 36x36/Makefile.am:
	* 36x36/apps/.cvsignore:
	* 36x36/apps/Makefile.am:
	* 36x36/apps/gnome-spinner-rest.png:
	* 36x36/apps/gnome-spinner.png:
	* configure.in:

	Add icons for the gnome spinner.

=== gnome-icon-theme 1.0.3 ===
	
2003-05-19  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump to 1.0.3.

2003-05-16  Dave Camp  <dave@ximian.com>

	* 48x48/emblems/Makefile.am:
	* 48x48/emblems/emblem-desktop.png: Added desktop emblem from
	Jimmac.

2003-05-16  Jakub Steiner <jimmac@ximian.com>

	* 24x24/Makefile.am: add apps (thanks yaneti)

2003-05-13  Jakub Steiner <jimmac@ximian.com>

	* 16x16/apps/panel-notification-area.png:
	* 24x24/apps/panel-notification-area.png:
	* 32x32/apps/panel-notification-area.png:
	* 48x48/apps/panel-notification-area.png:
	* configure.in:
	* Makefile.am:
	* 16x16/Makefile.am:
	* 16x16/apps/Makefile.am:
	* 24x24/apps/Makefile.am:
	* 32x32/Makefile.am:
	* 32x32/apps/Makefile.am: notification area icon in panel

2003-05-06  Danilo Å egan  <dsegan@gmx.net>

	* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.

2003-05-05  Telsa Gwynne  <hobbit@aloss.ukuu.org.uk>
                                                                                
        * configure.in: Added cy to ALL_LINGUAS
        * po/cy.po: Added

2003-04-23  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-gnucash.png:
	* 48x48/mimetypes/Makefile.am: Gnucash files

2003-04-23  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-tar.png: for some
	  reason I left this one out
	* 48x48/mimetypes/Makefile.am: add

2003-04-23  Fatih Demir <kabalak@gtranslator.org>

	* configure.in: Added Tamil ("ta") to the languages' list.

2003-04-11  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-ipod-firmware.png:
	* 48x48/mimetypes/Makefile.am: add the new ipod firmware file icon

=== gnome-icon-theme 1.0.2 ===
	
2003-03-31  Alexander Larsson  <alexl@redhat.com>

	* configure.in: 
	* NEWS:
	Bump to 1.0.2

2003-03-18  Alexander Larsson  <alexl@redhat.com>

	* 48x48/emblems/Makefile.am:
	* 48x48/emblems/emblem-note.png:
	Add notes emblem from jimmac.

2003-03-13  Christian Rose  <menthos@menthos.com>

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

=== gnome-icon-theme 1.0.1 ===
	
2003-03-10  Alexander Larsson  <alexl@redhat.com>

	* NEWS: 
	* configure.in:
	Bump to 1.0.1

2003-03-07  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-shockwave-flash.png:
	  flash animation files
	
2003-03-07  Christian Rose  <menthos@menthos.com>

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

2003-03-05  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-vnd.sun.xml.draw.png:
	  SO/OOo draw files

2003-02-21  Metin Amiroff  <metin@karegen.com>

	* configure.in: Added az to ALL_LINGUAS.

2003-02-20  Tõivo Leedjärv  <toivo@linux.ee>

	* configure.in: Added et to ALL_LINGUAS.

2003-02-20  Naba Kumar  <naba@gnome.org>

	* configure.in: Added hi to ALL_LINGUAS

2003-02-20  Roozbeh Pournader  <roozbeh@sharif.edu>

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

2003-02-16  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* configure.in: Added Belarusian to ALL_LINGUAS.

2003-02-11  Jakub Steiner <jimmac@ximian.com>

	* template/gnome-mime-template.README:
	* template/gnome-mime-template.xcf.bz2: template for artists to
	  come up with mime icons faster

2003-02-09  Christian Rose  <menthos@menthos.com>

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

2003-02-07  Christian Rose  <menthos@menthos.com>

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

2003-02-06  Christian Rose  <menthos@menthos.com>

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

2003-02-01  Duarte Loreto <happyguy_pt@hotmail.com>

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

2003-01-29  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-scheme.png,
	  48x48/mimetypes/gnome-mime-text-x-scheme.png: proper filename
	* 48x48/mimetypes/Makefile.am: update

2003-01-29  Takeshi AIHANA <aihana@gnome.gr.jp>

	* configure.in: Added ja into ALL_LINGUAS

2003-01-26  Yanko Kaneti  <yaneti@declera.com>

	* configure.in (AC_OUTPUT):
	* Makefile.am (EXTRA_DIST):
	* gnome-icon-theme.spec.in (added): Add and dist gnome-icon-theme.spec

2003-01-24  Sam=FAel J=F3n Gunnarsson  <sammi@techattack.nu>

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

2003-01-23  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>

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

2003-01-22  Paisa Seeluangsawat  <paisa@colorado.edu>

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

2003-01-22  Christian Rose  <menthos@menthos.com>

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

2003-01-21  Yuriy Syrota  <rastaman@renome.rovno.ua>

	* configure.in: added 'uk' (Ukrainian) to ALL_LINGUAS
	again along with po/uk.po.

2003-01-21  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Remove uk again, since it was added (without ChangeLog entry).

=== gnome-icon-theme 1.0.0 ===
	
2003-01-20  Alexander Larsson  <alexl@redhat.com>

	* configure.in: 
	Add missing langs. Remove uk.

	* NEWS:
	Update to 1.0.0

2003-01-20  Yuriy Syrota <rastaman@renome.rovno.ua>

	* configure.in: added 'uk' (Ukrainian) to ALL_LINGUAS

2003-01-19  He Qiangqiang  <carton@linux.net.cn>

	* configure.in: Added "zh_CN" (Simplified Chinese) to ALL_LINGUAS.

2003-01-19  Marius Andreiana <marius galuna.ro>

	* configure.in: added 'ro' to ALL_LINGUAS

2003-01-18  Fatih Demir <kabalak@gtranslator.org>

	* configure.in: Added "tr" (Turkish) to the languages' list.

2003-01-13  Jakub Steiner <jimmac@ximian.com>

	* 48x48/mimetypes/gnome-mime-application-x-dvi.png: 
	* 48x48/mimetypes/gnome-mime-text-x-tex.png: TeX

	* 48x48/mimetypes/gnome-mime-video.png: fallback
	* 48x48/mimetypes/gnome-mime-video-mpeg.png:
	* 48x48/mimetypes/gnome-mime-video-ms-asf.png:
	* 48x48/mimetypes/gnome-mime-video-msvideo.png:
	* 48x48/mimetypes/gnome-mime-video-x-ms-asf.png:
	  fixed media types

	* 48x48/mimetypes/gnome-mime-application-postscript.png: nicer
	* 48x48/mimetypes/gnome-mime-application-x-qw.png: quicken files

	* 48x48/mimetypes/gnome-compressed.png: removed

	* 48x48/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png:
	* 48x48/mimetypes/gnome-mime-application-x-compressed-tar.png:
	* 48x48/mimetypes/gnome-mime-application-zip.png:
	* 48x48/mimetypes/gnome-mime-application-x-rpm.png:
	* 48x48/mimetypes/gnome-mime-application-x-gzip.png:
	* 48x48/mimetypes/gnome-mime-application-x-deb.png:
	* 48x48/mimetypes/gnome-mime-application-x-compress.png:
	* 48x48/mimetypes/gnome-mime-application-x-arj.png:
	* 48x48/mimetypes/gnome-package.png:
	* 48x48/mimetypes/Makefile.am:
	  updated/added specific mimetypes


=== gnome-icon-theme 0.91 ===
	
2003-01-13  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Update version to 0.90.1 (to go with gnome 2.1.91)

	* index.theme.in:
	Add min and max size to the svg dirs.

2003-01-12  Laurent Dhima  <laurenti@alblinux.net>

	* configure.in: Added sq (albanian) to ALL_LINGUAS.
	
2003-01-10  Jakub Steiner <jimmac@ximian.com>

	* index.theme.in: spec says Scalable not Scaled

2003-01-10  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* configure.in: Added Russian to ALL_LINGUAS.

2003-01-06  Jakub Steiner <jimmac@ximian.com>

	* 48x48/devices/gnome-dev-printer.png: more gnome2-like
	* 96x96/filesystems/gnome-fs-directory.png:
	* 96x96/filesystems/gnome-fs-directory-accept.png:
     sync with 48x48
	* 72x72/filesystems/gnome-fs-directory.png:
	* 72x72/filesystems/gnome-fs-directory-accept.png:
	* 36x36/filesystems/gnome-fs-directory.png:
	* 36x36/filesystems/gnome-fs-directory-accept.png:
	* 24x24/filesystems/gnome-fs-directory.png:
	* 24x24/filesystems/gnome-fs-directory-accept.png:
	* 12x12/filesystems/gnome-fs-directory.png:
	* 12x12/filesystems/gnome-fs-directory-accept.png:
     all bloody sizes, phew


2003-01-06  Pauli Virtanen  <pauli.virtanen@hut.fi>

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

2003-01-06  Abel Cheung  <maddog@linux.org.hk>

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

2003-01-02  Zbigniew Chyla  <cyba@gnome.pl>

	* configure.in (ALL_LINGUAS): Added pl (Polish).

2002-12-28  Alessio Frusciante  <algol@firenze.linux.it>

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

2002-12-22  Artis Trops  <hornet@navigator.lv>

	* configure.in: Added Latvian (lv) to ALL_LINGUAS.

2002-12-20  Alexander Larsson  <alexl@redhat.com>

	* 48x48/devices/Makefile.am (icon_DATA): 
	* 48x48/devices/gnome-dev-printer.png:
	Add printer icon.

2002-12-20  Alexander Larsson  <alexl@redhat.com>
	
	* 48x48/filesystems/Makefile.am (icon_DATA): 
	* 48x48/filesystems/gnome-fs-desktop.png:
	Added desktop icon.

=== gnome-icon-theme 0.1.5 ===
	
2002-12-16  Alexander Larsson  <alexl@redhat.com>

	* configure.in: Bump to 0.1.5

2002-12-15  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* configure.in: Added Vietnamese (vi) to ALL_LINGUAS

2002-12-13  Yanko Kaneti  <yaneti@declera.com>

	* configure.in (ALL_LINGUAS): Added Bulgarian (bg).

2002-12-13  Alexander Larsson  <alexl@redhat.com>

	* 48x48/mimetypes/gnome-mime-x-directory-smb-share.png:
	Update this to the new smb icon.

2002-12-12  Jakub Steiner <jimmac@ximian.com>

	* 48x48/devices/gnome-dev-cdrom.png:
	* 48x48/devices/gnome-dev-cdrom-audio.png: clean up a bit

	* 48x48/apps/gnome-system-config.png:
	* 48x48/apps/gnome-desktop-config.png:
	* 48x48/apps/gnome-server-config.png: use a nicer wrench
	* 48x48/apps/gnome-starthere.png: gnome2 black 1px stroke
	
	* 48x48/devices/gnome-dev-memory.png:
	* 48x48/devices/gnome-dev-zipdisk.png:
	* 48x48/devices/gnome-dev-jazdisk.png:
	* 48x48/devices/gnome-dev-floppy.png: Tuomas' icons
	
	* 48x48/filesystems/gnome-fs-directory.png:
	* 48x48/filesystems/gnome-fs-directory-accept.png:
	* 48x48/filesystems/gnome-fs-smb.png:
	* 48x48/filesystems/gnome-fs-ftp.png:
	* 48x48/filesystems/gnome-fs-nfs.png:
	* 48x48/filesystems/gnome-fs-ssh.png: using a new gnome2-styled folder.

	* 48x48/filesystems/gnome-fs-socket.png:
	* 48x48/filesystems/gnome-fs-loading-icon.png:
	* 48x48/filesystems/gnome-fs-web.png: make more gnome2ish too

	* 48x48/filesystems/Makefile.am: add ssh folder icon

2002-12-12  Alexander Larsson  <alexl@redhat.com>

	* .cvsignore:
	Ignore some files
	
	* index.theme.in:
	Add apps subdirs.
	
	* 48x48/Makefile.am:
	* 48x48/apps/Makefile.am:
	* 48x48/apps/gnome-desktop-config.png:
	* 48x48/apps/gnome-server-config.png:
	* 48x48/apps/gnome-starthere.png:
	* 48x48/apps/gnome-system-config.png:
	* 96x96/Makefile.am:
	* 96x96/apps/Makefile.am:
	* 96x96/apps/gnome-starthere.png:
	* configure.in:
	Added icons needed by start-here. These go in gnome, not hicolor, because
	they are very gnome-specific, and other desktops won't ever see them.

2002-12-11  Alexander Larsson  <alexl@redhat.com>

	* 48x48/filesystems/Makefile.am:
	* 48x48/filesystems/gnome-fs-network.png:
	* 48x48/filesystems/gnome-fs-server.png:
	* 48x48/mimetypes/Makefile.am:
	* 48x48/mimetypes/gnome-mime-x-directory-smb-share.png:
	Added new icons for smb support.

=== gnome-icon-theme 0.1.4 ===
	
2002-12-09  Alexander Larsson  <alexl@redhat.com>

	* configure.in: Bump to 0.1.4

2002-12-06  Andras Timar  <timar@gnome.hu>

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

2002-12-06  Christophe Merlet  <redfox@redfoxcenter.org>

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

2002-12-01  Jordi Mallach  <jordi@sindominio.net>

	* configure.in (ALL_LINGUAS): Added Catalan (ca), Spanish (es),
	Greek (he), Dutch (nl).

2002-11-30  Ole Laursen  <olau@hardworking.dk>

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

2002-11-30  Evandro Fernandes Giovanini <evandrofg@ig.com.br>

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

2002-11-25  Christian Rose  <menthos@menthos.com>

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

=== gnome-icon-theme 0.1.3 ===
	
2002-11-25  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Bump to 0.1.3.

	* Makefile.am:
	Add intltool-extract.in to extra_dist.

=== gnome-icon-theme 0.1.2 ===
	
2002-11-25  Alexander Larsson  <alexl@redhat.com>

	* configure.in:
	Bump to 0.1.2

2002-11-15  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in (ALL_LINGUAS): Added Norwegian (no).
	
=== gnome-icon-theme 0.1.1 ===

2002-11-13  Christian Neumair  <chris@gnome-de.org>

	* configure.in (ALL_LINGUAS): Added German (de).

2002-11-04  Alexander Larsson  <alexl@redhat.com>

	* configure.in: Update to version 0.1.1

2002-10-23  jacob berkman  <jacob@ximian.com>

	* autogen.sh: run glib-gettextize before intltoolize

2002-10-22  James Willcox  <jwillcox@gnome.org>

	* 48x48/emblems/Makefile.am:
	* Makefile.am:
	* autogen.sh:
	* configure.in:
	* po/POTFILES.in:
	* scalable/emblems/Makefile.am:
	* 48x48/emblems/emblem-*.icon.in:
	* scalable/emblems/emblem-*.icon.in:

	Added localized emblem descriptions.

2002-10-04  Alexander Larsson  <alexl@redhat.com>

	* scalable/emblems/emblem-OK.svg:
	* scalable/emblems/emblem-certified.svg:
	* scalable/emblems/emblem-cool.svg:
	* scalable/emblems/emblem-danger.svg:
	* scalable/emblems/emblem-distinguished.svg:
	* scalable/emblems/emblem-draft.svg:
	* scalable/emblems/emblem-favorite.svg:
	* scalable/emblems/emblem-generic.svg:
	* scalable/emblems/emblem-important.svg:
	* scalable/emblems/emblem-new.svg:
	* scalable/emblems/emblem-noread.svg:
	* scalable/emblems/emblem-nowrite.svg:
	* scalable/emblems/emblem-ohno.svg:
	* scalable/emblems/emblem-personal.svg:
	* scalable/emblems/emblem-special.svg:
	* scalable/emblems/emblem-urgent.svg:
	Scale to their proper sizes.

=== gnome-icon-theme 0.1.0 ===
	
2002-09-27  Alexander Larsson  <alexl@redhat.com>

	* Makefile.am:
	Disable po dir for now

2002-09-26  Alexander Larsson  <alexl@redhat.com>

	* 48x48/mimetypes/Makefile.am:
	* 48x48/mimetypes/gnome-mime-application-x-object-file.png:
	* 48x48/mimetypes/gnome-compressed.png:
	* 48x48/mimetypes/gnome-library.png:
	* 48x48/mimetypes/gnome-package.png:
	Add some missing icons.

2002-09-18  Alexander Larsson  <alexl@redhat.com>

	* 48x48/devices/Makefile.am: 
	* 48x48/devices/gnome-dev-memory.png:
	Added memory.
	
2002-09-18  Alexander Larsson  <alexl@redhat.com>

	* po/POTFILES.in:
	Add index.theme.in