File: ChangeLog

package info (click to toggle)
dates 0.4.6-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,532 kB
  • ctags: 730
  • sloc: ansic: 9,912; sh: 9,255; makefile: 151
file content (2870 lines) | stat: -rw-r--r-- 103,508 bytes parent folder | download
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
2008-02-27  Rob Bradford  <rob@openedhand.com>

	* NEWS:
	* README:
	* configure.ac:
	Release Dates 0.4.6.

2008-02-27  Chris Lord  <chris@openedhand.com>

	* src/dates_callbacks.c: (dates_delete_cb):
	Use a HildonNote instead of a GtkDialog so we get the hildon icon
	(#809, thanks Thomas Perl)

2008-02-27  Chris Lord  <chris@openedhand.com>

	* src/dates_callbacks.c: (dates_date_changed_cb):
	* src/dates_view.c: (dates_view_refresh_day_layouts),
	(dates_view_refresh_month_layouts), (dates_view_draw_event_list):
	Convert strings from strftime/nl_langinfo to UTF-8 from locale
	encoding (#803, thanks Georges Da Costa)

2008-02-22  Chris Lord  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_refresh):
	Use timezone when refreshing current time (#192, thanks Thomas Perl).

2008-02-22  Ross Burton  <ross@openedhand.com>

	* src/dates_main.c:
	Call g_set_application_name.
	
	* src/dates_callbacks.c:
	Don't set "name" in the about dialog.

2008-02-20  Chris Lord  <chris@openedhand.com>

	* src/dates_callbacks.c: (dates_calendar_combo_changed_cb):
	Fix #598

2008-02-19  Chris Lord  <chris@openedhand.com>

	* configure.ac:
	Use $enableval instead of hard-coded 'no' - fixes --enable-dnd and
	--enable-debug

2008-02-19  Chris Lord  <chris@openedhand.com>

	* src/dates_gtk.c: (create_main_window), (create_time_dialog),
	(calendar_do_new_dialog), (calendar_do_edit_dialog):
	* src/dates_hildon.c: (create_main_window):
	Remove Pango markup in gettext strings (#767, thanks Thomas Perl).

2008-02-17  Ross Burton  <ross@openedhand.com>

	* src/dates_callbacks.c:
	* src/dates_main.c:
	Mark more strings for translation (#656, thanks Stéphane Raimbault).

2007-12-06  Rob Bradford  <rob@openedhand.com>

	* NEWS:
	* README:
	* configure.ac:
	Release Dates 0.4.5

2007-12-06  Rob Bradford  <rob@openedhand.com>

	* configure.ac:
	* src/dates_callbacks.c: (dates_details_time_cb):
	* src/dates_gtk.c: (calendar_do_new_dialog),
	(calendar_do_edit_dialog):
	* src/dates_hildon.c: (dates_platform_init):
	* src/dates_types.h:
	Update to latest Hildon.

2007-12-06  Rob Bradford  <rob@openedhand.com>

	* data/Makefile.am:
	Add dates-64.png to the EXTRA_DIST

2007-12-06  Rob Bradford  <rob@openedhand.com>

	* data/Makefile.am:
	Add 64x64 png for icon.

2007-11-15  Ross Burton  <ross@openedhand.com>

	* src/dates_gtk.c:
	Add ellipsis to Import, as per HIG (#536, thanks Michael Monreal).

2007-11-15  Loïc Minier  <lool@dooz.org>

	* src/dates_gtk.c: (dates_platform_import_dialog):
	Translate import dialog title as well (#551).

2007-11-14  Ross Burton  <ross@openedhand.com>

	* data/dates.desktop.in:
	Remove Encoding (deprecated) and rename SingleInstance to
	X-MB-SingleInstance.

2007-08-28  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_callbacks.c:
	Reinstate my name as author, as I wrote most of this code. Also credit
	Rob Bradford and change tab-width to 8 as most of the code is written
	for that.

2007-08-13  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_update_query):
	Fix a couple of memory leaks

2007-07-12  Ross Burton  <ross@openedhand.com>

	* src/Makefile.am:
	Don't install the datesview headers.

2007-07-12  Rob Bradford  <rob@openedhand.com>

	* NEWS:
	* README:
	* configure.ac:
	Release Dates 0.4.4

2007-07-12  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_main_button_release_cb):
	Remove spurious debug message.

2007-07-12  Chris Lord  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_main_button_release_cb):
	Fix an infinite loop bug when moving an event backwards in January

2007-07-05  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_toolbar):
	For those buttons without text use gtk_container_add (...) rather that
	gtk_button_set_image. This works better when text is disabled on
	buttons in the theme (e.g. sato.)
	Switch over to using the correct version of the stock names.

2007-06-06  Ross Burton  <ross@openedhand.com>

	* src/Makefile.am:
	Don't install the dateview library, and remove --export-dynamic
	(added for glade).

2007-06-06  Ross Burton  <ross@openedhand.com>

	* configure.ac:
	Remove AM_MAINTAINER_MODE.

2007-06-04  Rob Bradford  <rob@openedhand.com>

	* NEWS:
	* README:
	* configure.ac:
	Release Dates 0.4.3.

2007-05-24  Ross Burton  <ross@openedhand.com>

	* src/dates_gtk.c:
	Use slightly more verbose strings in the (non-functional)
	recurring editor. This is to make it translatable into any other
	language.

2007-05-01  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_top_expose):
	Really fix clipping problem.

2007-05-01  Rob Bradford  <rob@openedhand.com>

	* src/dates_callbacks.c: (dates_import_cb):
	* src/dates_callbacks.h:
	* src/dates_gtk.c: (dates_platform_import_dialog):
	* src/dates_platform.h:
	Refactor import code to make suitable for porting.

2007-05-01  Rob Bradford  <rob@openedhand.com>

	* src/dates_callbacks.c: (dates_import_calendar_data_from_file),
	(dates_import_cb):
	* src/dates_callbacks.h:
	Add import functionality.

	* src/dates_gtk.c: (create_main_menu):
	Add 'Import' to the menu.

2007-04-23  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_top_expose):
	Fix little clipping problem where the bottom of the text was clipped
	off when drawing the days of the week at the top.

2007-04-17  Rob Bradford  <rob@openedhand.com>

	* src/dates_callbacks.c: (dates_zoom_in_cb), (dates_zoom_out_cb):
	Correct the zoom levels, have 24 hours for 7 days and 12 hours for 5
	days.

2007-04-17  Rob Bradford  <rob@openedhand.com>

	* NEWS:
	* README:
	* configure.ac:
	Release Dates 0.4.2.

2007-04-17  Rob Bradford  <rob@openedhand.com>

	* src/dates_main.c: (dates_load_calendars):
	Fix compiler warnings.

2007-04-17  Rob Bradford  <rob@openedhand.com>

	* src/dates_callbacks.c: (dates_zoom_in_cb), (dates_zoom_out_cb):
	Add an extra zoom level for full week. This is between month and
	working week.

2007-04-17  Rob Bradford  <rob@openedhand.com>

	* src/dates_main.c: (dates_load_calendars):
	If we come across a group with a base_uri that begins file:/ also
	correct the uri setup for the system calendar. This will mean that the
	detection in the edit dialog (preventing the deletion of the system
	calendar) will work correctly.

2007-04-17  Rob Bradford  <rob@openedhand.com>

	* src/dates_main.c: (dates_load_calendars):
	Check that the base_uri for the local group begins with file:// and if
	not make it begin with this (rather than file:/). This fixes a crash
	seen when trying to add a new calendar on devices where an older
	version of Dates has been upgraded to current.

2007-04-16  Ross Burton  <ross@openedhand.com>

	* data/dates.desktop.in:
	Remove Application and GTK, they are not valid categories.

2007-04-13  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (dates_platform_pre_show):
	* src/dates_main.c: (main):
	Move the setting of the default icon for the windows before the
	first window is created.

2007-04-13  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_toolbar):
	Totally refactor the toolbar code to remove the Glade autogen
	insanity.

2007-04-13  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_toolbar):
	Fix compilation problems.

2007-04-13  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_toolbar):
	Make the Today button use gtk_button_set_image (...)

2007-04-12  Rob Bradford  <rob@openedhand.com>

	* NEWS:
	* README:
	* configure.ac:
	Release 0.4.1.

2007-04-12  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (calendar_do_new_dialog):
	Fix segfault condition if no calendar type is chosen from the drop
	down box. Now default to the local calendar choice. Spotted by
	Pierpaolo Toniolo.

2007-04-12  Rob Bradford  <rob@openedhand.com>

	* NEWS:
	* README:
	* configure.ac:
	Release 0.4.0.

2007-04-12  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (calendar_do_edit_dialog):
	Remove bogus printf.

2007-04-12  Rob Bradford  <rob@openedhand.com>

	* src/Makefile.am:
	Make the distcheck pass.

2007-04-11  Rob Bradford  <rob@openedhand.com>

	* dates.doap:
	Add myself to the DOAP file.

2007-04-11  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (calendar_do_new_dialog),
	(calendar_do_edit_dialog):
	Use the HildonColorButton when compiling with Hildon support.

2007-04-11  Rob Bradford  <rob@openedhand.com>

	* src/dates_hildon.c: (create_toolbar), (create_time_dialog):
	Build fixes from prior changes (the switch from an Open button to an
	Edit one.)
	Use the new dates icon.

2007-04-11  Rob Bradford  <rob@openedhand.com>

	* data/Makefile.am:
	Fix the build system so that it creates the scalable directory in the
	icon theme.

2007-04-11  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_draw_event):
	Check the version for Pango (pango_layout_get_line_readonly) is only
	available in 1.16 and later.

2007-04-11  Rob Bradford  <rob@openedhand.com>

	* Makefile.am:
	Add libowl directory to SUBDIRS.

	* configure.ac:
	Add an --enable-owl flag.
	Populate GTK_ variables (used by libowl/Makefile.am)

	* libowl/Makefile.am:
	* libowl/owlcolourbutton.c: (owl_colour_button_get_property),
	(owl_colour_button_set_property), (owl_colour_button_dispose),
	(owl_colour_button_finalize), (owl_colour_button_class_init),
	(button_clicked), (owl_colour_button_get_colour),
	(owl_colour_button_set_colour), (owl_colour_button_init),
	(owl_colour_button_new):
	* libowl/owlcolourbutton.h:
	* libowl/owlcolourpalette.c: (owl_colour_palette_get_property),
	(owl_colour_palette_set_property), (owl_colour_palette_dispose),
	(owl_colour_palette_finalize), (owl_colour_palette_class_init),
	(owl_colour_palette_init), (button_clicked),
	(owl_colour_palette_new), (owl_colour_palette_set_colours):
	* libowl/owlcolourpalette.h:
	* libowl/owlcolourselectordialog.c:
	(owl_colour_selector_dialog_orientation_get_type),
	(owl_colour_selector_dialog_get_property),
	(owl_colour_selector_dialog_set_property),
	(owl_colour_selector_dialog_dispose),
	(owl_colour_selector_dialog_finalize),
	(owl_colour_selector_dialog_constructor),
	(owl_colour_selector_dialog_class_init), (colour_selected_cb),
	(owl_colour_selector_dialog_get_colour),
	(owl_colour_selector_dialog_set_colour),
	(owl_colour_selector_dialog_init),
	(owl_colour_selector_dialog_new_with_orientation),
	(owl_colour_selector_dialog_new):
	* libowl/owlcolourselectordialog.h:
	* libowl/owlcolourswatch.c: (owl_colour_swatch_get_property),
	(owl_colour_swatch_set_property), (owl_colour_swatch_dispose),
	(owl_colour_swatch_finalize), (update_pixbuf), (expose_event),
	(owl_colour_swatch_class_init), (owl_colour_swatch_init),
	(owl_colour_swatch_new), (owl_colour_swatch_set_colour),
	(owl_colour_swatch_get_colour):
	* libowl/owlcolourswatch.h:
	Add OwlColourButton and dependencies from libowl with a modified
	Makefile.am

	* src/Makefile.am:
	* src/dates_gtk.c: (calendar_do_new_dialog),
	(calendar_do_edit_dialog):
	Use libowl when USE_OWL is set (when --enable-owl=true.)

2007-04-11  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (dates_platform_details_dlg):
	Fix compiler warnings.

2007-04-11  Rob Bradford  <rob@openedhand.com>

	* src/dates_callbacks.c: (dates_about_cb):
	Update about box.

2007-04-11  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_draw_event):
	Remove unnecessary debug code/whitespace.

2007-04-11  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_draw_event):
	Improve the partial line drawing text for events.

2007-04-10  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_drag_motion):
	Add missing cast.

2007-04-10  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_drag_motion):
	Use gtk_drag_check_threshold to decide when to start the dragging
	around of events. (OH Bugzilla #127.)

2007-04-10  Rob Bradford  <rob@openedhand.com>

	* src/dates_main.c: (main):
	Ensure that the first first entry in the calendars list is always
	selected.

2007-04-10  Rob Bradford  <rob@openedhand.com>

	* data/Makefile.am:
	Install 22x22 version of the icon and the svg icon.

	* data/dates.svg:
	Add svg version of new icon.

	* data/dates-*.png:
	New icons.

	* src/dates_gtk.c: (dates_platform_pre_show):
	* src/dates_hildon.c: (dates_platform_pre_show):
	Use 'dates' icon for the application.

2007-04-10  Rob Bradford  <rob@openedhand.com>

	* src/dates_types.h:
	Add a pointer to the GtkNotebook used in the details dialog to the
	DatesData struct.

	* src/dates_gtk.c: (create_details_dialog):
	Set the pointer in the DatesData struct.
	
	* src/dates_gtk.c: (dates_platform_details_dlg):
	Switch to the first tab in the details dialog when showing the dialog.

2007-04-10  Rob Bradford  <rob@openedhand.com>

	* src/dates_callbacks.c: (dates_event_selected_cb),
	(dates_edit_cb):
	* src/dates_callbacks.h:
	* src/dates_gtk.c: (create_toolbar):
	* src/dates_main.c: (connect_callbacks_view):
	* src/dates_types.h:
	Switch open stock icon for edit stock icon and update the name of the
	widgets and functions appropriately.

2007-04-10  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_draw_event):
	Adjust the clipping region used when drawing the event summary layout
	so that as many lines as possible can be drawn.

2007-04-03  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (calendar_do_new_dialog),
	(calendar_do_edit_dialog_response_cb), (calendar_do_edit_dialog),
	(calendars_response_cb):
	Some small changes to make maintaining other branches easier by making
	some definitions conditional.

2007-03-29  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_finalize),
	(dates_view_refresh_date_pixmaps), (dates_view_main_expose):
	Prerender the date boxes in the corner to a pixmap and then copy that
	pixmap in when drawing the box in the corner. The exception is for the
	selected day or if the day being drawn is today. These are drawn using
	the original code.

2007-03-29  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_draw_event):
	Fix a bug where the stippling was applied to all events when an event
	was being moved.

2007-03-29  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_init), (dates_view_main_expose):
	Improve the detection code that decides whether to show the Marcus
	Bains line or not. Relies on the fact that an unconfigured Evolution
	(required on first run) will have have the location set to UTC which
	isn't valid.

2007-03-29  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_main_expose):
	Only show the Marcus Bains line if we were able to fetch out the
	timezone key from GConf for Evolution. This will mean it won't be
	shown on Maemo but it will still be incorrect on the desktop when the
	user hasn't run Evolution to set their timezone. Need to figure out
	stuff wrt to timezones in Dates 0.5, try and get the information from
	as many sources as possible and then revert to asking the user :-(.

2007-03-29  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_side_expose):
	Draw the text down the left hand side in black.

2007-03-29  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_draw_event):
	Only show text in the events if it will fit vertically. Really this
	code needs looking at again because if the event summary were spread
	over multiple lines and one of those lines could be visible then at
	least that line should be shown.

2007-03-28  Chris Lord  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_draw_event):
	Fix compiler warning on stipple string and fix critical warning trying
	to retrieve days in month when dragging/sizing an event.

2007-03-28  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_init), (dates_view_top_expose):
	Use widget->style->black rather than defining our own. Thanks to
	Chris for pointing this out.

2007-03-28  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_init):
	Create a black GdkColor object.

	* src/dates_view.c: (dates_view_top_expose):
	Draw the name of the days in black when at month or week level (rather
	than grey.)

2007-03-28  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_init), (dates_view_draw_event):
	Stipple those events that appear outside the month to make this clear.

	* src/dates_view.c: (dates_view_main_expose):
	Setup the line attributes of the GC so that the box in the corner
	containing the date is thickened like the border if the day is
	selected.
	Make the line dashed when drawing the line representing the current
	time.

2007-03-28  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_init):
	Make the grey darker.

2007-03-28  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_main_expose):
	Make the date number in the box in the corner of the day black except
	when the date is today. It used to be grey with black reserved for the
	selected day.

2007-03-28  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_init), (dates_view_main_expose):
	Make the background for the day a light grey if the day is from
	outside the current month/week.

2007-03-28  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_main_expose):
	Show the date for the extra days as well.

2007-03-27  Chris Lord  <chris@openedhand.com>

	* src/dates_view.c:
	Draw events from the previous/next month when there's space available
	to draw them. Also use constant colours instead of theme colours;
	probably needs some tweaking for prettiness.

2007-03-27  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_refresh_date_layouts):
	Make the boxes in the corner 1.5 times the maximum size needed for the
	bounding box for the day number. 1.25 was too small on the N800.

2007-03-27  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_refresh_date_layouts):
	Keep track of the size of the biggest bounding box that the day number
	would ever occupy and use this to calculate the size for a box in the
	top corner of the day.

	* src/dates_view.c: (dates_view_draw_event):
	Ensure that the text for the event would not overlap with the corner
	box by indenting it.

	* src/dates_view.c: (dates_view_main_expose):
	Draw the corner box with the day number centred inside it.

2007-03-27  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_details_dialog), (create_time_dialog),
	(entry_changed), (combo_box_changed), (calendar_do_new_window),
	(calendar_do_edit_window_response_cb), (calendar_do_edit_window),
	(calendars_response_cb), (create_calendars_dialog),
	(create_exceptions_dialog), (create_main_menu):
	Fix compiler warnings.

2007-03-26  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_details_dialog):
	#ifdef 0 out the declarations for the widgets used in the disabled
	recurrences stuff in the details dialog. This is to try and reduce the
	number of warnings whilst allowing us to keep the code around for
	future development.

2007-03-26  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (calendar_do_edit_window_response_cb),
	(calendar_do_edit_window):
	Move the code that brings up the delete confirmation dialog into a
	callback hooked onto the response signal. This allows us to then stop
	the emission of the signal and thus prevents gtk_dialog_run returning
	in the case of the user cancelling the delete. Thanks to Emmanuele for the
	inspiration.

2007-03-26  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_details_dialog), (create_time_dialog),
	(create_calendars_dialog), (create_exceptions_dialog):
	Switch to using gtk_dialog_add_button rather than manually adding the
	button to the action area. I think this was glade autogenerated :-(.

2007-03-22  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_main_motion_notify_cb):
	Switch to using GDK_INVERT rather than GDK_XOR. This gives a better
	outline colour when dragging with a dark coloured calendar colour.

2007-03-22  Rob Bradford  <rob@openedhand.com>

	* src/dates_callbacks.c: (dates_cal_open_cb):
	Work around a strange bug where e_cal_is_read_only gives the wrong
	result with eds-dbus for the http backend. Looks like some kind of
	stack corruption or something.

2007-03-22  Rob Bradford  <rob@openedhand.com>

	* src/dates_callbacks.c: (dates_load_esource),
	(dates_update_calendars):
	Set the calendar mode to remote for all calendars. This seems to be
	necessary for accessing remote calendars in some cases (when not
	running not running on the desktop?)

2007-03-21  Rob Bradford  <rob@openedhand.com>

	* src/dates_types.h:
	Add an ESourceList to the DatesData struct to be shared by everything
	that uses it. This sharing also avoids a strange bug (in either gconf
	(likely) or eds-dbus (less likely) where the list isn't updated
	properly without restarting the application.

	* src/dates_callbacks.c: (dates_gconf_selected_cb):
	* src/dates_gtk.c: (calendar_do_new_window),
	(calendar_do_edit_window), (calendars_response_cb):
	Use list from the struct rather than create a new one.

	* src/dates_main.c: (dates_load_calendars):
	After creating the list update the DatesData struct.

2007-03-21  Rob Bradford  <rob@openedhand.com>

	* src/Makefile.am:
	Use -std=c99 for building.

2007-03-20  Rob Bradford  <rob@openedhand.com>

	* src/dates_callbacks.c: (dates_cal_open_cb):
	Remove the code for creating the group & source on first start from
	the callback. It is better implemented elsewhere.

	* src/dates_main.c: (dates_load_calendars), (main):
	Improve calendar setup/first run detection:
	- If there are zero groups in the list create new 'local' group and
	  create a system calendar to put in it. (First run.)
	- Create group with a base_uri of "webcal://" if not already present.
	- That the sources are correctly setup inside their groups.
	  (Correct old first run behaviour.)

2007-03-20  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_details_dialog):
	Setup the signal in the details dialog on the correct widget for the
	delete button.

2007-03-19  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (entry_changed), (combo_box_changed),
	(calendar_do_new_window), (calendar_do_edit_window),
	(calendars_response_cb), (create_calendars_dialog),
	(dates_platform_calendars_dlg):
	Add calendar creation & editing code.

2007-03-19  Rob Bradford  <rob@openedhand.com>

	* src/dates_callbacks.c: (dates_load_esource),
	(dates_update_calendars):
	Use FALSE for only_if_exists to e_cal_open. This is important when
	opening a newly created calendar.

2007-03-12  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_main_menu):
	Disable edit menu. It's not hooked up to anything.

2007-03-12  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_details_dialog),
	(dates_platform_details_dlg):
	* src/dates_types.h:
	Make delete button only show up in the details dialog when editing an
	existing entry rather than creating a new one.

2007-03-08  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_set_visible_hours):
	Fix a compiler warning.

2007-03-08  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_update_scrollability):
	Set the increments on the adjuster to sensible values.

2007-03-08  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_set_visible_hours):
	Remove some code that has now been duplicated in the
	dates_view_update_scrollability function.

	* src/dates_view.c: (dates_view_update_scrollability):
	Notify the adjuster that the value has changed as well as the range.

2007-03-07  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_main_window):
	* src/dates_hildon.c: (create_main_window):
	* src/dates_view.c: (dates_view_set_scroll_adjustments):
	Solve compiler warnings that I introduced.

2007-03-07  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_set_visible_hours), 
	(dates_view_update_scrollability):
	Move the code that controls the scrollability of the view into a
	separate function so that it is easy to replace in derived versions.

2007-03-07  Rob Bradford  <rob@openedhand.com>

	* src/dates_hildon.c: (create_main_window):
	Apply the same change to the Hildon version as to the GTK version.
	That is to say adding the DatesView widget into a surrounding
	GtkScrolledWindow.

2007-03-07  Rob Bradford  <rob@openedhand.com>

	* src/dates_gtk.c: (create_main_window):
	Surround the DatesView widget with a GtkScrolledWindow. Since the
	policy on the vertical GtkScrollBar is set to GTK_POLICY_AUTOMATIC it
	will only show the scrollbar if the widget tells it to

	* src/dates_view.c: (_gtk_marshal_VOID__OBJECT_OBJECT):
	Copy and paste code from the GTK source code. Needed to set up
	set_scroll_adjustments signal handler.

	* src/dates_view.c: (dates_view_class_init):
	Setup the set_scroll_adjustments signal allowing the DatesView widget
	to be scrollable.
	
	* src/dates_view.c: (dates_view_init):
	Remove the unnecessary creation of the GtkAdjustment (the adjustment
	is provided the surrounding GtkScrolledWindow.)

	* src/dates_view.c: (dates_view_set_visible_hours),
	Set the range and values for the adjuster dependent on the number of
	hours visible. If we are in a mode other than day this code will
	simply zero the range and thus make the scrollbars disappear.

	* src/dates_view.c: (dates_view_set_scroll_adjustments):
	Set the internal pointer to the GtkAdjustment to the the GtkAdjustment
	provided by the surrounding GtkScrolledWindow widget.

	* src/dates_view.h:
	Add the function pointer for the set_scroll_adjustments signal to the
	DatesViewClass struct.

2007-03-07  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_init),
	(dates_view_main_scroll_event), (dates_view_set_visible_hours):
	Remove the vscroll (vertical GtkScrollBar) widget from the DatesView
	widget. The aim is to have behaviour like GtkTreeView where the
	scrolling is handled by a GtkScrolledWindow into which the DatesView
	widget is placed.

2007-03-07  Rob Bradford  <rob@openedhand.com>

	* src/dates_view.c: (dates_view_calc_pan),
	(dates_view_main_scroll_event), (dates_view_side_expose),
	(dates_view_set_visible_hours):
	Add a scrollable flag to the DatesViewPrivate struct.
	Use this flag to test for the scrollability of the view rather than
	for the visibility of the vscroll widget.

2007-02-28  Tomas Frydrych  <tf@openedhand.com>

	* dates_callbacks.h:
	* dates_callbacks.c:
	* dates_main.c:
	Fix calendar autoselection when creating new calendar on the 
	first load.

2007-02-15  Ross Burton  <ross@openedhand.com>

	* configure.ac:
	Remove hard-coded prefix=/usr for Maemo.

2007-02-03  Chris Lord  <chris@openedhand.com>

	* configure.ac:
	* NEWS:
	Update to version 0.3.1

2007-0-03  Olivier Le Thanh Duong,,, <olivier@lethanh.be>

	* configure.ac
	* LINGUAS:
	Modified the intltool part to make use of a LINGUAS file
	following GnomeGoals #2
	see http://live.gnome.org/GnomeGoals/PoLinguas

	* po/POTFILES.in:
	Updated to reflect the change of the previous refactoring

	* po/fr.po: 
	Updated French translation

2007-02-03  Chris Lord  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_get_region):
	Fix December month/day view (bug #172)

2007-02-02  Ross Burton  <ross@openedhand.com>

	* Makefile.am:
	* data/Makefile.am:
	* src/Makefile.am:
	* po/POTFILES.in:
	Fix distcheck.
	
	* configure.ac:
	* NEWS:
	Version 0.3.

2007-01-26  Thomas Wood  <thomas@openedhand.com>

	* dates.doap: Added

2007-01-25  Ross Burton  <ross@openedhand.com>

	* src/dates_callbacks.c:
	Use defines for the Maemo hard keys.

2007-01-25  Ross Burton  <ross@openedhand.com>

	* data/dates.1:
	* data/Makefile.am:
	Add basic manpage by Kestutis Biliunas.

2007-01-08  Ross Burton  <ross@openedhand.com>

	* src/dates_types.h:
	* src/dates_main.c:
	Define and use DATES_GCONF_WINDOW so that the window position keys
	are not stored as /apps/dates_*.

2006-12-05  Tomas Frydrych,,,  <tf@o-hand.com>

	* Refactoring to remove glade dependency and split UI creation
	into separate fronte-ends.
	
2006-08-09  Olivier Le Thanh Duong,,,  <olivier@lethanh.be>

	* po/fr.po
	* configure.ac
	Add French translation

2006-08-02  Kang Jeong-Hee,,,  <keizie@gmail.com>

	* data/dates.glade:
	Add calendar selection dialog
	
	* src/dates_main.c: (dates_ical_drop_cb), (dates_backend_died_cb),
	(dates_calendars_dialog_cb), (dates_sources_changed_cb),
	(is_in_uids), (dates_cal_open_cb), (dates_update_calendars),
	(dates_load_calendars), (dates_window_state_cb),
	(dates_cal_key_press_cb), (create_toolbar),
	(dates_button_press_cb), (dates_autoconnect), (main):
	Add the start of calendar editing code (allows selection of visible
	calendars for the moment)

2006-07-21  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Remove hidden location field and message banner in details dialog
	
	* src/dates_main.c: (dates_fill_details_dialog),
	(dates_save_changes), (dates_select_event_idle_cb),
	(dates_calendar_combo_changed_cb), (main):
	- Try to combine location and description fields in a non-destructive
	  manner
	  
	* src/dates_view.c: (dates_view_finalize), (dates_view_init),
	(dates_view_make_event_layouts), (dates_view_calc_zoom),
	(dates_view_draw_event_emblems), (dates_view_draw_event_list),
	(dates_view_draw_event):
	- Draw emblems on events with alarms
	- Print location as well as description on event at week/day view

2006-07-21  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_main_expose):
	- Fix rendering on first week-view of January and month-view of December

2006-07-20  Chris Lord,,,  <chris@openedhand.com>

	* configure.ac:
	- Add configure option for drag and drop support
	
	* data/dates.glade:
	- Add signal for drag and drop ical import
	
	* src/dates_main.c: (dates_commit_event_cb), (dates_new),
	(dates_event_moved_cb), (dates_event_sized_cb),
	(dates_details_time_cb), (dates_details_update_time_label),
	(dates_details_time_start_cb), (dates_details_time_end_cb),
	(dates_details_close_cb), (dates_save_changes),
	(dates_select_event_idle_cb), (dates_new_cb), (load_esource),
	(dates_backend_died_cb), (dates_sources_changed_cb),
	(dates_cal_open_cb), (is_in_uids), (dates_update_calendars),
	(main):
	- Store default calendar instead of iterating over list each time
	- Don't crash when there's no default calendar set/enabled
	- ical import via DatesView ical_drop signal
	
	* src/dates_view.c: (dates_view_class_init),
	(dates_view_set_property), (dates_view_get_property),
	(dates_view_config_get_tzid), (dates_view_config_get_24h),
	(dates_view_finalize), (dates_view_redraw), (dates_view_refresh),
	(dates_view_refresh_month_layouts), (dates_view_init),
	(dates_view_drag_data_received), (dates_view_drag_data_get),
	(dates_view_event_data_sort), (dates_view_make_event_layouts),
	(dates_view_find_event), (dates_view_find_calendar_cb),
	(dates_view_objects_changed), (dates_view_objects_removed),
	(dates_view_point_in), (dates_view_add_region),
	(dates_view_get_region), (dates_view_in_region),
	(dates_view_scroll_value_changed), (dates_view_calc_pan),
	(dates_view_calc_zoom), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_main_button_press),
	(dates_view_main_motion_notify_cb),
	(dates_view_main_motion_notify), (dates_view_key_press),
	(dates_view_add_calendar), (dates_view_free_calendar),
	(dates_view_remove_calendar), (dates_view_remove_all_calendars),
	(dates_view_set_selected_event), (dates_view_set_single_click),
	(dates_view_set_snap), (dates_view_set_week_start),
	(dates_view_set_months_in_row), (dates_view_set_visible_months),
	(dates_view_set_visible_days), (dates_view_set_visible_hours),
	(dates_view_set_date), (dates_view_set_use_list),
	(dates_view_set_use_24h):
	* src/dates_view.h:
	- Add optional drag and drop support
	- Fix set_property function (missing breaks in switch)
	- Completely remove all traces of old animation code
	- Remove public definition of dates_view_redraw - unnecessary
	- Don't crash when gconf value for timezone is missing

2006-07-18  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_new_cb), (dates_sources_changed_cb),
	(dates_cal_open_cb), (is_in_uids), (dates_update_calendars),
	(main):
	- Use the default calendar when creating new events
	
	* src/dates_view.c: (dates_view_class_init),
	(dates_view_set_property), (dates_view_get_property),
	(dates_view_config_get_tzid), (dates_view_config_get_24h),
	(dates_view_get_visible_span), (dates_view_refresh_day_layouts),
	(dates_view_refresh_month_layouts), (dates_view_init),
	(dates_view_get_selected_event_cal), (dates_view_set_read_only),
	(dates_view_set_use_dragbox), (dates_view_set_single_click),
	(dates_view_set_snap), (dates_view_set_week_start),
	(dates_view_set_visible_hours), (dates_view_set_date),
	(dates_view_set_use_list), (dates_view_set_use_24h),
	(dates_view_get_read_only), (dates_view_get_use_dragbox),
	(dates_view_get_single_click), (dates_view_get_snap),
	(dates_view_get_week_start), (dates_view_get_months_in_row),
	(dates_view_get_visible_months), (dates_view_get_visible_days),
	(dates_view_get_visible_hours), (dates_view_get_date),
	(dates_view_get_use_list):
	* src/dates_view.h:
	- Update/correct some documentation
	- Fix getter switch statement (some cases weren't breaking)
	- Refresh time/day layouts when necessary
	- Make 12/24-hour time configurable

2006-07-18  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_update_calendars), (main):
	- Really make sure *all* debugging output is encapsulated
	
	* src/dates_view.c: (dates_view_get_property), (dates_view_init),
	(dates_view_event_file_cb), (dates_view_event_file):
	- Hopefully fix time-zone issues (needs testing, see bug #116)

2006-07-17  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (load_esource), (dates_backend_died_cb),
	(dates_sources_changed_cb), (dates_update_calendars):
	- Make sure all debug output is wrapped

2006-07-17  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_free), (dates_view_init),
	(dates_view_redraw):
	- Make sure to initialise visible range variables, fixes crash when
	  loading Dates with no calendar available

2006-07-17  Chris Lord,,,  <chris@openedhand.com>

	* data/Makefile.am:
	- Revert to gnome icons
	
	* src/dates_main.c: (dates_about_cb), (main):
	- Revert to gnome icons

2006-07-17  Chris Lord,,,  <chris@openedhand.com>

	* configure.ac:
	* data/dates.desktop.in:
	- Fix desktop shortcut translation

2006-07-17  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_about_cb):
	- Reinstate OpenedHand logo in about box
	
	* src/dates_view.c: (dates_view_draw_event):
	- Fix drawing glitch when dragging events out of their original
	  visible range with the mouse cursor outisde of a day

2006-07-17  Chris Lord,,,  <chris@openedhand.com>

	* data/Makefile.am:
	- Install the right icons into the right directories for hildon,
	  hopefully
	  
	* src/dates_main.c: (dates_about_cb):
	- Fix typo that broke about dialog on hildon
	
	* src/dates_view.c: (dates_view_main_motion_notify_cb):
	- Fix drawing glitch when currently moving event becomes invisible via
	  a query change

2006-07-16  Chris Lord,,,  <chris@openedhand.com>

	* autogen.sh:
	* configure.ac:
	* data/Makefile.am:
	* data/dates.desktop.in:
	* data/dates.svg:
	* po/POTFILES.in:
	- Various tweaking to try to fix dates.desktop fixed
	  (internationalisation is currently broken)
	- Add updated icons and pngs of different sizes for maemo

2006-07-16  Chris Lord,,,  <chris@openedhand.com>

	* data/Makefile.am:
	* data/dates.desktop.in:
	* data/dates.glade:
	* data/dates.svg:
	* src/dates_main.c: (dates_about_cb), (main):
	- Add new icons contributed by Ulisse Perusin <uli.peru@gmail.com>
	
	* src/dates_view.c: (dates_view_remove_event), (dates_view_init),
	(dates_view_event_file_cb), (dates_view_objects_changed),
	(dates_view_draw_event), (dates_view_main_expose),
	(dates_view_handle_mouse_pos), (dates_view_main_button_press),
	(dates_view_main_button_release),
	(dates_view_remove_calendar_events), (dates_view_update_query):
	- Fix drawing glitch moving multi-day events
	- Fix drawing glitch when a multi-day event occurs at the end of a
	  visible range (be it a day, week or month)
	- Re-select the correct part of an event after it changing
	- Don't draw selected event in foreground, can look wrong

2006-07-16  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_realize),
	(dates_view_remove_event), (dates_view_get_visible_span),
	(dates_view_event_data_sort), (dates_view_make_event_layouts),
	(dates_view_event_file_cb), (dates_view_event_file),
	(dates_view_objects_changed), (dates_view_objects_removed),
	(dates_view_add_vpoints), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_main_scroll_event),
	(dates_view_point_in_event), (dates_view_handle_mouse_pos),
	(dates_view_main_button_press), (dates_view_snap_time),
	(dates_view_main_button_release), (dates_view_key_press),
	(dates_view_new), (dates_view_remove_calendar_events),
	(dates_view_update_query), (dates_view_update_all_queries),
	(dates_view_add_calendar), (dates_view_free_calendar),
	(dates_view_remove_calendar), (dates_view_remove_all_calendars):
	- Fix event being deselected when the query updates (on visible-range
	  change)
	- Fix crashes when moving/zooming during an event drag
	- Allow event dragging while moving/zooming (but disallow sizing)
	- Draw selected event in foreground

2006-07-14  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_main_expose):
	- Use mid_gc to draw the current day when unselected (it's a slightly
	  different shade of grey to all the other maemo colours)

2006-07-14  Chris Lord,,,  <chris@openedhand.com>

	* LICENSE:
	* LICENSE.lgpl:
	* Makefile.am:
	* data/dates.glade:
	* src/dates_main.c: (dates_date_changed_cb), (dates_about_cb):
	* src/dates_view.c:
	* src/dates_view.h:
	- Add licence details
	- Remove unused 'Jump to' menu item

2006-07-14  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (calendar_client_config_get_24h),
	(dates_view_draw_event), (dates_view_main_expose),
	(dates_view_main_button_release):
	- Disable 12-hour time support for Hildon
	- Don't allow backwards-sizing of events
	- Make current-time line dashed
	- Don't select the date after moving or sizing an event

2006-07-14  Chris Lord,,,  <chris@openedhand.com>

	* configure.ac:
	- Make debugging output an option
	
	* src/dates_main.c: (dates_event_selected_cb),
	(dates_commit_event_cb), (dates_new_cb),
	(dates_calendar_combo_changed_cb), (load_esource),
	(dates_backend_died_cb), (dates_sources_changed_cb),
	(dates_cal_open_cb), (is_in_uids), (dates_update_calendars),
	(dates_key_press_cb), (glade_hildon_window_new),
	(glade_hildon_date_editor_new), (glade_hildon_time_editor_new),
	(dates_save_state), (dates_restore_state), (dates_clear_state),
	(dates_is_topmost_notify), (dates_restore_timeout_cb),
	(dates_osso_rpc_event_cb), (load_tb_item), (create_toolbar),
	(dates_button_press_cb), (dates_autoconnect), (main):
	- Make debugging output optional
	- Disable the calendar combo-box before event is created
	
	* src/dates_view.c: (dates_view_remove_event),
	(dates_view_event_free), (dates_view_init), (dates_view_redraw),
	(dates_view_get_visible_span), (dates_view_event_data_sort),
	(dates_view_event_file_cb), (dates_view_event_file),
	(dates_view_objects_changed), (dates_view_objects_removed),
	(dates_view_add_vpoints), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_handle_mouse_pos),
	(dates_view_main_button_press), (dates_view_main_button_release),
	(dates_view_top_expose), (dates_view_side_expose),
	(dates_view_key_press), (dates_view_new),
	(dates_view_remove_calendar_events), (dates_view_update_query),
	(dates_view_update_all_queries), (dates_view_add_calendar),
	(dates_view_get_selected_period), (dates_view_set_selected_event),
	(dates_view_get_event_cb):
	- Make sure to set width of the details layout so it wraps correctly
	- Make debugging output optional
	- Only draw date-line on day views and use a colour that stands out

2006-07-14  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_file),
	(dates_view_add_calendar):
	- Don't set default timezone for calendars, seems to cause crash on
	  eds-dbus (needs investigation)
	- Do magic to work around hildon pango bug for details layout

2006-07-14  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (main):
	- Don't bind week_start to gconf-bridge, changing it doesn't work
	  properly yet
	  
	* src/dates_view.c: (dates_view_remove_event),
	(dates_view_event_free), (dates_view_init), (dates_view_redraw),
	(dates_view_get_visible_span), (dates_view_event_data_sort),
	(dates_view_event_file_cb), (dates_view_event_file),
	(dates_view_draw_event_list), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_update_query),
	(dates_view_update_all_queries), (dates_view_add_calendar):
	- Set default timezone for calendars (this seems to do nothing?)
	- Draw details on the event when drawing day-views
	- Use evo's use_24h key to use 12/24 hour time
	- Don't draw one more month than is visible in month view

2006-07-13  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_delete_cb):
	- Shorten text in delete dialog slightly
	
	* src/dates_view.c: (dates_view_finalize), (dates_view_init),
	(dates_view_event_file), (dates_view_main_configure_event),
	(dates_view_draw_event):
	- Fix days header being offset slightly on the 770
	- Draw days with events with strike-through as well as bold

2006-07-13  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_init), (dates_view_redraw),
	(dates_view_main_configure_event),
	(dates_view_scroll_value_changed_cb),
	(dates_view_scroll_value_changed), (dates_view_main_expose),
	(dates_view_main_button_press), (dates_view_main_button_release),
	(dates_view_main_motion_notify_cb),
	(dates_view_main_motion_notify), (dates_view_top_expose),
	(dates_view_new), (dates_view_remove_calendar_events),
	(dates_view_update_query):
	- Use GDK_POINTER_MOTION_HINT_MASK for non-laggy dragging
	- Try to not to redraw when unnecessary (should fix unreliable
	  double-click on 770)

2006-07-12  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_get_visible_span),
	(dates_view_event_file), (dates_view_get_region),
	(dates_view_draw_event), (dates_view_main_expose),
	(dates_view_handle_mouse_pos), (dates_view_main_button_release),
	(dates_view_key_press), (dates_view_remove_calendar_events),
	(dates_view_update_query), (dates_view_update_all_queries),
	(dates_view_set_visible_hours), (dates_view_set_date):
	- Cache visible span between query updates
	- Display moved/sized events as changed before receiving the signal

2006-07-12  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Disable cut/copy/paste in menu

2006-07-12  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c:
	- Don't allow putting start after end, or vice-versa, when editing
	
	* src/dates_view.c: (dates_view_draw_event),
	(dates_view_main_button_release):
	- Fix drawing when resizing an event that spans multiple days
	- Resize event correctly when resized above start of event

2006-07-12  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Change 'Select a time...' to 'Time' on time dialog
	- Add key-press signal for DatesView
	
	* src/dates_main.c: (dates_window_state_cb), (dates_key_press_cb):
	- Change +/- shortcuts on desktop to Ctrl +/- (Gnome HIG)
	- Create a new event on return/enter when there isn't one selected

2006-07-12  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c:
	- s/DatesView/Dates/
	- Bring up new event dialog instantly when creating new events
	
	* src/dates_view.c: (dates_view_main_expose),
	(dates_view_main_button_press), (dates_view_main_button_release),
	(dates_view_set_selected_event), (dates_view_set_visible_months),
	(dates_view_set_date):
	- Lots of fixes with drag-boxes
	- Don't refresh the query when changing the date if the visible range
	  hasn't changed
	- Make sure the queries refresh when clicking a date if the visible
	  range changes

2006-07-11  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (load_tb_item):
	* src/dates_view.c: (dates_view_main_button_press),
	(dates_view_snap_time), (dates_view_main_button_release):
	- Make sure to renew query when visible range changes after moving an
	  event (*really* fixes week-view and dragging from Saturday to Monday)

2006-07-11  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_main_button_press),
	(dates_view_main_button_release), (dates_view_key_press):
	- Don't select the date when starting a drag, fixes moving events
	  to/from Saturday/Sunday in week-view
	- Enable scrolling in 12-hour view

2006-07-11  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_init), (dates_view_redraw),
	(dates_view_main_expose), (dates_view_top_expose),
	(dates_view_key_press), (dates_view_set_visible_months),
	(dates_view_set_visible_days), (dates_view_set_visible_hours):
	- Really, completely #define out all animation vars for desktop
	- Fix top_expose for hildon (how did this work on the desktop?)

2006-07-11  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (load_tb_item), (create_toolbar):
	- Fix hildon toolbar creation

2006-07-11  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Add button-press signal to DatesView widget for new event on
	  double-click
	
	* src/dates_main.c: (dates_select_event_idle_cb), (dates_new_cb):
	- New event on double-click an empty area
	- Change default times for events (9-5 at month view, 9-11 at day
	  view)

2006-07-11  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_objects_changed),
	(dates_view_objects_removed), (dates_view_draw_event_list),
	(dates_view_draw_event), (dates_view_main_expose),
	(dates_view_main_button_press), (dates_view_main_button_release),
	(dates_view_main_motion_notify_cb), (dates_view_top_expose),
	(dates_view_side_expose), (dates_view_key_press), (dates_view_new),
	(dates_view_remove_calendar_events), (dates_view_remove_calendar),
	(dates_view_remove_all_calendars),
	(dates_view_get_selected_period), (dates_view_set_selected_event),
	(dates_view_get_event_cb), (dates_view_get_selected_event),
	(dates_view_get_selected_event_cal):
	- Add ability to switch through events and select them with
	  tab/shift+tab and return/enter
	- Fix new/changed events getting deselected

2006-07-11  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Set focus-on-click to false for all buttons in the main window
	- Set the DatesView widget to have_focus
	
	* src/dates_main.c: (dates_window_state_cb), (dates_key_press_cb),
	(main):
	- Add shortcuts to zoom in/out on the desktop
	
	* src/dates_view.c: (dates_view_init), (dates_view_side_expose),
	(dates_view_key_press), (dates_view_new),
	(dates_view_remove_calendar_events), (dates_view_update_query):
	- Add keyboard navigation (arrow keys)

2006-07-11  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Add zoom out and zoom in menu items
	- Change 'about' menu item to use stock menu item
	
	* src/dates_main.c: (dates_zoom_in_cb), (dates_zoom_out_cb),
	(dates_date_changed_cb), (dates_load_calendars), (create_toolbar),
	(main):
	- Display banner when in full-screen or embedded mode

2006-07-11  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_get_property),
	(dates_view_update_query):
	- Fix query creation (stop using functions from clock-applet)
	- Update query on all dates_view_set_visible_* functions

2006-07-10  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_zoom_in_cb), (dates_zoom_out_cb),
	(dates_zoom_change):
	- Add 5-day view
	
	* src/dates_view.c: (dates_view_init),
	(dates_view_get_visible_span), (dates_view_event_file),
	(dates_view_add_region), (dates_view_get_region),
	(dates_view_in_region), (dates_view_calc_pan),
	(dates_view_calc_zoom), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_main_motion_notify),
	(dates_view_top_expose), (dates_view_side_expose),
	(dates_view_new), (dates_view_remove_calendar_events),
	(dates_view_update_query):
	- Only draw and query exactly what's visible
	- Fix up some unusual combinations of settings with DatesView
	- Tidy up day views by not drawing month border
	- Disable animation entirely

2006-07-10  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Add signals
	
	* src/dates_main.c: (dates_date_change), (dates_zoom_in_cb),
	(dates_zoom_change), (dates_date_changed_cb),
	(dates_fill_details_dialog), (dates_event_selected_cb),
	(create_toolbar), (main):
	Use glade_xml_signal_autoconnect_full and move signals to glade file

2006-07-09  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	* src/dates_main.c: (main):
	Hide the menubar when embedding

2006-07-09  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_today_cb), (main):
	- Add GOption support
	- Add XEmbed support (-p/--plug <socket id>)
	
	* src/dates_view.c: (dates_view_init):
	- Fix possible crash in DatesView initialisation

2006-07-07  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Fix details entry not getting squashed properly on hildon(?)
	
	* src/dates_main.c: (dates_cal_open_cb), (dates_update_calendars),
	(main):
	Listen to Evolution selected calendars gconf key
	
	* src/dates_view.c: (dates_view_event_file_cb),
	(dates_view_main_expose):
	Fix events being added to the wrong day

2006-07-07  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_file_cb),
	(dates_view_fit_events), (dates_view_main_expose),
	(dates_view_point_in_event), (dates_view_handle_mouse_pos),
	(dates_view_update_all_queries), (dates_view_add_calendar):
	- Make sure to reset the mouse pointer when hovering over un-editable
	  events.
	- Fix some (all?) positioning/sizing bugs in the new fitting code

2006-07-07  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_main_expose),
	(dates_view_main_motion_notify_cb):
	- Fix XOR glitch when updating view for dates-line
	- Set to XOR *after* drawing unselected events (fixes other events
	  appearing oddly while dragging an event)

2006-07-07  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_file_cb),
	(dates_view_draw_event), (dates_view_main_expose),
	(dates_view_main_button_press), (dates_view_main_motion_notify_cb):
	Fix XOR drawing glitches and dragging of multi-day events

2006-07-07  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_remove_event),
	(dates_view_event_free), (dates_view_event_file),
	(dates_view_find_event), (dates_view_objects_changed),
	(dates_view_draw_event_list), (dates_view_draw_event),
	(dates_view_handle_mouse_pos), (dates_view_main_motion_notify_cb),
	(dates_view_main_motion_notify), (dates_view_new),
	(dates_view_remove_calendar_events), (dates_view_update_query),
	(dates_view_update_all_queries), (dates_view_add_calendar),
	(dates_view_free_calendar), (dates_view_remove_calendar),
	(dates_view_set_selected_event), (dates_view_get_event_cb),
	(dates_view_get_selected_event),
	(dates_view_get_selected_event_cal):
	- Store GC's per calendar instead of per event
	- Draw moving/sizing events as an XOR'd rectangle for speed

2006-07-06  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_set_visible_months):
	Fix top days panel not being made visible in month-view

2006-07-06  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_open_cb):
	- Don't allow activation of recurring events

	* src/dates_view.c: (dates_view_class_init),
	(dates_view_set_property), (dates_view_get_property),
	(calendar_client_config_get_icaltimezone), (dates_view_finalize),
	(dates_view_realize), (dates_view_init), (dates_view_add_vpoints):
	* src/dates_view.h:
	- Don't allow moving/sizing of recurring as well as read-only events
	- Overhaul of query/fitting code:
	  * Use iteration instead of recursion for fitting of events
	  * Only keep events that are visible in memory
	  * Add optional (and unfinished) list-view for event-summary
	  * Stop using icaltime_from_timet_with_zone (has speed issues with
	    webcals)
	  * Store events in a month/day indexed list array for fast drawing

2006-06-25  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_event_selected_cb),
	(dates_details_time_end_cb):
	Don't respond to activation of read-only events

2006-06-25  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Remove GtkFrame around the DatesView widget
	- Add header label
	
	* src/dates_main.c: (dates_date_changed_cb),
	(glade_hildon_date_editor_new), (glade_hildon_time_editor_new),
	(main):
	- Add hildon shortcut key handling for zoom and full-screen mode
	- Re-add header label (only visible in full-screen mode)

2006-06-22  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_details_time_cb):
	Don't alter month for HildonDateEditor, it isn't like GtkCalendar
	
	* src/dates_view.c: (dates_view_event_size_cb2),
	(dates_view_event_size_cb), (dates_view_main_expose):
	Fix date-line on < 24 hour view

2006-06-22  Chris Lord,,,  <chris@openedhand.com>

	* data/Makefile.am:
	Fix some typos, make some corrections
	
	* src/dates_main.c: (dates_details_time_cb), (dates_delete_cb),
	(dates_update_calendars), (dates_load_calendars),
	(glade_hildon_date_editor_new), (glade_hildon_time_editor_new),
	(main):
	Add code for new hildon time-picker dialog
	
	* src/dates_view.c: (dates_view_draw_event_cb):
	Minor changes

2006-06-21  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Compress details dialog into tabs, integrate recurrences dialog
	
	* src/dates_main.c: (dates_details_time_rminute_cb),
	(dates_details_repeats_cb), (main):
	Adapt to new glade
	
	* src/dates_view.c: (dates_view_finalize), (dates_view_refresh),
	(dates_view_realize), (dates_view_event_free), (dates_view_init),
	(dates_view_draw_event), (dates_view_main_expose):
	Add line to show the current time when in day(s)-view

2006-06-21  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_details_cancel_cb), (main):
	Call the cancel callback instead of deleting window when details
	dialog is closed.

2006-06-20  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Replace the details dialog 'close' with 'delete/cancel/ok' buttons
	
	* src/dates_main.c: (dates_event_selected_cb),
	(dates_details_ok_cb), (dates_delete_cb),
	(dates_details_cancel_cb), (dates_select_event_idle_cb),
	(dates_new_cb), (dates_calendar_combo_changed_cb), (main):
	Handle new details dialog buttons

2006-06-20  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_about_cb), (dates_new_cb), (main):
	- Don't snap events to 30 minutes (this is done by the widget now)
	
	* src/dates_view.c: (dates_view_class_init),
	(dates_view_set_property), (dates_view_get_property),
	(dates_view_finalize), (dates_view_init),
	(dates_view_main_button_press), (dates_view_snap_time),
	(dates_view_main_button_release), (dates_view_free_calendar),
	(dates_view_remove_calendar), (dates_view_remove_all_calendars),
	(dates_view_get_selected_period), (dates_view_get_selected_event),
	(dates_view_get_selected_event_cal), (dates_view_set_read_only),
	(dates_view_set_use_dragbox), (dates_view_set_single_click),
	(dates_view_set_visible_hours), (dates_view_set_date),
	(dates_view_get_read_only), (dates_view_get_use_dragbox),
	(dates_view_get_single_click):
	* src/dates_view.h:
	- Add function to snap events/selections to minute boundaries
	- Override realize function to make sure priv->main is realized before
	  using its parent window.

2006-06-20  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Make sure repeats isn't visible (it isn't ready yet)
	
	* src/dates_main.c: (main):
	Connect dates_open_cb to new event_activated signal
	
	* src/dates_view.c: (dates_view_class_init),
	(dates_view_set_property), (dates_view_get_property),
	(dates_view_init), (dates_view_handle_mouse_pos),
	(dates_view_main_button_press), (dates_view_main_button_release),
	(dates_view_get_selected_event),
	(dates_view_get_selected_event_cal), (dates_view_set_read_only),
	(dates_view_set_use_dragbox), (dates_view_set_visible_hours),
	(dates_view_set_date), (dates_view_get_read_only),
	(dates_view_get_use_dragbox):
	* src/dates_view.h:
	- Add new event_activated signal
	- Add single-click mode

2006-06-20  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_new_cb), (dates_cal_open_cb):
	- Some extra error-checking/debugging output
	- Make sure group_uri string is terminated

2006-06-20  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_cal_open_cb):
	Remove bad g_object_unref when creating new cal - fixes crash

2006-06-19  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (main):
	Disable drag-box when compiling with hildon
	
	* src/dates_view.c: (dates_view_class_init),
	(dates_view_set_property), (dates_view_get_property),
	(dates_view_init), (dates_view_main_button_press),
	(dates_view_get_selected_event_cal), (dates_view_set_read_only),
	(dates_view_set_date), (dates_view_get_read_only):
	* src/dates_view.h:
	Make the drag-box toggle-able

2006-06-19  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_about_cb):
	Correct missing comma typo, fixes about dialog on non-hildon

2006-06-19  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Make main window not shown on startup
	- Make zoom in button sensitive
	
	* src/Makefile.am:
	* src/gconf-bridge.c:
	* src/gconf-bridge.h:
	- Add libgconf-bridge
	
	* src/dates_main.c: (dates_zoom_out_cb), (dates_zoom_change),
	(dates_select_event_idle_cb), (dates_new_cb),
	(dates_update_calendars), (dates_load_calendars),
	(glade_hildon_window_new), (main):
	- Retain window position, size, week-start and zoom-level using gconf
	- Use sensible defaults for event length and start-time
	
	* src/dates_view.c: (dates_view_class_init),
	(dates_view_set_property), (dates_view_get_property),
	(dates_view_event_data_free), (dates_view_event_free),
	(dates_view_init), (dates_view_in_region),
	(dates_view_main_configure_event),
	(dates_view_scroll_value_changed_cb),
	(dates_view_handle_mouse_pos), (dates_view_main_button_press),
	(dates_view_main_motion_notify_cb),
	(dates_view_main_motion_notify), (dates_view_remove_calendar),
	(dates_view_remove_all_calendars), (dates_view_get_selected_event),
	(dates_view_get_selected_event_cal), (dates_view_set_date):
	* src/dates_view.h:
	- Make sure all properties are proper gettable/settable GObject
	  properties
	- Change how selected time span is returned

2006-06-19  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Rename old summary_* widgets find_*
	- Disable the zoom-in button (it should be insensitive on start-up)
	
	* src/dates_main.c: (dates_date_changed_cb),
	(dates_fill_details_dialog), (dates_event_selected_cb),
	(dates_details_close_cb), (dates_delete_cb):
	- Really remove all remnants of old summary entry
	- Use marshalled ECalComponent when moving/sizing
	
	* src/dates_view.h:
	* src/dates_view.c: (dates_view_class_init), (dates_view_finalize),
	(dates_view_init), (dates_view_main_configure_event),
	(dates_view_main_expose), (dates_view_main_button_release),
	(dates_view_main_motion_notify_cb),
	(dates_view_main_motion_notify),
	(dates_view_top_expose),
	(dates_view_side_expose):
	- Stop doing some unnecessary layout measuring
	- Throttle animation to 60fps
	- Pass the ECalComponent instance modified when moving/sizing

2006-06-16  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_event_moved_cb), (dates_event_sized_cb):
	* src/dates_view.c: (dates_view_main_button_release),
	(dates_view_get_event_cb), (dates_view_get_selected_event):
	Add a partial fix for moving/sizing events

2006-06-16  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_commit_event_cb),
	(dates_backend_died_cb), (dates_cal_open_cb),
	(dates_update_calendars), (dates_load_calendars),
	(glade_hildon_window_new), (main):
	Create new system group/calendar when one doesn't exist

2006-06-15  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_data_find),
	(dates_view_event_size_cb3), (dates_view_event_size_cb2),
	(dates_view_event_size_cb), (dates_view_event_size),
	(dates_view_event_width), (dates_view_event_span),
	(dates_view_calculate_overlaps), (dates_view_event_clear_cb),
	(dates_view_event_clear), (dates_view_event_find_cb),
	(dates_view_draw_event), (dates_view_main_expose),
	(dates_view_new), (dates_view_remove_calendar_events),
	(dates_view_update_query):
	- Speed up event fitting slightly (do less unnecessary work)
	- Fix redraw when resizing/fast scrolling window
	- Add some notes/code on possible optimisations

2006-06-14  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_backend_died_cb), (dates_cal_open_cb),
	(dates_update_calendars):
	Open calendars async for faster start-up

2006-06-13  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_event_selected_cb),
	(dates_commit_event_cb):
	- Add some debugging statements
	
	* src/dates_view.c: (dates_view_init), (dates_view_event_size_cb3),
	(dates_view_event_size_cb2), (dates_view_event_size_cb),
	(dates_view_event_clear), (dates_view_draw_event),
	(dates_view_point_in_event), (dates_view_handle_mouse_pos),
	(dates_view_main_button_press), (dates_view_main_button_release):
	- Add some debugging statements
	- Fix some (hopefully all?) time-zone issues
	- Allow selection of read-only events
	- Fix event moving/sizing (broke in previous revision)

2006-06-13  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_date_changed_cb),
	(dates_event_selected_cb), (dates_select_event_idle_cb),
	(dates_new_cb), (dates_calendar_combo_changed_cb),
	(dates_backend_died_cb), (dates_update_calendars),
	(dates_sources_changed_cb), (glade_hildon_window_new), (main):
	- Don't show read-only calendars when editing an event
	- Don't allow opening/deletion of read-only events
	
	* src/dates_view.c: (dates_view_init), (dates_view_draw_event_cb),
	(dates_view_main_expose), (dates_view_main_scroll_event),
	(dates_view_point_in_event), (dates_view_handle_mouse_pos):
	- Don't allow moving/sizing of read-only events
	- Draw read-only events with a dashed outline

2006-06-12  Chris Lord,,,  <chris@openedhand.com>

	* configure.ac:
	Remove duplicate 'type make to build' message
	
	* src/dates_main.c: (dates_event_selected_cb),
	(dates_update_calendars), (dates_sources_changed_cb), (main):
	- Make sure default calendar exists
	- Fix up some formatting
	
	* src/dates_view.c: (dates_view_init), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_top_expose),
	(dates_view_side_expose), (dates_view_set_visible_days):
	- Fix side-panel not scrolling properly (regression?)
	- Fix hour lines not being drawn correctly
	- Make animation more metacity-like (fast, less detail)
	- Don't use fixed font sizes on the desktop
	- Fix up some formatting

2006-04-24  Wouter Bolsterlee,,,  <uws@xs4all.nl>

	* configure.ac:
	* po/nl.po:
	Add dutch translation

2006-04-21  Tomas Frydrych,,,  <tf@o-hand.com>

	* Restructured into trunk/tags/branches/packaging tree
	* Moved maemo1.1 build files into packaging/mamemo1.1
	* Added packaging/maemo1.1/autogen.sh & gnome-autogen.sh
	* Tweaked packaging/maemo1.1/debian/rules to call maemo-specific
	  autogen.sh
	
2006-04-21  Chris Lord,,,  <chris@openedhand.com>

	* Makefile.am:
	* autogen.sh:
	* configure.ac:
	* data/Makefile.am:
	* data/dates.desktop.in:
	* po/POTFILES.in:
	* po/et.po:
	* src/Makefile.am:
	* src/dates_main.c: (dates_date_changed_cb), (dates_delete_cb),
	(dates_new_cb), (main):
	* src/dates_view.h:
	- Add i18n support, patch from Priit Laes <amd@store20.com>

2006-04-11  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_event_selected_cb),
	(dates_event_moved_cb), (dates_event_sized_cb),
	(dates_details_close_cb):
	- Add ability to modify particular recurring events (doesn't work?)
	
	* src/dates_view.c: (dates_view_draw_event_cb),
	(dates_view_main_button_release), (dates_view_set_selected_event),
	(dates_view_get_selected_event):
	- Fix crash when selecting events
	- Always return selected event, even if selected span is invalid
	- When moving/sizing events with recurrences, only affect the
	  selected recurrence (doesn't work?)

2006-04-11  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_event_selected_cb):
	- Unref selected event
	
	* src/dates_view.c: (dates_view_init), (dates_view_draw_event_cb),
	(dates_view_set_selected_event), (dates_view_get_event_cb),
	(dates_view_get_selected_event),
	(dates_view_get_selected_event_cal):
	* src/dates_view.h:
	- Return selected event exact instance (requires unref)
	- Remove get_selected_event_rid function (not necessary)
	- Draw a gtk-refresh icon on recurring events

2006-04-10  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_event_selected_cb), (dates_delete_cb),
	(dates_summary_entry_changed_cb), (dates_select_event_idle_cb):
	- Adapt to API changes in DatesView
	
	* src/dates_view.c: (dates_view_objects_changed),
	(dates_view_objects_removed), (dates_view_add_vpoints),
	(dates_view_draw_event_cb), (dates_view_draw_event),
	(dates_view_main_button_press), (dates_view_main_button_release):
	- Add function to get selected event rid
	
	* src/dates_view.h:
	- Add function to get selected event rid
	- Add extra argument to select-event function to select rid (doesn't
	  work yet)

2006-03-27  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	* src/dates_main.c: (dates_details_time_lminute_cb),
	(dates_details_time_rminute_cb), (dates_details_time_cb), (main):
	- More recurrence/repeats UI work (still non-functional)

2006-03-24  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Add recurrence interface
	
	* src/dates_main.c: (dates_details_time_rminute_cb), (main):
	- Show recurrence interface (does nothing yet)

2006-03-23  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Add 'today' button
	
	* src/dates_main.c: (dates_forward_cb), (main):
	- Add callback for 'today' button
	
	* src/dates_view.c: (dates_view_calc_pan),
	(dates_view_main_expose):
	- Fix day-view for last day of week
	- Highlight today when it isn't selected

2006-03-22  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (calendar_client_config_get_icaltimezone),
	(dates_view_finalize), (dates_view_event_data_free_data_find),
	(dates_view_event_data_free), (dates_view_init),
	(dates_view_redraw), (dates_view_event_data_find),
	(dates_view_event_size_cb3), (dates_view_event_size_cb2),
	(dates_view_event_span), (dates_view_event_sort),
	(dates_view_calculate_overlaps), (dates_view_event_clear_cb),
	(dates_view_event_clear), (dates_view_event_find_cb),
	(dates_view_objects_changed), (dates_view_objects_removed),
	(dates_view_draw_event_cb), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_main_scroll_event),
	(dates_view_point_in_event), (dates_view_handle_mouse_pos),
	(dates_view_comp_find_event_cb), (dates_view_main_button_press),
	(dates_view_main_button_release), (dates_view_main_motion_notify),
	(dates_view_top_expose), (dates_view_side_expose),
	(dates_view_new), (dates_view_remove_calendar_events),
	(dates_view_update_query), (dates_view_add_calendar),
	(dates_view_find_calendar_cb), (dates_view_free_calendar),
	(dates_view_remove_calendar), (dates_view_remove_all_calendars),
	(dates_view_get_selected_period), (dates_view_set_selected_event):
	- Stop unnecessarily using a hash-table for events
	- Add new year view, similar to GtkCalendar

2006-03-22  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_size_cb3),
	(dates_view_event_size_cb2), (dates_view_table_to_list),
	(dates_view_calculate_overlaps):
	- Fix layout bug with events spanning multiple days

2006-03-15  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_clear),
	(dates_view_draw_event_cb), (dates_view_main_expose):
	- Always draw calendar frames (fixes some drawing glitches)
	- Fix possible double-free when clearing event data

2006-03-15  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_data_free_data_find),
	(dates_view_event_data_free), (dates_view_init),
	(dates_view_event_sort), (dates_view_objects_changed),
	(dates_view_calc_pan), (dates_view_calc_zoom),
	(dates_view_draw_event_cb), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_point_in_event_cb),
	(dates_view_point_in_event):
	* src/dates_view.h:
	- Fix event-data clear function (fixes event-fitting)
	- Add custom week start day (thanks Frederic Peters!)

2006-03-14  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_data_free_data_find),
	(dates_view_event_data_find), (dates_view_event_size_cb3):
	- Rewrite event-fitting code - slower, but seems to work 100%

2006-03-13  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_redraw):
	- Fix event width being wrong on event removal

2006-03-13  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_redraw),
	(dates_view_event_size_cb3), (dates_view_event_span):
	- Fix all cases of overlap (width is sometimes still wrong on removal)

2006-03-13  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_rect_free),
	(dates_view_event_data_free_data_find),
	(dates_view_event_data_free), (dates_view_redraw),
	(dates_view_event_data_position_sort),
	(dates_view_event_data_find), (dates_view_event_size_cb3),
	(dates_view_event_size_cb2), (dates_view_event_size_cb),
	(dates_view_event_size), (dates_view_event_width),
	(dates_view_objects_changed), (dates_view_objects_removed),
	(dates_view_add_vpoints), (dates_view_event_rect_find_cb),
	(dates_view_draw_event_cb):
	- Optimise dealing with recurring/multiple-day events (huge speed-up)

2006-03-13  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_draw_event_cb),
	(dates_view_draw_event):
	- Make sure all events within the current bounds get drawn

2006-03-12  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_event_selected_cb),
	(dates_event_moved_cb), (dates_event_sized_cb),
	(dates_details_close_cb), (dates_delete_cb),
	(dates_summary_entry_changed_cb), (main):
	- Commit all changes as they're made (makes things feel smoother)
	- Don't try to snap all-day events (causes breakage)
	
	* src/dates_view.c: (dates_view_event_rect_free),
	(dates_view_init), (dates_view_redraw),
	(dates_view_event_size_cb3), (dates_view_event_size_cb2),
	(dates_view_event_sort), (dates_view_calculate_overlaps),
	(dates_view_objects_changed), (dates_view_objects_removed),
	(dates_view_draw_event), (dates_view_main_button_press),
	(dates_view_main_button_release):
	- Make sure to send event-selected signal when necessary
	- Clear event data before calculating overlaps (fixes flickering)
	- Clear event data of colliding events recursively
	- Fix some cases where collisions weren't picked up (still buggy)
	- Fix some cases where events weren't being shown (still buggy)

2006-03-12  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_date_changed_cb),
	(dates_event_selected_cb), (dates_summary_closed_cb),
	(dates_select_event_idle_cb), (dates_new_cb), (main):
	- Snap events to 30 minutes when created, moved and sized

	* src/dates_view.c: (dates_view_class_init),
	(dates_view_main_button_release):
	* src/dates_view.h:
	- Add move and sized signals

2006-03-12  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_size_cb3),
	(dates_view_event_size_cb2), (dates_view_main_expose),
	(dates_view_main_button_release):
	- Another huge optimisation due to a silly mistake
	- Fix bug when trying to start selections outside of a day/month
	- Fix bug when dragging events from anything but their first day

2006-03-11  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Make edit dialog resizable, like before
	
	* src/dates_main.c: (dates_fill_details_dialog):
	- Make sure to empty fields in the edit dialog if they don't exist
	
	* src/dates_view.c: (dates_view_event_data_free),
	(dates_view_event_size_cb3), (dates_view_event_width),
	(dates_view_draw_event_cb):
	- Stop messing about with weak pointers and free intersect data
	  properly
	- Calculate overlaps during idle loop (app doesn't halt loading
	  large/slow calendars) - As suggested by Ross Burton

2006-03-11  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_size_cb3),
	(dates_view_event_width), (dates_view_clear_old_intersects),
	(dates_view_event_clear), (dates_view_event_sort),
	(dates_view_table_to_list), (dates_view_calculate_overlaps),
	(dates_view_main_scroll_event), (dates_view_point_in_event_cb):
	- Use weak pointers to remove intersects with changed/removed events
	- Don't allow selection of invisible events

2006-03-10  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_calculate_overlaps),
	(dates_view_update_query):
	- Send commit signal if selected event is on an updated calendar query
	- Comment out line that causes silly amounts of recursion (fast now)

2006-03-10  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	* src/dates_main.c: (dates_event_selected_cb), (main):
	- R.I.P. quick-edit bar
	
	* src/dates_view.c: (dates_view_main_button_press),
	(dates_view_get_selected_period):
	- Don't re-select events when clicking on them twice
	- Calculate minutes in dates_view_get_selected_period (buggy?)

2006-03-10  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Change quick-edit OK button to a close button
	- Replace vertical separators in toolbar with space
	
	* src/dates_main.c: (dates_event_selected_cb),
	(dates_summary_entry_changed_cb), (dates_select_event_idle_cb),
	(dates_new_cb), (dates_calendar_combo_changed_cb), (main):
	- Respond correctly to events being destroyed while being edited
	- Open edit dialog when creating new events
	- Make summary close button default
	
	* src/dates_view.c: (dates_view_class_init), (dates_view_init),
	(dates_view_objects_changed), (dates_view_objects_removed),
	(dates_view_draw_event_cb), (dates_view_main_expose),
	(dates_view_main_button_press), (dates_view_main_button_release),
	(dates_view_main_motion_notify), (dates_view_top_expose),
	(dates_view_side_expose), (dates_view_update_query),
	(dates_view_get_selected_period), (dates_view_set_selected_event):
	* src/dates_view.h:
	Remove last traces of 'edit mode':
	  - Send a signal when deselecting an event so the app can commit it
	  - Deselect events when clicking empty space
	  - Always select events when clicked on
	  - Always allow moving/resizing (and change mouse-cursor accordingly)
	  - Make sure to send a signal when events are removed (either by
	    deletion or by an updated query)
	  - Remove low-lighting

2006-03-10  Chris Lord,,,  <chris@openedhand.com>

	* configure.ac:
	- Add check for ECalComponentId (fix building with older eds)
	
	* src/dates_view.c: (dates_view_event_size_cb3),
	(dates_view_event_size_cb2), (dates_view_event_size_cb),
	(dates_view_objects_changed), (dates_view_objects_removed):
	- Stop using icaltime_from_timet_with_zone
	- Make sure the bound icaltimetype's are valid (fixes ridiculously
	  long waits with infinitely recurring events/huge calendars)

2006-03-09  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Make details dialog modal (got unset somehow?)
	- Rename details_save_* details_message_*
	
	* src/dates_main.c: (dates_event_selected_cb), (dates_delete_cb),
	(dates_edit_ok_cb), (dates_select_event_idle_cb), (dates_new_cb),
	(dates_calendar_combo_changed_cb), (dates_sources_changed_cb),
	(main):
	- Disconnect/reconnect the summary text changed signal to avoid
	  corruption
	- Add new event code
	
	* src/dates_view.c: (dates_view_main_expose),
	(dates_view_main_button_release), (dates_view_update_query),
	(dates_view_find_calendar_cb), (dates_view_free_calendar),
	(dates_view_remove_calendar), (dates_view_remove_all_calendars):
	* src/dates_view.h:
	- Add new function 'dates_view_get_selected_period'

2006-03-08  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Add padding to start/end time buttons, as Jorn Baayen suggested
	
	* src/dates_main.c: (dates_fill_details_dialog),
	(dates_event_selected_cb), (dates_details_time_start_cb),
	(dates_details_time_end_cb):
	- Use a friendlier time format, as Jorn Baayen suggested
	- Update details dialog on each open (fixes start/end times not
	  changing after moving/resizing)

2006-03-08  Chris Lord,,,  <chris@openedhand.com>

	* configure.ac:
	- AC_SUBST variables to not break on old automake versions
	
	* data/dates.glade:
	- Add a saving note to the details dialog, for when saving to slow
	  calendars
	
	* src/dates_main.c: (create_dates_view), (dates_zoom_change),
	(dates_date_changed_cb), (dates_fill_details_dialog),
	(dates_event_selected_cb), (dates_details_time_entry_alt),
	(dates_details_time_hour_cb), (dates_details_time_lminute_cb),
	(dates_details_time_rminute_cb), (dates_details_time_cb),
	(dates_details_time_start_cb), (dates_details_time_end_cb),
	(dates_open_cb), (dates_details_close_cb), (dates_delete_cb),
	(dates_new_cb), (dates_summary_entry_changed_cb),
	(dates_edit_ok_cb), (dates_calendar_change_idle_cb),
	(dates_calendar_combo_changed_cb), (load_esource),
	(dates_backend_died_cb), (dates_update_calendars),
	(dates_sources_changed_cb), (main):
	- Adapt to changes in DatesView
	- Allow instant-apply changing of calendars with events
	- Update view after altering text in summary
	
	* src/dates_view.c: (dates_view_class_init),
	(dates_view_objects_changed), (dates_view_objects_removed),
	(dates_view_draw_event_cb), (dates_view_draw_event),
	(dates_view_handle_mouse_pos), (dates_view_comp_find_event_cb),
	(dates_view_main_button_press), (dates_view_find_calendar_cb),
	(dates_view_free_calendar), (dates_view_remove_calendar),
	(dates_view_remove_all_calendars), (dates_view_set_visible_hours),
	(dates_view_set_date):
	* src/dates_view.h:
	- Don't hold an extra reference for the selected event
	- Emit a signal when the selected event gets altered (TODO: Handle
	  removal during edit)
	- Move inappropriate event-editing code out
	- Allow programmatical selection of calendar events
	- Hash events on calendar uri as well as event uid
	- Adapt to change in ECalView objects-removed signal
	- Always recreate pango layout of selected event, to allow editing
	  feedback
	- Add accessor functions for selected event/event-calendar/date and
	  don't pass the data in the signal

2006-03-07  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_summary_entry_changed_cb),
	(dates_edit_ok_cb), (dates_backend_died_cb),
	(dates_update_calendars), (dates_sources_changed_cb), (main):
	Populate calendar list

2006-03-06  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_init), (dates_view_main_expose),
	(dates_view_handle_mouse_pos), (dates_view_main_button_press),
	(dates_view_main_button_release),
	(dates_view_remove_calendar_events_cb), (dates_view_update_query),
	(dates_view_add_calendar), (dates_view_find_calendar_cb),
	(dates_view_free_calendar), (dates_view_remove_calendar):
	Add selection code for new events

2006-03-06  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Start adding UI for multiple calendars
	
	* src/dates_main.c: (dates_forward_cb), (dates_today_cb),
	(dates_zoom_change), (dates_delete_cb), (load_esource),
	(dates_update_calendars), (dates_sources_changed_cb), (main):
	Respond to calendar creation/destruction/death
	
	* src/dates_view.c: (dates_view_objects_changed),
	(dates_view_get_region), (dates_view_in_region),
	(dates_view_draw_event_cb), (dates_view_main_button_press),
	(dates_view_main_button_release), (dates_view_main_motion_notify):
	Add functions to remove calendars

2006-03-05  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_open_cb), (main):
	* src/dates_view.c: (dates_view_init),
	(dates_view_main_button_press), (dates_view_main_button_release),
	(dates_view_side_expose), (dates_view_new), (dates_view_set_mode),
	(dates_view_commit):
	* src/dates_view.h:
	- Use button-release as well as motion-notify
	- Fix dragging events between months
	- Make sure to change active date after dragging event
	- Add deletion of events (+ hack to work around buggy ECalView?)

2006-03-04  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Remove date banner, re-instate button icons
	
	* src/dates_main.c: (dates_date_changed_cb),
	(dates_details_time_cb), (load_esource), (main):
	Use title-bar for display current date
	
	* src/dates_view.c: (dates_view_draw_event), (dates_view_new),
	(dates_view_update_query):
	- Only remove events on updating query of the specific calendar (fixes
	  events not visible on start-up)
	- Don't use time when bounding drawn events (fixes situations where
	  events on the last day of a month are invisible in the month-view)

2006-02-22  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_edit_ok_cb), (main):
	* src/dates_view.c: (calendar_client_config_get_timezone),
	(dates_view_objects_changed):
	Use ESourceList and load all calendars - UNSTABLE/UNFINISHED!

2006-02-21  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Remove unnecessary button icons and padding from toolbar

2006-02-21  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	* src/dates_main.c: (dates_date_changed_cb),
	(dates_event_selected_cb), (dates_details_time_end_cb),
	(dates_open_cb), (main):
	* src/dates_view.c: (dates_view_init),
	(dates_view_objects_changed), (dates_view_main_button_press),
	(dates_view_remove_all_calendars):
	* src/dates_view.h:
	Revised UI

2006-02-16  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_data_free),
	(dates_view_init), (dates_view_redraw),
	(dates_view_objects_changed), (dates_view_objects_removed),
	(dates_view_in_region), (dates_view_draw_event_cb),
	(dates_view_draw_event), (dates_view_main_scroll_event),
	(dates_view_point_in_event_cb), (dates_view_point_in_event),
	(dates_view_handle_mouse_pos), (dates_view_main_button_press):
	Store event rectangles inside the event structure rather than in a
	separate structure

2006-02-13  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_get_region),
	(dates_view_draw_event_cb), (dates_view_event_rect_intersect),
	(dates_view_handle_mouse_pos), (dates_view_main_button_press),
	(dates_view_main_motion_notify):
	Finish preliminary moving/resizing of events by dragging

2006-02-12  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_set_property),
	(dates_view_get_property), (dates_view_init),
	(dates_view_draw_event_cb), (dates_view_main_button_press):
	Start to put in code for moving/resizing of events by dragging

2006-02-03  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Change toolbar buttons to buttons (fixes bug #37)
	
	* src/dates_view.c: (dates_view_objects_changed),
	(dates_view_objects_removed), (dates_view_draw_event_cb),
	(dates_view_draw_event), (dates_view_new),
	(dates_view_update_query), (dates_view_add_calendar),
	(dates_view_remove_calendar), (dates_view_remove_all_calendars),
	(dates_view_set_mode):
	- Fix drawing of only visible events (fixes bug #71)
	- Use g_markup_printf_escaped instead of g_strdup_printf for calendar
	  event strings (fixes bug #70)

2006-01-06  Chris Lord,,,  <chris@openedhand.com>

	reviewed by: <delete if not using a buddy>

	* data/dates.glade:
	* src/dates_main.c: (dates_zoom_in_cb), (dates_zoom_out_cb),
	(dates_details_time_start_cb), (dates_details_time_end_cb):
	- Redraw after changing event times
	- Make zoom buttons insensitive when they can't do anything
	
	* src/dates_view.c: (dates_view_event_size_cb3),
	(dates_view_event_size_cb2), (dates_view_update_query),
	(dates_view_add_calendar):
	- Fix more timezone issues - works for me, needs testing.

2006-01-06  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_get_property),
	(dates_view_finalize), (dates_view_event_data_free),
	(dates_view_event_free), (dates_view_init),
	(dates_view_find_event_rect), (dates_view_event_size_cb2),
	(dates_view_draw_event_cb), (dates_view_update_query):
	Possibly fix some timezone issues

2006-01-06  Chris Lord,,,  <chris@openedhand.com>

	* configure.ac:
	Require gconf
	
	* src/dates_main.c: (dates_event_selected_cb), (main):
	Move calendar loading code from widget to interface
	
	* src/dates_view.c: (dates_view_get_property),
	(dates_view_finalize), (dates_view_event_free), (dates_view_init),
	(make_time_for_day_begin), (make_isodate_for_day_begin),
	(dates_view_redraw), (dates_view_event_rect_free),
	(dates_view_find_event_rect), (dates_view_event_size_cb2),
	(dates_view_event_size_cb), (dates_view_objects_changed),
	(dates_view_draw_event), (dates_view_main_button_press),
	(dates_view_new), (dates_view_update_query),
	(dates_view_add_calendar), (dates_view_remove_calendar),
	(dates_view_remove_all_calendars), (dates_view_set_mode),
	(dates_view_set_visible_days), (dates_view_set_visible_hours),
	(dates_view_set_date), (dates_view_get_months_in_row),
	(dates_view_get_visible_months), (dates_view_get_visible_days),
	(dates_view_get_visible_hours):
	* src/dates_view.h:
	Add support for multiple calendars

2006-01-06  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Small changes to time-editing dialog
	
	* src/dates_main.c: (dates_event_selected_cb),
	(dates_details_time_entry_changed), (dates_details_time_entry_alt),
	(dates_details_time_hour_cb), (dates_details_time_lminute_cb),
	(dates_details_time_rminute_cb), (dates_details_time_cb),
	(dates_details_time_start_cb), (dates_details_time_end_cb),
	(dates_details_cb), (dates_ok_cb), (dates_edit_cb), (main):
	Add time-editing to the details dialog

2005-12-02  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Make time dialog more HIG-compliant, name more widgets
	
	* src/dates_main.c: (dates_date_changed_cb),
	(dates_event_selected_cb), (main):
	Implement editing of summary, location and description/details in the
	'Details' dialog

2005-12-02  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	More dialog editing
	
	* src/dates_main.c: (dates_event_selected_cb), (dates_edit_cb),
	(main):
	Set d->comp to NULL after editing to stop writing to incorrect
	components
	
	* src/dates_view.c: (dates_view_init),
	(dates_view_objects_changed), (dates_view_draw_event),
	(dates_view_main_button_press), (dates_view_new),
	(dates_view_set_mode):
	Ref ECalComponent while editing in case of external changes

2005-11-29  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Design details and time-editing dialogs

	* src/dates_main.c:
	* src/dates_view.c:
	Inconsequential changes

2005-11-29  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_event_selected_cb):
	* src/dates_view.c: (dates_view_find_event_rect),
	(resolve_tzid_cb), (dates_view_event_data_position_sort),
	(dates_view_event_data_find), (dates_view_event_size_cb3),
	(dates_view_event_size_cb2), (dates_view_event_size_cb),
	(dates_view_event_width), (dates_view_event_clear),
	(dates_view_event_span), (dates_view_event_sort),
	(dates_view_table_to_list), (dates_view_calculate_overlaps),
	(dates_view_objects_changed), (dates_view_add_hpoints),
	(dates_view_add_vpoints), (dates_view_draw_event_cb),
	(dates_view_draw_event), (dates_view_side_expose),
	(dates_view_new), (dates_view_set_mode),
	(dates_view_set_visible_days), (dates_view_set_visible_hours),
	(dates_view_set_date):
	* src/dates_view.h:
	Start moving to use ECalComponent instead of icalcomponent

2005-11-03  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_date_changed_cb), (main):
	Add retrieval/editing of event summary
	
	* src/dates_view.c: (dates_view_objects_added),
	(dates_view_set_mode):
	Commit changes to events after switching modes from edit->view

2005-11-03  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_event_free), (dates_view_init),
	(dates_view_calculate_overlaps), (dates_view_objects_added),
	(dates_view_add_vpoints), (dates_view_draw_event_cb),
	(dates_view_draw_event), (dates_view_main_expose),
	(dates_view_event_rect_intersect), (dates_view_main_button_press),
	(dates_view_top_expose), (dates_view_side_expose),
	(dates_view_new), (dates_view_set_mode):
	- Lowlight everything on the calendar except the current event when
	  editing
	- Try to get calendar colour (doesn't work?)
	- Set background colour of side/top panels to white to match main
	  calendar area

2005-10-29  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Remove cancel button, separate header/date label
	
	* src/dates_main.c: (dates_date_changed_cb), (main):
	Use header label to advise the user on operations

2005-10-27  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Change 'Open' button to 'Edit'
	- Add cancel button to quick-edit bar (perhaps to be removed later)
	
	* src/dates_main.c: (dates_date_changed_cb), (main):
	- Change things due to the above
	- Set editing mode when you click the edit button
	
	* src/dates_view.c: (dates_view_class_init), (dates_view_init),
	(dates_view_redraw), (dates_view_add_vpoints),
	(dates_view_draw_event_cb), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_main_scroll_event),
	(dates_view_event_rect_intersect), (dates_view_main_button_press),
	(dates_view_top_expose), (dates_view_side_expose),
	(dates_view_new):
	- New signal/functions for selecting and editing events (not finished)
	
	* src/dates_view.h:
	- New signal 'event_selected'
	- New function 'dates_view_set_mode'

2005-10-26  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Add header icon, adjust spacing, rename some widgets
	
	* src/dates_main.c: (dates_date_changed_cb), (main):
	- date_label/date_ebox renamed to header_label/header_ebox
	
	* src/dates_view.c: (dates_view_init),
	(make_isodate_for_day_begin), (dates_view_redraw),
	(dates_view_objects_added), (dates_view_objects_removed),
	(dates_view_add_hpoints), (dates_view_add_vpoints),
	(dates_view_draw_event_cb), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_top_expose),
	(dates_view_side_expose), (dates_view_new):
	- Use gdk line attributes instead of manually adjusting rects and
	  drawing more than once.
	- Keep track of event rectangles for selection
	
	* src/dates_view.h:
	- Add new enum DatesViewMode

2005-10-26  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	- Add date header
	- Add delete event button
	- Fill out menu
	- Add event quick-edit bar
	
	* src/dates_main.c: (dates_date_change), (main):
	- Add date header label
	- Show quick-edit bar when new is clicked
	
	* src/dates_view.c: (dates_view_class_init),
	(dates_view_event_data_free), (dates_view_event_free),
	(dates_view_init), (dates_view_event_size_cb2),
	(dates_view_set_date):
	- Add new signal date_changed
	- Remove date header label from widget
	- Fix all warnings
	
	* src/dates_view.h:
	- Add new signal date_changed

2005-10-04  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_init),
	(dates_view_calculate_overlaps), (dates_view_objects_added),
	(dates_view_main_expose), (dates_view_main_button_press),
	(dates_view_top_expose), (dates_view_side_expose):
	- Use small text for month/day/time/event labels
	- Display day labels for multiple-month (year) view
	- Fix borders for time labels

2005-10-04  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c:
	- Don't overwrite private variable (fixes date-changing)
	- Disable week view
	
	* src/dates_view.c: (dates_view_event_size_cb3),
	(dates_view_event_size_cb2), (dates_view_calculate_overlaps),
	(dates_view_objects_added), (dates_view_add_region),
	(dates_view_calc_pan), (dates_view_calc_zoom),
	(dates_view_draw_event_cb), (dates_view_draw_event):
	- Only calculate recurrences for the current year
	- Add a FRAMES define to specify how many rendered frames between
	  transitions
	- Only draw visible events (to a certain extent)

2005-09-30  mallum  <mallum@openedhand.com>

	* data/Makefile.am:
	Move icon to /usr/share/pixmaps
	* data/dates.desktop:
	Add PIM category

2005-09-30  Ross Burton  <ross@burtonini.com>

	* dates/Makefile.am:
	Add to EXTRA_DIST.

2005-09-30  Ross Burton  <ross@burtonini.com>

	* data/Makefile.am:
	* data/dates.desktop:
	* data/oh-dates.png:
	Add desktop file and icon.

2005-09-29  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_redraw),
	(dates_view_event_data_position_sort),
	(dates_view_event_data_find), (dates_view_objects_added),
	(dates_view_objects_removed), (dates_view_add_region),
	(dates_view_calc_zoom), (dates_view_rectangle_intersect),
	(dates_view_add_hpoints), (dates_view_add_vpoints),
	(dates_view_draw_event_cb), (dates_view_draw_event),
	(dates_view_main_expose):
	- Support for recurring events
	- Rewrite some event-drawing code (not stupidly inefficient anymore)

2005-09-27  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_finalize),
	(make_isodate_for_day_begin), (dates_view_redraw),
	(dates_view_event_size_cb), (dates_view_event_size),
	(dates_view_event_clear), (dates_view_event_span),
	(dates_view_event_sort), (dates_view_table_to_list),
	(dates_view_calculate_overlaps), (dates_view_objects_added),
	(dates_view_add_hpoints), (dates_view_add_vpoints),
	(dates_view_draw_event):
	Separate overlap draw data into days, in preparation for recurring
	events (also fixes other odd cases/bugs)

2005-09-24  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_init), (dates_view_redraw),
	(dates_view_event_size_cb), (dates_view_event_compare),
	(dates_view_event_width), (dates_view_event_clear),
	(dates_view_event_span):
	- Allocate space correctly for all cases of overlapping events

2005-09-23  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_finalize), (dates_view_init),
	(make_isodate_for_day_begin), (dates_view_redraw),
	(dates_view_event_size_cb), (dates_view_event_compare),
	(dates_view_event_size), (dates_view_event_clear),
	(dates_view_event_span), (dates_view_calculate_overlaps),
	(dates_view_objects_added), (dates_view_objects_removed),
	(dates_view_calc_pan), (dates_view_calc_zoom),
	(dates_view_rectangle_intersect), (dates_view_add_hpoints),
	(dates_view_add_vpoints), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_main_scroll_event),
	(dates_view_main_button_press), (dates_view_top_expose),
	(dates_view_side_expose):
	- Fix side-panel for 24-hour views
	- Cosmetic enhances for summary text
	- Complete overlapping events support (I think)

2005-09-23  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_date_change), (dates_zoom_in_cb),
	(dates_zoom_out_cb), (dates_zoom_change):
	Add extra zoom levels; 24-hours day and 24-hours week
	
	* src/dates_view.c: (dates_view_init),
	(make_isodate_for_day_begin), (dates_view_redraw),
	(dates_view_objects_added), (dates_view_objects_removed),
	(dates_view_in_region), (dates_view_calc_pan),
	(dates_view_add_hpoints), (dates_view_add_vpoints),
	(dates_view_draw_event), (dates_view_top_expose),
	(dates_view_side_expose):
	- Change drawing of 'teeth' on events so that they don't potrude more on
	  one side than the other
	- Draw event summary

2005-09-22  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_zoom_in_cb), (dates_zoom_out_cb),
	(main):
	Enable year view again
	
	* src/dates_view.c: (dates_view_finalize), (dates_view_init),
	(dates_view_calc_pan), (dates_view_calc_zoom),
	(dates_view_rectangle_intersect), (dates_view_add_hpoints),
	(dates_view_add_vpoints), (dates_view_draw_event),
	(dates_view_main_expose), (dates_view_main_scroll_event),
	(dates_view_main_button_press), (dates_view_top_expose),
	(dates_view_side_expose), (dates_view_new),
	(dates_view_set_months_in_row), (dates_view_set_visible_months),
	(dates_view_set_visible_days), (dates_view_set_visible_hours),
	(dates_view_set_date), (dates_view_get_months_in_row),
	(dates_view_get_visible_months), (dates_view_get_visible_days),
	(dates_view_get_visible_hours), (dates_view_get_date):
	* src/dates_view.h:
	Add event visualisation (unfinished)

2005-09-19  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_finalize), (dates_view_init),
	(dates_view_in_region), (dates_view_redraw), (dates_view_calc_pan),
	(dates_view_calc_zoom), (dates_view_main_expose),
	(dates_view_set_months_in_row), (dates_view_set_visible_months),
	(dates_view_set_visible_days), (dates_view_set_visible_hours),
	(dates_view_set_date):
	- Make header display in text-selected colours, like previous
	  non-GtkLabel version.
	- Fix animation when widget is being resized by its container

2005-09-19  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Another rework
	
	* src/dates_main.c: (dates_zoom_in_cb), (dates_zoom_out_cb),
	(main):
	
	* src/dates_view.c: (dates_view_init):
	Add padding to date header label

2005-09-19  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Don't pack the navigator widgets at the end of the toolbar
	
	* src/dates_main.c: (main):
	
	* src/dates_view.c: (dates_view_init), (dates_view_main_expose),
	(dates_view_main_button_press), (dates_view_top_expose),
	(dates_view_side_expose):
	Some small cosmetic changes and mouse-wheel support

2005-09-19  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Hide 'Year' button
	
	* src/dates_main.c: (dates_date_change), (main):
	Make scroll correspond correctly to the view chosen
	
	* src/dates_view.c: (dates_view_scroll_value_changed),
	(dates_view_calc_pan), (dates_view_rectangle_intersect),
	(dates_view_main_expose), (dates_view_top_expose),
	(dates_view_side_expose):
	Fix panning accuracy, take borders into account and add smooth
	scrolling

2005-09-16  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_main.c: (dates_zoom_change):
	Work around a bug in DatesView
	
	* src/dates_view.c: (dates_view_finalize), (dates_view_init),
	(dates_view_in_region), (dates_view_redraw),
	(dates_view_scroll_value_changed), (dates_view_calc_pan),
	(dates_view_main_expose), (dates_view_main_button_press),
	(dates_view_top_expose), (dates_view_side_expose),
	(dates_view_set_months_in_row), (dates_view_set_visible_months),
	(dates_view_set_visible_days), (dates_view_set_visible_hours),
	(dates_view_set_date), (dates_view_get_months_in_row),
	(dates_view_get_visible_months), (dates_view_get_visible_days),
	(dates_view_get_visible_hours), (dates_view_get_date):
	Implement side/top panels and scrollbar (top panel unfinished,
	side panel shows up errors in drawing calculations)

2005-09-16  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_class_init), (dates_view_finalize),
	(dates_view_init), (dates_view_in_region), (dates_view_calc_pan),
	(dates_view_calc_zoom), (dates_view_rectangle_intersect),
	(dates_view_expose):
	* src/dates_view.h:
	Overhaul of DatesView - Inherit GtkTable instead of GtkWidget in
	preparation for scrollbar and side/top panels

2005-09-16  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_expose):
	Fix hours drawing logic

2005-09-15  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	* src/dates_main.c: (dates_date_change), (dates_zoom_change),
	(dates_month_cb), (dates_year_cb), (main):
	Dates interface revamp
	
	* src/dates_view.c: (dates_view_init), (dates_view_add_region),
	(dates_view_in_region), (dates_view_redraw), (dates_view_expose),
	(dates_view_realize), (dates_view_size_allocate),
	(dates_view_button_press):
	Add support for mouse selection of date

2005-09-15  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_class_init), (dates_view_finalize),
	(dates_view_init), (dates_view_expose), (dates_view_set_date):
	Use nl_langinfo and only generate layouts when necessary

2005-09-14  Chris Lord,,,  <chris@openedhand.com>

	* Makefile.am:
	* autogen.sh:
	* configure.ac:
	* data/Makefile.am:
	* data/Makefile.old:
	* src/Makefile.am:
	* src/libgtkdatesview.pc.in:
	Autotool
	
	* src/dates_view.c: (dates_view_init), (dates_view_calc_pan),
	(dates_view_calc_zoom), (dates_view_rectangle_intersect),
	(dates_view_expose), (dates_view_realize),
	(dates_view_size_allocate), (dates_view_set_months_in_row),
	(dates_view_set_visible_months), (dates_view_set_visible_days),
	(dates_view_set_visible_hours), (dates_view_set_date):
	Really only draw visible months and days

2005-09-14  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	
	* src/dates_view.c: (dates_view_finalize), (dates_view_init),
	(dates_view_calc_zoom), (dates_view_expose), (dates_view_realize),
	(dates_view_size_allocate), (dates_view_redraw), (dates_view_new),
	(dates_view_set_months_in_row), (dates_view_set_visible_months),
	(dates_view_set_visible_days), (dates_view_set_visible_hours),
	(dates_view_set_date):
	- Only draw visible months
	- Only draw newly-exposed areas
	- Draw hour lines/labels
	- Various other fixes?

2005-09-09  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_calc_pan), (dates_view_calc_zoom),
	(dates_view_expose):
	Add current date header + extra swishness

2005-09-09  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_calc_pan), (dates_view_calc_zoom):
	Zoom and pan to hours < 24

2005-09-09  Chris Lord,,,  <chris@openedhand.com>

	* src/dates_view.c: (dates_view_calc_pan), (dates_view_realize),
	(dates_view_size_allocate):
	Pan to specific days inside months when appropriate (hours still
	unhandled)

2005-09-08  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	
	* src/dates_main.c: (create_dates_view), (dates_date_change),
	(dates_back_cb), (dates_forward_cb), (dates_today_cb),
	(dates_zoom_in_cb), (dates_zoom_change), (main):
	Add callbacks to control calendar view
	
	* src/dates_view.c: (dates_view_set_property),
	(dates_view_finalize), (dates_view_init), (dates_view_calc_pan),
	(dates_view_calc_zoom), (dates_view_expose), (dates_view_realize),
	(dates_view_size_allocate), (dates_view_new),
	(dates_view_set_months_in_row), (dates_view_set_visible_months),
	(dates_view_set_visible_days), (dates_view_set_visible_hours),
	(dates_view_set_date), (dates_view_get_months_in_row),
	(dates_view_get_visible_months), (dates_view_get_visible_days),
	(dates_view_get_visible_hours):
	Smooth panning animation and highlighting of currently selected date
	
	* src/dates_view.h:

2005-09-08  Chris Lord,,,  <chris@openedhand.com>

	* data/dates.glade:
	Rework UI
	
	* src/dates_main.c: (dates_zoom_change), (main):
	
	* src/dates_view.c: (dates_view_class_init), (dates_view_init),
	(dates_view_calc_zoom), (dates_view_expose),
	(dates_view_set_visible_hours), (dates_view_set_current_date),
	(dates_view_get_visible_hours):
	Fix zoom logic and retrieve month/day names using glibc/libical
	functions.
	
	* src/dates_view.h: