summaryrefslogtreecommitdiff
path: root/gweather/ChangeLog
blob: 5e429021f7901459dd3ad8834ea0c388fb7f6ddf (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
2009-02-16  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>

	* docs/eu/eu.po: Added Basque translation.
	* docs/Makefile.am: Added 'eu' to DOC_LINGUAS.

==================== 2.25.90 ======================

2009-01-26  Callum McKenzie  <callum@spooky-possum.org>

	* Makefile.am (INCLUDES): Remove -DENABLE_BROKEN. We don't need it
	and it prevents us building with GTK_DISABLE_DEPRECATED.

	* main.c: 
	* gweather-applet.c: Deprecated symbol removal. Patch from Maxim
	Ermilov, see bug 562520.

==================== 2.25.3 ======================

==================== 2.25.2 ======================

2008-12-17  William Jon McCann  <jmccann@redhat.com>

	* Makefile.am: Add missing libgnomeui CFLAGS
	Patch from: lucasr.at.mundo@gmail.com
	(Bug #564192)

2008-11-15  Mario Blättermann <mariobl@svn.gnome.org>

	* docs/de/de.po: Updated German translation

2008-11-11  Callum McKenzie  <callum@spooky-possum.org>

	* Makefile.am:
	* gweather-applet.c: Patch from Matthias Clasen
	to listen for NetworkManager signals and update when the network
	comes up (bug 488824).

2008-11-07  Mario Blättermann <mariobl@svn.gnome.org>

	* docs/de/de.po: Added German translation
	* docs/de/figures/*: Added screenshots
	* docs/Makefile.am: Added de to DOC_LINGUAS

==================== 2.24.0.1 ====================

2008-09-05  Callum McKenzie  <callum@spooky-possum.org>

	* Makefile.am: Remove the gnome-vfs flags from the build process.

2008-04-30  Callum McKenzie  <callum@spooky-possum.org>

	* GNOME_GWeatherApplet.xml: Remove the short-cut keys since they are
	practically unusable. Fixes bug #530670.
	* gweather-applet.c: Removed an incorrect comment.

2008-04-22  Ilkka Tuohela <hile@iki.fi>

	* docs/Makefile.am: Added Finnish translation by Jukka Heikkilä.
	* docs/fi: Added fi to DOC_LINGUAS

2008-04-07  Vincent Untz  <vuntz@gnome.org>

	Use new gweather-xml API. Patch by Dan Winship <danw@gnome.org>.
	Fix bug #526216.

	* gweather-xml.c: gone, moved to libgweather

	* gweather-pref.c: Use libgweather's version of the Locations.xml
	parser now.
	(load_locations): Update for API changes, select the correct row
	after constructing the model, since the new
	gweather_xml_load_locations() doesn't do that automatically.

2008-02-29  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>

	* docs/pt_BR/figures/*: Added 4 screen shots by Amadeu A. Barbosa Jr.

2008-02-29  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>

	* docs/Makefile.am: Added pt_BR do DOC_LINGUAS.
	* docs/pt_BR/pt_BR.po: Added Brazilian Portuguese translation by
	Amadeu A. Barbosa Júnior.

2008-02-26  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>

	* docs/Makefile.am:
	* docs/ru/ru.po: Added Russian translation by 
	Yuri Myasoedov <omerta13@yandex.ru>

2008-02-11  Daniel Nylander <po@danielnylander.se>

	* docs/sv/sv.po: Updated Swedish translation.

2008-01-29  Claude Paroz  <claude@2xlibre.net>

	* docs/fr/fr.po: Updated French translation.

2008-01-17  Callum McKenzie  <callum@spooky-possum.org>

	* gweather-xml.c (gweather_xml_load_locations): Use the correct
	location for the Locations file. libgweather changed API on
	us. (Fixes bug #509750.)

2008-01-15  Callum McKenzie  <callum@spooky-possum.org>

	* main.c: 
	* gweather-pref.c: 
	* gweather-pref.h: 
	* gweather-dialog.c: 
	* gweather-dialog.h: 
	* gweather-applet.c: 
	* gweather-applet.h: 
	* gweather-about.c: 
	* gweather-about.h: Add GWEATHER_I_KNOW_THIS_IS_UNSTABLE to enable
	the gweather API.

2008-01-13  Callum McKenzie  <callum@spooky-possum.org>

	* Makefile.am: Move Locations.xml and associated pieces to a new
	module: libgweather.

2008-01-08  Kjartan Maraas  <kmaraas@gnome.org>

	* Locations.xml.in: Add Yerevan in Armenia.
	Patch from petrosyan at gmail com.
	Closes bug #414814.

2008-01-08  Kjartan Maraas  <kmaraas@gnome.org>

	* Locations.xml.in: Fix zone code for Washington
	and Dulles Airport. Closes bug #367777. Patch from
	Sebastien Bacher.

2008-01-08  Kjartan Maraas  <kmaraas@gnome.org>

	* docs/C/gweather.xml: The forecast menu entry was
	renamed to Details. Reported by Changwoo Ryu. Closes
	bug #489402.

2007-12-31  Daniel Nylander <po@danielnylander.se>

	* docs/sv/sv.po: Updated Swedish translation.
	
2007-12-03  Callum McKenzie  <callum@spooky-possum.org>

	* docs/C/gweather.xml: Better abstract courtesy of Andreas
	Freund. (Bug #500811)

2007-12-02  Changwoo Ryu  <cwryu@debian.org>

	* docs/Makefile.am (DOC_LINGUAS): Added ko.
	* docs/ko/ko.po: gnome-doc-utils migration from the old Sun
	manual, and udpated translation.
	* docs/ko/*.xml: Removed old XMLs.
	* docs/ko/figures/*.png: Removed old images.

2007-11-27  Callum McKenzie  <callum@spooky-possum.org>

	* Locations.xml.in: Added Kip's home town: White
	Rock. (Bug #499836).

2007-11-22  Callum McKenzie  <callum@spooky-possum.org>

	* gweather-pref.c (gweather_pref_create): The preferences dialog
	has been set resizable to make navigation of the locations list
	easier. See bug #462850.

	* gweather-dialog.c (gweather_dialog_create): Remove a superfluous
	call to gtk_window_set_policy.

2007-11-18  Callum McKenzie  <callum@spooky-possum.org>

	* Locations.xml.in: We misspelled Fort Worth!?. (Bug #497765)

2007-11-16  James Ogley  <james@usr-local-bin.org>
 
 	* Locations.xml.in: Rename Nottingham East Midlands as East Midlands.
 
2007-11-04  Callum McKenzie  <callum@spooky-possum.org>

	* gweather-pref.c: Remove an unneeded #include of langinfo.h.

	* Locations.xml.in: Added forecast zone for West Plains,
	Missouri. Thanks to Michael Crider (Bug #453539). In addition,
	best-estimates of the appropriate zones for most other Missouri
	locations where added where missing.

2007-10-13  Callum McKenzie  <callum@spooky-possum.org>

	* Locations.xml.in: Updates to Virginian locations from
	serac@vt.edu (Bug #469356).

2007-08-01  Callum McKenzie  <callum@spooky-possum.org>

	* docs/nl/nl.po: Fix an incorrectly transcribed tag (see bug
	#448129).

2007-07-17  Jaap Haitsma  <jaap@haitsma.org>

	* GNOME_GWeatherApplet.xml: Use gtk-about i.s.o. gnome-stock-about
	Fixes bug #456955

	* gweather-about.c: (gweather_about_run):
	* gweather-applet.c: (gweather_applet_create), (update_finish),
	(gweather_update):
	* gweather.h:
	Use g_set_application name such that the application name
	gets shown correctly in the about dialog. Convert usage of GtkTooltips
	to new tooltips API of GTK 2.12 Fixes bug #457145


2007-02-28  Sebastien Bacher  <seb128@ubuntu.com>

	* Locations.xml.in: add zones to Wisconsin cities, 
	patch from Alex Mauer <hawke@hawkesnest.net> (bug #363364)

2007-02-17  David Lodge <dave@cirt.net>

	* docs/en_GB/en_GB.po: Added (British) English translation.
	* docs/Makefile.am: Added en_GB to DOC_LINGUAS

2007-02-10  AP Singh Alam <aalam@users.sf.net>

	* docs/pa/pa.po: pa is added translation
	* docs/Makefile.am: pa is added to list

2007-01-30  Kjartan Maraas  <kmaraas@gnome.org>

	* gweather-applet.c: Add include to fix a warning.

2006-11-15  Kjartan Maraas  <kmaraas@gnome.org>

	* docs/C/gweather.xml: Fix build.

2006-11-08  Daniel Nylander <po@danielnylander.se>

	* docs/sv/sv.po: Updated Swedish translation.
	
2006-10-02  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-pref.c: Stop the search of a location if the criterium is
	empty (bug #358499). Patch from Esteban Sánchez <esteban@steve-0.com>.

2006-09-03  Daniel Nylander <po@danielnylander.se>

	* docs/sv/sv.po: Updated Swedish translation.

2006-09-02  Daniel Nylander <po@danielnylander.se>

	* docs/sv/sv.po: Updated Swedish translation.
	* docs/sv/figures/*: Added screenshots.

2006-08-20  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in:
	- correct zone for Loveland (closes #335135)
	- commit mass removal of dead locations (closes #166014)

2006-08-07  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-applet.c: Call place_widgets() from update_finish() so that
	  in a vertical panel gweather applet redisplays properly. Patch from
	  Joshua Crawford <joshua_gordon_crawford@yahoo.com.au>. Closes
	  #325915.

2006-07-25  Christophe Bliard  <christophe.bliard@trux.info>

	* fr/fr.po: Small update of French translation

2006-07-23  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: locations love. Patch from John N. Laliberte:
	  Closes #340421. Patch from Thierry Moisan.

2006-07-23  Daniel Nylander  <po@danielnylander.se>

        * docs/sv/sv.po: Updated Swedish translation.
	
2006-07-11  Philip Langdale  <philipl@mail.utexas.edu>

	* gweather-pref.c: (temp_combo_changed_cb, speed_combo_changed_cb,
	pres_combo_changed_cb, dist_combo_changed_cb)
	Call gweather_dialog_update conditionally - the dialog doesn't
	exist if it's not displayed.

2006-06-29  Daniel Nylander  <po@danielnylander.se>

        * docs/sv/sv.po: Added Swedish translation.
	
2006-06-27  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: split Congo into Democratic Republic of and
	  Republic of. Patch from Denis Jacquerye <moyogo@gmail.com>.
	  Closes #340712.

2006-05-29  Philip Langdale  <philipl@mail.utexas.edu>

	* gweather.h
	* gweather-applet.c: Remove dead code for managing lifetime of
	About Dialog. This is now done automatically by Gtk+.

	* gweather-applet.h: Remove declarations of non-existent functions.

2006-05-29  Philip Langdale  <philipl@mail.utexas.edu>

	This change refactors the details dialog and is the part two of the
	refactoring I promised below.

	gweather-dialog.h
	gweather-dialog.c: (everything). Make the details dialog a real GObject
	inheriting from GtkDialog. As a bonus, dead code was revealed by the
	cleanup and has been removed.

	gweather-pref.c: (*_combo_changed). Update to reflect the changed
	signature of gweather_dialog_update.

	gweather.h: Remove all details dialog widgets from struct.

	gweather-applet.c: (details_cb, update_finish). Update the instantiate
	the details dialog properly and consolidate singleton handling.

2006-02-11  Philip Langdale  <philipl@mail.utexas.edu>

	* gweather-pref.c: There's one more place where the wrong user_data was
	being passed.

2006-02-10  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-pref.c: fix a bug where the wrong pointer was being passed
	  as user_data in auto_update_toggled. Should fix #330191.

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

	* gweather-dialog.c: (gweather_dialog_load_geometry): Do not
	try to set window size if gconf stored values are not valid. Fixes 
	critical warning #329544.

2006-02-01  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-applet.c: don't call gtk_main_quit on destroy, this would
	  seem to be a regression from:
	      2002-05-20  Kevin Vandersloot <kfv101@psu.edu>

2006-01-30  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-applet.c: Remove FIXME's from libnotify code. Move
	  libnotify preference into the same location as the other preferences
	  for the applet.
	* gweather.schemas.in: add a schema for the notification preference

2006-01-22  Philip Langdale  <philipl@mail.utexas.edu>

	This change is the first part of cleaning up the
	tangled gweather applet code. One of the main goals
	is to reorganise the code associated with each main
	widget (applet, details, prefs) into proper GObjects.
	This particular change handles the Prefs Dialog.

	* gweather-xml.c
	* gweather-xml.h: Move TreeModel column definitions
	here from GWeatherPref. Although it would be overkill
	to do so, we think of the Locations tree model as being
	a subclass with specific columns.

	* gweather-pref.h
	* gweather-pref.c: (everything). Make the prefs dialog
	a real GObject inheriting from GtkDialog. We now enforce
	a proper interface and fully encapsulate the dialog's
	implementation.

	* gweather.h: Remove all pref widgets from struct.

	* gweather-applet.c: (pref_cb): Move singleton
	handling here and instantiate the prefs dialog properly.

2006-01-21  Vincent Untz  <vuntz@gnome.org>

	* docs/fr/fr.po: small update

2006-01-16  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Adjust metar site id for Alamogordo, NM US to a
	geographically closer and more reliable site.  KHMN to KALM.
	Patch from Jerimiah Cole <jcole@thend.org>. Closes #327143.

2006-01-15  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-pref.c: add atmospheres as a unit of pressure
	  Patch from Alexandros Frantzis <alfius@freemail.gr>. Closes
	  #325447.

2006-01-12  Frank Solensky  <frank@solensky.org>

	* gweather-applet.c: (applet_destroy), (update_finish),
	(suncalc_timeout_cb):
	* gweather-applet.h:
	* gweather-pref.c: (auto_update_toggled):
	* gweather.h:  Use a separate timer to drive icon transitions.
	Closes bug #310807.

2006-01-10  Kjartan Maraas  <kmaraas@gnome.org>

	* main.c: (gweather_applet_new): Plug a small leak.

2006-01-08  Kjartan Maraas  <kmaraas@gnome.org>

	* Locations.xml.in: Fix the name for Mexico and Mexico City.
	(Pedro Villavicencio Garrido). Closes bug #171718.

2006-01-07  Vincent Untz  <vuntz@gnome.org>

	* docs/C/gweather.xml: fix description for the storm icon
	Fix bug #326106.
	Also, remove unit from a string. Fix bug #326082.

2006-01-07  Vincent Untz  <vuntz@gnome.org>

	* docs/Makefile.am:
	* docs/fr/*: add french translation by Christophe Bliard
	<christophe.bliard@trux.info>
	* docs/*: .cvsignore love

2006-01-06  Theppitak Karoonboonyanan  <thep@linux.thai.net>

	* Locations.xml.in: Added translator comments for locations in
	Thailand. (Patch for bug #161882)

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

	* battstat_applet.c (battery_full_notify): Move to the new libnotify
	  API.  Patch from Michael Vogt <mvogt@acm.org> closes bug #325541.

	* battstat_applet.c (change_background_cb, gweather_applet_create):
	  Remove the old change_background_cb function using the new
	  functionality in libpanel-applet instead.

2006-01-03  Alexander Shopov  <ash@contact.bg>

	* Locations.xml.in: Change location name.
	Closes bug: #313655

2005-12-29  Adam Schreiber <sadam@clemson.edu>
	* gweather/Locations.xml.in: Bug #321411
	
2005-12-26  Funda Wang  <fundawang@linux.net.cn>

	* Locations.xml.in: Reorganized lots of locations in China..

2005-12-20  Vincent van Adrighem  <adrighem@gnome.org>

	* docs/nl/*: Dutch doc translation added (translated by Myckel Habets).
	* docs/Makefile.am: Added nl to LINGUAS.

2005-12-11  Philip Langdale  <philipl@mail.utexas.edu>

	* Merged libgweather from GWEATHER_REFACTOR branch.
	ChangeLog entries have also been merged.

2005-12-06  Ryan Lortie  <desrt@desrt.ca>

	* weather.c (weather_info_get_update): Use %c universally as the
	  date format.  Closes bug #172514.

2005-12-06  Ryan Lortie  <desrt@desrt.ca>

	* Locations.xml.in: Add Lugansk (UKCW) and Ternopol (UKLT) from
	  Ukraine.  Closes bug #168527.

2005-12-06  Roozbeh Pournader  <roozbeh@farsiweb.info>

	* Locations.xml.in: Corrected name and coordinates for OIAG
	  (bug #319538, Farzaneh Sarafraz).

2005-12-06  Ryan Lortie  <desrt@desrt.ca>

	* Locations.xml.in: Cleaned up the Dulles/Washington, DC/Virginia mess
	  by setting the Zero Milestone for Washington, updating info between
	  the two copies of Dulles and adding Arlington, VA.  These fixes
	  should close bug #313102 and bug #310739.

2005-11-30  Philip Langdale  <philipl@mail.utexas.edu>

	Refactoring to use libgweather and libgweatherprefs.

	R location.c
	R location.h: Unused. Let's junk them.

	R gweather.schemas.in: Moved to libgweatherprefs.

	R weather-bom.c
	R weather-iwin.c
	R weather-met.c
	R weather-metar.c
	R weather-wx.c
	R weather.c
	R weather.h: Moved to libgweather.

	M Makefile.am: Removed handled of removed files.

	M gweather-applet.h
	M gweather-xml.c: Remove unneeded reference to weather.h

	M gweather.h: Remove definitions that moved to
	libgweatherprefs and add a GWeatherGConf instance to the
	applet.

	M main.c: Initialise prefs through libgweatherprefs.

	M gweather-dialog.c
	M gweather-pref.c
	M gweather-pref.h: Remove code moved to libgweatherprefs
	and use that lib for gconf accesses.

	M gweather-applet.c: Use libgweather and libgweatherprefs.
	Mostly this involves replacing the direct access to the
	WeatherInfo struct with Weather* calls. Also account for
	the changed signature of weather_info_[new|update]

2005-10-04  Davyd Madeley  <davyd@madeley.id.au>

	* docs/ChangeLog: removed. Merged into this ChangeLog

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

	* docs/Makefile.am: add DOC_FIGURES list to get .png's into the
	  tarball.  Closes bug #317476.

2005-08-28  Davyd Madeley  <davyd@madeley.id.au>

	* docs/C/gweather.xml: fix validation error, oops
	* gweather-about.c: add me to documenters

2005-08-28  Davyd Madeley  <davyd@madeley.id.au>

	* docs/C/gweather.xml:
	* figures/gweather-menu-prefs.png:
	* figures/gweather-prefs-general.png:
	* figures/gweather-prefs-locations.png: update documentation for 2.12

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

	* Makefile.am: Add "uk" to DOC_LINGUAS.

2005-08-25  Rodrigo Moya <rodrigo@novell.com>

	* gweather-applet.c (update_finish): use hints for the notification.
	
2005-08-24  Ryan Lortie  <desrt@desrt.ca>

	* weather.c: Conditionalise the #inclusion of <values.h>.  Patch from
	  Diego Pettenò <flameeyes@gentoo.org> closes bug #314366.

2005-08-24  Ryan Lortie  <desrt@desrt.ca>

	* gweather-applet.c (update_finish): Fix serious logic problem in
	  failure-handling code and always reschedule timeout function -- not
	  just in case of success.  Closes bug #309492.

	  This patch largely based on the work of Pierre Ossman.

2005-08-24  Ryan Lortie  <desrt@desrt.ca>

	* Locations.xml.in: Removed broken duplicate Wildwood, New Jersey
	  entry.  Patch from Chris Hollenbeck <chris.hollenbeck@gmail.com>
	  closes bug #310043.

2005-08-20  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* C/gweather.xml: s/Anglea/Angela/

2005-08-13  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* es/es.po: Updated Spanish translation.

2005-08-11  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* es/es.po: Updated es.po. 
	* es/*.xml: Delete old docs.
	* es/es.po: Added missing es.po 

2005-08-08  Davyd Madeley  <davyd@madeley.id.au>

	* gweather.xml: (removed) it's a generated file now

2005-08-08  Davyd Madeley  <davyd@madeley.id.au>

	* weather.c: Use escaped characters for degree symbol and give
	  explanation to the translators. Closes #150926. Patch from Michael
	  Terry <mike@mterry.name>.

2005-07-30  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* es: Added Spanish doc translation.

2005-07-20  Davyd Madeley  <davyd@madeley.id.au>

	* docs/Makefile.am:
	* docs/gweather.omf.in: gnome-doc-util-ise

	* docs/*: Remove lots of unwanted files. XML files still need
	          converting to po files.

2005-07-14  Ryan Lortie  <desrt@desrt.ca>

	* gweather-xml.c: xmlChar is 'unsigned char' whereas everything else
	  is 'char'.  This causes GCC 4 to complain that pointer targets
	  differ in signedness.  To combat this, never use xmlChar * for
	  local variables and explicitly cast all strings going in and out
	  of libxml to (xmlChar *) and (char *) respectively.

2005-07-11  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: German location updates. Patch from Jens ??
	  <inf408@FH-Worms.de>. Closes #166913.

2005-07-10  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-pref.c:
	* gweather-applet.c: use dialog instead of g_warning
	  Closes bug #168807. Patch from Pedro Villavicencio
	  <pvillavi@gnome.org>.
	
	* gweather-pref.c: Clean up the location searching stuff. Set
	  mnemonics for labels and button. Make button show a more clear icon
	  and label.

2005-07-06  Davyd Madeley  <davyd@madeley.id.au>

	* weather-metar.c: Parse METAR string time with localtime_r, not
	  gmtime_r. This sets tm.tm_gmtoff to the local timezone offset
	  (rather then 0). This never used to be broken, and smells of a libc6
	  change.

2005-07-04  Rodrigo Moya <rodrigo@novell.com>

	* gweather-applet.c (update_finish): when libnotify is available,
	display a nice notification about the new forecast.

	* gweather-dialog.c (get_system_monospace_font): fixed leak.

	* Makefile.am: use LIBNOTIFY_CFLAGS|LIBS.

2005-07-01  Esteban Sanchez  <esteban@steve-0.com>

        * gweather.h (struct _GWeatherApplet): Added pref_find_entry and
          pref_find_next_btn
	  
        * gweather-pref.c: (gweather_pref_create): Added a find bar to the
	  location page. Fixed bug #305518

2005-07-01  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Locations Loving. Closes at least #306265.

2005-06-26  Máirín Duffy  <duffy@redhat.com>

	* Locations.xml.in: Restore unintentionally reverted UK 
	zone changes. Add additional UK zones (#309032).

2005-06-20  Theppitak Karoonboonyanan  <thep@linux.thai.net>

	* Locations.xml.in: Nepal is in Asia, not Africa.
	Fixed bug #308269.

2005-06-09  Theppitak Karoonboonyanan  <thep@linux.thai.net>

	* Locations.xml.in: Rearrange locations in Thailand by cities.
	  Patch submitted via bug #160163.

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

	* gweather-applet.c:
	* main.c: (gweather_applet_new):
	* weather.c:
	* weather.h: Remove gnome-config cruft. Closes bug #172028.

2005-05-31  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-pref.c:
	* gweather.h:
	* weather.c:
	* weather.h: Added support for the Beaufort wind speed scale. See
	  http://www.zetnet.co.uk/sigs/weather/Met_Codes/beaufort.htm.
	  Closes bug #305808.

2005-05-27  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Moved some German locations into the
	correct places.

2005-05-23  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-04-10  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-04-08  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-04-07  Abel Cheung  <maddog@linuxhall.org>

	* Locations.xml.in: Removed some duplicate stations and
	restructure some city info.
	
2005-04-07  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-04-07  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-04-06  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-04-05  Abel Cheung  <maddog@linuxhall.org>

	* Locations.xml.in: Add some more translator comments, and comment
	out some stations which has no METAR info. (WIP)
	
2005-04-05  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-04-05  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-04-04  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

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

	* gweather-pref.c: Since the current_location structure is free'd
	by the row_changed callback and since we change the active row
	while populating the TreeView in the XML parser, make a copy.

	* gweather-xml.c: Replace a direct "return -1" with "goto error_out"
	to ensure that things get free'd up in the error case.

	Both of the above are fixes to problems spotted by Kjartan.

2005-04-02  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-04-01  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-03-31  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-03-31  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-03-31  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-03-30  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2003-03-30  Ryan Lortie  <desrt@desrt.ca>

	* gweather-about.c: Fix a silly typo.

2005-03-30  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-03-29  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

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

	* gweather-dialog.c: Remove some debugging output (bug #171924)

	* gweather-xml.h: Change the prototype from void -> int to allow
	an indication of success/failure to parse the XML.

	* gweather-pref.c: Add an error dialog asking the user to file a
	bug in the case of an Locations.xml parse error.

	* weather.h: Removed trans/untrans_name for favour of a single
	'name' field in the WeatherLocation structure.  Change prototype
	of weather_location_new to take the single name.  (bug #171855)

	* weather.c: Lots of changes to deal with the removal of
	trans/untrans_name.

	* weather-iwin.c: Small change to deal with the removal of the
	translated/untranslated name crud.

	* gweather-xml.c: Massive (pretty much total) rewrite.  Better
	error reporting, fewer memory leaks.  Less code duplication.
	Changed to deal with a single name (no trans/untrans stuff).

	* gweather-about.c: Added myself to the author credits.

2005-03-29  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added comment for Réunion.

2005-03-29  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Corrected the English name of the
	country Peru.

2005-03-28  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Fixed Finnish location names
	(bug #171741).

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

	* gweather-xml.c: Lots of fixes:
	Fix translatability of locations which has been broken for a while.
	Don't use gnome_i18n_get_language_list anymore (bug #170196).
	Don't pass around the locale preferences string.
	Remove the special casing of 'cities' as being entirely separate.

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

	* gweather-pref.c: Fix the check to ensure that spurious gconf
	updates are not performed to consider the 'use_default' flags
	for each of the 4 unit types (temperature, pressure, wind speed,
	visibility distance).  Fixes bug #171812.

2005-03-26  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-03-25  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-03-15  Kjartan Maraas  <kmaraas@gnome.org>

	* weather.c: (weather_location_free): Free location->coordinates
	too. Closes bug #169827 (and a 100kb+ leak)

2005-03-07  Shaun McCance  <shaunm@gnome.org>

	* gweather/docs/C/gweather.xml:
	- Fixed validity issue, removed version from title

2005-03-07  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-03-07  Davyd Madeley  <davyd@madeley.id.au>

	* docs/C/gweather.xml: Update documentation for GNOME 2.10.

	* docs/C/figures/*.png: New images, actually from a version of GNOME
	beginning with a 2.

2005-03-06  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-03-06  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.
	Also reverted the previous change, so that the capital of
	Denmark is now known as Copenhagen again. Locations in
	Locations.xml.in are supposed to have their English names.

2005-03-03  Martin Willemoes Hansen  <mwh@sysrq.dk>

	* Locations.xml.in: Renamed Copenhagen to København.

2005-03-01  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-03-01  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

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

	* gweather-dialog.c: (get_system_monospace_font): Mark as static
	* weather.c: (weather_location_new), (sun),
	(_weather_info_get_pixbuf): Don't mix code and declarations.

2005-02-19  Frank Solensky  <frank@solensky.org>

	reviewed by: Davyd Madeley <davyd@madeley.id.au>

	* weather.c: (sun): Fix calculations for when consecutive sunrises
	or sunsets do not occur on consecutive sideral days. Closes #164686.


2005-02-20  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Added some more translator
	comments, explaining what country the names come from.

2005-02-10  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Sebang->Sepang (damn regression). Closes #166762.

2005-02-02  Kjartan Maraas  <kmaraas@gnome.org>

	* gweather-applet.c: (applet_destroy): NULL vs. 0
	* gweather-dialog.c: (gweather_dialog_create): Don't
	use gtk_signal_connect, use g_signal_connect.

2005-02-07  Jordi Mallach  <jordi@sindominio.net>

	* Locations.xml.in: Further Catalan and Basque corrections.

2005-02-07  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Locations love for:
		- #165212 Maine, Chris Hollenbeck <chris.hollenbeck@gmail.com>
		- #166497 Cape Flattery, <klevin@eskimo.com>

2005-02-04  Frank Arnold  <farnold@cvs.gnome.org>

	* Locations.xml.in: Corrected two Wyoming locations.

2005-02-03  Jordi Mallach  <jordi@sindominio.net>

	* Locations.xml.in: Corrected some Catalan, Basque and Spanish
	names.

2005-02-03  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Fixed validity of XML file. Can people please
	  xmllint against the provided DTD. Thanks.

2005-02-02  Ole Laursen  <olau@hardworking.dk>

	* Locations.xml.in: Moved Vágar/Sørvágur to Faroe Islands, a
	country in Europe (they are not completely independent from
	Denmark, but nevertheless). Also fixed the order of the Danish
	stations.

2005-02-02  Žygimantas Beručka  <uid0@akl.lt>

	* Locations.xml.in: Corrected Lithuanian locations.

2005-02-02  Ole Laursen  <olau@hardworking.dk>

	* Locations.xml.in: Corrected some of the Danish locations.

2005-02-01  Raphael Higino  <raphaelh@cvs.gnome.org>

	* Locations.xml.in: Corrected Brazilian locations.

2005-01-29  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* Locations.xml.in: Some changes in Latino-american and Spanish strings.

2005-01-27  Jorn Baayen  <jbaayen@gnome.org>

	* Locations.xml.in:

	Tartu/Ulenurme -> Tartu/Ülenurme

2004-01-26  Davyd Madeley  <davyd@madeley.id.au>

	* weather.c: Fix #165114 (a stock icon name typo).

2004-01-24  Davyd Madeley  <davyd@madeley.id.au>

	* weather-metar.c: Parser fixes from Marius Gedminas
	  <mgedmin@b4net.lt>. Closes #164177.

2004-01-24  Davyd Madeley  <davyd@madeley.id.au>

	* weather.h: Correct calculation for hPa to inHg should be 1/33.86
	  (the reverse of the calculation for inHg to hPa). That makes it
	  0.029533373, not 0.02963742. Pressure given in details is now
	  correct.

2004-01-23  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Locations Love from Priit Laes <amd@tt.ee>. Closes
	  #164034.

2005-01-18  Benoît Dejean  <TazForEver@dlfp.org>

	* gweather-about.c: (gweather_about_run):
	* gweather-applet.c: (gweather_applet_create), (update_finish):
	* gweather-pref.c: (update_dialog), (gweather_pref_create),
	(gweather_pref_load):
	* gweather-xml.c: (gweather_xml_get_value),
	(gweather_xml_parse_name):
	* main.c:
	* weather-bom.c: (bom_finish_open):
	* weather-iwin.c: (iwin_finish_open):
	* weather-met.c: (met_reprocess), (met_parse), (met_finish_open):
	* weather-metar.c: (metar_parse), (metar_finish_open):
	* weather-wx.c: (wx_finish_read), (wx_finish_open):
	* weather.c: (dmsh2rad), (weather_location_config_read), (sun):
	* weather.h: Killed many warnings.
	
	* ChangeLog: utf-8-ified.
	
	Closes #164473.

2005-01-17  Davyd Madeley  <davyd@madeley.id.au>

	* weather.c: Mark string "Unknown" as translatable. Fixes #164278.

	* Changelog: it's 2005 ;) Fixing issues with linear time

2005-01-16  Dennis Cranston <dennis_cranston@yahoo.com>

	* gweather-dialog.c: (get_system_monospace_font):  New function.
	(gweather_dialog_update):  Display the forecast in the system 
	monospace font.

2005-01-15  Dennis Cranston <dennis_cranston@yahoo.com>

	Based on patches submitted by Michael Terry and Damián Viano.
	
	* gweather-dialog.c: (replace_multiple_new_lines):  New function.
	(gweather_dialog_create):  Remove multiple new lines from the 
	forecast.
		
2005-01-15  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Started adding translator comments,
	explaining what country the names come from.

2005-01-15  Telsa Gwynne  <hobbit@aloss.ukuu.org.uk>

	* Locations.xml.in: Patch from Chris Hollenbeck
	<chris.hollenbeck@gmail.com> to spell that continent at the bottom
	of the world correctly and fix #161097. Added translator notes about
	accents to fix #161094 and #161100.

2005-01-15  Telsa Gwynne  <hobbit@aloss.ukuu.org.uk>

	* Locations.xml.in: s/Nexrad/NEXRAD/g for consistency. Added
	co-ordinates for Cocos (Keeling) Island. Two spelling fixes.
	Closes #161096.

2005-01-15  Davyd Madeley  <davyd@madeley.id.au>

	* weather-iwin.c:
	* weather-metar.c: POSIX says that <sys/types.h> must be included (by
	the caller) before <regex.h>. Fixes build with GLibC 2.3.1.

2005-01-13  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: patch from Adam Sjøgren <asjo@koldfront.dk>.
	  Closes #163732.

	* weather.[ch]: Make the sun/moon be displayed if the sky reads as
	  Invalid.

2005-01-11  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: patch from Javier F. Serrador. Closes #162737.

2005-01-10  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: London: change City to City Airport.

2005-01-10  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Patch for London, UK from Nicholas J. Skehin
	  <nicholas@skehin.com>.

2005-01-10  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-about.c: Update to using GtkAboutDialog.

	* gweather-applet.c: Give three retries before giving up getting data.
	  Closes #125638.

2005-01-09  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-dialog.c:
	* weather.c:
	* weather-wx.c:
	* weather.h: Support animated radar images. Closes bug #149380.
	  Patch from Jonathan Brandmeyer <jbrandmeyer@earthlink.net>.

2005-01-03  Davyd Madeley  <davyd@madeley.id.au>

	* weather.c: use g_locale_from_utf8 for displaying date
	  Patch originally by Gareth Owen <gowen72@yahoo.com>.

2004-12-30  Kjartan Maraas  <kmaraas@gnome.org>

	* Locations.xml.in: Fix up a bunch of encoding errors.

2004-12-24  Sebastien Bacher  <seb128@debian.org>

	* weather-metar.c: (metar_parse): fixed a crasher due to some typos in
	the parser (Closes: #162070).

2004-12-23  Sebastien Bacher  <seb128@debian.org>

	* weather-metar.c: (metar_parse): 
	patch from Ed Catmur <ed@catmur.co.uk> to only copy the datas
	when required (Closes: #161984).

2004-12-21  Davyd Madeley  <davyd@madeley.id.au>

	* weather-metar.c: Revert to a non-chained, more flexible METAR
	parser. Work by Frank Solensky.

2004-12-21  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: File encoding glitches had broken special
	characters for Germany and France, fixed them up. There may be others.

2004-12-21  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Remove duplicate YPXM and YPXX
	* gweather.schemas.in: Add schema for coordinates field
	* gweather-dialog.c: Hide weather.com button if we're not using maps
	  from weather.com

2004-12-20  Dennis Cranston <dennis_cranston@yahoo.com>

	* gweather-pref.c: (gweather_pref_create):  Use HIG compliant
	label capitalization and fix table spacing.

2004-12-20  Frank Solensky  <frank@solensky.org>

	reviewed by: Davyd Madeley <davyd@madeley.id.au>

	* weather-metar.c: (metar_tok_time), (metar_tok_wind),
	(metar_tok_vis), (metar_tok_cloud), (metar_tok_pres),
	(metar_tok_temp), (metar_tok_cond), (metar_parse):
	returns next "state" of regexp parsing for metar_parse;
	"CAVOK" sets both visibility and cloud fields (#160475)

2004-12-20  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Fix bugs inadvertantly committed last time. XML
	  now parses.

2004-12-20  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Locations Love-in
	  Closes bugs:
		#159899: ralph@mail.pangea.at
		#159930: floam@sh.nu (Aaron Gyes)
		#160007: bugs@mavit.freeserve.co.uk (Peter Oliver)
		#160135: robrecht.jacques@advalvas.be (Robrecht Jacques)
		#160909: victor.osadci.gnome@rt.pmc.md (Victor Osadci)
		#161590: gandalf@owca.info (Jure Cuhalev)
		#161708: nshmyrev@yandex.ru (Nickolay V. Shmyrev)

2004-12-18  Christian Rose  <menthos@menthos.com>

	* Locations.xml.in: Updated Swedish airports.

2004-12-12  Frank Solensky  <frank@solensky.org>

	reviewed by: Davyd Madeley <davyd@madeley.id.au>

	* Makefile.am: add new files
	* weather.c: (requests_init), (request_done),
	(requests_done_check): remove "static" for new files
	(calc_apparent): fix bug in wind-chill calculations (#160572)
	* weather.h: add defines, entry points needed for new files
	* weather-metar.c, weather-iwin.c, weather-bom.c, weather-met.c,
	weather-wx.c (Added): break out parsing of weather conditions
	out into separate files

2004-12-11  Simos Xenitellis  <simos@gnome.org>

	* Locations.xml.in: Updated entries related to Greece.
	Assigned remote airports to near-by cities.

2004-12-09  Frank Solensky  <frank@solensky.org>

	reviewed by: Davyd Madeley <davyd@madeley.id.au>

	* weather.c: (metar_tok_time), (metar_tok_wind), (metar_tok_vis),
	(metar_tok_cloud), (metar_tok_pres), (metar_tok_temp),
	(metar_tok_cond), (metar_parse):  Change parsing code to allow
	regular expressions to include spaces

2004-12-05  Davyd Madeley  <davyd@madeley.id.au>

	* weather.c: Updated regexp and parsing of the visibility data field
	  to include international standard as well as a wider variety of
	  values in the US exception to it.
	  http://www.met.tamu.edu/class/METAR/metar-pg7-vis.html

	  Closes #151896 and 160475. Patch from Frank Solensky
	  <frank@solensky.org>.

2004-12-04  Danilo Šegan  <dsegan@gmx.net>

	* Locations.xml.in: Clean up Serbia and Montenegro entries, move
	BIH cities into Bosnia and Herzegovina section, fix "Slavonski"
	(Croatia) to be "Slavonski Brod".  Also, s/>>/>/.

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

	* gweather-xml.c (gweather_xml_load_locations): when starting to
	read the locations file, fast forward to the first element node,
	in order to skip doctypes, comments, PIs, etc at the start of the
	document.

	* Makefile.am (EXTRA_DIST): install locations.dtd.

	* Locations.xml.in: add a DOCTYPE declaration to the top of the file.

	* locations.dtd: update DTD so that it can validate either
	Locations.xml.in or Locations.xml.

2004-11-29  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Sync with METAR list. Tidy up entire database.
	Work from Frank Solensky and myself.
	* locations_diff.py (Add): Generates a log of difference between two
	copies of Locations.xml.in, useful for checking regressions.
	* locations.dtd: DTD for testing Locations.xml.in from James
	Henstridge.

2004-11-28  Frank Solensky  <frank@solensky.org>

	reviewed by: Davyd Madeley <davyd@madeley.id.au>

	* gweather-dialog.c: (gweather_dialog_create),
	(gweather_dialog_update): Display local sunrise, sunset times
	* gweather-pref.c: (gweather_pref_set_accessibility),
	(update_dialog), (change_cb), (row_selected_cb):
	save coordinates of preferred location
	* gweather-xml.c: (gweather_xml_parse_location):
	parse coordinate strings
	* gweather.h: add local sunrise, sunset times to GWeatherApplet
	* weather.c: (dmsh2rad), (weather_location_new),
	(weather_location_config_read), (weather_location_clone),
	(request_done), (make_time), (metar_tok_time), (ecl2equ),
	(gstObsv), (t0), (sun), (calc_sun), (_weather_info_fill),
	(weather_info_config_read), (weather_info_get_update),
	(weather_info_get_sunrise), (weather_info_get_sunset),
	(init_pixbufs), (_weather_info_get_pixbuf): calculations for
	and pixmax selection based on times of local sunrise and sunset;
	make_time simplified
	* weather.h: store latitute, longitude in WeatherLocation;
	additional entry points
	* Locations.xml.in: Add examples of coordinates for "city"
	locations plus Perth

	Closes #68616.
	
2004-11-25  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: New weather locations (EBBR, CYSC, CYVO, CYMT,
	CYZG, CYPH, CYVP, CYMU, CYBX, CYBC, CYGP, CYGR, CYGV, CYRJ, CYNM,
	CYUY). Closes bugs #156877, #158669.
	Patches courtesy of Nicholas J. Skehin, Yannick Brosseau.
	Updated locations for the state of Colorado. Closes bug #158631 - Me.

2004-11-09  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-applet.c: Make gweather work with transparent panels.

2004-10-30  Davyd Madeley  <davyd@madeley.id.au>

	* AUTHORS: Sync file with about dialog.

	R README:
	R TODO:
	R NEWS: Remove old out of date files.

2004-10-30  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: FYR Macedonia -> Macedonia. Closes bug #156326.

2004-10-22  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-applet.c: Make the weather dialog disappear if you click it
	while the weather forecast is currently being displayed.

	* gweather-dialog.c: Make the weather dialog spatial, it will now
	recall it's position and dimensions from when it was last displayed.
	Closes #156072.

	* gweather-about.c: Updated the about dialog box somewhat.

2004-10-18  Martin Kretzschmar  <m_kretzschmar@gmx.net>

	* Locations.xml.in: fixed German locations' names (umlauts, use
	English names + translator comments where available). Bug #155202

	Added more locations in Germany. Grouped them by state/city.
	Bug #155203

2004-10-12  Mark McLoughlin  <mark@skynet.ie>

	Fixes crash when opening preferences dialog - bug #153331

	* gweather-pref.c: (load_locations): pass in a copy of the
	current location since we re-compute the current location
	when we select it in the treeview.

2004-10-08  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Add Linköping (SAAB) to the locations database.
	Patch from Kalle Svensson <kalle@juckapan.org>. Closes #154194.

2004-10-05  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Add Juneau, Wisconsin to the locations database.
	Patch from Gabriel M. Elder <eldergabriel@charter.net>. Closes
	#152729.

2004-09-29  Gediminas Paulauskas  <menesis@chatsubo.lt>

	* gweather-dialog.c: Make informational labels in details selectable.
	Closes #153835.
	
2004-09-29  Frank Solensky  <frank@solensky.org>

	reviewed by: Davyd Madeley <davyd@madeley.id.au>

	* gweather-xml.c: (gweather_xml_parse_name),
	(gweather_xml_parse_location), (gweather_xml_parse_city),
	(gweather_xml_parse_node), (gweather_xml_parse):
	Add support for "city" in XML heirarchy. Closes #150132.

	* Locations.xml.in: Eight examples of "city" node

2004-09-23  Davyd Madeley  <davyd@madeley.id.au>

	* gweather.schemas.in: Fix message inconsistency. Closes #150920.
	Patch from Chris Kelso <ckelso@heliosphere.org>.

2004-09-21  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Fixed spelling of EKYT: Aalborg

2004-09-20  Simos Xenitellis  <simos74@gmx.net>

	* Locations.xml.in: Added more Locations for Greece. Closes #150744.

2004-09-20  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xml.in: Added Estonian locations. Closes #152302. Patch
	from Chris Kelso <ckelso@heliosphere.org>.

	* gweather.schemas.in: Fix typo in schema. Closes #152209. Patch from
	Chris Kelso <ckelso@heliosphere.org>.

2004-09-16  Davyd Madeley  <davyd@madeley.id.au>

	* Locations: REMOVED. See bug #151506

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

	* docs/C/gweather-C.omf:
	* docs/C/gweather.xml:
	- Updates for 2.8 from Angela Boyle

2004-08-24  Davyd Madeley  <davyd@madeley.id.au>

	* weather.c: Fix a TRANSLATOR comment incorrectly indicating "m/s" was
	miles per hour. Closes #150892.

2004-08-22  Davyd Madeley  <davyd@madeley.id.au>

	* weather.c:
	* Locations.xml.in: Fix forecasting information for United Kingdom.
	Closes #140677. Patch by Alan Cox <alan@redhat.com>. "No translatable
	strings were harmed in the making of this patch."

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

	* Makefile.am: Remove reference to screen-exec.
	* gweather-applet.c: (help_cb), (applet_destroy),
	(gweather_applet_create): Use gnome_help_* Also
	s/gtk_signal_connect/g_signal_connect/
	* gweather-pref.c: (help_cb): Same.

2004-08-15  Davyd Madeley  <davyd@madeley.id.au>

	* GNOME_GWeatherApplet.xml:
	* gweather-applet.c:
	* gweather-dialog.c: Change "Forecast" to "Details". Fixes #133871.

	* gweather-dialog.c: Change "Humidity" to "Relative Humidity". Fixes
	#147878.

2004-08-14  Davyd Madeley  <davyd@madeley.id.au>

	* Locations.xmlin: Add Ulaanbaatar, remove extra occurance of Penang,
	fix spelling of Sepang, change "Atlantic" to "Atlantic Ocean" to fix
	translation problem.

2004-08-14  Frank Solensky  <frank@solensky.org>

	reviewed by: Davyd Madeley <davyd@madeley.id.au>

	* Locations.xml.in: Add locations for Ukraine and Poland; fix typo on
	Gloucestershire, UK

	Fixes bugs #106451, #142677, #149123

2004-08-09  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-pref.c: Change centigrade to celsius. Closes bug #149541.
	* docs/C/gweather.xml: Change centigrade to celsius to reflect update
	in UI. Also add kPa to the list of pressures.

2004-08-08  Davyd Madeley  <davyd@madeley.id.au>

	* gweather-pref.c:
	* gweather.h:
	* gweather.c: Add kPa to the list of pressure preferences. Closes
	#149612. Patch by Ryan Lortie <desrt@desrt.ca>.

2004-08-04  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* Locations.xml.in: Corrected Aguascaliantes to Aguascalientes
	correct spelling

2004-07-25  Gareth Owen  <gowen72@yahoo.com>

	* Locations.xml.in: Added Aigen Im Ennstal to Austrian
	locations.

	Fixes bug #148170

	Patch by Patrick Steiner <patrick.steiner@a1.net>

2004-07-25  Gareth Owen  <gowen72@yahoo.com>

	* weather.c: Remove C99isms

	Fixes bug #148050

	Patch by Joe Marcus Clarke <marcus@freebsd.org>

2004-07-25  Gareth Owen  <gowen72@yahoo.com>

	* gweather-pref.c: Fix compile of systems without _NL_MEASUREMENT_MEASUREMENT

	Fixes bug #148049

	Patch by Joe Marcus Clarke <marcus@freebsd.org>

2004-07-08  Gareth Owen  <gowen72@yahoo.com>

	* Locations.xml.in: Corrected zone for Washington DC

	Fixes bug #145625

2004-07-06  Gareth Owen <gowen72@yahoo.com>

	* weather.c: (metar_tok_wind): Mapping of wind directions [237..247]

	Fixes bug #145053

	Patch by Frank Solensky <frank@solensky.org>

2004-07-06  Gareth Owen  <gowen72@yahoo.com>

	* gweather-applet.c (size_allocate_cb): added callback
	for changes in panel size.

	Fixes bug #135205

	Patch by Vincent Noel <vnoel@cox.net>

2004-06-26  Gareth Owen  <gowen72@yahoo.com>

	* docs/C/gweather.xml: Updated document to match recent changes.

	Fixes bug #144957

2004-06-26  Dennis Smit  <ds@nerds-incorporated.org>

	* docs/C/gweather.xml: Add brief description of "feels like"

	* gweather-dialog.c: (gweather_dialog_create),
	(gweather_dialog_update): Add fields for apparent temperature

	* gweather.h: Add widget for apparent temperature

	* weather.c: (calc_humidity), (weather_info_get_humidity):
	Calculate humidity as a gdouble instead of int

	* (calc_apparent), (weahter_info_get_apparent): Added

	* (metar_tok_temp), (_weather_info_fill), (weather_info_config_write),
	(weather_info_config_read): Don't save humidity in info structure;
	calculate only as needed for display.

	* weather.h: WeatherHumidity returns gdouble, don't save in "info".
	Add "get_apparent" for wind chill / heat index calcualtions.

	Patch by: Frank Solensky  <frank@solensky.org>

	Fixes bug #131005.

2004-06-26  Dennis Smit  <ds@nerds-incorporated.org>

	* Locations.xml.in: Added VIJP, Jaipur/Sanganer.
	
	Fixes bug #144735.

2004-06-24  Gareth Owen  <gowen72@yahoo.com>

	* Locations.xml.in: Removed some broken locations

2004-06-24  Gareth Owen  <gowen72@yahoo.com>

	* Locations.xml.in: Added Morganton, NC, USA

2004-06-23  Gareth Owen  <gowen72@yahoo.com>

	* Makefile.am: move location translations to a seperate domain.

	Patch by Danilo Segan

2004-06-21  Gareth Owen  <gowen72@yahoo.com>

	* docs/eu/.cvsignore: Quieten CVS 

2004-06-20  Gareth Owen  <gowen72@yahoo.com>

	* Locations.xml.in: New xml formated locations file.

	* gweather-xml.c, gweather-xml.h: New files containing xml processing
	code.

	* .cvsignore: Added Locations.xml

	* Makefile.in: Added rules for Locations.xml.in, gweather-xml.c and 
	gweather-xml.h

	* gweather-pref.c: Moved column enum to header file.

	(row_select_cb): Added saving of translated location name

	(load_region): Deleted unused function

	(load_locations): Now calls gweather_xml_load_locations to fill the
	tree with location information

	(free_data): remove un-needed calls to free

	* gweather-pref.h: Moved column enum to header file.

	* gweather.schemas.in: Added new location variable for storing
	translated location name.

	* weather.c (weather_location_new): Added setting of translated
	location and handling of NULL initialisation.

	(weather_location_config_read): Added reading/setting of translated
	location

	(weather_location_clone): Changed this so it called weather_location_new

	(weather_location_free): Added freeing of structure members

	(weather_location_equal): Added check for location name being the same
	as some locations now have identical metar codes.

	* weather.h: Added variable for storing translated location to the 
	GWeatherLocation structure.
	
	Fixes bug: 89746

2004-06-19  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-applet.c (gweather_create_applet): Added setting default
	values for new unit variables.  Removed old metric variable.

	(update_finish): Removed call to change the units of stored weather
	readings.

	* gweather-pref.c: Added #defines and arrays for the different units
	and functions for handle changing the unit values via the combo boxes.

	(update_dialog): Added code to set the unit combo box values

	(metric_toggled): Removed function

	(gweather_pref_create): Added combo boxes for selecting the units to
	use.

	(gweather_pref_load): Added loading of units from gconf.

	* gweather.h: Added unit related enums.  Added variables for storing
	current unit selections in the preference structure.  Added unit combo
	boxes to the applet structure.
	
	* gweather.schemas.in: Added keys for each unit variable (distance,
	speed, temp and pressure)

	* weather.c: Added more unit conversion macros.

	(weather_info_to_metric, weather_info_to_imperial): Removed unused
	functions.

	(temperature_string), windspeed_string, : New function to display
	temperature/windspeed in the current unit.
	
	(weather_info_get_temp, weather_info_get_humitdy,
	weather_info_get_wind, weather_info_get_pressure,
	weather_info_get_visibility, weather_info_get_temp_summary): Changed
	to display the variable in the currently selected unit.

	* weather.h: Removed unused enums, function declarations and structure
	members.

	Fantastic patch by: Gareth Owen  <gowen72@yahoo.com>

	Fixes bug #50595.

2004-06-16  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-dialog.c (gweather_dialog_create):
	Added scrollbars to the radar map.

	Patch by: S.SanthoshKumar  <santhu842k2@yahoo.co.in>

	Fixes bug #97047.

2004-06-10  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-dialog.c (gweather_dialog_create):
	
	Set the correct accessible name. Fixes bug #134932.

	Patch by: Muktha  <muktha.narayan@wipro.com>

2004-06-10  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-applet.c (clicked_cb):

	Single click to popup forecast:
	http://developer.gnome.org/projects/gup/hig/1.0/userinput.html#mouse-interaction-applets

2004-06-10  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-dialog.c (gweather_dialog_open):

	Present the forecast dialog when it's reselected
	from the applet.

2004-06-09  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-pref.c (gweather_pref_create):
	
	Set the preference window resizeable flag to FALSE.

	Fixes bug: 144032.

2004-06-09  Dennis Smit  <ds@nerds-incorporated.org>

	* weather.h (_WeatherLocation): Added flag to track if zone information is 
	valid.

	* weather.c (weather_location_new): Set zone validity flag from information
	in Locations file.

	* gweather-dialog.c (gweather_dialog_create): Only display forecast tab if
	zone entry is valid.

	(gweather_dialog_update): Only update forecast tab, if the zone entry is
	valid.
	
	Patch by: Gareth Owen  <gowen72@yahoo.com>
	
	Fixes bug #97593.

2004-06-09  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-pref.c: HIG fixes for the treeview.

	Patch by: Ross Burton  <r.burton@180sw.com>

	Fixes bug: #144027.

2004-06-09  Dennis Smit  <ds@nerds-incorporated.org>
	* gweather-pref.c: Portability fixes for the IBM C compiler.

2004-06-09  Dennis Smit  <ds@nerds-incorporated.org>
	Fix for transparant radar images.

	Patch by: Gareth Owen  <gowen72@yahoo.com>

	Fixes bug #139216.

2004-06-07  Dennis Smit  <ds@nerds-incorporated.org>

	* weather.c (weather_info_config_read):
	Initializing some variables to fix crasher on
	location change.

	Patch by: Gareth Owen  <gowen72@yahoo.com>

	Fixes bug #143869.

2004-06-07  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-pref.c (gweather_pref_create):
	Ally fixes by: Padraig 'O brain <padraig.obriain@sun.com>.

	Fixes bug 134929.

2004-06-07  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-applet.c (gweather_applet_create):
	Use alignment instead of hbox for the container
	so the applet gets centered on vertical panels.

	Patch by: Gareth Owen  <gowen72@yahoo.com>

	Fixes bug #133771.

2004-06-07  Dennis Smit  <ds@nerds-incorporated.org>
	
	* weather.c: Changing the CLOUD_RE_STR define.
	(metar_tok_cloud): Adding support for NSC, sky clear
	tag.

	Patch by: Fabrice Bellet  <fabrice@bellet.info>

	Fixes bug #134452.

2004-06-07  Dennis Smit  <ds@nerds-incorporated.org>

	patch by: Kaushal Kumar  <kaushal.kumar@wipro.com>

	* Locations: Added Bangalore (VOBG) in India.

2004-06-04  Kaushal Kumar  <kaushal.kumar@wipro.com>

	* Locations: Added Karlstad (ESOK) in Sweden. 

	Patch by: Pontus Ullgren <bugzilla@pontus.ullgren.com>

	Fixes bug #143678.

2004-06-04  Kaushal Kumar  <kaushal.kumar@wipro.com>

	Moved Ornskoldsvik (ESNO) and Ostersund (ESPC) up the 
	list to have the locations sorted alphabetically.

2004-06-03  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-applet.c (place_widgets): Fixed up applet
	placement majorly.

	Patch by: Nathan Fredrickson  <nathan@silverorange.com>

	Fixes bug #142945.

2004-06-03  Dennis Smit  <ds@nerds-incorporated.org>

	* weather.c: Changed Kph to km/h in the
	WINDSPEED_UNIT_STR define. Kph is not a metric unit.

	Fixes bug #142919.

2004-06-03  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-dialog.c (response_cb): Add a response for the
	update button.

	(gweather_dialog_create): Add an update button to the forecast
	dialog.

	Patch by: Karthik BG  <kkbg@softhome.net>

	Fixes bug #126530.

2004-05-28  Muktha  <muktha.narayan@wipro.com>

	* gweather-applet.c: Add accessible name. Fixes bug #134935.

2004-05-28  Gareth Owen  <gowen72@yahoo.com>

	* weather.c: Free buffers on deleting weather info structure.
	Fixes bug #143316

2004-05-27  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-applet.c, weather.c: Applied patch by Gareth Owen that fixes bug
	#134018. 

	I've done two things in this patch.  Firstly, when the location is changed any
	outstanding VFS async calls are cancelled.  Secondly, instead of passing a
	pointer to the weather info structure (which is free'd when you change
	location) to the callbacks, a pointer to the GWeatherApplet structure
	is now used.  Since the applet is only free'd when the instance is removed
	from the panel, it can't get deleted before the callback is called.

2004-05-16  Kevin Vandersloot <kfv101 psu edu>

	* gweather-pref.c: Allow for translators to specify the default location. Fixes
	bug #103080. Patch from Gareth Owen

2004-05-13  Davyd Madeley <davyd@ucc.asn.au>

	* gweather-dialog.c: Added a ETCHED_IN border around the Forecast
	dialog.

2004-04-28  Kjartan Maraas  <kmaraas@gnome.org>

	* Locations: Adding cities in Great Britain. Patch from Gareth Owen
	<gowen72 at yahoo com>. Closes bug #140675.
	* Locations: Adding some portugese cities. Patch from Milton Moura
	<mgcm at acm org>. Closes bug #140648.

2004-04-28  Gareth Owen  <gowen72@yahoo.com>

	* gweather-applet.c: Fix for crash when removing second applet.  Fixes
	bug #140964.

2004-04-25  Kevin Vandersloot <kfv101 psu edu>

	* weather.c: Fix for certain invalid conditions. From bug #134452. Patch
	from Arnaud Patard .

2004-03-17  Glynn Foster  <glynn.foster@sun.com>

	* docs/ja/*: Add ja docs since the original author didn't get back
	to me.

2004-03-16  Glynn Foster  <glynn.foster@sun.com>

	* docs/Makefile.am: Add l10n'd docs to the build.
	* docs/it/Makefile.am: Point to the proper omf file - I think.

2004-03-15  Glynn Foster  <glynn.foster@sun.com>

	* docs/*.sgml: Remove the old sgml docs that we don't need 
	anymore.

2004-03-15  Glynn Foster  <glynn.foster@sun.com>
	
	* docs/*: Localized online help from Sun's translation team for
	de, es, fr, it, ko, sv, zh_CN, zh_HK and zh_TW

2004-03-10  Dennis Smit  <ds@nerds-incorporated.org>

	* weather.c (weather_info_get_wind):
	Ditto like the previous commit.

2004-03-10  Dennis Smit  <ds@nerds-incorporated.org>

	* weather.c (weather_info_get_pressure, weather_info_get_visibility):
	Made the buffers a bit longer so international characters do fit
	in the buffer as requested by the Thai translation team.

	Fixes bug #136717.

2004-03-05  Dennis Smit  <ds@nerds-incorporated.org>

	Submitting patch by:
	
	Chris Lahey  <clahey@rigger.boston.ximian.com>

	* weather.c (iwin_start_open): This was not using the return value
	of g_ascii_strdown which allocates a new value.

	Fixes bug #136186.

2004-02-29  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-applet.c (change_background_cb):
	Removed bogus return.

2004-02-28  Kevin Vandersloot

	* Locations: Update Petawawa. Patch from Stephen Depooter. Fixes bug 
	#131797

2004-02-28  Kevin Vandersloot

	* Locations: Update Hnugarian locations. Patch from Egmont Koblinger. Fixes bug 
	#135602

2004-02-28  Kevin Vandersloot

	* Locations: Add Philippines. Patch from Eric Pareja. Fixes bug 
	#135694

2004-02-28  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-applet.c (place_widgets):
	Should size better to panel now because we're using
	widget allocation sizes instead of normalized panel
	sizes. The panel only emits change_size signals on
	normalized values tho. bleh.

	(gweather_applet_create): Initialize the container
	box we use for the allocation sizes.

	* gweather.h: Added a container entry to the
	GWeatherApplet structure to read allocated
	applet size from.

2004-02-26  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-applet.c (gweather_applet_create):
	Connect a signal to change_background.

	(change_background_cb):
	Added function and handle background changes.
	Doesn't work for pixmap backgrounds yet.

2004-02-24  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-applet.c (place_widgets):

	The applet now places the text and icon in the right
	way in every panel/dimension. Also cleaned up the
	place_widgets function.

2004-02-23  Dennis Smit  <ds@nerds-incorporated.org>
	
	* gweather-applet.c (place_widgets):
	
	Fixes text placing for horizontal panels.
	Vertical is still broken in some cases.

	Patch by: Danilo Segan <dsegan@gmx.net>

	Fixes bug #135205.

2004-02-23  Dennis Smit  <ds@nerds-incorporated.org>

	* Locations:

	Patch that adds more Malaysian contries and adds "MY" to the Asia
	list.

	By: Andre Dahlqvist  <andre-bugs@telia.com>

2004-02-23  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-about.c (gweather_about_run):
	Set the screen right when the user requests
	the about dialog and it's already there but
	not on the right screen.

2004-02-23  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-dialog.c (gweather_dialog_create):
	Set the fill option for gtk_table_attach to
	GTK_FILL instead of '0'.

	Patch by: Detlef Reichl  <detlef.reichl@gmx.org>.

	Fixes bug #135164.

2004-02-22  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-applet.c (help_cb):
	Applied patch by Vijaykumar Patwari to
	fix help in the context menu.

	Fixes bug #134826.

2004-02-18 Breda McColgan <breda.mccolgan@sun.com>

	* docs/C/gweather.xml: Updated for GNOME 2.6.
	* docs/C/gweather-C.omf: Updated for GNOME 2.6.
	* docs/C/l10n.txt: Updated for GNOME 2.6.

2004-02-17  Dennis Smit  <ds@nerds-incorporated.org>

	* Locations: Adding more swedish cities.

	Patch by: Andre Dahlgvist <andre-bugs@telia.com>

	Fixes bug #134479.

2004-02-08  Jason Leach  <leach@wam.umd.edu>

	* Makefile.am (CLEANFILES): Add .server and .server.in here.
        (#132071, Padraig O'Briain)

2004-02-06  Dennis Smit  <ds@nerds-incorporated.org>

	* location.c (parse_xml): replaced deprecated glib functions.

	* weather.c (iwin_start_open): likewise.

	Patch by: Kjartan Maraas <kmaraas@gnome.org>

	Fixes bug #133159.

2004-02-05  Dennis Smit  <ds@nerds-incorporated.org>

	AI, i was assigning the credits for the patch wrongly, i should
	go to sleep!

2004-02-05  Dennis Smit  <ds@nerds-incorporated.org>

	* Locations: Added Ukraine to the list of locations.

	Patch by: Maxim Dzumanenko <mvd@mylinux.com.ua>

	Fixes bug #126101.

2004-02-01  Kevin Vandersloot

	* weather.c: Fix display of wind in N direction. Patch from
	corwashere yahoo com. Fixes bug # 132230

2004-02-01  Kevin Vandersloot

	* gweather-pref.c, Locations: Fix division into regions, states, cities etc.
	Fixes bug #81391. Patch from Michael Terry.

2004-01-31  Dennis Smit  <ds@nerds-incorporated.org>

	* gweather-prefs.c (help_cb):
	Changed gweather", "gweather-prefs", 
	into "gweather", "gweather-settings",.

	Patch by muktha.narayan@wipro.com.

	Fixes bug #131894.

2004-01-28  Arvind Samptur  <arvind.samptur@wipro.com>

	* gweather-about.c: (gweather-about-run): Set the screen
	for the about dialog

2004-01-20  James Henstridge  <james@daa.com.au>

	* Locations (name): add BOM report codes to various Australian
	locations.

	* weather.c (bom_start_open): Add support for downloading
	forecasts from the Australian Bureau of Meteorology.

2004-01-18  Jason Leach  <leach@wam.umd.edu>

	* Makefile.am (install-data-local): builddir != srcdir fix.

2004-01-12 Archana Shah <archana.shah@wipro.com>

	* gweather.h: Added a field in the structure GWeatherApplet for
	about dialog.
	* gweather-applet.c: (gweather-applet-create): Initialized
	about_dialog field with NULL.
	(applet_destroy): Destroys the about dialog when the applet is
	removed from the panel.
	* gweather-about.c: (gweather-about-run): Removed the static
	variable "about" and used structure member about_dialog in that place.
	Fixes bug #131073

2004-01-09  Kevin Vandersloot

	* weather.c: Format the forecast text to be more readable. Patch
	from Richard Kilgore. Fixes bug #130749

2004-01-09  Kaushal Kumar  <kaushal.kumar@wipro.com>

	* Locations: Updated ICAO location code for Charlottetown to CYYG 
	in the [CA_PE] section.
	Fixes bug #128569.

2003-12-13  Michael Terry <mterry@fastmail.fm>

       * GNOME_GWeatherApplet_Factory.server.in.in, Makefile.am,
       gweather-about.c, gweather-applet.c, weather.c: Move icons from
       built-in xpm pixmaps to gnome-icon-theme icons.  Fixes bug #124594.

2003-12-16  Kevin Breit <mrproper@ximian.com>

	* Locations: Added Wheeling, Illinois

2003-12-07  Kevin Vandersloot

	* weather.c: Fix different displays of temperature by using lrint 
	for the temp. Fixes bug #102338. Patch from hayastan132 hotmail com .

2003-12-03  Muktha  <muktha.narayan@wipro.com>

        * gweather-applet.c: Fix critical warnings when invoking
	help. Fixes bug #128364.

2003-11-30  Kevin Vandersloot

	* Locations: Fix misspellings in French cities. Fixes bug #124750. Patch
	by Stephane Jourdan

2003-11-16  Behdad Esfahbod

	* weather.c: Handled unknown values for almost all the fields in info
	  structure.

2003-10-31  Muktha  <muktha.narayan@wipro.com>

	* gweather-pref.c: Fix critical warnings when opening prefs window.
	Fixes bug #121868.
 
2003-10-26  Kjartan Maraas  <kmaraas@gnome.org>

	* Locations: Merge fix for bug #123471.
	* Locations: Fixed Whitehorse, Alaska. From stable.
	* Locations: Added Fredericksburg US. From stable.

2003-10-26  Kjartan Maraas  <kmaraas@gnome.org>

	* Locations: Merge fix for Athens from stable.

Mon Sep 15 15:19:26 2003  George Lebl <jirka@5z.com>

	* gweather-applet.c: when started in lockdown mode, hide the
	  preferences item

2003-07-24  Kevin Vandersloot

	* schemas.in: Clean up strings as part of bug #116066

2003-07-21  Dennis Cranston <dennis_cranston at yahoo com>

	* gweather-pref.c, gweather-dialog.c:  HIGify widget padding 
	between the vbox and action area of the dialogs.  Thanks to 
	<chris@gnome-de.org> Christian - Manny Calavera - Neumair.

2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>

	* gweather-dialog.c:  Fix the label for the radar map tab.
	
2003-07-17  Dennis Cranston <dennis_cranston at yahoo com>

	* gweather-pref.c, gweather-dialog.c:  HIG changes for the preferences
	and forecast dialogs.

2003-07-16  Abel Cheung  <maddog@linux.org.hk>

	* weather.c (conditions_str): Removed all impossible weather
	  combinations. (#103813)

2003-07-15  Kevin Vandersloot

	* Merge back a lot of strings that got changed in the process

2003-07-13  Kevin Vandersloot

	* Merge back some 2.3.x changes
	
	* gweather-pref.c: allow for larger update intervals. Respect key writability of gconf items.
	Update the applet when the city changes.
	
	* gweather-applet.c: expand the applet for Fitts' law. Add the degrees symbol. Keybindings.
	
	* gweather-dialog.c: OK instead of CLOSE for button.

2003-07-13  Kevin Vandersloot

	* Sadly revert 2.3.x changes since the weather server is unreliable. Need to merge in
	fixes from 2.3.x still

Wed Jul 09 15:31:58 2003  George Lebl <jirka@5z.com>

	* gweather-prefs.c: respect key writability, fix initial size so
	  that all widgets will fit on screen, whack a whole bunch of
	  useless gtk_widget_show's

2003-06-22  Kevin Vandersloot

	* weather.c: work around weather.interceptvector problems to get the applet working again.
	Patch from Mark Foster. Closed bug #113981
	
	* gweather-applet.c: add some padding between the icon and label. ALso fix issue with
	setting tooltip.

2003-06-16  Kevin Vandersloot

	* gweather-pref.c, location.c, gweather-dialog.c: add back some accesibilty descriptions
	and stuff. Change Close to Ok for forecast dialog.

2003-06-15  Kevin Vandersloot

	* gweather-applet.c: keybindings for update and forecast.

2003-06-09  Kevin Vandersloot

	* gweather-applet.c: don't tranlsate the degree symbols. Fixes bug #95436.

2003-06-08  Kevin Vandersloot

	* gweather-applet.c: display F or C for temperatures. Fixes bug #95436

2003-06-05  Dennis Cranston <dennis_cranston at yahoo com>

	* gweather-pref.[ch]:  HIGify the location tab.
	
	* gweather-dialog.c:  HIGify the forecast dialog.
	
2003-06-02  Kevin Vandersloot

	* gweather-applet.c: small fix for packing

2003-06-01  Kevin Vandersloot

	* gweather_applet.c: Expand the applet for Fitt's law and pack widgets tighter on larger
	panels.

2003-05-31  Dennis Cranston <dennis_cranston at yahoo com>

	* gweather-pref.c:  Fix newly created mnemonic clash.

2003-05-31  Kevin Vandersloot

	* weather.c, gweather-applet.c: improve the animation a bit and display errors
	better

2003-05-31  Kevin Vandersloot

	* gweather-pref.c, gweather-applet.c: fix crash when toggling temp labels. 
	Also display temperature range for future days. Fixes bug #113783 and part
	of #113981

2003-05-07  Dennis Cranston <dennis_cranston at yahoo com>

	* gweather-pref.c:  HIGify the action area of the preferences 
	dialog.

2003-05-15  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-applet.c, gweather-pref.c: change wording for one of the prefs to make
	more understandable.

2003-05-14  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-dialog.c: fix mispelling. Fixes bug #112970

2003-04-25  Dennis Cranston <dennis_cranston at yahoo com>

	*gweather-pref.c: Minor HIG changes to the preference dialog: 
	add missing mnemonic; add missing colon from label; add units 
	after spin controls; remove dialog separator, set the default 
	button; and fix widget padding.

2003-04-22  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-pref.c: fix saving of update interval. Also limit minimun update interval
	to 30 min to save bandwidth

2003-03-25  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-pref.c: update default location for server changes

2003-03-07  Mark McLoughlin  <mark@skynet.ie>

	* gweather-applet.c: (help_cb):
	* gweather-pref.c: (help_cb): update for screen-exec changes.

2003-02-20  Kevin Vandersloot <kfv101@psu.edu>

	* merge changes from gweather-improve branch. 

2003-02-20  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: funky animation for when an update occurs

2003-02-18  Kevin Vandersloot <kfv101@psu.edu>

	* location.c: cancel download of citites if new country is selected. Fixes a problem where
	the fist country is shown

	* gweather-applet.c: reoder high and low temps in tooltips

	* weather.c: change icon for one condition

2003-02-16  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-dialog.c: add a label for feels like temp and pressure. Get
	some more metric conversions.

	* weather.c, weather.c, gweather.h: remove lots of unneeded stuff

	* location.c: fix crash if the dialog was closed durring an update 

	* gweather-applet.c: open forecast if applet double clicked

2003-02-13  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-applet.c: add labels to display temps. 

	* gweather-dialog.c: don't display NULL if temp is not set

	* gweather-pref.c: new config to show temp labels. Better packing
	of some widgets

	* gweather.schemas: new config option.

	* gweather.h: fix an extra enum

2003-02-10  Kevin vandersloot <kfv101@psu.edu>

	* gweather-applet.c: display only requested number of forecast days

	* weather.c: download all the forecast days even if the user only wants
	to display a few.

	* gweather-pref.c: change wording of the pref to reflect change in 
	behavior.

2003-02-10  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c, gweather-dialog.c: improve the display of the forecast. 
	Display a string for the wind direction

2003-02-09  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: Remove dead code. Add support for canceling updates. 
	Add support for retrieving data in metric. Set tooltips properly when
	update failed. More checks for xml retrievel - fixes possible crashes. Free
	forecasts on update to plug some leaks.

	* main.c: make sure to initialize some WeatherInfo values.

	* location.c: display errors when retrieval fails

	* gweather-pref.c: Remove some code. Make metic option work. Small
	fixes.

2003-02-09  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-dialog.c: improvements - show images, and better alignments

2003-02-08  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-dialog.c: add a forecast list

2003-02-08  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-dialog.c: readd this. Still some more work needed

	* weather.c: update the forecast dialog when finished

	* location.c: remove the druid stuff

2003-02-08  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-pref.c: higify and flesh out the prefs dialog. Can now select
	locations from this dialog

	* gweather_applet.c: some cleanup and readd the timer now

	* gweather.schemas: save the location city and url

	* location.c: some cleanup. Fix to work with prefs dialog. 

	* main.c: some reorganization

2003-02-06  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-pref.c: some pref dialog additions and removals. Very messy
	right now

2003-02-05  Kevin Vandersloot <kfv101@psu.edu>

	*weather.c: parse wind conditions and city names.

	* location.c: 	gnome_vfs_escape_string on url so that urls with
	spaces work properly (and actually add it to cvs)

	* gweather-applet.c: improve the tooltip labels

2003-02-04  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: free the Forecasts Glist when updating. Fixes a
	crash on update

	* gweather-about.c: add myself to authors list

2003-02-04  Kevin Vandersloot <kfv101@psu.edu>

	* location.c: new code to fetch available locations. Uses a druid
	as the selector right now which might be an overkill.

	* weather.c, gweather-applet.c: remove some unused code

	* .schemas: add new config for number of forecast days and
	a first time run key

2003-01-29  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: use weather.interceptvector.com to fetch weather forecast
	in xml format. Rewrite large amounts of code and simplify. Display
	up to a five day forecast on the panel instead of just current condition.
	Still lots needs to be done.

2003-01-21  Arvind Samptur <arvind.samptur@wipro.com>
	* gweather-applet.c (gweather_applet_create) (applet_destroy):
	Destroy the preferences and forcast dialog when destroying the applet.

2003-01-06  Kjartan Maraas  <kmaraas@gnome.org>

	* Locations: Spell Gardermoen correctly.

2002-12-14  Fernando Herrera <fherrera@onirica.com>

	* GNOME_GWeatherApplet_Factory.server.in.in: added bugzilla
	attributtes

2002-12-12  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: remove Marquette since its not supported anymore.
	Patch from Kevin Breit <mrproper@ximian.com>. Fixes bug
	#100906

2002-12-09  Kjartan Maraas  <kmaraas@gnome.org>

	* gweather-pref.c: Fix a typo causing Gtk-CRITICAL warnings.
	
2002-12-07  Dennis Cranston <dennis_cranston@yahoo.com>

	* gweather-pref.c:  Change the default tab to 'General', since it is
	the first tab in the notebook.

2002-12-07  Dennis Cranston <dennis_cranston@yahoo.com>

	* gweather-pref.c:  Fix the previous commit, so instead of having
	'Location' and 'Page 2' tab labels, we have 'General' and 'Location'
	tab labels.

2002-12-02  Christian Neumair  <chris@gnome-de.org>

	* gweather-pref.c: Made tabs HIG compliant (removed mnemonics),
	prepended "General" tab.

2002-11-27  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: fix memory leak. From patch by Sean Egan
	 <bj91704@binghamton.edu>. Fixes bug #96443

2002-09-15  Juan Salaverria <rael@vectorstar.net>

	* GNOME_GWeatherApplet.xml: Added a separator in the
	menu. May fix bug #89864

2002-11-25  Kevin Vandersloot <kfv101@psu.edu>

	* pixmaps/*.xpm: Update icons from Calum Benson to show up better with
	different backgrounds. Fixes bug #79458

2002-11-25  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: Add Lulea Sweden. Fixes bug #99514

2002-11-25  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: Canadian updates from Mark L. Kahnt <kahnt@hosehead.dyndns.org>
	Fixes bug #99547

2002-11-19  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: Lots of updates. Patches from Evert Verhellen
	and Pekka Pietikäinen. Fixes bugs  97980, 97021, 95311,
	93781, and 91872

2002-09-19  Mark McLoughlin  <mark@skynet.ie>

	* gweather-about.c: (gweather_about_run):
	* gweather-applet.c: (help_cb):
	* gweather-dialog.c: (gweather_dialog_create):
	* gweather-pref.c: (gweather_pref_create), (help_cb):
	kill the HAVE_GTK_MULTIHEAD conditionals. We require
	gtk+ HEAD now.

2002-08-14  Mark McLoughlin  <mark@skynet.ie>

	* Makefile.am: link against libscreen-exec.la.

	* gweather-applet.c: (help_cb):
	* gweather-pref.c: (help_cb): use the multiscreen
	gnome_help variants.

2002-07-18  Mark McLoughlin  <mark@skynet.ie>

	* Makefile.am: install applet into libexec.

	* GNOME_GWeatherApplet_Factory.server.in: move .server.in to
	.server.in.in to allow for libexec dir substitution.

2002-07-16  Kevin Vandersloot <kfv101@psu.edu>

        * gweather-pref.c: properly save the new location when changed
        in the prefs dialog. Adapted from patch by Deepa Chacko Pillai.
        Should fix bug #86631, #88182, and #79787

2002-07-11  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: fix small breakage in the last commit

2002-07-11  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: add Prince Edward Island. Patch by Damon Brodie
	< damon.brodie@bridgewatersystems.com>. Fixes bug #87343

2002-07-11  Mark McLoughlin  <mark@skynet.ie>

	* gweather-about.c: (gweather_about_run):
	* gweather-dialog.c: (gweather_dialog_create):
	* gweather-pref.c: (gweather_pref_create):
	realise dialogs on the same screen as the applet.

2002-07-10  Mark McLoughlin  <mark@skynet.ie>

	* gweather-about.c: (gweather_about_run): use
	gtk_window_present.

	* gweather-applet.c: use unsafe verbs to minise
	casting.

2002-07-03  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: undo previous changes since they cause more
	breakage. Need to rewrite a lot of code here

2002-07-01  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: set gweather_applet->gweather_info to the newly
	created info structure. Hopefully fixes bug #86631 and maybe some
	others. Prevents multiple http requests when the location has been
	changed and updated

2002-06-02  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-pref.c: destroy prefs dialog so it doesn't crash
	when closed using esc - bug #83816. Also free the data when
	destroying to prevent memory leaks

2002-05-31 Kevin Vandersloot <kfv101@psu.edu>

	* Makefile.am: Fix GNOMELOCALEDIR to point to correct
	location. Fixes #83621. 

2002-05-30  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: fix up temp regex so that it can get the temp
	even if the dew is not available. Fixes bug #82335

2002-05-29  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: kill some memory leaks and become really 
	frightened by the code in this applet. Fixes bug #83457

2002-05-26 John Fleck <jfleck@inkstain.net>

	* docs/C/gweather.xml
	updated to fix #81306 and clean up other UI/doc
	inconistencies

2002-05-23  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-pref.c: gconf sanity checks and report any errros.

2002-05-20  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-applet.c: add window icon. Also don't call gtk_main_quit
	on destroy

2002-05-13  Satyajit Kanungo <satyajit.kanungo@wipro.com>
	*. gweather-pref.c - Added a help button to the preference dialog box.
	   gweather-applet.c Put the error check condition in the help callback.

2002-05-10  Deepa Natarajan <deepa.natarajan@wipro.com>

        * .xml: added mnemonics for the popup menu

2002-05-09  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-pref.c, gweather.h: remove the proxy stuff since
	we now have a capplet for it

2002-05-07  Kevin Vandersloot <kfv101@psu.edu>

	* Locations - fix spelling error pointed out by
	 chips@chips.fr.eu.org - bug #80773

2002-04-29  Satyajit Kanungo <satyajit.kanungo@wipro.com>
	* Makefile.am - to include docs directory 
	* docs/Makefile.am - currently only locale "C" is supported 
	* gweather-applet.c,gweather-pref.c - Used the gnome help api to display 
	* the help document.
	* GNOME_GWeatherApplet.xml - Added "help" button.	

2002-04-27  Dennis Cranston <dennis_cranston@yahoo.com>

        * gweather-about.c:  "About..." dialog fixes -- change name
        to "Weather Report" to match name in "Add to panel" menu.
        Add the tstorm.xpm pixmap for the logo and window icon.

2002-04-28  Kevin Vandersloot <kfv101@psu.edu>

	* cast the dialogs to GTK_DIALOG. Also remove some unneded
	stuff

2002-04-23  Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>

       * Fixes bug #79459

2002-04-24  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: finnally get all the states. From Rikke Giles.
	Closes bug #76857

2002-04-20  Abel Cheung  <maddog@linux.org.hk>

	* gweather-about.c: Added translation_credit and documenters placeholders.

2002-04-09  Abel Cheung  <maddog@linux.org.hk>

	* gweather-pref.c (gweather_pref_create): Fix typo.

2002-04-07  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: update Hawaii, ohio, north carolina and rhode island
	from Rikke Giles. She rocks!

2002-04-04  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: check for NULL string when comparing and
	make sure we have sane defaults if gconf returns notghin. 
	Also, don't leak the strings returned from gconf. Should
	fix bug #74535

2002-04-02  Kevin Vandersloot <kfv101@psu.edu>

	* *.xml: change properties to preferences

	* gweather-pref.c, gweather-dialog.c: add mnemonics and
	change properties to preferences

2002-04-02  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: fix misspeling. From patch by leedjarv@interest.ee
	Fixes bug #77204

2002-04-02  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: more updates:
	* Andrew Van Overloop
	* David Hoover
	* Rikke Giles
	* Seth Hadley

2002-03-31  Kevin Vandersloot <kfv101@psu.edu>

	* Locations: Lot's of radar map updates from the following awesome
	people see bug #76857:
	* John Fleck
	* Alex Duggan
	* David Hoover
	* Rikke Giles
	* Andrew Van Overloop
	* Chad McHenry

2002-03-28  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: update the radar map download url for a better
	one

	* Locations: random updates including the city I'm in ;)

2002-03-24 Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>

        * gweather-pref.c: added functions add_atk_relation() and set_access_namedesc()        to set atk relation, accessible name and description to the widgets. 
        Also added gweather_pref_set_accessibility() to set accessibility to the               gweather preference dialog.
     
        * gweather-pref.h: declarations to add_atk_relation() and set_access_namedesc()
        
        * gweather-dialog.c: accessible name and description added to forecast textview        and radar link button.

2002-03-23  Deepa Chacko Pillai <deepa.chacko@wipro.com>
 
	* weather.c, weather.h: Removed the redundant conversion of pixbuf
	to pixmap.
 	* gweather-applet.c, gweather-dialog.c, gweather.h: Changed GtkPixmap 
	to GtkImage.
 
2002-03-18  Kevin Vandersloot <kfv101@psu.edu.

	* gweather-pref.c: focus_out_event returns a gboolean. 
	Fixes the crashes in this dialog

2002-03-18  Trevor Curtis <tcurtis@somaradio.ca>
	* docs/C/gweather.xml: created xml document
	* docs/C/legal.xml: legal info for document

2002-03-17  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-pref.c: Make proxy settings work and match those
	found in nautilus

2002-03-11  Kevin Vandersloot <kfv101@psu.edu>

	* Allow for custom radar map urls. Fixes bug #53871

2002-03-10  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-applet.c: on double click don't toggle the 
	forecast dialog - just show it.

2002-03-09  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: update the iwin url. Make forecasts work - bug #52518.

	* gweather-dialog.c: port forecast text to GtkTextView

	* gweather-pref.c: restart the timeout when user changes the
	pref for it. Hook up proxy prefs to gnome-vfs gconf values.
	First attempt at fixing bug #73578. Also remove the detailed
	forecast for now as local forecast are retrieved as a result
	of the previous fix.

	* gweather.schemas: remove the proxy stuff - they're handled
	by gnome-vfs automatically

2002-03-06  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-applet.c: don't call gnome_window_icon_ since
	it can cause crashes with bonobo applets. Also convert
	to metric here to fix bug #73600

	* gweather-pref.c: explicitly change the labels when
	metric units is toggled. Fix a typo in setting the update
	interval

	* weather.c: remove the metric gboolean global since it was
	causing bug #73600.

2002-03-05  Seth Nickell  <snickell@stanford.edu>

	* GNOME_GWeatherApplet_Factory.server.in:

	Change description, move into "Accessories".

2002-03-04  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-applet.c: fix bug #63251 by popping up the
	forecast on double click

2002-03-03  Bastien Nocera  <hadess@hadess.net>

	* Makefile.am: don't do gconf fu if DESTDIR is set

2002-02-28  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-applet.c: remove dumb error dialog when an
	update is in progress. Fixes bug #72843

	* weather.c: silently return if an update is in progress.
	Fix big memory leaks. Also clean up some indenting mess.
	Fix radar map retrieving. Test out new url for radars
	that actually displays recent maps - doesn't work
	for most cities though - see bug #53871

	* gweather-pref.c: fix memleaks. Hide the dialog when
	closed

	* gweather-dialog.c: don't hardcode font

2002-02-26  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-applet.c: use boxes instead of GtkFixed 
	so that labels don't get cut off and code is much
	simplified. Fixes bug #52369

	* weather.c: dont' spew error if info is NULL since
	we now check on startup

	* gweather-pref.c: #ifdef out the update on pref dialog
	closing because I think it is annoying

2002-02-27  Jamin P. Gray <jgray@writeme.com> 

	* Locations: Fixed some alphabetical disorder with the US states 

2002-02-25  Bastien Nocera  <hadess@hadess.net>

	* weather.c: (weather_location_new), (metar_finish_read),
	(metar_finish_open), (iwin_finish_open), (iwin_start_open):
	* weather.h: kill usage of fixed size strings, clean up

2002-02-25  Bastien Nocera  <hadess@hadess.net>

	* Locations: added Locations for Thailand (Fix:60226)
	get more locations from http://weather.noaa.gov/

2002-02-25  Bastien Nocera  <hadess@hadess.net>

	* Locations: add Ben-Gurion to the list of locations
	(Fix: 72310)

2002-02-25  Bastien Nocera  <hadess@hadess.net>

	* weather.c: (weather_info_to_metric), (weather_info_to_imperial):
	use hPa unit on metric systems (Fix:54483)

2002-02-25  Bastien Nocera  <hadess@hadess.net>

	* Locations: fix up the locations, I used
	hadess.net/files/stuff/weather.sh to get the infos
	(Fix: 31345)

2002-02-24  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c, gweather-applet: kill the applet global
	variable. Also remove a lot of debug spew

2002-02-24  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: remove some global variables to make
	multiple instances of gweather work

2002-02-25  Bastien Nocera  <hadess@hadess.net>

	* weather.c: (weather_location_new): check if the arguments are
	non-NULL before trying to copy them

2002-02-23  Kevin Vandersloot <kfv101@psu.edu>

	* fix the utf8 issues wrt the degrees symbol.

2002-02-22  Mark McLoughlin  <mark@skynet.ie>

	* gweather.desktop.in:
	* gweather.gnorba: remove these files

2002-02-20  Todd Kulesza  <fflewddur@dropline.net>

	* weather.c: initalize WeatherInfo's request_pending
	member to NULL and fix requests_init() to prevent
	multiple http requests.
	
	* gweather-pref.c: add a call to gweather_update()
	after the property dialog has been closed.
	
2002-02-19  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c, gweather-pref.c: change __inline to inline
	to fix compilation on Solaris. Pathc from Laszlo (Laca) Peter
	<laszlo.peter@ireland.sun.com>. Fixes bug #71933 

2002-02-17  Kjartan Maraas  <kmaraas@gnome.org>

	* gweather-applet.c, gweather-dialog.c: Remove calls to deprecated
	functions gtk_widget_push|pop_visual().
	
2002-02-17  Cody Russell  <bratsche@gnome.org>

	* gweather-applet.c: Got rid of BonoboUI XML data.  It's been moved.

	* GNOME_GWeatherApplet.xml: This is where it's been moved to!

2002-02-11  Kjartan Maraas  <kmaraas@gnome.org>

	* GNOME_MultiLoadApplet_Factory.server.in: Mark strings for l10n.
	
2002-02-11  Mark McLoughlin  <mark@skynet.ie>

	* GNOME_GWeatherApplet_Factory.server.in: move to Vertigo namespace.

	* main.c: update for factory macro change.

2002-02-03  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: remove the gnome-vfs handle global variables.
	Fix the bug with not finishing when the server is not contacted.

2002-02-06  Seth Nickell  <snickell@stanford.edu>

	* GNOME_GWeatherApplet_Factory.server.in:

	Call it "Weather Report"

2002-02-03  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-pref.c: port the ctree to treeview. Also make double
	click update the weather. Finnally don't update when the dialog
	is closed. also call gtk_window_)present if the prefs dialog
	already exists

	* weather.c: remove some old stuff

2002-02-02  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-applet.c: fix crash with NULL data passed to
	timeout. Fixes bug #70305. Thanks to markb@cs.columbia.edu
	for pointing out the fix

	* gweather.schemas: make detailed forecast and radar not on
	by default since they seem to have issues atm

2002-01-30  Kevin Vandersloot <kfv101@psu.edu>

	* gweather.schemas: add this file to cvs

2002-01-28  Todd Kulesza  <fflewddur@dropline.net>

	* gweather-pref.c, weather.c, weather.h,
	gweather.schemas, Makefile.am: Hook up GConf.
	
	* main.c: comment out "Help" from right-click menu until
	it actually does something.
	
	* gweather-dialog.c: change "OK" button to "Close" for
	HIG compliance.
	
	* gweather-about.c: remove link to defunct website and
	update description.
	
	* GNOME_GWeatherApplet_Factory.server.in: change name
	to "Weather Monitor".

2002-01-28  Kevin Vandersloot <kfv101@psu.edu>

	* main.c: remove include of http.h since it isn't used anymore
	
	* Makefile.am: dist Locations

2002-01-25  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-pref.c: port prefs dialog to GtkDialog and make
	it instant apply. Need
	to hook up to gconf and port the ctree to treeview

	* gweather-applet.c: Fix issue with changing the location

2002-01-18  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: some more fixes to get the detailed forecast, 
	and don't use the same string to store the different http
	data. Still doesn't work half the time and the radar map
	is not getting shown for some reason

	* gweather-pref.c: default to showing detailed forecast for
	debugging purposes

	* gweather-dialog.c: port to GtkDialog and don't crash on
	closing

2002-01-17  Kevin Vandersloot <kfv101@psu.edu>

	* gweather-applet.h: add right click menu, hook up to panel
	changed signals

	* main.c: remove some unneded stuff

2002-01-17 Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: neglect the last patch. Really fix the problem
	now. 

2002-01-17  Kevin Vandersloot <kfv101@psu.edu>

	* weather.c: make the applet work by changing info->valid=succes
	to info->valid = TRUE

2002-01-17  Kevin Vandersloot <kfv101@psu.edu>

	* Initial port to GNOME 2.0 by Todd Kulesza <fflewddur@dropline.net>
	Hook up to gnome-vfs and remove global variables. Doesn't quite
	work yet though

2002-01-09  Kjartan Maraas  <kmaraas@gnome.org>

	* gweather-pref.c: Change string to be more presise. Christian
	Marillat <marillat@debian.org>. Fixes #62387.
	
2001-07-03  Kjartan Maraas  <kmaraas@gnome.org>

	* weather.c: Apply fix for compilation on FreeBSD from
	<Peter.A.Jonsson@epl.ericsson.se>.
	
2001-07-02  Christopher R. Gabriel  <cgabriel@softwarelibero.org>

	* gweather-pref.c (gweather_pref_create): Typo

2001-06-20  Kjartan Maraas  <kmaraas@gnome.org>

	* gweather-pref.c: Remove C99 comments :)
	* gweather.h: Remove trailing commas from enums to fix compilation
	with IBMs AIX compiler (and probably other picky compilers).
	From Dan McNichol <mcnichol@austin.ibm.com>.
	
2001-06-17  Kjartan Maraas  <kmaraas@gnome.org>

	* gweather.c: Apply patch from <mdoller@wpi.edu> to make detailed
	forecast more readable. Also a patch for Locations to fix Salem,
	Portland and Eugene (Oregon) and a patch for temperature rounding.
	
2001-05-15  Jason Leach  <jasonleach@usa.net>

	* gweather-pref.c: Made some tiny code changes that would make the
	"Update Interval" spinner be in minutes.  Who wants to set the
	interval as seconds between 30s and 7200s?  Seems better to ask
	the user if they'd like weather updates every 2 minutes, or maybe
	every 5 or 10.

	* gweather-pref.c (gweather_pref_create): Other semi-major
	cosmetic changes to the preferences->General tab.

2001-04-18  Jason Leach  <jasonleach@usa.net>

	* gweather-pref.c (update_pref): Only bug the user about an
	invalid proxy URL when they've actually toggled the proxy to be
	used.
	(gweather_pref_run): Fix bug #53254 (and clean up some code in the
	process): Pesky error dialog that wouldn't close properly.

2001-02-20  Nat Friedman  <nat@ximian.com>

	* gweather-pref.c: Define RADARMAP by default.
	(gweather_pref_create): Rearranged the pages so that Location is
	first.  Renamed "Basic" to "General".
	(gweather_pref_load): Enable the radar maps by default.

	* gweather-applet.c (clicked_cb): Single left click brings up the
	preferences.
	(forecast_cb): New function to bring up the detailed-forecast
	dialog when the user selects the appropriate context menu item.
	(gweather_applet_create): Added the detailed-forecast menu item.
	(gweather_applet_create): Removed the shadow.

2001-02-11  Jason Leach  <jasonleach@usa.net>

	* gweather-pref.c (gweather_pref_create): Make the Properties
	dialog resizable.

2001-01-25  Alan Shutko  <ats@acm.org>

	* weather.c (iwin_parse): Strip CR from CRLF input.

	* gweather-applet.c (gweather_update): Removed check for
	update_enabled.  This was preventing updates from happening when
	you ask for them by menu.

2000-12-08  Jason Leach  <jasonleach@usa.net>

	* gweather-pref.c (gweather_pref_create): Changed window title for
	the properties dialog to "GNOME Weather Properties" from "Gweather
	Properties".

2000-12-07  Jason Leach  <jasonleach@usa.net>

	* gweather-dialog.c (gweather_dialog_create): Made the forecast
	page scrollable via mousewheel.

	* gweather-pref.c (gweather_pref_create): Made the Location CList
	scrollable via mousewheel.

Tue Nov 28 20:11:22 2000  George Lebl <jirka@5z.com>

	* gweather-applet.c, weather.[ch], Makefile.am:  Fixes, use of
	  snprintf, bound checking in bunch of places, get rid of usage
	  of g_return_if_fail for error checking, and port to gdk-pixbuf
	  from imlib.

Sat Nov 25 13:10:14 2000  George Lebl <jirka@5z.com>

	* gweather-applet.c, weather.c:  A couple of potential crash fixes
	  and cleanups

2000-11-06  Jason Leach  <leach@wam.umd.edu>

	* Locations (name): Fixed a typo of "Stockholm (Arianda)" which
	should be "Stockholm (Arlanda)".  Fixed bug #30370.

2000-06-01  Jason Leach  <leach@wam.umd.edu>

	* weather.c: replaced 5 bzero() calls with equivalent memset()
	calls, see man 3 bzero, "this function is deprecated, use memset
	in new programs", the reason appers to be mainly a portability
	thing.
	
	* weather.c (_weather_info_get_pixmap): There was no case for
	QUALIFIER_VICINITY, which is a valid possability for this switch,
	which meant that it sent users who have this in their weather
	report to a assert_not_reached() and then crashed; fixing bug
	#11806.

	(_weather_info_get_pixmap): Threw in a missing case for
	PHENOMENON_ICE_CRYSTALS, which is another valid possability that
	would otherwise give a user a assert_not_reached() and maybe crash.

2000-05-14  Andreas Hyden  <a.hyden@cyberpoint.se>

	* gweather.desktop: Added Swedish translation.

2000-04-27  Dan Mueth <d-mueth@uchicago.edu>

	* docs/C/*sgml: Added corrections suggested by Spiros and
	a couple other small fixes.
	* docs/C/*png: Updated/cleaned up a couple screenshots.

2000-04-25  Fatih Demir	<kabalak@gmx.net>
	
	* gweather.desktop : Added [tr] section .

2000-04-18  Dan Mueth <d-mueth@uchicago.edu>

	* gweather-pref.c: Moved help button link to point to preferences
	section of the docs

2000-04-18  Dan Mueth <d-mueth@uchicago.edu>

	* docs/C/Makefile.am: Added figures which were left
	out before

2000-04-20  Jonathan Blandford  <jrb@redhat.com>

	* gweather-pref.c (gweather_pref_run): Add a help button.  Hook it
	up.  My god, this code is crufty.  I mean really crufty.  I
	cleaned up a few things but quickly got scared...

2000-04-18  Dan Mueth <d-mueth@uchicago.edu>

	* docs/C/*: Added screenshots.  Moved to new templates.  Various
	small changes in documentation including improved markup.
	* gweather-applet.c: Fixed link from Help menuitem to docs.

2000-04-04  Jacob Berkman  <jacob@helixcode.com>

	* gweather-applet.c (gweather_applet_create): reorder menu items

Sun Apr 02 17:33:11 2000  George Lebl <jirka@5z.com>

	* Locations: MT was left out of the states list for US, while MO was
	  there twice.  Patch from: Rusty Conover <rconover@zootweb.com>

2000-03-16  Jacob Berkman  <jacob@helixcode.com>

	* gweather-applet.c (place_widgets): show the temperature on small
	panels

2000-03-15  Jason Leach  <leach@wam.umd.edu>

	* gweather-applet.c (gweather_applet_create): reorganized right
	click applet menu with About on top and Properties at the bottom

	* gweather-pref.c (gweather_pref_create): changed the window title
	for the properties dialog to "Gweather Properties" from just
	"Properties"

2000-03-14  Spiros Papadimitirou <spapadim+@cs.cmu.edu>

	* Included a small patch from Jacob Berkman (jacob@helixcode.com); shows
      location name in tooltip -- useful if running multiple instances).

2000-02-29  Jacob Berkman  <jacob@helixcode.com>

	* gweather-applet.c (gweather_applet_create): rearrange the menus
	and give help an icon

2000-02-23  Peter Hawkins  <peterhawkins@ozemail.com.au>

	* gweather-about.c: stopped about box from being shown multiple times at pnce.
 
2000-02-11  Jason Leach  <leach@wam.umd.edu>

	* weather.c (_weather_info_get_pixmap): fix bug #4746

2000-02-07  Spiros Papadimitriou  <spapadim+@cs.cmu.edu>

	* Locations: Added Russia (from Serge Matveev).
    * Fixed an error with pixel size stuff (if not present,
      compilation would fail).

2000-02-03  Jason Leach  <leach@wam.umd.edu>

	* Locations (name): kill bug #5711: added radar location for
	Rochester, MN.

Sun Jan 30 01:18:01 2000  Tom Gilbert  <gilbertt@tomgilbert.freeserve.co.uk>

	* The applet was starting at a set size, querying the weather
	server, *then* setting its size appropriately. On my slow modem,
	that meant it sat for 10 seconds before resizing to fit the panel
	size. Added a size/orientation check on startup to fix this.

Sat Jan 29 17:43:28 2000  Tom Gilbert  <gilbertt@tomgilbert.freeserve.co.uk>

	* On an anti-warning hunt using CFLAGS="-O6 -g -W -Wall
        -Wmissing-prototypes -Wmissing-declarations". Don't mind me.

Sun Oct 31 16:45:31 1999  George Lebl  <jirka@5z.com>

	* gweather-applet.c: use pixel size stuff

1999-08-15  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* gweather.desktop (Icon): Use our icon

	* pixmaps/Makefile.am (gweather_iconsdir): install an
	icon for us

1999-08-12  Kjartan Maraas  <kmaraas@online.no>

	* gweather.c: fixed a typo.
	
1999-08-01  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* gweather-applet.c (gweather_applet_create): use
	the stock refresh image on the 'update' menu

1999-07-30  Spiros Papadimitriou <spapadim+@cs.cmu.edu>

    * Each applet now properly saves its configuration, so
      multiple applets displaying the weather at different
      locations can run without interfering with each other.
    * Changed upper limit of update interval to 2hrs.

1999-07-28  Spiros Papadimitriou <spapadim+@cs.cmu.edu>

    * More radar locations into Locations file (now using
      weather.com instead of wx.com; awaiting official response
      from weather.com for using their service on the web).
    * Improved (or at least changed ;) hunderstorm icon.

1999-07-25  Spiros Papadimitriou <spapadim+@cs.cmu.edu>

    * Use Gtk idle timeouts to process HTTP requests in the
      background, so the interface does not freeze during updates.
    * Made the background transparent on most icons.

1999-07-18  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* gweather-applet.c (gweather_applet_create): don't use
	PACKAGE here, use "gweather" instead, so we don't get
	~/.gnome/gnome-applets as a config file

1999-07-18 Spiros Papadimitriou <spapadim+@cs.cmu.edu>

    * Sync gnome CVS version with my tree.


1999-07-18  Jacob Berkman  <jberkman@andrew.cmu.edu>

	* Makefile.am: added pixmaps directory, set up for building
	from gnome CVS

	* gweather-pref.c (load_locations): use gnome_datadir_file()
	instead of confdefs.h


1999-07-15 Spiros Papadimitriou <spapadim+@cs.cmu.edu>

    * Display of radar maps is now a runtime option (now
      compile-time) and windows are destoyed when not displayed,
      to free up X resources...
    * Properly respond to "change_size" and "save_session" applet
      signals.
    * Added proxy option.


1999-07-13 Spiros Papadimitriou <spapadim+@cs.cmu.edu>

    * Better support for users with a dialup connection.


1999-07-11 Spiros Papadimitriou <spapadim+@cs.cmu.edu>

    * Fixed a stupid, but serious bug, that would cause coredumps
      upon updates...
    * Added option for detailed zone forecasts, instead of the more
      general state forecasts (takes more time to update, though,
      since the zone forecast file is about 10-20 times that of the
      state forecast file).  

1999-07-07 Spiros Papadimitriou <spapadim+@cs.cmu.edu>

    * Fixed bug ocurring when METAR information is unavailable.
    * Replaced the gnome_less widget with a gtk_text + scrollbar,
      because it did strange things, so I worked around it.
    * Removed all regexps but one (got an occasional coredump when
      calling regcomp from metar_init_re that I couldn't figure out,
      so I worked around it).  The current C code isn't as comprehensive
      as the regexps were, but it should suffice (unless the METAR
      format contains any unexpected tokens).
    * Fixed a bug in the UTC to localtime conversion function (near
      midnight, would get time one hour early).  There should be a
      much simpler and less stupid way to do this, though! :-)
    * Changed the humidity formula.
    * Fixed a bug in the IWIN parser to handle a more general form of
      inputs (the old one would fail an assertion and dump core in
      forecasts where SFPxx was not used as expected) -- now uses regexps.
    * Fixed the layout for horizontal orientation (still need to take
      care of three digit temps).

1999-07-07 Spiros Papadimitriou <spapadim+@cs.cmu.edu>

    * Began ChangeLog