~ubuntu-branches/ubuntu/quantal/almanah/quantal-updates

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

    build: Re-add MAINTAINERS file

    `make dist` requires it.

 MAINTAINERS |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit bb4634640139145ede83f871568a1762f6e8d95f
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Mar 25 22:35:02 2012 +0100

    build: Update dependencies list in README

 README |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 13f2b0f08096ff4ad9570f65ca2b113fb8143c24
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Mar 25 22:20:12 2012 +0100

    l10n: Update British English translation

 po/en_GB.po |  491
 +++++++++++++++++++++++++++++++----------------------------
 1 files changed, 259 insertions(+), 232 deletions(-)

commit 523de8fa86af7cb85298db4f6d03ec4f44a2d281
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Mar 25 22:17:22 2012 +0100

    core: Fix viewing results of import operations

 src/import-export-dialog.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit e3c64de7ae46cead5684df0f000cfe8a09d60bae
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Mar 25 22:08:00 2012 +0100

    core: Fix text export

    It wasn't clearing its output buffer between entries, resulting in the
    text output files being output as concatenations of all the previous
    entries.

 src/export-operation.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit 0d09d962a17262fb6550fc68a05f0e75683aa2bd
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Mar 25 22:03:40 2012 +0100

    core: Fix deserialisation of XML when searching entries

 src/entry.c |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

commit 471dab3ea999e4716c33f72870b510a70fa588d3
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Mar 25 11:03:09 2012 +0100

    core: Work around a GtkBuilder bug with more recent versions of GTK+

    Work around bgo#672789 in more recent versions of GTK+ by always
    requesting
    to load the GtkUIManager XML when using
    gtk_builder_add_objects_from_file().

 src/date-entry-dialog.c    |    1 +
 src/import-export-dialog.c |    2 ++
 src/preferences-dialog.c   |    1 +
 src/search-dialog.c        |    1 +
 src/uri-entry-dialog.c     |    1 +
 5 files changed, 6 insertions(+), 0 deletions(-)

commit 934c42b4c69b46b09e6577389e3e5eb2ab51e211
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Mar 25 10:25:29 2012 +0100

    core: Fix punctuation in a tooltip

 data/almanah.ui |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 6eb7d62876aea12b565210c110e8b7b96fd65ab0
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Mar 25 10:25:20 2012 +0100

    core: Add an icon to the hyperlink button

 data/almanah.ui |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 7501b26e7414d95d55f57bd497cc034ba9dfc76c
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Mar 25 10:17:01 2012 +0100

    Bug 669927 — Save current entry after a timeout

    Save the current entry every 10 minutes, to deal with the situation
    where
    a user keeps the same entry open all day, periodically adding to it.

    Closes: https://bugzilla.gnome.org/show_bug.cgi?id=669927

 src/main-window.c |   38 ++++++++++++++++++++++++++++++++++----
 1 files changed, 34 insertions(+), 4 deletions(-)

commit 34762478a7aa99b0acd95245f9c396f0db666b2b
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Mar 24 23:06:58 2012 +0000

    core: Use GtkBox instead of Gtk[H|V]Box in the print dialogue

 src/printing.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 542a426082f89e965a22af6e97c4ce06beefa45e
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Mar 24 23:00:12 2012 +0000

    Bug 671801 — i18n doesn't work

    Commit 01084bd42ad2747cc582274a3988f17bcf23d6f3 removed
    AM_GNU_GETTEXT,
    meaning that ENABLE_NLS was *never* defined. This effectively
    disabled i18n
    for everyone.

    Closes: https://bugzilla.gnome.org/show_bug.cgi?id=671801

 src/application.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

commit 81c4ee3a1044f07f6704d9e4de723a30a8c13766
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat Mar 24 00:14:16 2012 +0100

    Updated Galician translations

 po/gl.po |  254
 ++++++++++++++++++++++++++++++++------------------------------
 1 files changed, 130 insertions(+), 124 deletions(-)

commit 54451a3934ce73f1abfad470829c35fd0c7f29fa
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Wed Mar 21 19:19:04 2012 +0100

    Updated French translation

 po/fr.po |  258
 ++++++++++++++++++++++++++++++++-----------------------------
 1 files changed, 135 insertions(+), 123 deletions(-)

commit d0f9694c78b9f71dc68b57739e2556380c1524aa
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Sun Feb 26 20:44:05 2012 +0100

    Updated Serbian translation

 po/sr.po       |  127
 ++++++++++++++++++++++++++++++-------------------------
 po/sr@latin.po |  127
 ++++++++++++++++++++++++++++++-------------------------
 2 files changed, 138 insertions(+), 116 deletions(-)

commit 6384f10c69d063656a26cc8fcd2c1103aa92dc3d
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Fri Jan 6 11:22:56 2012 +0000

    core: Don't call g_thread_init() if we have GLib ≥ 2.31.0

 src/main.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

commit 4801c389a96324e477a96624514cbd0bcc92d883
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Fri Jan 6 11:21:34 2012 +0000

    core: Fix chaining up of GApplication::startup signal

 src/application.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit c68e562b332c50460bec9a82dfa3f3b30e96eddb
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Fri Jan 6 11:09:43 2012 +0000

    core: Fix build with --enable-spell-checking

    See: bgo#667263

 src/main-window.c |   37 +++++++++++++++++--------------------
 1 files changed, 17 insertions(+), 20 deletions(-)

commit e8eaacbc52dfa54c081b709738bd21a9b196fc0c
Author: Vincent Untz <vuntz@gnome.org>
Date:   Fri Jan 6 12:18:41 2012 +0100

    build: Fix build with encryption support

    We need to check for largefile support to make gpgme happy.

    https://bugzilla.gnome.org/show_bug.cgi?id=666801

 configure.ac |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 90f6d22a337b9718182c7cc847f9323024b3d0b0
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Jan 4 17:45:40 2012 +0000

    build: Re-enable spell checking now that GtkSpell has GTK+ 3 support

    A GTK+ 3-ready version of GtkSpell is about ready at:
    https://github.com/manisandro/gtkspell3

    Re-enable compilation with --enable-spell-checking accordingly.

    This undoes commit 43768d9a223e769ef8662222b55e2dc6e5a6c48c and
    bumps our
    GtkSpell dependency to gtkspell-3.0.

    Closes: bgo#667263

 configure.ac |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

commit 82e2acbf2bb4d1039732cbcfb2c171ea0eb7e192
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   Mon Jan 2 12:40:55 2012 +0100

    Updated Danish translation

 po/da.po |  117
 ++++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 64 insertions(+), 53 deletions(-)

commit 241eb77d4c04f3341a06f113d2bd1fd1e38f10ed
Author: Muhammet Kara <muhammet.k@gmail.com>
Date:   Sat Dec 31 21:20:13 2011 +0200

    [l10n]Updated Turkish translation

 po/tr.po |  145
 ++++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 80 insertions(+), 65 deletions(-)

commit 7a1c288c8296a49a93001ad49a1aab7eb8be6764
Author: Mateusz Kacprzak <mateusz.kacprzak@yandex.ru>
Date:   Sat Dec 17 22:18:14 2011 +0100

    Added Polish translation

 po/LINGUAS |    1 +
 po/pl.po   |  661
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 662 insertions(+), 0 deletions(-)

commit 6bf0229c20f9a5ef92374595ff4d5823f74196f0
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat Dec 17 22:16:51 2011 +0100

    Revert "Added Polish translation"

    This reverts commit 4c5c13f524a000b7ecfcf0bb42a9d18dddeaa577.

 po/LINGUAS |    1 -
 po/pl.po   |  661
 ------------------------------------------------------------
 2 files changed, 0 insertions(+), 662 deletions(-)

commit 4c5c13f524a000b7ecfcf0bb42a9d18dddeaa577
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Sat Dec 17 22:03:30 2011 +0100

    Added Polish translation

 po/LINGUAS |    1 +
 po/pl.po   |  661
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 662 insertions(+), 0 deletions(-)

commit 4b11b928449c8623327694773ead9869603fc802
Author: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Date:   Sat Nov 5 09:13:52 2011 +0100

    Add Esperanto translation

 po/LINGUAS |    1 +
 po/eo.po   |  614
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 615 insertions(+), 0 deletions(-)

commit 75a4dc552d712fe0d4533370e4937c6f4d200076
Author: Marek Černocký <marek@manet.cz>
Date:   Wed Nov 2 19:49:38 2011 +0100

    Updated Czech translation

 po/cs.po |  113
 +++++++++++++++++++++++++++++++------------------------------
 1 files changed, 57 insertions(+), 56 deletions(-)

commit f963e70db98854937185e749c1b4dbbe919ca12c
Author: Álvaro Peña <alvaropg@gmail.com>
Date:   Tue Nov 1 21:33:29 2011 +0000

    core: Move the events list to the bottom of the window

    Closes: bgo#662014

 data/almanah.ui   |  136
 ++++++++++++++++++++++++++---------------------------
 src/main-window.c |   66 +-------------------------
 2 files changed, 69 insertions(+), 133 deletions(-)

commit faf64d1512c139bd2479d2a9893ca7ddc82f4664
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat Oct 29 17:35:51 2011 +0200

    Updated Hungarian translation by Balazs Ur

 po/hu.po |  157
 ++++++++++++++++++++++++++++++++++++++------------------------
 1 files changed, 96 insertions(+), 61 deletions(-)

commit 826c6a591a2f11908aff1567129872a7ad138c22
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Tue Oct 25 20:36:16 2011 +0200

    Updated Slovenian translation

 po/sl.po |  166
 ++++++++++++++++++++++++++++++++++++++++++--------------------
 1 files changed, 112 insertions(+), 54 deletions(-)

commit 009d24855bf7df122d9fe4e69ac4c3b4572f6b6c
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Oct 25 16:35:52 2011 +0200

    Updated Spanish translation

 po/es.po |  115
 ++++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 63 insertions(+), 52 deletions(-)

commit 69c10c8b4fc42ed48ad1c116f90f12015a7be5de
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Mon Oct 24 23:24:13 2011 +0200

    [l10n] Updated German translation

 po/de.po |  206
 ++++++++++++++++++++------------------------------------------
 1 files changed, 66 insertions(+), 140 deletions(-)

commit e573eb06c5391a9fa6e4d1029a9957ab44d81589
Author: Álvaro Peña <alvaropg@gmail.com>
Date:   Mon Oct 24 18:39:31 2011 +0200

    Bug 662016 — Create a toolbar menu item with the fonts style

 data/almanah.ui                      |   25 ++++++++-
 src/Makefile.am                      |   74 +++++++++++++------------
 src/main-window.c                    |   99
 ++++++++++++++++++++++++++++++++++
 src/widgets/font-style-menu-action.c |   58 ++++++++++++++++++++
 src/widgets/font-style-menu-action.h |   47 ++++++++++++++++
 5 files changed, 264 insertions(+), 39 deletions(-)

commit 8b44143df4e844d4c9b4da45186686cf048ebbfa
Author: Muhammet Kara <muhammet.k@gmail.com>
Date:   Fri Sep 30 01:31:39 2011 +0300

    Added Turkish translation

 po/LINGUAS |    1 +
 po/tr.po   |  626
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 627 insertions(+), 0 deletions(-)

commit 24c6d54c1c9b7211336b4b6779bb16a68d587fec
Author: Fran Dieguez <fran@openhost.es>
Date:   Tue Aug 30 16:58:49 2011 +0200

    Updated galician translations

 po/gl.po |  607
 ++++++++++++++++++++++++++++++++------------------------------
 1 files changed, 312 insertions(+), 295 deletions(-)

commit e7743e8b0fefeb884278bb15ddd65bd73c12b3c6
Author: Claude Paroz <claude@2xlibre.net>
Date:   Mon Aug 22 09:58:15 2011 +0200

    Updated French translation

 po/fr.po |  475
 ++++++++++++++++++++++++--------------------------------------
 1 files changed, 184 insertions(+), 291 deletions(-)

commit 233aad655e48c8533f513ff03c5100ef8768c149
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Fri Jul 29 19:38:10 2011 +0400

    Updated Russian translation

 po/ru.po |  234
 +++++++++++++++++++++++++++++++-------------------------------
 1 files changed, 117 insertions(+), 117 deletions(-)

commit ddf428130ffe6a457e6be01f30506cd338115b90
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   Thu Jul 28 18:14:15 2011 +0200

    Added Basque language

 po/LINGUAS |    1 +
 po/eu.po   |  764
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 765 insertions(+), 0 deletions(-)

commit ad6c2ee888d70e936608149426dd2ecfdd497141
Author: Gabriel Speckhahn <gabspeck@gmail.com>
Date:   Sat Jul 23 09:52:29 2011 -0300

    Updated Brazilian Portuguese Translation

 po/pt_BR.po |  216
 ++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 117 insertions(+), 99 deletions(-)

commit 7d19c7b00b8492684c9814bf160f16755f306911
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Tue Jul 19 08:43:38 2011 +0100

    build: Fix preferences with --enable-spell-checking and
    --disable-encryption

    The code to show the dialogue wasn't getting built.

 src/main-window.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 6ebc71c68709b6cc1f371c6fb3dfa20d6bc39f3d
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Tue Jul 19 08:43:25 2011 +0100

    core: Remove an extraneous include

 src/interface.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

commit 9a96bcdeb8eaa89943d7f4143c2840341162adaf
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Jul 14 08:51:54 2011 +0100

    core: Use the correct priority for search progress callbacks

    This should prevent the situation where the progress callbacks
    are scheduled
    after the async operation's GAsyncReadyCallback.

    See: bgo#647690

 src/storage-manager.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

commit 4248338b6fa04ece36b9da1f4283c784517cad25
Author: Álvaro Peña <alvaropg@gmail.com>
Date:   Thu Jul 14 08:43:41 2011 +0100

    core: Fix resizing the search dialogue

 data/almanah.ui |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

commit 85fd0359aab2dd6db26ffbc7ee74a58c0eab0acd
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   Wed Jul 13 22:26:04 2011 +0200

    Updated Danish translation

 po/da.po |  712
 ++++++++++++++++++++++++++++++++------------------------------
 1 files changed, 367 insertions(+), 345 deletions(-)

commit 4ad604845c6173d326336e0b142a023eb5656c28
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Fri Jul 8 18:08:13 2011 +0200

    Updated Serbian translation

 po/sr.po       |   82
 ++++++++++++++++++++++++++++++++++++--------------------
 po/sr@latin.po |   82
 ++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 106 insertions(+), 58 deletions(-)

commit 0bd90add8c25b0dd977ac87eb3e7bdb1d7474c4e
Author: Marek Černocký <marek@manet.cz>
Date:   Tue Jul 5 15:40:29 2011 +0200

    Updated Czech translation

 po/cs.po |  332
 ++++++++++++++++++++-----------------------------------------
 1 files changed, 109 insertions(+), 223 deletions(-)

commit 5758286f0e6dc923034fcc5a26644e3845345b5a
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Sat Jul 2 20:17:55 2011 +0200

    Updated Slovenian translation

 po/sl.po |   78
 +++++++++++++++++++++++++++++++++++++++----------------------
 1 files changed, 50 insertions(+), 28 deletions(-)

commit 211049803920d01bd6f1de2c969569420cec4eaa
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Tue Jun 28 21:55:38 2011 +0200

    [l10n] Updated German translation

 po/de.po |  199
 ++++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 110 insertions(+), 89 deletions(-)

commit 466e98fec932ac18d9164bfd4a881121d104339d
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Tue Jun 28 21:32:34 2011 +0200

    Updated Spanish translation

 po/es.po |  207
 ++++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 113 insertions(+), 94 deletions(-)

commit cb8ad21e8c32fdce37359e192a7dc3d387af9558
Author: Álvaro Peña <alvaropg@gmail.com>
Date:   Mon Jun 27 23:28:41 2011 +0100

    Bug 647690 — Make search asynchronous

    Add an asynchronous search API and make use of it in the search
    dialogue.
    Also give the search dialogue a bit of a facelift.

    Closes: bgo#647690

 data/almanah.ui       |  201
 +++++++++++++++++++++++++++++++------------------
 src/main-window.c     |    2 +-
 src/search-dialog.c   |  175 ++++++++++++++++++++++++++++++++++++-------
 src/storage-manager.c |  162 +++++++++++++++++++++++++++++++++++++++
 src/storage-manager.h |    7 ++
 5 files changed, 448 insertions(+), 99 deletions(-)

commit f72bcc9b8703e44360dd89ca76d35550b3bc9293
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Sun May 15 23:57:08 2011 +0200

    Added Serbian translation

 po/sr@latin.po |  675
 +++++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 621 insertions(+), 54 deletions(-)

commit 28eee498611bdc07ab52cd59ede0b7398809c232
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Sun May 15 23:55:42 2011 +0200

    Added Serbian translation

 po/LINGUAS     |    2 +
 po/sr.po       |  621
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/sr@latin.po |   54 +++++
 3 files changed, 677 insertions(+), 0 deletions(-)

commit 95e9bdd85fccc58c0b5e0ea3c05671a28d6743d2
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   Thu May 12 20:15:45 2011 +0400

    Updated Russian translation

 po/ru.po |  685
 ++++++++++++++++++++++++++------------------------------------
 1 files changed, 287 insertions(+), 398 deletions(-)

commit 7a436a09f97c3a216191ed443041c0cf5c41c662
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Sat May 7 19:16:35 2011 +0200

    Updated Hungarian translation from Balazs Úr

 po/hu.po |  446
 ++++++++++++++++++++++----------------------------------------
 1 files changed, 160 insertions(+), 286 deletions(-)

commit 37ba1df32ce4e23a35695fb9e5f42272423ef3af
Author: Djavan Fagundes <djavan@comum.org>
Date:   Tue May 3 14:42:28 2011 -0300

    Updated Brazilian Portuguese translation

 po/pt_BR.po |  570
 +++++++++++++++++++++++++++++------------------------------
 1 files changed, 283 insertions(+), 287 deletions(-)

commit a4a170bc05d59345f4ce46b2a48f78c9c268a6e7
Author: Daniel Korostil <ted.korostiled@gmail.com>
Date:   Tue May 3 19:24:28 2011 +0300

    Added uk translation

 po/LINGUAS |    1 +
 po/uk.po   |  699
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 700 insertions(+), 0 deletions(-)

commit 96f723bbc1f1e89cbf62f807778a04bc83747e00
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Wed Apr 27 19:46:14 2011 +0200

    Updated Slovenian translation

 po/sl.po |  452
 +++++++++++++++++++++++++++-----------------------------------
 1 files changed, 196 insertions(+), 256 deletions(-)

commit e205209b688ee0c9fc453c84c7565e454fd01771
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Apr 21 19:33:27 2011 +0200

    Updated Spanish translation

 po/es.po |  449
 +++++++++++++++++++++++++++++++-------------------------------
 1 files changed, 224 insertions(+), 225 deletions(-)

commit 6637789f8f969278c0c54ec6b528e6816019962f
Author: Marek Černocký <marek@manet.cz>
Date:   Thu Apr 21 09:49:44 2011 +0200

    Updated Czech translation

 po/cs.po |  447
 +++++++++++++++++++++++++++++++-------------------------------
 1 files changed, 223 insertions(+), 224 deletions(-)

commit 325433a918c4e7b299c2a1542c5d95eea86beb7b
Author: Álvaro Peña <alvaropg@gmail.com>
Date:   Wed Apr 20 16:40:16 2011 +0100

    Bug 647691 — Make search case-insensitive

 src/storage-manager.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit 845985fe959d0be0b47a3e71759fa8b13f482d98
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Mon Apr 18 20:28:21 2011 +0200

    [l10n] Updated German translation

 po/de.po |  441
 +++++++++++++++++++++++++++++++-------------------------------
 1 files changed, 218 insertions(+), 223 deletions(-)

commit abb2fab89d83c354f409ca70e69def53ff8fd6de
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Apr 18 18:42:21 2011 +0100

    build: Bump GTK+ and GIO dependencies to 3.0.0 and 2.28.0 respectively

    This is because we now use GtkApplication and GApplication.

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 5953fc9358483fe4b95f2eddeb03db52240099b1
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Apr 18 18:32:35 2011 +0100

    core: Mark the toolbar as a primary toolbar

 data/almanah.ui |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

commit 727d98f1bdf532b7eb7806fb0f752c38c4a74086
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Apr 18 17:56:59 2011 +0100

    core: Bind the StorageManager's key to GSettings

 src/application.c     |    9 +++++----
 src/storage-manager.c |    2 +-
 2 files changed, 6 insertions(+), 5 deletions(-)

commit de24162fe156d7f9e54ff30edd3eaa05cf273b32
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Apr 18 17:53:04 2011 +0100

    core: Hide the main window while exiting to make things look faster

 src/main-window.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

commit 12bdc2f7d2a9a7049c958285be6564f64aa45fe4
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Apr 18 17:52:55 2011 +0100

    core: Don't double-free the main window on exiting

 src/application.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

commit fbee37f024de85384bfedce2edd320548ec6acd0
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Apr 18 17:42:42 2011 +0100

    core: Remove spurious debug messages

 src/application.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

commit fb3b0eddb3a57097712ee494dd04b0fd3867b8ae
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Apr 18 17:41:31 2011 +0100

    core: Remove unused variables from AlmanahApplication

 src/application.c |   21 ---------------------
 1 files changed, 0 insertions(+), 21 deletions(-)

commit 37ae45223aeb2395b8db9d6ce1dcfece1590095c
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Apr 18 17:37:48 2011 +0100

    core: Move the remaining function from main.c into interface.c

    This allows us to remove main.h.

 configure.ac                      |    2 +-
 src/Makefile.am                   |    1 -
 src/date-entry-dialog.c           |    1 -
 src/entry.c                       |    1 -
 src/event-manager.c               |    1 -
 src/event.c                       |    1 -
 src/events/calendar-appointment.c |    2 +-
 src/events/calendar-task.c        |    2 +-
 src/export-operation.c            |    1 -
 src/import-export-dialog.c        |    1 -
 src/import-operation.c            |    1 -
 src/interface.c                   |   28 +++++++++++++++++++++++++++-
 src/interface.h                   |    1 +
 src/main-window.c                 |    1 -
 src/main.c                        |   32 +++-----------------------------
 src/main.h                        |   33
 ---------------------------------
 src/preferences-dialog.c          |    1 -
 src/printing.c                    |    1 -
 src/search-dialog.c               |    1 -
 src/storage-manager.c             |    2 +-
 src/uri-entry-dialog.c            |    1 -
 src/widgets/calendar.c            |    1 -
 22 files changed, 35 insertions(+), 81 deletions(-)

commit a76942bdfee913ef606879f6998c219877ce14be
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Apr 18 17:23:03 2011 +0100

    core: Make the XML parser slightly more robust

 src/entry.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit 56bec5f5eeb9f0a8497baa186ad7294e9e7f34ff
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Apr 18 17:22:35 2011 +0100

    core: Only set the last edited date on import if it's valid

 src/import-operation.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

commit 0d2374f0bd55461b8bb6ca3a234b60fb395c6f32
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 23:48:54 2011 +0100

    Bug 622193  Use single instance

    A long exercise in yak shaving to remove the global struct, port to
    GtkApplication and consequently get single instance support.

    Closes: bgo#622193

 po/POTFILES.in                    |    9 +-
 src/Makefile.am                   |    2 +
 src/application.c                 |  372
 +++++++++++++++++++++++++++++++++++++
 src/application.h                 |   62 ++++++
 src/date-entry-dialog.c           |    1 -
 src/event-manager.c               |    8 +-
 src/event.c                       |    4 +-
 src/event.h                       |    4 +-
 src/events/calendar-appointment.c |   11 +-
 src/events/calendar-task.c        |   11 +-
 src/export-operation.c            |   59 ++++++-
 src/export-operation.h            |    5 +-
 src/import-export-dialog.c        |   87 ++++++++--
 src/import-export-dialog.h        |    3 +-
 src/import-operation.c            |   65 ++++++-
 src/import-operation.h            |    5 +-
 src/main-window.c                 |  236 +++++++++++++++++-------
 src/main-window.h                 |    4 +-
 src/main.c                        |  148 +--------------
 src/main.h                        |   24 ---
 src/preferences-dialog.c          |   68 ++++++-
 src/preferences-dialog.h          |    2 +-
 src/printing.c                    |   44 ++---
 src/printing.h                    |    7 +-
 src/search-dialog.c               |   29 ++-
 src/storage-manager.c             |   40 ++++-
 src/storage-manager.h             |    2 +-
 src/widgets/calendar.c            |  109 ++++++++++-
 src/widgets/calendar.h            |    7 +-
 29 files changed, 1081 insertions(+), 347 deletions(-)

commit 5bb69b0b7e70218a62fd7e361ae212ff403f13dd
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Apr 17 11:10:54 2011 +0200

    [l10n] Updated German translation

 po/de.po |  334
 ++++++++++++++++++++++++--------------------------------------
 1 files changed, 130 insertions(+), 204 deletions(-)

commit 6d67d5d014de642d9223819fc098e5e7969cb136
Author: Marek Černocký <marek@manet.cz>
Date:   Sun Apr 17 10:50:52 2011 +0200

    Updated Czech translation

 po/cs.po |  361
 ++++++++++++++++++++++++++++++--------------------------------
 1 files changed, 176 insertions(+), 185 deletions(-)

commit 833d1850bfcd87f0e95802d8c2630194d43854d6
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Sat Apr 16 19:38:59 2011 +0200

    Updated Slovenian translation

 po/sl.po |  355
 ++++++++++++++++++++++++++++++--------------------------------
 1 files changed, 174 insertions(+), 181 deletions(-)

commit 31367cd8a4cf12edda2a631148919d142d73939f
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Apr 15 19:53:30 2011 +0200

    Updated Spanish translation

 po/es.po |  374
 +++++++++++++++++++++++++++++---------------------------------
 1 files changed, 175 insertions(+), 199 deletions(-)

commit ccc4d67c84c355e7fda359353b3544524b36b5f9
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 22:13:17 2011 +0100

    core: Fix a version number in a comment

 src/entry.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 3bfc9106408009a745d0bcfa19719911a7bd96ad
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Apr 2 22:16:27 2011 +0100

    core: Add support for hyperlinks

    These replace definitions. Closes: bgo#631835

 data/almanah.ui        |   76 +++++++++++++++++
 src/Makefile.am        |    2 +
 src/main-window.c      |  167 ++++++++++++++++++++++++++++++++++---
 src/uri-entry-dialog.c |  215
 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/uri-entry-dialog.h |   57 +++++++++++++
 5 files changed, 505 insertions(+), 12 deletions(-)

commit a90413df6b1edc6a0bb24d938935b0b03d775038
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 00:59:10 2011 +0100

    core: Add a new XML-based serialisation format which can represent
    links

    The GTK+ default serialisation format can't represent hyperlinks using
    a GtkTextTag subclass as we were using. It's a better long-term move
    to have
    our own serialisation format that we control anyway. This defines
    a new
    data format version, and uses it as the default, converting entries
    as they
    are edited/written.

 data/Makefile.am   |    3 +-
 data/entry-2.0.rnc |   30 ++++
 src/entry.c        |  395
 +++++++++++++++++++++++++++++++++++++++++++++++++++-
 3 files changed, 421 insertions(+), 7 deletions(-)

commit cd4383736bff24dd403cb6ce398ed28680fc57ea
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 01:01:37 2011 +0100

    widgets: Add a GtkTextTag subclass for hyperlinks

    This allows us to represent hyperlinks in text buffers as anonymous
    tags
    which have their URI as a property.

 src/Makefile.am             |    4 +-
 src/widgets/hyperlink-tag.c |  145
 +++++++++++++++++++++++++++++++++++++++++++
 src/widgets/hyperlink-tag.h |   56 +++++++++++++++++
 3 files changed, 204 insertions(+), 1 deletions(-)

commit 050f22244d8586f7dbb5f5f6050fd2e481cb6cce
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Nov 7 16:57:16 2010 +0000

    core: Remove definition support

    It's never worked particularly well or been especially useful,
    and will be
    replaced by a hyperlinking system. Helps: bgo#631835

 data/almanah.ui                 |  241 -------------------------
 src/Makefile.am                 |   36 +----
 src/add-definition-dialog.c     |  284 -----------------------------
 src/add-definition-dialog.h     |   60 ------
 src/definition-manager-window.c |  378
 ---------------------------------------
 src/definition-manager-window.h |   51 ------
 src/definition.c                |  341
 -----------------------------------
 src/definition.h                |   93 ----------
 src/definitions/contact.c       |  240 -------------------------
 src/definitions/contact.h       |   52 ------
 src/definitions/file.c          |  125 -------------
 src/definitions/file.h          |   52 ------
 src/definitions/note.c          |  138 --------------
 src/definitions/note.h          |   52 ------
 src/definitions/uri.c           |  140 ---------------
 src/definitions/uri.h           |   52 ------
 src/import-operation.c          |   15 --
 src/interface.c                 |   51 +-----
 src/main-window.c               |  188 +-------------------
 src/main.c                      |    4 -
 src/main.h                      |    2 -
 src/storage-manager.c           |  186 +-------------------
 src/storage-manager.h           |    8 +-
 23 files changed, 14 insertions(+), 2775 deletions(-)

commit 74df40837a814d95e11343b16643094968410e59
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 20:38:56 2011 +0100

    build: Update almanah.doap and drop MAINTAINERS

    Update almanah.doap to comply with
    https://live.gnome.org/MaintainersCorner#doap and drop the (now
    unnecessary)
    MAINTAINERS file.

 MAINTAINERS  |    3 ---
 almanah.doap |   19 ++++++++++++-------
 2 files changed, 12 insertions(+), 10 deletions(-)

commit 6e3a5a52559dd0cfdfdff0202c69934e0385502e
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 19:40:31 2011 +0100

    build: Post-release version bump

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 83e4080290a7b4ff2d8449bd45865e4dd590ef2b
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 19:38:43 2011 +0100

    build: Release version 0.8.0

 NEWS |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 42 insertions(+), 0 deletions(-)

commit dc1f299129b6250437119da220cbb8660c376255
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 19:19:31 2011 +0100

    core: Don't conditionally compile preference dialogue response code

    It's applicable to both spell checking and encryption preferences.

 src/preferences-dialog.c |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)

commit 7d50e148b2b2eb3f6c6973bdd5ef530b14dcf4f2
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 19:13:21 2011 +0100

    l10n: Update British English translation

 po/en_GB.po |  350
 +++++++++++++++++++++++++++++------------------------------
 1 files changed, 171 insertions(+), 179 deletions(-)

commit 8290b2cad580ccbd4a1caa2e235e38ebd34260ac
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 19:12:53 2011 +0100

    build: Add a generated file to POTFILES.skip

 po/POTFILES.skip |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 43768d9a223e769ef8662222b55e2dc6e5a6c48c
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 19:09:39 2011 +0100

    build: Disable spell checking due to GtkSpell not supporting GTK+ 3

 configure.ac |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit 9dc2c1fd153ebada2392bc774875ba6a43df217d
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 14 19:05:50 2011 +0100

    core: Remove some unnecessary debug messages

 src/import-export-dialog.c |    8 +++-----
 src/import-operation.c     |   13 ++++++-------
 2 files changed, 9 insertions(+), 12 deletions(-)

commit b7649d949735b3f532a11d3f450468871e8eadbc
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Apr 13 21:06:29 2011 +0100

    core: Add support for versioning the formats used by entries in
    the database

    This should allow for smoother upgrades between different formats
    in future,
    since we won't have to try and detect which one is in use in a
    given entry.

 po/POTFILES.in        |    1 +
 src/entry.c           |   90
 +++++++++++++++++++++++++++++++++++-------------
 src/entry.h           |   11 +++++-
 src/storage-manager.c |   21 +++++++----
 4 files changed, 88 insertions(+), 35 deletions(-)

commit de641cd860d41142eb8cfd4e18c8e89c04b40bd7
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Apr 13 18:42:54 2011 +0100

    docs: Update README

 README |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

commit 115337df9c2c9ba556962369ed44da296e08fc65
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Apr 13 18:42:46 2011 +0100

    docs: Add a HACKING file

 HACKING |   96
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 96 insertions(+), 0 deletions(-)

commit ff62bbb978529faca4b86a9c0eccc33931191ee7
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Apr 2 17:48:47 2011 +0100

    build: Remove generated file from git

 po/Makefile.in.in |  217
 -----------------------------------------------------
 1 files changed, 0 insertions(+), 217 deletions(-)

commit ab3dcf36c5738fc3e6f6cb407f91da0f03eee159
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Apr 2 17:45:48 2011 +0100

    build: Add some miscellaneous files to MAINTAINERCLEANFILES

 Makefile.am |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

commit 27fc7138f013d35f93b860a8c003ff9d260db6c0
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Apr 2 17:40:13 2011 +0100

    build: Update git.mk from Pango master

 git.mk |  200
 +++++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 111 insertions(+), 89 deletions(-)

commit fffad8ad73c17c035c1449654d9e2cc389daf248
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Tue Jun 29 23:10:54 2010 +0100

    core: Port to GSettings

    Everything except the Evolution event factory has been
    ported. Evolution
    itself hasn't yet ported to GSettings, so the Evolution event
    factory has
    to remain using GConf for the time being.

 configure.ac                             |    8 ++-
 data/Makefile.am                         |   29 +++++-------
 data/almanah.convert                     |    4 ++
 data/almanah.schemas.in                  |   37 ---------------
 data/org.gnome.almanah.gschema.xml.in.in |   20 ++++++++
 po/POTFILES.in                           |    2 +-
 src/main-window.c                        |   73
 ++++++++++++++++++++++++++---
 src/main-window.h                        |    4 --
 src/main.c                               |    9 ++--
 src/main.h                               |    8 +---
 src/preferences-dialog.c                 |   60 ++----------------------
 src/storage-manager.c                    |    3 +-
 12 files changed, 119 insertions(+), 138 deletions(-)

commit 3b74ca62870fee382c0b5fe3621148e550c9798c
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Apr 2 15:43:38 2011 +0100

    core: Use a key file to store window geometry

    GConf isn't a suitable place for window widths, heights and
    positions, so
    store it in a key file instead. This tidies things up ready for
    the imminent
    move to GSettings.

 data/almanah.schemas.in |   55 ---------------
 src/main-window.c       |  170
 ++++++++++++++++++++++++++++++++++++++++++-----
 2 files changed, 153 insertions(+), 72 deletions(-)

commit a8db5cda3caf294701805e544b76f83bca27a720
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Apr 2 12:43:57 2011 +0100

    definitions: Remove unused variable

 src/definitions/contact.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

commit 9ce42c639c2ed9781b840a23ab359765d64f9391
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Apr 2 12:43:19 2011 +0100

    core: Don't compile encryption-only code when encryption is disabled

 src/storage-manager.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

commit 5d0ad53b3117859162394a026269a4ce42b18e8d
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Apr 2 12:41:21 2011 +0100

    build: Fix dependency information for almanah-marshal.c

 src/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 999acd3044d95212cd26706a40fdc83772e31188
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu Mar 17 22:59:20 2011 +0100

    Added Hungarian translation by Gyorgy Ballo

 po/hu.po |  748
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 748 insertions(+), 0 deletions(-)

commit df32e1f793c5682181010e198cbb522407fee1c0
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   Thu Mar 17 22:58:59 2011 +0100

    Added hu to LINGUAS

 po/LINGUAS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 90c0e69a81e8dc67e5a536046556c79017cdc881
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Feb 27 18:08:18 2011 +0100

    Updated Swedish translation

 po/sv.po |  293
 ++++++++++++++++++++++++++++++++++++--------------------------
 1 files changed, 169 insertions(+), 124 deletions(-)

commit b0254a9fe124d6d9bef447bd1be34ef478491f62
Author: Aron Xu <aronxu@gnome.org>
Date:   Mon Feb 14 03:20:42 2011 +0800

    Remove wrong plural forms header in zh_CN.po

 po/zh_CN.po |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

commit df3ab3c2b9ebf8b18558cdd33388b0b1b16d678f
Author: Milan Crha <mcrha@redhat.com>
Date:   Mon Feb 7 12:18:55 2011 +0100

    Bug #641481 - Cannot build with gtk3/evolution 2.91.6

 configure.ac                      |    4 ++--
 src/add-definition-dialog.c       |    3 +--
 src/date-entry-dialog.c           |    3 +--
 src/events/calendar-appointment.c |    2 +-
 src/events/calendar-task.c        |    2 +-
 src/import-export-dialog.c        |    2 --
 src/main.c                        |   27 ++++++++++++++++++++++++++-
 src/main.h                        |    1 +
 src/preferences-dialog.c          |   14 +++++++++-----
 src/search-dialog.c               |    3 +--
 10 files changed, 43 insertions(+), 18 deletions(-)

commit ae02e86440bd10b8e3db6556bc5c54492c3b25cb
Author: Andika Triwidada <andika@gmail.com>
Date:   Wed Jan 19 22:54:03 2011 +0700

    Updated Indonesian translation

 po/id.po |  328
 +++++++++++++++++++++++++++++++++++++-------------------------
 1 files changed, 194 insertions(+), 134 deletions(-)

commit 1be78f56d301f96e38928776a7a7f6148d480a7b
Author: George Stefanakis <george.stefanakis@gmail.com>
Date:   Thu Jan 13 21:04:05 2011 +0200

    Updated Greek translation

 po/el.po |  448
 +++++++++++++++++++++++++++++---------------------------------
 1 files changed, 212 insertions(+), 236 deletions(-)

commit 0028b154f777b6edd521a89ff53c6a49185adcd6
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Jan 9 15:41:34 2011 +0100

    Updated Galician translations

 po/gl.po |  287
 ++++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 160 insertions(+), 127 deletions(-)

commit 3d51f8e4e0aea7e5caf6e8075237c1a7a0ac8d53
Author: Jordi Estrada <jordi.estrada@yamaha-motor.es>
Date:   Sat Dec 25 21:54:56 2010 +0100

    [l10n]Updated Catalan translation

 po/ca.po |  775
 ++++++++++++++++++++++++++++++++++++++++++++++++++++----------
 1 files changed, 654 insertions(+), 121 deletions(-)

commit 41fd6d87420d51acc53302fb90bafd1262514860
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   Tue Nov 30 16:26:56 2010 +0200

    Updated Romanian translation

 po/LINGUAS |    1 +
 po/ro.po   |  761
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 762 insertions(+), 0 deletions(-)

commit 01084bd42ad2747cc582274a3988f17bcf23d6f3
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Nov 22 22:04:52 2010 +0000

    Don't use IT_PROG_INTLTOOL and AM_GNU_GETTEXT

    They conflict.

 configure.ac |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

commit 4baa7ae0f8b5d6340c61d15868b0153d06e8ddfc
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Oct 9 00:10:59 2010 +0100

    Use upstream gettext instead of GLib's gettext

    As explained here: http://blogs.gnome.org/jjardon/2010/10/08
    /use-upstream-gettext-instead-the-glib-one/.

 configure.ac |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

commit 5c7c880e24ebeeb9bbb6c0cec693b22c46309de1
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Fri Aug 27 09:17:30 2010 +0100

    Check for various required functions and headers in configure.ac

    Revealed by running `autoscan`.

 configure.ac |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

commit b745384088cbcd712f68b049cd38c24e2db2bc6c
Author: Carlos José Pereira <carlao2005@gmail.com>
Date:   Thu Aug 19 13:13:40 2010 -0300

    Updated Brazilian Portuguese Translation

 po/pt_BR.po |  367
 +++++++++++++++++++++++++++++------------------------------
 1 files changed, 180 insertions(+), 187 deletions(-)

commit 17fe76354c49c547c0e7aea276341d5cd9693fc8
Author: YunQiang Su <wzssyqa@gmail.com>
Date:   Fri Jul 30 18:34:43 2010 +0800

    Update Simplified Chinese translation.

 po/zh_CN.po |  316
 ++++++++++++++++++++++++++++++++++-------------------------
 1 files changed, 182 insertions(+), 134 deletions(-)

commit cb3428e2d019c5b88203480611ca4c069af43bef
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sun Jul 4 21:44:44 2010 +0200

    Updated French translation

 po/fr.po |  228
 +++++++++++++++++++++++++++++---------------------------------
 1 files changed, 106 insertions(+), 122 deletions(-)

commit d86483b9b45cd0a64fc14125a5f2a335b45fb173
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Jun 30 23:02:59 2010 +0100

    Add missing files to POTFILES.in

 po/POTFILES.in |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

commit 37fff7980a17be5646f902fe0037928380b890e7
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Jun 30 23:01:23 2010 +0100

    Bug 623231 — Dutch translation

    Add a Dutch translation by Heimen <vistausss@gmail.com>. Closes:
    bgo#623231

 po/LINGUAS |    1 +
 po/nl.po   |  754
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 755 insertions(+), 0 deletions(-)

commit ee7a625eeeefb53e74f77bfb36352ab41da733bf
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Tue Jun 29 21:47:32 2010 +0100

    Remove the F-Spot event factory and type

    F-Spot has removed its D-Bus service
    (http://git.gnome.org/browse/f-spot/
    commit/?id=4436219f0143631c49f69a3b7c1915a0cae17ffe), so we can
    no longer
    query it. Hopefully the event type can be re-added if and when
    F-Spot re-adds
    its D-Bus service.

    This also removes our dependency on the (deprecated) dbus-glib.
    Closes: bgo#622887

 configure.ac                 |    2 +-
 intltool-extract.in          |  875 ------------------------
 intltool-merge.in            | 1506
 ------------------------------------------
 intltool-update.in           | 1166 --------------------------------
 po/Makefile.in.in            |    4 +-
 po/POTFILES.in               |    1 -
 src/Makefile.am              |    4 -
 src/event-factories/f-spot.c |  250 -------
 src/event-factories/f-spot.h |   52 --
 src/event-factory.h          |    3 +-
 src/event-manager.c          |    2 -
 src/events/f-spot-photo.c    |  120 ----
 src/events/f-spot-photo.h    |   53 --
 13 files changed, 4 insertions(+), 4034 deletions(-)

commit 46b3c85e798a8fe78d6e2d153a0128c3a51277c2
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon Jun 21 11:12:54 2010 +0200

    Updated Galician translations

 po/gl.po |   37 +++++++++++++++----------------------
 1 files changed, 15 insertions(+), 22 deletions(-)

commit 348c51fad55b44b2a5655c0a5ef665416cadb5ce
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Jun 10 17:44:52 2010 +0100

    Makefile improvements

    Improve the marshalling stuff in Makefile.am.

 src/Makefile.am |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit bbfced9af71fd5943e381586739106c8c21dd478
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   Sun May 30 23:16:40 2010 +0200

    Updated Danish translation

 po/da.po |  311
 ++++++++++++++++++++++++++++++++++++--------------------------
 1 files changed, 180 insertions(+), 131 deletions(-)

commit 0dc9997e9982c596604b31983aab2fd8ea577c9c
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon May 24 12:56:00 2010 +0200

    Updated Galician translations

 po/gl.po |  288
 ++++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 160 insertions(+), 128 deletions(-)

commit f2598064f0acca7a79dc8140a8f3a9bfbef115a3
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Tue May 18 00:37:44 2010 +0100

    Remove import mode

    Remove the old command line import mode in favour of using the
    new import
    dialogue.

 src/entry.c |    4 ----
 src/main.c  |    4 +---
 src/main.h  |    1 -
 3 files changed, 1 insertions(+), 8 deletions(-)

commit 17e418195a79541755dc808574deb7924b409cd8
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 16 18:30:01 2010 +0100

    Add progress reporting to import/export

    Add a progress bar to the import/export dialogue, reporting the
    operation's
    activity. This makes the lifecycle of the import/export dialogue a
    lot more
    complex.

 data/almanah.ui            |   14 +++++-
 src/export-operation.c     |   99
 ++++++++++++++++++++++++++++++++++------
 src/export-operation.h     |    8 +++-
 src/import-export-dialog.c |  108
 +++++++++++++++++++++++++++++++-------------
 src/import-operation.c     |   69 ++++++++++++++++++++--------
 src/import-operation.h     |    2 +-
 src/main-window.c          |   18 ++++---
 src/main.c                 |    4 --
 src/main.h                 |    2 -
 9 files changed, 239 insertions(+), 85 deletions(-)

commit 2f9fd8078783368beb3744e79c25269a76836503
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 16 16:24:02 2010 +0100

    Make import/export operations asynchronous

 configure.ac               |    2 +-
 data/almanah.ui            |    7 +-
 src/Makefile.am            |    4 +
 src/export-operation.c     |  257 ++++++++++++++++++++
 src/export-operation.h     |   60 +++++
 src/import-export-dialog.c |  558
 +++++++------------------------------------
 src/import-export-dialog.h |   11 +-
 src/import-operation.c     |  510
 ++++++++++++++++++++++++++++++++++++++++
 src/import-operation.h     |   72 ++++++
 src/main.c                 |    1 +
 10 files changed, 1004 insertions(+), 478 deletions(-)

commit 72702f8d8aaf9ba397993b173805725cbf4526f0
Author: Petr Kovar <pknbe@volny.cz>
Date:   Sun May 16 23:58:57 2010 +0200

    Update Czech translation by Marek Cernocky

 po/cs.po |  138
 +++++++++++++++++++++++++++++++++-----------------------------
 1 files changed, 73 insertions(+), 65 deletions(-)

commit 00fc6fc5188022b9c5fa0e39077df87d52855836
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sat May 15 22:12:10 2010 +0200

    Updated German translation

 po/de.po |  164
 +++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 89 insertions(+), 75 deletions(-)

commit d2202414edd78cf9844c54120de7b4dd9ba6fb1a
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Fri May 14 20:13:22 2010 +0200

    Updated Slovenian translation

 po/sl.po |  145
 ++++++++++++++++++++++++++++++++-----------------------------
 1 files changed, 76 insertions(+), 69 deletions(-)

commit 098a0c918a5a99d19736843323fea68f3e34bfb5
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Wed May 12 08:16:02 2010 +0200

    Updated Spanish translation

 po/es.po |  160
 +++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 87 insertions(+), 73 deletions(-)

commit 2c27e8c0324a9a293680db8131dd63bffa4be0c5
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Tue May 11 13:35:09 2010 +0100

    Improve the Import/Export UI

    Use a GtkFileChooserButton instead of a GtkFileChooserWidget and
    change the
    labels around slightly. Add mnemonics.

 data/almanah.ui            |   33 ++++++++++++++++++---------------
 src/import-export-dialog.c |   25 ++++++++++++++-----------
 2 files changed, 32 insertions(+), 26 deletions(-)

commit d154b578686a648d842c3a2310090919d9dcf8ae
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Tue May 11 08:38:07 2010 +0100

    Minor memory leak fix

 src/definition.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit b51c1f504876a127c2df1fcd5794bc2dab6213ab
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 9 17:21:04 2010 +0100

    Fix the dialogue boxes for editing and deleting entries

 src/main-window.c |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

commit ec720ae05db81e0dfca11e37ce365b64a12be152
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 9 17:06:14 2010 +0100

    Add more AlmanahStorageManager signals

 src/main-window.c      |    6 -----
 src/storage-manager.c  |   53
 ++++++++++++++++++++++++++++++++++-------------
 src/widgets/calendar.c |   34 ++++++++++++++++++++++++++++++
 3 files changed, 72 insertions(+), 21 deletions(-)

commit d3d84a21f0e11750a1fe49f0833cd8dee880d52b
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat May 8 23:52:41 2010 +0100

    Tidy up of AlmanahStorageManager

    This reduces code duplication and privatises and deprecates the
    simple SQLite
    wrapper which AlmanahStorageManager had previously been using for most
    queries. Raw SQLite queries are now used for most things.

 src/definition.c      |    4 +
 src/storage-manager.c |  367
 +++++++++++++++++++++++--------------------------
 src/storage-manager.h |   12 --
 3 files changed, 177 insertions(+), 206 deletions(-)

commit fc00ec9948692fffb966eaaa75bfb6d073932f5b
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat May 8 21:13:33 2010 +0100

    Use iterators for large database queries

    Use iterators for almanah_storage_manager_get_entries() and
    almanah_storage_manager_search_entries(), rather than allocating
    all the
    results at once into a list. This saves memory and could be used to
    make the
    interface more responsive for long-running operations.

 src/import-export-dialog.c |   23 ++--
 src/search-dialog.c        |   20 ++--
 src/storage-manager.c      |  272
 +++++++++++++++++++++++++++++---------------
 src/storage-manager.h      |   15 ++-
 4 files changed, 214 insertions(+), 116 deletions(-)

commit 3b2ffefd69cb9e7ce7504eb0ed4ca0e13b6efc8b
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat May 8 11:12:50 2010 +0100

    Fix misuse of unsigned integers in calendar client

    This is a bit of a hacky solution, but is probably safer than
    re-architecting
    the calendar client to use GDate types for year, month and day.

 src/event-factories/calendar-client.c |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

commit f49de61e500dfe7f02319ea55b20437f76bf2a1c
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 2 23:28:53 2010 +0100

    Replace null_safe_strcmp() with g_strcmp0() in calendar client

 src/event-factories/calendar-client.c |   37
 +++++++++++++-------------------
 1 files changed, 15 insertions(+), 22 deletions(-)

commit 6befe7b862f90c0c1dcb8d746134502b0206473a
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 2 23:27:34 2010 +0100

    Fix warnings in calendar client

 src/event-factories/calendar-client.c |   43
 +++++++++++++++++++++++++++-----
 1 files changed, 36 insertions(+), 7 deletions(-)

commit 015fdc4e4aa4078856c07b91a3fca545402bf95a
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 2 23:19:52 2010 +0100

    Update calendar sources from gnome-panel trunk

 src/event-factories/calendar-client.c |   67
 ++++++++++++++++-----------------
 src/event-factories/calendar-client.h |   14 +++---
 2 files changed, 40 insertions(+), 41 deletions(-)

commit 76bcead8a663996f3b5d93ecd4cc69ac16bce27f
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 2 23:08:22 2010 +0100

    Add support for storing the date an entry was last edited

    Whenever an entry is edited, the current date is stored with it
    to allow
    later analysis. Imported entries have their last-edited dates
    preserved as
    much as possible; for example, entries imported from text files
    will have
    their last-edited date as the modification date of the text file.

 src/entry.c                |   60
 +++++++++++++++++++++++++++++++++++++++++++-
 src/entry.h                |    3 ++
 src/import-export-dialog.c |   21 ++++++++++++---
 src/main-window.c          |   13 ++++++---
 src/storage-manager.c      |   55 +++++++++++++++++++++++++++++++++++----
 5 files changed, 136 insertions(+), 16 deletions(-)

commit 6a222b914186f1b1a50b4510563dbb940e84bda0
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 2 22:16:05 2010 +0100

    Whitespace fixes

 src/storage-manager.c |  258
 +++++++++++++++++++++++--------------------------
 1 files changed, 121 insertions(+), 137 deletions(-)

commit 92d7ddcc07038337b907d55c26e0a7e0d0a03415
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Apr 24 21:09:11 2010 +0100

    Ensure the current entry is saved on any change to it

    Previously, it was only being saved for changes to the content. Now,
    if an
    entry is marked as important (but its content isn't changed), it
    will be
    saved.

 data/almanah.ui   |    1 -
 src/entry.c       |    9 +++++--
 src/main-window.c |   62
 +++++++++++++++++++++++++++++++++++-----------------
 3 files changed, 48 insertions(+), 24 deletions(-)

commit 5d67ce6f892617baa4f05886ae01438453cae13c
Author: Petr Kovar <pknbe@volny.cz>
Date:   Sun May 2 18:04:51 2010 +0200

    Update Czech translation by Marek Cernocky

 po/cs.po |   38 +++++++++++++++++---------------------
 1 files changed, 17 insertions(+), 21 deletions(-)

commit 90e9181b3e69926c6932f70524c010b9dfb9ed84
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Thu Apr 29 14:28:05 2010 +0200

    Updated German translation

 po/de.po |  258
 ++++++++++++++++++++++++++++++++++++++------------------------
 1 files changed, 160 insertions(+), 98 deletions(-)

commit 4b22ce8835624ea8c30baa39f27206c352b44ad6
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Sun Apr 25 11:24:28 2010 +0200

    Updated Slovenian translation

 po/sl.po |  202
 ++++++++++++++++++++++++++++++++++++++------------------------
 1 files changed, 123 insertions(+), 79 deletions(-)

commit c3e07522af98c27e7e279633ee6a97bb9b1ea957
Author: Petr Kovar <pknbe@volny.cz>
Date:   Thu Apr 22 23:45:12 2010 +0200

    Update Czech translation by Marek Cernocky

 po/cs.po |  221
 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 files changed, 140 insertions(+), 81 deletions(-)

commit 81585d337abd8a10224e56dbf4682b748f3319b2
Author: Claude Paroz <claude@2xlibre.net>
Date:   Thu Apr 22 11:59:55 2010 +0200

    Updated French translation

 po/fr.po |  220
 ++++++++++++++++++++++++++++++++++++++------------------------
 1 files changed, 136 insertions(+), 84 deletions(-)

commit 9dc9566426af101bbce2ed8382b2408befa3d839
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Thu Apr 22 08:37:48 2010 +0200

    Updated Spanish translation

 po/es.po |  228
 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 files changed, 145 insertions(+), 83 deletions(-)

commit 3a936981cf1e54654edb96e4c2de3421a998e090
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Apr 21 21:50:25 2010 +0100

    Update British English translation

 po/en_GB.po |  207
 +++++++++++++++++++++++++++++++++++++---------------------
 1 files changed, 132 insertions(+), 75 deletions(-)

commit 6419b5276abcc022da9f59b269754333f4f72d7d
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Apr 21 21:48:55 2010 +0100

    Add missing translatable file to POTFILES.in

 po/POTFILES.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 3543d868138ac92724bfdf35a8302e3d7f75ef51
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Apr 21 21:46:16 2010 +0100

    Fix a signed/unsigned integer comparison

 src/printing.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 446ac9684147a484309ff99ec59d8bb798f01f5f
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Apr 21 21:44:11 2010 +0100

    Add text file and database export support

 data/almanah.ui            |    8 ++
 src/import-export-dialog.c |  164
 +++++++++++++++++++++++++++++++++++++++-----
 src/main-window.c          |   11 +++
 src/main.c                 |    2 +
 src/main.h                 |    1 +
 src/storage-manager.c      |    6 ++
 src/storage-manager.h      |    2 +
 7 files changed, 177 insertions(+), 17 deletions(-)

commit ed0aa5669731cda4048f1c68878a3e6d35b90eaa
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Wed Apr 21 20:44:41 2010 +0100

    Convert import dialogue to import-export dialogue and tidy it up

 data/almanah.ui            |   53 ++--
 po/POTFILES.in             |    2 +-
 src/Makefile.am            |    4 +-
 src/import-dialog.c        |  720
 -------------------------------------------
 src/import-dialog.h        |   83 -----
 src/import-export-dialog.c |  729
 ++++++++++++++++++++++++++++++++++++++++++++
 src/import-export-dialog.h |   83 +++++
 src/main-window.c          |    4 +-
 8 files changed, 842 insertions(+), 836 deletions(-)

commit 500f4ad3705cbc33d094aaa2902091fcc2087fd7
Author: Christian.Kirbach <Christian.Kirbach@googlemail.com>
Date:   Tue Apr 20 17:01:49 2010 +0200

    Updated German translation

 po/de.po |   88
 +++++++++++++++++++++++++++++++++-----------------------------
 1 files changed, 47 insertions(+), 41 deletions(-)

commit f1ff0ac736fe0ee319960acaaff47ccfc8a378fd
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Apr 19 07:26:33 2010 +0200

    Updated Spanish translation

 po/es.po |   48 +++++++++++++++++++++++++-----------------------
 1 files changed, 25 insertions(+), 23 deletions(-)

commit c088e79a3199f22e7cf4156d3a26b201ae17ee9d
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sun Apr 18 19:43:10 2010 +0200

    Updated Slovenian translation

 po/sl.po |   84
 ++++++++++++++++++++++++++++++++-----------------------------
 1 files changed, 44 insertions(+), 40 deletions(-)

commit cc3633a704db56900e9960afb1e2c25bcea86e3c
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Apr 18 16:20:52 2010 +0100

    Ensure spell checking highlights are completely drawn over when
    changing day

 src/main-window.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

commit 84889379de9667256702e87254ba70eefe66dd7b
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Apr 18 16:17:40 2010 +0100

    Remove spell checking highlighting from printouts

 src/printing.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 23b9be68e261be9f5d9dae0cfa93feede7d4350a
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Apr 18 16:05:29 2010 +0100

    Highlight important entries in printouts

    Closes: bgo#572927

 src/printing.c |   53
 ++++++++++++++++++++++++++++++++++++++++++++---------
 1 files changed, 44 insertions(+), 9 deletions(-)

commit 422ab587d117c2ad75cc3061479fa4d96849438a
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Apr 18 15:25:49 2010 +0100

    Highlight important entries in search results

 data/almanah.ui       |   17 ++++++++++++++---
 src/search-dialog.c   |   31 ++++++++++++++++++-------------
 src/storage-manager.c |   40 ++++++++++++++++++----------------------
 src/storage-manager.h |    4 ++--
 4 files changed, 52 insertions(+), 40 deletions(-)

commit ad5ccd5a9ca76d8032e0e4b1d759a18c6daa0157
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Apr 18 14:25:57 2010 +0100

    Highlight important entries in the calendar

    This creates a new AlmanahCalendar widget, which takes care of a
    few things
    which require extensions to GtkCalendar. This is now used across
    the project.
    Helps: bgo#572927

 data/almanah.ui        |    4 +-
 src/Makefile.am        |    4 +-
 src/interface.c        |   24 --------
 src/main-window.c      |   31 +++-------
 src/printing.c         |   29 ++++-----
 src/storage-manager.c  |   28 +++++++++
 src/storage-manager.h  |    1 +
 src/widgets/calendar.c |  152
 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/widgets/calendar.h |   57 ++++++++++++++++++
 9 files changed, 265 insertions(+), 65 deletions(-)

commit 49db044ccb5ca8f6658043915bf0e69e6a156e35
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Apr 18 13:28:56 2010 +0100

    Order search results by descending date

 src/storage-manager.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 7536b548c1d1ac2e8d784c5e43f88123b91fbac5
Author: Andika Triwidada <andika@gmail.com>
Date:   Sat Apr 3 20:34:02 2010 +0700

    Updated Indonesian translation

 po/id.po |  189
 +++++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 107 insertions(+), 82 deletions(-)

commit a40b94ce81a1abbfa6709f9fdbfdf48d9bf86a72
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Tue Mar 16 18:18:15 2010 +0100

    Updated Spanish translation

 po/es.po |  202
 ++++++++++++++++++++++++++++++-------------------------------
 1 files changed, 99 insertions(+), 103 deletions(-)

commit 7b5724764a17529e97c22d2db1a701ae75609c5d
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   Mon Mar 15 01:02:35 2010 +0100

    Updated Danish translation

 po/da.po |   87
 +++++++++++++++++++++++++++++++------------------------------
 1 files changed, 44 insertions(+), 43 deletions(-)

commit cd81352e1355e3a71aaaac46915eedf22ce8c68a
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Thu Mar 11 22:57:31 2010 +0100

    Updated French translation

 po/fr.po |  212
 +++++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 121 insertions(+), 91 deletions(-)

commit c1000a399c1c3f06d613f39cc3200843d2316304
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Mar 6 21:20:44 2010 +0000

    Bug 611889 — A little padding in the textaera would be nice

    Added 3px left and right margins to the main text view. Closes:
    bgo#611889

 data/almanah.ui |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

commit 58938b6ad633df5770250646caa469fdc7564060
Author: Leonid Kanter <leon@asplinux.ru>
Date:   Sat Mar 6 19:44:41 2010 +0200

    update Russian translation

 po/ru.po |  703
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 703 insertions(+), 0 deletions(-)

commit cef3e5241ecaa8a85cf93f048345179abdc17306
Author: Leonid Kanter <leon@asplinux.ru>
Date:   Sat Mar 6 19:44:31 2010 +0200

    update Russian translation

 po/LINGUAS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit b43e8f9a43295cbd6151bbab488869b8d912ff62
Author: Fran Diéguez <frandieguez@ubuntu.com>
Date:   Fri Mar 5 13:25:29 2010 +0100

    Updated Galician translation

 po/gl.po |  405
 ++++++++++++++++++++++++++++++++++++++++++-------------------
 1 files changed, 279 insertions(+), 126 deletions(-)

commit 3011690b942171ccbae1a3f7b71459359abe9279
Author: YunQiang Su <wzssyqa@gmail.com>
Date:   Thu Feb 18 10:56:55 2010 +0800

    Update Simplified Chinese translation.

 po/zh_CN.po |  403
 ++++++++++++++++++++++++++++++++++++++++------------------
 1 files changed, 278 insertions(+), 125 deletions(-)

commit f800e824f92a9c45e3e55add5f4faf5ab2a7489a
Author: Antonio Fernandes C. Neto <fernandes@pelivre.org>
Date:   Fri Feb 5 15:53:07 2010 -0300

    Updated Brazilian Portuguese Translation

 po/pt_BR.po |  516
 ++++++++++++++++++++++++++++++++++++++++++----------------
 1 files changed, 373 insertions(+), 143 deletions(-)

commit ca72f2c8584efe46bbe77e76f915a1a05fa51c99
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Thu Feb 4 19:08:12 2010 +0100

    Updated Slovenian translation

 po/sl.po |   74
 ++++++++++++++++++++++++++++++++-----------------------------
 1 files changed, 39 insertions(+), 35 deletions(-)

commit bfa63b760074b6930279d1030c4e69671f1b8d0b
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Thu Feb 4 12:19:39 2010 +0100

    Updated German translation

 po/de.po |   79
 +++++++++++++++++++++++++++++++------------------------------
 1 files changed, 40 insertions(+), 39 deletions(-)

commit 6fdc88528e147df00656a64612adc4a7fa467b36
Author: Marios Zindilis <m.zindilis@dmajor.org>
Date:   Tue Feb 2 08:13:16 2010 -0800

    Updated Greek translation

 po/el.po |  476
 ++++++++++++++++++++++++++++++++++++++++++++------------------
 1 files changed, 341 insertions(+), 135 deletions(-)

commit f19479f1a3f2098fb1a3e1e97b3ef8d6d2ac3c96
Author: Marek Černocký <marek@manet.cz>
Date:   Tue Feb 2 13:16:52 2010 +0100

    Update Czech translation

 po/cs.po |   82
 +++++++++++++++++++++++++++++++-------------------------------
 1 files changed, 41 insertions(+), 41 deletions(-)

commit 57147f6fa9a4ea6365d5be3272c9055c0161a0da
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Jan 31 15:25:44 2010 +0000

    Switch to post-release version incrementing (version 0.8.0)

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 4e6927203eda85d7f09dc71d8aa6f10fa99638f1
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Jan 31 15:24:09 2010 +0000

    Release version 0.7.2

 NEWS         |  133
 +++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 configure.ac |    2 +-
 2 files changed, 123 insertions(+), 12 deletions(-)

commit 165a4921093aa035c7ec7646140b56292e3e917a
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Jan 31 14:50:18 2010 +0000

    Updated British English translation

 po/en_GB.po |   74
 +++++++++++++++++++++++++++++++----------------------------
 1 files changed, 39 insertions(+), 35 deletions(-)

commit fa09f7e5fa538706d71a55f5ba6d5793fb6297bc
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Jan 31 14:47:21 2010 +0000

    Updated autofoo

    Updated autogen.sh and the magic in configure.ac to use more modern
    infrastructure. See: http://live.gnome.org/GnomeGoals/ModernAutotools

 autogen.sh   |  151
 ++-------------------------------------------------------
 configure.ac |   16 ++++---
 2 files changed, 15 insertions(+), 152 deletions(-)

commit 8095fd51aa194242b3efc3b00ff0e786d272afab
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Jan 31 14:36:11 2010 +0000

    Improve key selection

    Improve key selection in the preferences dialogue by filtering
    irrelevant
    keys (ones for which we don't have the private key) and allowing
    the dialogue
    to be resized so that long key names can be seen. See: bgo#607964

 data/almanah.ui          |    4 ++++
 src/preferences-dialog.c |   11 ++++++++++-
 2 files changed, 14 insertions(+), 1 deletions(-)

commit 89fb23235764e0dcf0963ca13af1f49d98d6b661
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Mon Jan 18 16:54:01 2010 +0100

    Updated Slovenian translation

 po/sl.po |   98
 ++++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 55 insertions(+), 43 deletions(-)

commit 06d0812c8106492037fd414e21f11ee43e47abd8
Author: Petr Kovar <pknbe@volny.cz>
Date:   Sun Jan 17 21:48:48 2010 +0100

    Updated Czech translation by Marek Cernocky

 po/cs.po |   18 +++++++-----------
 1 files changed, 7 insertions(+), 11 deletions(-)

commit 3da77e33cfc819d8fd0440cea6dee0d972211a5e
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Fri Jan 15 16:21:34 2010 +0100

    Updated German translation

 po/de.po |  116
 ++++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 65 insertions(+), 51 deletions(-)

commit dc32d5df6b1924d44f3b364cc9e8a1b5351c5665
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   Thu Jan 14 19:10:03 2010 +0100

    Updated Danish translation

 po/da.po |  211
 ++++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 115 insertions(+), 96 deletions(-)

commit 3959191f713b76ce071792413bf12656933189a0
Author: Petr Kovar <pknbe@volny.cz>
Date:   Tue Jan 12 01:10:51 2010 +0100

    Add Czech translation by Marek Cernocky

 po/LINGUAS |    1 +
 po/cs.po   |  715
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 716 insertions(+), 0 deletions(-)

commit cc3d870fb058ba78391d78b995919901dbf111c9
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Jan 10 15:05:35 2010 +0100

    Updated Swedish translation

 po/sv.po |  122
 ++++++++++++++++++++++++++++++++++++--------------------------
 1 files changed, 71 insertions(+), 51 deletions(-)

commit e1cec6b76161e202d90c7ca79e8685c9e9b4fc08
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Fri Jan 1 16:12:48 2010 +0000

    Release version 0.7.1

 NEWS         |    3 +++
 configure.ac |    2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

commit 739e88963d908b2fba77b1c2a293b9c267f73137
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Fri Jan 1 16:06:32 2010 +0000

    Fix non-Evolution build

 src/definition.c    |    4 ++++
 src/event-factory.h |    2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit c35bb1978701e5373c8764d61e8cb7c9d223bc6f
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Fri Jan 1 09:28:17 2010 +0100

    Updated Slovenian translation

 po/sl.po |   69
 +++++++++++++++++++++++++++++++++++++++----------------------
 1 files changed, 44 insertions(+), 25 deletions(-)

commit 9e13df9f3a51d7f2368ace966caaf227308aa0e4
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Dec 31 12:01:15 2009 +0000

    Release version 0.7.0

 Makefile.am     |   16 +++++++++-------
 NEWS            |   12 ++++++++++++
 README          |    8 ++++++--
 configure.ac    |    2 +-
 src/Makefile.am |   16 ++++++++--------
 5 files changed, 36 insertions(+), 18 deletions(-)

commit d6b6014060028c79b0b418b396a161ab8f8f8660
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Dec 31 11:17:09 2009 +0000

    Change website from tecnocode.co.uk to live.gnome.org

 README            |    2 +-
 almanah.doap      |    2 +-
 src/main-window.c |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit 4188fee3f23791175f6aedc43916462b734f1e72
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Dec 31 11:02:30 2009 +0000

    Updated British English translation

    Also fix a small string problem in the printing code, left over
    from earlier
    testing.

 po/en_GB.po    |  458
 ++++++++++++++++++++++++++++++++++++++------------------
 src/printing.c |    2 +-
 2 files changed, 314 insertions(+), 146 deletions(-)

commit 165d0d751bf356b84ccc32062f426ca70cf7bf79
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Dec 31 10:56:52 2009 +0000

    Makefile and configure.ac cleanup

 configure.ac    |    2 +-
 src/Makefile.am |  116
 ++++++++++++++++++++++++++----------------------------
 2 files changed, 57 insertions(+), 61 deletions(-)

commit 561cab28f9143aa9caf0439190a3315a46ab01db
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Dec 31 10:47:46 2009 +0000

    Improve appearance of Definition Manager dialogue

    It's no longer arranged as a table; instead, a heading and free-form
    text
    area are used. The focus control for definition error dialogues has
    also been
    fixed.

 data/almanah.ui           |   92
 +++++++++++---------------------------------
 src/definitions/contact.c |    6 +-
 src/definitions/file.c    |    2 +-
 src/definitions/uri.c     |    2 +-
 4 files changed, 28 insertions(+), 74 deletions(-)

commit 76f2d742e0f4b4d79f98d581beef169e9f30dd16
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Dec 27 18:21:13 2009 +0000

    Don't merge identical entires on import

 src/import-dialog.c |   32 +++++++++++++++++++++++++++++---
 1 files changed, 29 insertions(+), 3 deletions(-)

commit 96188339b91b20bc12d4c43e44b187aadf583fd5
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Tue Dec 22 16:27:21 2009 +0000

    Bug 594871  Add line spacing options

    Add line spacing options such that printed entries can be annotated
    by hand.
    Closes: bgo#594871

 data/almanah.ui |    1 +
 src/printing.c  |   47 +++++++++++++++++++++++++++++++++++------------
 2 files changed, 36 insertions(+), 12 deletions(-)

commit 0d515746d7fb9bc7b4c5a682a727d84ec88f5f9b
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Tue Dec 22 15:15:33 2009 +0000

    Tidy up build process and hide compilation churn

 configure.ac    |   46 ++++++++++++++++---------
 src/Makefile.am |  101
 +++++++++++++++++++++++-------------------------------
 2 files changed, 72 insertions(+), 75 deletions(-)

commit e16b019fe921a36b751c7462f8866ce7a2f13b24
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Dec 17 08:45:46 2009 +0000

    Make Evolution dependency optional

    Also remove forced -Wall flag.

 configure.ac        |   11 ++++++++++-
 src/Makefile.am     |   28 +++++++++++++++-------------
 src/event-factory.h |    3 +++
 src/event-manager.c |    4 ++++
 4 files changed, 32 insertions(+), 14 deletions(-)

commit d176ff98cc3d0f74b537b9025c2704c23561b069
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Dec 20 17:12:20 2009 +0100

    Updated Spanish translation

 po/es.po |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

commit a9e59b7264971d9c9220ce0da58cb4a95b56387c
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   Fri Dec 18 00:12:55 2009 +0100

    Added Danish translation

 po/da.po |  701
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 701 insertions(+), 0 deletions(-)

commit 1901c7cdb1e2dfbe2a0b41bd9aaf75ef9f12abd3
Author: Kenneth Nielsen <k.nielsen81@gmail.com>
Date:   Fri Dec 18 00:05:47 2009 +0100

    Added da to list of languages

 po/LINGUAS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit b1bc39bc2b27d3d858d85618f6eddded191f6d48
Author: Carlos Albornoz <carlos@debianchile.cl>
Date:   Sun Dec 13 12:43:18 2009 +0100

    Updated Spanish translation

    Signed-off-by: Jorge González <jorgegonz@svn.gnome.org>

 po/es.po |  659
 +++++++++++++++++++++++++++++++++++++++++++++++++-------------
 1 files changed, 528 insertions(+), 131 deletions(-)

commit 159310a33f94021e61383a35759d3c5da8098004
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sat Dec 12 11:49:22 2009 +0100

    Updated German translation

 po/de.po |  104
 ++++++++++++++++++++++++++++----------------------------------
 1 files changed, 47 insertions(+), 57 deletions(-)

commit b0d81a0c5fc0b27abb805dbb375d5ccdc7604c3a
Author: Andre Klapper <a9016009@gmx.de>
Date:   Fri Dec 11 18:34:36 2009 +0100

    Add missing file to POTFILES.in

 po/POTFILES.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 52b30a4d142a4eaae08f2af24eea9d67f40dd473
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Fri Nov 27 13:25:41 2009 +0100

    Updated Slovenian translation

 po/sl.po | 1300
 +++++++++++++++++++++++++++++++-------------------------------
 1 files changed, 652 insertions(+), 648 deletions(-)

commit 727420aaff12e7efa9d0fb7b3c13b6831e2956a9
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Nov 10 01:29:29 2009 +0100

    Updated Swedish translation

 po/sv.po |  401
 ++++++++++++++++++++++++++++++++++++++------------------------
 1 files changed, 245 insertions(+), 156 deletions(-)

commit 7af4b9f69373591a3e439f436ac0626ca2e2cfa3
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Nov 3 13:47:05 2009 +0100

    Added sl for Slovenian translation

 po/LINGUAS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 241ad67fc04229322442347fe49c85ed1570d990
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Tue Nov 3 13:46:21 2009 +0100

    Updated Slovenian translation

 po/sl.po |  648
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 648 insertions(+), 0 deletions(-)

commit 79bfb759a57212d589201467581f30ec3a952d64
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Oct 26 19:46:37 2009 +0000

    Bug 599598  Segmentation fault in debian unstable

    Fix a crash if initialisation of libgpgme fails, and also change GPGME
    initialisation so it works for GPGME 1.2.x. Closes: bgo#599598

 configure.ac          |    2 ++
 src/storage-manager.c |   15 +++++++++++++--
 src/storage-manager.h |    3 ++-
 3 files changed, 17 insertions(+), 3 deletions(-)

commit 3a74dc4aa7321a90672506a6f487481a8d8c634f
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Oct 4 19:38:16 2009 +0200

    Updated German translation

 po/de.po |  365
 ++++++++++++++++++++++++++++++++++++++++++--------------------
 1 files changed, 249 insertions(+), 116 deletions(-)

commit 412e3431fd98ef685a157eb95d5cd5bec4cb61ab
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Oct 3 12:04:38 2009 +0200

    Updated French translation

 po/fr.po |  326
 +++++++++++++++++++++++++++++++++++++++++++-------------------
 1 files changed, 225 insertions(+), 101 deletions(-)

commit c50145a822a7f76fc8fbaf0f809bce03ab4dc708
Author: Andika Triwidada <andika@gmail.com>
Date:   Mon Sep 28 18:41:03 2009 +0700

    Added id

 po/LINGUAS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 7c93b965f1dc9600acfaa82c4e19533ddd212b71
Author: Andika Triwidada <andika@gmail.com>
Date:   Mon Sep 28 18:40:29 2009 +0700

    Added Indonesian Translation

 po/id.po |  646
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 646 insertions(+), 0 deletions(-)

commit b4b5ac5793725492444d9bd850e869396132ac26
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Sep 24 18:00:45 2009 +0100

    Fix the UI to follow the GNOME HIG

 data/almanah.ui          |  663
 ++++++++++++++++++++++++----------------------
 src/definitions/uri.c    |    4 +-
 src/interface.c          |   10 -
 src/interface.h          |    1 -
 src/main-window.c        |    1 -
 src/preferences-dialog.c |    3 +-
 src/printing.c           |   21 +-
 7 files changed, 363 insertions(+), 340 deletions(-)

commit 97530ba0ac032ef81892f090030db2aeb971e0ca
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Sep 24 16:08:46 2009 +0100

    Added import support

    Text files and other Almanah databases can now be imported to the
    current database.

 data/almanah.ui                 |  235 +++++++++++++
 po/Makefile.in.in               |    4 +-
 po/POTFILES.in                  |    1 +
 src/Makefile.am                 |    2 +
 src/definition-manager-window.c |   14 +-
 src/import-dialog.c             |  694
 +++++++++++++++++++++++++++++++++++++++
 src/import-dialog.h             |   83 +++++
 src/main-window.c               |   16 +-
 src/main.c                      |    2 +
 src/main.h                      |    1 +
 src/storage-manager.c           |  132 ++++++--
 src/storage-manager.h           |    3 +-
 12 files changed, 1144 insertions(+), 43 deletions(-)

commit 68d574378db6588d43236330c8ee6e41070d39e5
Author: Fran Diéguez <fran.dieguez@glug.es>
Date:   Tue Sep 15 23:05:31 2009 +0200

    Added gl

 po/LINGUAS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit b7a78229140843b33c352217255735638acd3d50
Author: Fran Diéguez <fran.dieguez@glug.es>
Date:   Tue Sep 15 23:00:04 2009 +0200

    Added Galician Translation

 po/gl.po |  556
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 556 insertions(+), 0 deletions(-)

commit 862d508795347e2f222c85fbe0517d1b4359c3de
Author: Kostas Papadimas <pkst@gnome.org>
Date:   Fri Sep 11 19:43:07 2009 +0300

    Updated Greek translation.

 po/el.po |  108
 +++++++++++++++++++++++++++++--------------------------------
 1 files changed, 51 insertions(+), 57 deletions(-)

commit ed682c932c987e7c27e9c91577963e99d8a4de39
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Jun 13 15:53:11 2009 +0100

    Unmark a %X strftime string as translatable

    The %X strftime placeholder is already locale-dependent. Closes:
    bgo#585646

 src/main-window.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

commit 351e49c5d44900dc39ce8e419957e7b35b1ba328
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Jul 7 13:17:28 2009 +0200

    Updated Swedish translation

 po/sv.po |  108
 +++++++++++++++++++++++++++++++++++++++-----------------------
 1 files changed, 68 insertions(+), 40 deletions(-)

commit 63d4703e5e0167e4cd6756358f5de4e2caca7116
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Jun 13 15:58:01 2009 +0200

    Updated French translation

 po/fr.po |  333
 +++++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 189 insertions(+), 144 deletions(-)

commit 79afb7532b0db4fb449c362498ca9a092c2052a4
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sat Jun 13 10:49:02 2009 +0200

    Updated sv translation (Daniel Nylander)

 po/sv.po |  150
 +++++++++++++++++++++++++++++++++----------------------------
 1 files changed, 81 insertions(+), 69 deletions(-)

commit 68d95226bb7bb77d9f69b2e9b0d26f68a230df65
Author: Aron Xu <aronxu@gnome.org>
Date:   Thu May 28 16:00:21 2009 +0800

    Added Simplified Chinese translation.

 po/zh_CN.po |  552
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 552 insertions(+), 0 deletions(-)

commit cdaa34c370ca5f378c91b836bed318d8e883cf27
Author: Aron Xu <aronxu@gnome.org>
Date:   Thu May 28 16:00:05 2009 +0800

    Added Simplified Chinese translation.

 po/LINGUAS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 7f0a87ed248cd588d8aa5b3d293bd55db49c9f7c
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Tue May 12 22:09:33 2009 +0200

    Updated German translation

 po/de.po |  102
 +++++++++++++++++++++++++++++++++-----------------------------
 1 files changed, 54 insertions(+), 48 deletions(-)

commit b26ba3aeebc347e7f7f9f040cb8ba499ab986080
Author: Βασίλης Κοντογιάνης <vasilisk@ics.forth.gr>
Date:   Mon May 11 12:31:37 2009 +0100

    Updated Greek translation

 po/el.po |  190
 +++++++++++++++++++++++++++++---------------------------------
 1 files changed, 88 insertions(+), 102 deletions(-)

commit 4d75b8f9807eb1e87eb17b6e9fa1565fc124b98a
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 10 19:10:41 2009 +0100

    Reduce usage of almanah_interface_embolden_label by using Pango
    attributes

 data/almanah.ui                 |   15 +++++++++++++++
 src/definition-manager-window.c |    4 ----
 src/main-window.c               |    4 ----
 src/search-dialog.c             |    3 ---
 4 files changed, 15 insertions(+), 11 deletions(-)

commit 11eaffdee9e7c78eecb25a798bb44282696c0655
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 10 18:54:27 2009 +0100

    Bug 572032  Allow manual date entry

 data/almanah.ui         |   74 +++++++++++++++++-
 src/Makefile.am         |    2 +
 src/date-entry-dialog.c |  202
 +++++++++++++++++++++++++++++++++++++++++++++++
 src/date-entry-dialog.h |   57 +++++++++++++
 src/main-window.c       |   18 ++++
 src/main.c              |    2 +
 src/main.h              |    1 +
 7 files changed, 355 insertions(+), 1 deletions(-)

commit 081d79837e10273d778cc376a905b6fce255e229
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 10 09:23:52 2009 +0100

    Made the text view for entering "note" definitions longer by default

 src/definitions/note.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 55f441eb5e93c8fcfdb76b449c9f30c191d2f4ae
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 10 09:18:19 2009 +0100

    Don't display the Add Definition dialogue for pre-existing definition
    texts

 src/main-window.c |   16 ++++++++++++++--
 1 files changed, 14 insertions(+), 2 deletions(-)

commit 5bcaf504d120e1287d5b11721438eb309633d178
Author: Simos Xenitellis <simos@gnome.org>
Date:   Fri May 8 17:20:05 2009 +0100

    Added el to LINGUAS

 po/LINGUAS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 87b64617aa6ff117ba096df753d8eb20ba5c2201
Author: Vasilis Kontogiannis <vasilisk@ics.forth.gr>
Date:   Fri May 8 17:18:18 2009 +0100

    Added Greek translation

 po/el.po |  555
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 555 insertions(+), 0 deletions(-)

commit 63b2a1a3836aa4bb6c5b9bc0acc458843181e3ad
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Mon May 4 10:12:03 2009 +0200

    Updated German translation

 po/ChangeLog |    4 +
 po/de.po     |  209
 +++++++++++++++++++++++++++++----------------------------
 2 files changed, 110 insertions(+), 103 deletions(-)

commit 45cee2421c0c70c8d3964818a70c886755053fa5
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 3 17:14:51 2009 +0100

    Wrap text when adding a new note definition

 src/definitions/note.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 04dd158392d331c2ac206859e2a005277e53482c
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 3 17:01:33 2009 +0100

    Made adding definitions case-insensitive

    When adding a definition, pre-existing definitions can populate
    the Add
    Definition dialogue even if they differ in case to what's been typed.
    Definitions are still stored with their original case in the database.

 src/definition-manager-window.c |   53
 ++++++++++++++++++++++++++++++++++++++-
 src/main-window.c               |    2 +-
 src/storage-manager.c           |   28 +++++++++++++++++++-
 3 files changed, 79 insertions(+), 4 deletions(-)

commit 0b17724a31e91a6ced6763ceddeae6e57c8fbaa9
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 3 15:52:55 2009 +0100

    Bug 580052  Not encrypting keeps encrypted database

    Delete the old encrypted database if closing a database which wasn't
    initially encrypted, or without an encryption key.

 src/storage-manager.c |   22 ++++++++++++----------
 1 files changed, 12 insertions(+), 10 deletions(-)

commit 4fb9feb96fc1a20c8e0d259653b224d62e7ebbe5
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun May 3 15:42:40 2009 +0100

    Bug 579242  No error messages for bad keys when closing

    Improved error reporting when closing the database, such that
    errors during
    encryption are now presented in error dialogues, rather than just
    being
    printed silently to the console.

 src/Makefile.am          |   17 +++++++++++++++
 src/almanah-marshal.list |    1 +
 src/main.c               |   35 ++++++++++++++++---------------
 src/storage-manager.c    |   50
 +++++++++++++++++++++++----------------------
 4 files changed, 62 insertions(+), 41 deletions(-)

commit dce853f92d564007b1407b5993829e365f149bf7
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Apr 26 16:17:35 2009 +0100

    Fixed e-mail address in DOAP file

 almanah.doap |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 5c5c5c92223b29a44a9dd10746eb1708c2275842
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Thu Apr 23 17:58:08 2009 +0100

    Add more debugging on failure to encrypt the database

 src/storage-manager.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

commit 52e30a28b62b297f3ac3774d4cad6b5fdcd78b3e
Author: Daniel Nylander <po@danielnylander.se>
Date:   Mon Apr 20 17:37:18 2009 +0200

    Updated sv translation

 po/ChangeLog |    4 ++
 po/sv.po     |  168
 +++++++++++++++++++++++++++++++---------------------------
 2 files changed, 94 insertions(+), 78 deletions(-)

commit eb4bc7b7d0f434b25698ec92c80b11363cb9201c
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Apr 19 23:56:07 2009 +0100

    Added .gitignore generation support

    Using git.mk from pango, the .gitignore file is now auto-generated.
    Removed INSTALL from the repository, since it was only a symlink,
    and also
    removed the obsolete .bzrignore and .gitignore files.

 .bzrignore                   |   64 ---------------
 .gitignore                   |   37 ---------
 INSTALL                      |    1 -
 Makefile.am                  |   22 +++++-
 data/Makefile.am             |    2 +
 data/icons/16x16/Makefile.am |    2 +
 data/icons/22x22/Makefile.am |    2 +
 data/icons/32x32/Makefile.am |    2 +
 data/icons/48x48/Makefile.am |    2 +
 data/icons/Makefile.am       |    2 +
 git.mk                       |  178
 ++++++++++++++++++++++++++++++++++++++++++
 src/Makefile.am              |    2 +
 12 files changed, 212 insertions(+), 104 deletions(-)

commit 0d02c20d92e3f766c44047b55d39d9481b23543c
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sun Apr 19 23:45:10 2009 +0100

    Compiler warning fixes

 src/add-definition-dialog.c       |    6 ++-
 src/add-definition-dialog.h       |    4 +-
 src/definition-manager-window.c   |    9 ++++-
 src/definition.c                  |    1 -
 src/definition.h                  |    8 ++--
 src/definitions/contact.c         |    1 -
 src/definitions/file.c            |    3 +-
 src/definitions/note.c            |    3 +-
 src/definitions/uri.c             |    3 +-
 src/entry.c                       |    1 -
 src/event-factories/calendar.c    |    3 +-
 src/event-factories/f-spot.c      |    1 -
 src/event-factory.c               |    3 +-
 src/event-manager.c               |    1 -
 src/event.c                       |    3 +-
 src/event.h                       |    8 ++--
 src/events/calendar-appointment.c |    3 +-
 src/events/calendar-task.c        |    3 +-
 src/events/f-spot-photo.c         |    1 -
 src/main-window.c                 |   35 +++++++++++++++++----
 src/main.c                        |    2 +-
 src/preferences-dialog.c          |    7 ++--
 src/printing.c                    |    5 ++-
 src/search-dialog.c               |   10 ++++--
 src/storage-manager.c             |   59
 ++++++++++++++++++-------------------
 25 files changed, 100 insertions(+), 83 deletions(-)

commit c380c3e5d2b7aeb88e7a46e880882906fb020a76
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Fri Apr 17 10:43:17 2009 +0100

    Migrated to git, adding a DOAP file and moving the ChangeLog

    Added a DOAP file for the use of cgit, fixed some file permissions,
    migrated
    the svn:ignore property to .gitignore, and moved the ChangeLog to
    ChangeLog.pre-git and added Makefile code to generate the ChangeLog
    from the
    git log in future.

 .gitignore        |   37 ++
 ChangeLog         | 1329
 ---------------------------------------------------
 ChangeLog.pre-git | 1361
 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 Makefile.am       |   18 +-
 almanah.doap      |   16 +
 5 files changed, 1431 insertions(+), 1330 deletions(-)