~ubuntu-branches/ubuntu/gutsy/geany/gutsy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
2007-05-21  Enrico Tröger  <enrico.troeger@uvena.de>

 * NEWS, geany_private.rc, win32-config.h, doc/geany.1.in,
   doc/geany.docbook, doc/geany.txt, doc/images/*, doc/html/*:
   Updated for Geany 0.11.
 * New release: Geany 0.11 "Bandor".


2007-05-16  Enrico Tröger  <enrico.troeger@uvena.de>

 * THANKS, src/about.c, po/LINGUAS, po/bg.po:
   Added Bulgarian translation (Thanks to Dilyan Rusev).


2007-05-16  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/highlighting.c:
   Fix bug when loading custom filetypes.common styles.
 * src/sci_cb.c:
   Add workaround for PHP/TCL closing brace de-indenting.


2007-05-15  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/highlighting.c, data/filetypes.common:
   Show fold line by default (so it's clearer there are hidden lines).


2007-05-15  Enrico Tröger  <enrico.troeger@uvena.de>

 * scintilla/ScintillaGTK.cxx:
   Fixed wrong clipboard target (closes #1711483).
 * doc/geany.docbook, src/callbacks.c:
   Hide notebooks tabs instead of sidebar when toggling additional
   widgets.
 * doc/geany.docbook, src/about.c, src/build.c, src/dialogs.c,
   src/keybindings.c, src/project.c, src/symbols.c, src/tools.c,
   src/ui_utils.c: Added many widget names to different dialogs for use
                   with custom styles. Menu items still don't work.
 * data/filetypes.common, doc/geany.docbook, src/highlighting.c:
   Applied patch from Michal Kurgan to disable separately use of global
   white space foreground and background colours (thanks).


2007-05-14  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/filetypes.c, src/filetypes.h:
   Add some menu separators to group filetype menu items.
   Reorder Haskell, O-Matrix, VHDL filetypes.
 * src/document.c:
   Fix removing indent spaces after switching back to tab indenting.
 * scintilla/LexHTML.cxx:
   Hopefully fix #1718532 - 'Crashes when open a special file';
   backported from Scintilla 1.73.


2007-05-12  Nick Treleaven  <nick.treleaven@btinternet.com>

 * tagmanager/sql.c:
   Fix #1717418, Hang on SQL file load.


2007-05-11  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/utils.h, src/search.c:
   Move search_get_file_list() to utils.c.
 * src/highlighting.c, src/highlighting.h, src/symbols.c:
   Load global tag files stored in ~/.geany/tags when needed.
 * doc/geany.docbook:
   Update docs for loading user tags at startup.
 * doc/geany.docbook:
   Rename 'confdialog' to 'prefs'.
   Move compile time options section into an appendix (most users
   shouldn't change these options).
 * src/highlighting.c:
   Prevent double loading of common styles when filetype none is used
   before other filetypes.
   Replace init_styles() with direct initialization of style_sets.
 * src/ui_utils.h, src/project.c, src/search.c, src/ui_utils.c:
   Use open folder dialog for project base path instead of create folder
   dialog (better for choosing existing directories, and can still
   create new folders).
   Add optional title parameter for open dialog with ui_path_box_new()
   and ui_setup_open_button_callback().
   Use Windows folder dialog in ui_path_box_open_clicked().
 * src/utils.c:
   Wrap notebook pages when switching tabs.
 * src/utils.c:
   Fix bug when directory doesn't exist in utils_get_file_list().


2007-05-10  Nick Treleaven  <nick.treleaven@btinternet.com>

 * data/global.tags:
   Update C global tags for GTK+ 2.10 and it's dependencies.


2007-05-09  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c:
   Make backspace unindent when using spaces for indentation.


2007-05-08  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c:
   Fix auto-indentation when the filetype is not set.


2007-05-08  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sciwrappers.c, src/sciwrappers.h:
   Added sci_get_line_indentation() and sci_set_line_indentation().
 * src/callbacks.c: Fixed broken increase/decrease indentation when
                    using only spaces for indentation.


2007-05-07  Enrico Tröger  <enrico.troeger@uvena.de>

 * data/filetypes.haskell: Added build instructions.
 * geany.nsi: Prevent installation in a directory without proper
              write permissions under Windows.
              Display an error message instead.


2007-05-06  Enrico Tröger  <enrico.troeger@uvena.de>

 * data/filetypes.haskell, scintilla/KeyWords.cxx,
   scintilla/LexHaskell.cxx, scintilla/Makefile.am,
   scintilla/makefile.win32, src/filetypes.c, src/filetypes.h,
   src/highlighting.c, src/highlighting.h, src/sci_cb.c, THANKS:
   Added new filetype Haskell (patch by Guillaume Hoffmann, thanks).
 * geany.glade, doc/geany.docbook, src/callbacks.c, src/callbacks.h,
   src/interface.c, src/keybindings.c, src/keybindings.h:
   Added menu item to hide or show all additional widgets and renamed
   keybinding to menu_toggleall.


2007-05-05  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c:
   Make marker and matching brace keybindings global.
   (Also indent some case statement bodies).
 * src/sci_cb.c:
   Add brace indenting support for Perl and TCL.


2007-05-05  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.docbook: Applied patch from John Gabriele which adds some
                      text to the preferences section, thanks.


2007-05-04  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.docbook, src/main.c, src/prefs.c:
   Set widget names for the main widgets to allow users to define custom
   styles in .gtkrc-2.0.
 * doc/geany.docbook, src/keybindings.c, src/keybindings.h, src/prefs.c,
   src/ui_utils.c, src/ui_utils.h:
   Added keybinding to show and hide all additional widgets(statusbar,
   toolbar, sidebar and messages window).


2007-05-03  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c, src/keybindings.h:
   Add keybinding to show project properties dialog.
 * src/keybindings.c:
   Merge file menu keybinding callbacks into cb_func_file_action().


2007-05-02  Frank Lanitz  <frank@frank.uvena.de>

 * THANKS, src/about.c: Update of e-mail of Jean-Philippe Moal.


2007-05-01  Nick Treleaven  <nick.treleaven@btinternet.com>

 * geany.gladep:
   Don't regenerate the support.[hc] files, to prevent unnecessary
   rebuilding of files dependent on support.h.
 * src/project.c:
   Hide the unused File Patterns field in the project properties dialog.
 * src/build.c, src/project.c:
   Allow run for any file (with a path) when a valid project run command
   is set.
 * src/project.c:
   Allow a blank project base path to use the default Make All command.
   Update the 'project already open' & 'base path not found' dialogs.


2007-04-30  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/symbols.c:
   Use g_printerr (if necessary) when generating global tags to convert
   UTF-8 automatically; mark error messages for translation.
 * src/search.c:
   Allow replacing identical text if case sensitive is not checked.
 * src/document.c:
   Fix reloading of read-only documents.
 * src/document.c:
   Make replace all commands report no matches for read-only documents.
 * src/search.c:
   Switch to status window when using Replace In Session to show which
   documents had replacements made.
 * src/search.c:
   Show number of matches when using Mark command.
 * src/utils.h:
   Add NZV() macro for checking a char* points to a non-empty string.
 * src/build.c:
   Disable the Build Includes run command field when there is a project
   open with a valid run command set.


2007-04-29  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/interface.c, geany.glade:
   Rename 'tabulators' 'tabs'.
 * src/ui_utils.h, src/search.c, src/ui_utils.c:
   Add ui_path_box_new() for creating a path text entry with an open
   button, which runs a file chooser to set the text entry.
   Add ui_setup_open_button_callback() for setting up a button callback
   that behaves like the open button in ui_path_box_new().
   Use ui_path_box_new() in FIF dialog setup.
 * src/interface.c, src/project.c, src/project.h, src/prefs.c,
   geany.glade:
   Add project file path preferences option in General tab.


2007-04-29  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/geany.h: Changed default browser to firefox.


2007-04-26  Nick Treleaven  <nick.treleaven@btinternet.com>

 * tagmanager/tm_source_file.c, tagmanager/include/tm_source_file.h:
   Add tm_source_file_get_lang_name() as a wrapper for getLanguageName()
   in parse.c.
 * src/main.c, src/symbols.c, tagmanager/tm_workspace.c,
   tagmanager/include/tm_workspace.h:
   Add support for generating global tags files for non-C-like
   filetypes.
 * doc/geany.docbook:
   Update Global Tags section now all filetypes can be generated.
   Comment out 'should be written' from Preferences section.
 * doc/geany.docbook:
   Add Project Management section.


2007-04-25  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/filetypes.c, src/filetypes.h, src/main.c:
   Separate filetype menu item creation from filetypes_init_types() so
   it can be called without initializing GTK (for non-GUI commands).


2007-04-24  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/search.c:
   Disable FIF extra options entry when checkbox is not checked.
 * src/sci_cb.c:
   Remove duplicate calltips (e.g. from function def and prototype).


2007-04-23  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c:
   When linking (or using Make Custom), remove error indicators in all
   documents (should fix #1705374).
 * src/symbols.c:
   Sort symbol list tags also by line number (fixes #1703575).
 * src/utils.c, src/utils.h:
   Add G_GNUC_NULL_TERMINATED to ensure variable arglists are NULL
   terminated (for GLib >= 2.8).


2007-04-21  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/project.c, src/project.h, src/keyfile.c, src/main.c:
   Restore the current project when restarting Geany.
 * src/project.c:
   Fix no response with Project dialogs when the user enters invalid
   information (oops).


2007-04-20  Nick Treleaven  <nick.treleaven@btinternet.com>

 * doc/geany.docbook:
   Update generating global tags section.
 * src/keyfile.c:
   Move save_recent_files(), save_session_files() code out of
   configuration_save().
   Move load_file_lists() code out of configuration_load().


2007-04-19  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.docbook, src/vte.c:
   Fixed handling of command line arguments within the shell command for
   the VTE to enable use of shells as login shells.


2007-04-18  Nick Treleaven  <nick.treleaven@btinternet.com>

 * doc/geany.docbook:
   Update Search section: escape sequences, Find All, Mark, Replace All.
 * src/filetypes.c, src/filetypes.h, src/document.c:
   Split filetypes_get_from_filename() into filetypes_detect_from_file()
   and filetypes_detect_from_filename().
 * tagmanager/tm_tag.c:
   Use the usual TM parser for all langTypes except pascal, php, latex
   when loading global tags files.
 * tagmanager/tm_workspace.c:
   Keep tag names with different argument lists when loading global
   tags.
   Prevent segfault if using tm_workspace_find_scoped() with global
   tags.
 * src/interface.c, src/callbacks.c, src/callbacks.h, src/symbols.c,
   src/symbols.h, geany.glade:
   Add Load Tags command in the File menu.


2007-04-16  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/build.c, src/dialogs.c, src/document.c, src/utils.c:
   Use g_stat() instead of stat() to prevent file read errors on Win32.
   Prevent unnecessary filename encoding conversions on Win32.


2007-04-16  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/filetypes.c:
   Remove wrong UTF-8 conversion in filetypes_get_from_filename().


2007-04-15  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, data/filetypes.*, doc/geany.docbook, src/callbacks.c,
   src/callbacks.h, src/filetypes.c, src/filetypes.h, src/geany.h,
   src/interface.c, src/keybindings.c, src/keybindings.h, src/keyfile.c,
   src/main.c, src/prefs.c:
   Added context actions to run custom commands on current selection or
   the current word below cursor.
 * src/document.c, src/keyfile.c:
   Run print command asynchronously to prevent blocking of the main
   process (closes #1695786).


2007-04-15  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c:
   Prevent D module tag lookup for D constructor calltips.
 * tagmanager/tm_workspace.c:
   Allow overloaded argument lists in global tag files.
 * tagmanager/tm_workspace.c:
   Add tm_tag_function_t tags in global tags files, so that inline C++
   methods (and D functions) get parsed.
 * src/keyfile.c, src/search.c, src/search.h:
   Save FIF extra options string in the keyfile.
 * src/search.c:
   Move 'Recurse in subfolders' FIF option below the others.
   Add tooltip for extra options entry.


2007-04-13  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Fixed missing calltip display when using a space after
                 a symbol name (thanks to Anh Phạm for reporting).


2007-04-13  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c, tagmanager/tm_tag.c, tagmanager/tm_workspace.c:
   Show up and down arrows when there are multiple calltip matches.


2007-04-10  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/document.c, src/geany.h, src/interface.c,
   src/keyfile.c, src/main.c, src/prefs.c, src/ui_utils.c:
   Added options to show or hide the statusbar as well as the editor
   scrollbars.
 * src/sciwrappers.c, src/sciwrappers.h:
   Added sci_set_scrollbar_mode() to easily show or hide the scrollbars.


2007-04-08  Enrico Tröger  <enrico.troeger@uvena.de>

 * configure.in, Makefile.am, doc/Makefile.am, scintilla/Makefile.am,
   src/Makefile.am, tagmanager/Makefile.am:
   Made "distcheck" working.


2007-04-06  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c:
   Only insert a space if construct completion occurs, to prevent
   unusual undo history.
 * doc/geany.docbook:
   Add Construct completion in the Editing section.
   Add Tags section, including how to generate a replacement global.tags
   file.


2007-04-05  Nick Treleaven  <nick.treleaven@btinternet.com>

 * tagmanager/tm_workspace.c:
   Write tm_tag_enumerator_t and tm_tag_macro_t (e.g. for GTK_STOCK_*)
   tags when creating a global tags file, and store the pointerOrder.
 * doc/geany.docbook:
   Add filtering out version control files with Extra options info to
   Find in Files section.
 * src/keybindings.c:
   Only construct-complete when the editor widget has focus.
 * src/symbols.c, tagmanager/tm_workspace.c:
   Make \" filename quoting optional when creating a global tags file
   (quoting is useful if glob matching is needed). Run geany -g for
   example usage.


2007-04-03  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/search.c:
   Add recursive option to Find in Files dialog.
 * src/search.c:
   Add 'Extra options' field and checkbox to FIF dialog.
   Don't allow arguments appended to Grep command.
   Prevent warning when using relative paths with open directory button.
   Refactor FIF options code into get_grep_options(), remove
   fif_options, fif_match_type.


2007-03-31  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/templates.c, doc/geany.docbook:
   Make file header optional for filetype templates - use the string
   '{fileheader}' to mark where the file header should be placed, which
   can be anywhere in the filetype template.


2007-03-30  Nick Treleaven  <nick.treleaven@btinternet.com>

 * geany.desktop.in:
   Added MimeTypes: C++ header, Pascal, Perl, Python, httpd-PHP, XML;
   thanks to Iñaki Rodriguez.
 * src/search.c:
   Prevent Find in Files directory combo being vertically stretched.


2007-03-30  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Fixed warning about shadowing a local variable.
 * doc_geany.docbook, src/keybindings.c, src/keybindings.h:
   Add keybinding for switching to the search bar
   (as suggested by Nikolas Arend).


2007-03-29  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c:
   Check size of construct completion buffer, remove unneeded static in
   sci_cb_auto_forif().
   Reorder some of sci_cb_close_block().
 * src/keybindings.c, src/keybindings.h:
   Add headings for the Keyboard Shortcuts dialog to group related
   commands.
   Shorten the 'Send to custom command' labels slightly.


2007-03-28  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c:
   Don't auto-indent {} braces for filetypes that don't use them.
   Add lexer_has_braces(), do_indent() for in place buffer indentation.
   Rewrite some of get_indent().


2007-03-27  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c, src/keybindings.h, src/sci_cb.c, src/sci_cb.h,
   doc/geany.docbook:
   Add keybinding for construct completion, and set the default to tab.
   Separate complete_constructs() code from sci_cb_auto_forif().


2007-03-26  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c, TODO:
   Change comment/uncomment keybinding to Ctrl-G/Ctrl-Shift-G.
   Change duplicate KB to Ctrl-D (Scintilla default).
   Change goto line KB to Ctrl-J (so Ctrl-L line cut Sci KB works).
   Remove default goto matching brace KB (doesn't work on all
   keyboards).
 * src/sci_cb.c, src/symbols.c, src/symbols.h:
   Load HTML-entities when the PHP lexer is first needed, instead of
   when typing outside of PHP styles.
 * src/sci_cb.c:
   Separate on_margin_click(), on_update_ui(), on_char_added()
   Scintilla notifications.


2007-03-25  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.docbook, src/keybindings.c, src/keybindings.h,
   src/sci_cb.c, src/sci_cb.h, src/utils.c, src/utils.h:
   Use Ctrl+Shift+Space always for showing calltips because Alt+Space is
   used often by window managers (not only under Windows).
   Added keybinding for inserting alternative whitespace characters.


2007-03-24  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c, src/symbols.c:
   Fix segfault when pressing ctrl-enter when there are no workspace
   tags (thanks to R8Rooy for reporting).
 * src/build.c, src/build.h, src/dialogs.c, src/dialogs.h,
   src/callbacks.c, src/callbacks.h:
   Move dialogs_show_includes_arguments_*() to build.c.
   Move on_includes_arguments_*dialog_response() to build.c.
   Make several build functions static.
 * src/keybindings.c:
   Ignore Caps Lock in keybindings_got_event() (could cause problems
   with e.g. Shift-F9).
 * src/search.c:
   Don't beep when pressing escape to close the Find or Replace dialogs.


2007-03-23  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/dialogs.c:
   Add Edit button to Keyboard Shortcuts dialog.
 * src/keybindings.c, src/keybindings.h, src/dialogs.c, src/dialogs.h,
   src/callbacks.c:
   Move dialogs_show_keyboard_shortcuts() to keybindings.c.
 * src/keybindings.c, src/prefs.c, src/prefs.h, src/callbacks.c,
   src/vte.c:
   Rename dialogs_show_prefs_dialog() to prefs_show_dialog().


2007-03-22  Enrico Tröger  <enrico.troeger@uvena.de>

 * THANKS, doc/geany.docbook, src/keybindings.c, src/keybindings.h,
   src/sci_cb.c, src/sci_cb.h:
   Applied patch from Anh Phạm to add a keybinding for selecting the
   current word under the cursor (thanks).


2007-03-21  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/project.c:
   Made all project dialogs modal.
 * src/main.c, src/symbols.c, src/symbols.h, tagmanager/tm_workspace.c:
   Add option --generate-tags (-g) to generate a global tags file from
   a list of source files. Currently this is only likely to work
   correctly for C source files. Run 'geany -g' for syntax info.
   Remove short option for hidden option --generate-data-files.
   Update tm_workspace_create_global_tags() from Anjuta 1.2.4a.
 * tagmanager/tm_tag.c, tagmanager/include/tm_tag.h
   Separate alternative PHP/LaTeX global tags parser into
   tm_tag_init_from_file_alt() (for easier diff with Anjuta).


2007-03-20  Enrico Tröger  <enrico.troeger@uvena.de>

 * data/filetypes.common, doc/geany.docbook, src/highlighting.c:
   Added option to change the caret width.


2007-03-15  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c, src/keybindings.h, src/sciwrappers.c,
   src/sciwrappers.h:
   Add Goto Previous/Next Marker keybindings (Ctrl-, and Ctrl-.).
   Make sci_marker_next() and sci_marker_previous() return marker line
   number.
 * src/keybindings.c, src/keybindings.h, src/sciwrappers.c,
   src/sci_cb.c:
   Add Toggle Marker keybinding (Ctrl-M).
 * THANKS, doc/geany.docbook:
   Add bookmarks section written by John Gabriele (thanks).
   Group some subsections into an 'Editing' section.


2007-03-14  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c:
   Delay updating interface items when switching notebook tabs until
   after the page has changed, so it appears to switch pages faster.
 * src/treeviews.c, src/notebook.c:
   Don't recreate the open files items when DnD reordering tabs, now
   that the open files treeview is sorted alphabetically.
 * src/project.c:
   Make suggested New Project filename use the projects/ directory as
   parent directory, instead of projects/name/.


2007-03-13  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/highlighting.c: Fixed wrong margin colours for filetype All/None.
 * src/highlighting.c: Init the default styles before first usage.


2007-03-13  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.c:
   Use tab stops for status bar line, column and selection data to stop
   the other fields being moved so often when browsing code or typing.
   Rearrange status bar statistics to be clearer/more concise.
 * src/document.c:
   Count total replacements made when replacing in a rectangular
   selection.
 * src/keybindings.c, src/keybindings.h, src/callbacks.c,
   src/callbacks.h, doc/geany.docbook:
   Add 'Switch to last used document' keybinding.


2007-03-12  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.docbook: Added description for disable-server command line
                      option for Xfce Terminal.
 * src/project.c: Added missing whitespace (found by Frank).


2007-03-12  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c:
   Switch to Compiler window when using Next Error command.
 * src/utils.c, src/document.c:
   Update the status bar after setting the document file type, if it
   has changed.
   Update the status bar after colourising open files, so the current
   tag is accurate.


2007-03-10  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/project.c:
   Separate New Project dialog from Project Properties dialog.
   Make Properties Filename field read-only, below Name field.
   Capitalize dialog titles.
 * src/utils.c, src/utils.h, src/project.c:
   Make New Project dialog create parent directories of the chosen base
   path if necessary.
   Prevent warnings when setting open dialog directory to a path whose
   parent directory doesn't exist.
   Add create_parent_dirs argument for utils_mkdir().


2007-03-09  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/encodings.c, src/encodings.h, highlighting.c,
   src/msgwindow.c, src/notebook.c, src/project.c, src/sci_cb.c,
   src/search.c, src/tools.c, src/ui_utils.c, src/utils.c:
   Fixed several compiler warnings (mainly shadowing local variables
   and unreachable code).
 * src/sci_cb.c: Auto completion of multi line comments is now (again)
                 configurable with the auto complete constructs option.
 * src/highlighting.c:
   Set default highlighting style for filetype None to get it also
   inverted if invert_all is set.
   Reset all previously defined styles when switching filetype to None.
 * data/filetypes.common, doc/geany.docbook, src/highlighting.c:
   Added style "default" to filetypes.common to be able to change the
   default style for files without a filetype set.



2007-03-09  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/interface.c, doc/geany.docbook, data/filetypes.*, geany.glade:
   Fix indentation spelling.


2007-03-08  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c:
   Fix not setting existing project typenames for C-like files if they
   don't contain typenames themselves (bug introduced in r1323).
 * doc/geany.docbook:
   Updated Templates section for filetype templates and added some
   subsection titles.


2007-03-08  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c: Fixed wrong tooltip.
 * geany.glade, doc/geany.docbook, src/document.c, src/document.h,
   src/geany.h, src/interface.c, src/keyfile.c, src/main.c, src/prefs.c,
   src/sci_cb.c, src/ui_utils.c:
   Added different auto indention modes to select how should Geany
   indent new lines (closes #1615605).



2007-03-06  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/win32.c, src/callbacks.c, src/keyfile.c, src/document.c,
   src/document.h, src/main.c, src/socket.c:
   Speed up loading multiple C-like files when existing documents are
   open (by ensuring documents are only colourised once).
   Add document_open_files(), document_colourise_new().
   Add some missing function parameter names to document.h.


2007-03-05  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.docbook:
   Added single line comment examples for clarification.


2007-03-05  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/project.c, src/project.h:
   Add project run command support. Run command is a custom command-line
   and can include arguments.
   Make 'Choose project filename' dialog use a Save button.


2007-03-03  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c:
   Moved all code for checking and creating the geany run script
   temporary file from build_run_cmd() to prepare_run_script().
 * src/build.c, src/utils.c:
   Fix memory leak with utils_remove_ext_from_filename().
 * src/build.c:
   Fix memory leak, remove unused build_create_shellscript() argument.
 * src/build.c:
   Use UTF-8 for missing executable error message.


2007-03-02  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/win32.c:
   Added new file filter for Open File dialog to only show supported
   source files (for native Win32 dialog).
 * src/main.c: Changed location of translation files to lib\locale
               on Win32.
 * geany.nsi: Added NSIS installer script for the Win32 installer.
 * data/filetypes.c, data/filetypes.cpp, src/highlighting.c:
   Added support for secondary keywords for filetypes C and C++.
 * doc/geany.docbook: Fixed typo (thanks to John Gabriele).


2007-03-01  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/project.c, src/project.h:
   Run Make All and Make Custom from the project base directory, if set.
   Add project_get_make_dir().


2007-03-01  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/tools.c, src/utils.c:
   Applied patch from Jeff Pohlmeyer to improve the custom command
   execution code(thanks).
 * src/sciwrappers.c, src/sciwrappers.h:
   Added sci_get_selection_mode(), sci_set_selection_mode(),
   sci_get_pos_at_line_sel_start(), sci_get_pos_at_line_sel_end().
 * src/document.c:
   Improved replacing in rectangle selections (closes #1665571).
 * src/build.c, src/tools.c, src/utils.c, src/utils.h:
   Set IO channels for custom commands to blocking mode
   (thanks to Jeff Pohlmeyer).
 * data/filetypes.python, src/highlighting.c:
   Added missing keywords: as, with, False, None and True.
 * src/dialogs.c, src/filetypes.c, src/filetypes.h:
   Added new file filter for Open File dialog to only show supported
   source files (list of all defined filename extensions).


2007-02-28  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/msgwindow.c, src/msgwindow.h, src/search.c:
   Show number of matches when using Find All or Find in Files.
   Add msgwin_msg_add_fmt().
 * src/build.c:
   Make build_spawn_cmd() take a command string instead of joining an
   array of strings.


2007-02-27  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/filetypes.c:
   Use utils_strv_new() for all filetype patterns.


2007-02-26  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/tools.c: Fixed wrong sensitiveness of custom commands menu items.
 * configure.in, THANKS:
   Applied patch from Slava Semushin to improve SVN checks (thank you).


2007-02-25  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, doc/geany.docbook, src/geany.h, src/interface.c,
   src/keybindings.c, src/keybindings.h, src/keyfile.c, src/main.c,
   src/tools.c, src/tools.h:
   Added custom commands to send selected text through some definable
   commands and replace the selection with the output.
 * data/filetype_extensions.conf, src/filetypes.c:
   Added *.pod to Perl file patterns.
 * src/sci_cb.c: Auto complete multi line comments only when auto
                 completion of constructs is enabled.


2007-02-25  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c:
   Prevent undefined behaviour when using the Stop command that can kill
   X when Geany is run from the KDE or Xfce menu (not from a terminal).
   Should close #1668017.


2007-02-24  Enrico Tröger  <enrico.troeger@uvena.de>

 * configure.in, Makefile.am, README.I18N, po/intl_stats.sh, po/LINGUAS:
   Moved list of available translations to new file po/LINGUAS.
   Added readme file for translation information.
   Added little shell script intl_stats.sh to display some basic
   translation statistics.


2007-02-24  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/*.c:
   Add descriptions for all .c source files below the file header.


2007-02-23  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keyfile.c, src/document.c, src/document.h, src/main.c:
   Speed up loading multiple C-like files when restoring session or
   loading command-line files at startup by ensuring documents are
   only colourised once.
   Also prevent re-colourising C-like documents after saving a file
   unless the list of typenames has changed.
   Add document_delay_colourise(), document_colourise_all().
 * src/dialogs.c, src/document.c, src/document.h:
   Fixed switching to the wrong tab when showing the unsaved dialog.
 * src/templates.c:
   Don't include filetype.none in the new file template menus.


2007-02-20  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c, src/sci_cb.h:
   Made auto_close_bracket() static and auto close brackets only when
   auto completion of constructs is enabled (closes #1665015).
 * doc/geany.1.in: Fixed typo.
 * geany.glade, src/interface.c: Improved tooltip for auto completion.


2007-02-20  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c:
   Remove the yellow error line marker also when using 'Remove Error
   Indicators'.


2007-02-19  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/search.c: Fixed compiler warning.
 * src/project.c, src/win32.c, src/win32.h:
   Added Windows dialogs for Project new and Project open actions.
   Fixed some mem leaks in the Windows code.


2007-02-19  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/templates.c, src/templates.h, src/highlighting.c,
   src/callbacks.c, src/callbacks.h, src/filetypes.c, src/main.c:
   Support filetype templates for all filetypes (scan
   ~/.geany/templates/filetype.* at startup).
   Default filetype templates are now created in init_ft_templates().
   Move on_new_with_template() to templates.c.
   Move on_filetype_change() to filetypes.c.


2007-02-18  Enrico Tröger  <enrico.troeger@uvena.de>

 * data/filetypes.ruby, src/highlighting.c:
   Added several missing style types for filetype Ruby.
 * doc/geany.docbook: Added notice about contributing to the docs
                      (patch from John Gabriele, thanks).


2007-02-17  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.c:
   Scroll Compiler and Messages window in view when using Next Error
   or Next Message.
 * src/search.c:
   Add Mark button as a Find All option in the Find dialog.
 * src/interface.c, src/callbacks.c, src/callbacks.h, src/document.c,
   geany.glade:
   Add Remove Markers item to the Document menu.
   Remove Error Indicators no longer removes current tag marker.


2007-02-16  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sciwrappers.c, src/sciwrappers.h, src/sci_cb.c, src/document.c:
   Rename sci_get_line_end_from_position() with line argument, not
   position.
   Don't autocomplete for/if constructs when editing an existing line.
 * src/document.c:
   Set single undo action when using document_strip_trailing_spaces().
 * src/search.c:
   Show grep command and directory when using Find in Files.


2007-02-15  Enrico Tröger  <enrico.troeger@uvena.de>

 * data/filetypes.perl, src/highlighting.c:
   Added several missing style types for filetype Perl
   (thanks to John Gabriele for reporting).
 * src/treeviews.c: Aligned "No symbols found" label to top.
 * src/callbacks.c, src/document.c, src/document.h, src/keybindings.c,
   src/main.c, src/socket.c:
   Added possibility to create and open non-existent files from command
   line (closes #1635094 and #1652917).


2007-02-14  Frank Lanitz  <frank@frank.uvena.de>

 * geany.glade, src/interface.c: Fixed a typo.


2007-02-14  Nick Treleaven  <nick.treleaven@btinternet.com>

 * geany.desktop.in:
   Add MimeType text/x-diff.
 * scintilla/ScintillaGTK.cxx:
   Redraw instead of scrolling in ScintillaGTK::ScrollText if there is
   an existing update region.
   Revert earlier ScintillaGTK::ExposeTextThis change.
 * tagmanager/c.c:
   Fix wrong D function return type after a class definition.


2007-02-13  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/treeviews.c:
   Allow popup Symbols menu when the current document has no tags, so
   the sidebar can be hidden.
   Use a GtkLabel to display 'No tags found'.


2007-02-12  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/main.c: Convert config, application and documentation dir paths
               to locale encoding before using it.


2007-02-08  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/utils.h, src/filetypes.c,
   data/filetype_extensions.conf:
   Add *.rej as a Diff filename pattern.
   Add utils_strv_new() to duplicate a va_list of strings.


2007-02-07  Frank Lanitz  <frank@frank.uvena.de>

 * data/pascal.tags, THANKS: Fixed a wrong autocompletion. Thanks to
   Dirk Weber for reporting.


2007-02-06  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/symbols.c:
   Fix missing global tags for C files when a C++ source file was
   loaded first.


2007-02-05  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/treeviews.c:
   Prevent right click in Symbol list from selecting a tag.
 * src/ui_utils.h, src/treeviews.c, src/callbacks.c, src/treeviews.h,
   src/document.c, src/main.c, src/ui_utils.c:
   Move ui_update_tag_list() to treeviews.c.
   Make treeviews_prepare_taglist() static.


2007-02-03  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c:
   Prevent scroll bar from moving when using document_find_text() and
   no match is found.
 * tagmanager/c.c:
   Make anonymous typenames use anon_typename_n instead of
   typename_anon_n (it seems we can't use <> brackets because of
   missing scope problem).
 * src/build.c:
   Allow Make for files with no extension - prevent Build when the
   output filename would be the same as the source file.


2007-02-01  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.c:
   Show file path on window title after file name.


2007-02-01  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/build.c: Prevent compiling or executing of files without a
                filename extension(closes #1642029).
 * src/document.c: Made --line and --column also working for already
                   open files (thanks to Mark Knoop for his help).
 * THANKS, src/treeviews.c:
   Applied patch from Tomás Vírseda to sort the list of open files in
   the sidebar alphabetically (thanks).


2007-01-31  Enrico Tröger  <enrico.troeger@uvena.de>

 * scintilla/ScintillaGTK.cxx, src/document.c, src/document.h,
   src/keybindings.c, src/sci_cb.c, src/sciwrappers.c,
   src/sciwrappers.h, src/utils.c:
   Improved the auto scrolling of documents (actually done by Nick).


2007-01-30  Frank Lanitz  <frank@frank.uvena.de>

 * configure.in, THANKS, src/about.c, po/fi.po:
   Added Finnish translation (Thanks to Harri Koskinen).


2007-01-27  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/document.c, src/document.h, src/keyfile.c,
   src/sci_cb.c, src/sciwrappers.c, src/sciwrappers.h:
   Fixed some scrolling issues with session files and files remotely
   open via the socket. Added need_scrolling flag to document struct.


2007-01-26  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c: Applied patch from Jeff Pohlmeyer to clear the line
                   marker when clearing the compile error markers.
 * geany.glade, src/geany.h, src/interface.c, src/keyfile.c,
   src/prefs.c, src/sci_cb.c:
   Added an option to disable auto completion of known symbols while
   typing (still can be forced by pressing the keybinding).


2007-01-25  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/vte.c: Applied patch from Jeff Pohlmeyer to improve loading of
              the VTE library.
 * src/ui_utils.c: Applied patch from Jeff Pohlmeyer to make the
                   window title Gnome HIG compatible.


2007-01-24  Enrico Tröger  <enrico.troeger@uvena.de>

 * data/filetype_extensions.conf, src/filetypes.c:
   Added *.xsd to XML file patterns.
 * geany.glade, src/callbacks.c, src/callbacks.h, src/geany.h,
   src/interface.c, src/keybindings.c, src/keybindings.h, src/main.c,
   src/sci_cb.c, src/sci_cb.h, src/search.c:
   Added keybinding and menu entry to open a file which is selected
   in current tab.
   Made Insert Special HTML characters insensitive if there are no
   open tabs.
   Removed Zoom items from popup menu.
 * tagmanager/latex.c: Allow \section*{} and other commands with *.
 * doc/geany.1.in, doc/geany.docbook, src/document.c, src/main.c,
   src/main.h, src/socket.c:
   Added command line option --column to allow setting the initial
   column for the first opened file on command line.
   Don't apply the --line and --column options to the first opened
   session file.
   Make --line and --column options work for opening files in an already
   running instance.
 * src/document.c: Oops. Revert the change to ignore --line setting when
                   opening session files.


2007-01-24  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c, src/search.c:
   Setup Find Next/Previous to use the same search text after using
   Find Selected/Prev Selected.


2007-01-23  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/interface.c, src/keybindings.c, src/keybindings.h,
   src/callbacks.c, src/callbacks.h, src/search.c, src/search.h,
   geany.glade:
   Applied patch from Jeff Pohlmeyer to add 'Find Selected' and
   'Find Prev Selected' Search commands and keybindings (thanks).


2007-01-21  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/project.c: Implemented loading and saving of the project file
                  and minor improvements.
 * src/build.c, src/msgwindow.c, src/msgwindow.h:
   Applied patch from Jeff Pohlmeyer to avoid parsing of compiler errors
   by the va_list system.
 * src/project.c: Replaced the New button by a Create button.


2007-01-20  Enrico Tröger  <enrico.troeger@uvena.de>

 * scintilla/makefile.win32: Fixed typo.
 * scintilla/*, src/sci_cb.c: Updated Scintilla to version 1.72.
 * doc/geany.docbook:
   Added a notice of changed DnD behaviour in Scintilla 1.72.


2007-01-19  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/build.c: Use "rm" to delete the run script because unlink is not
                available on all systems.
 * geany.desktop.in: Added more mimetypes supplied by Nick Schermer.
 * doc/geany.docbook: Documented GEANY_PROJECT_EXT.
 * src/dialogs.c, src/prefs.c, src/prefs.h, src/search.c:
   Fixed crashes when using some dialogs after they were closed before.


2007-01-18  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/project.c: Do not auto complete project filename and base path
                  when they were changed manually.
 * src/geany.h, src/project.c:
   Implemented project open dialog, but open doesn't do anything yet.
   Added GEANY_PROJECT_EXT macro.
 * geany.glade, src/interface.c:
   Removed unintended keybindings for the project menu items.
 * geany.desktop.in: Added MimeType entry as suggested by Nick Schermer.


2007-01-18  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c:
   Change default keybinding for Close All to Ctrl-Shift-W to avoid
   conflict with Document menu (thanks to Jeff Pohlmeyer).
   Remove Alt-P default KB for Preferences to avoid conflict with
   Project menu.


2007-01-17  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/project.c, src/project.h:
   Added properties dialog (still far away from state ready).
   Added file_patterns field.
 * src/utils.c, src/utils.h: Added utils_mkdir().


2007-01-17  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c, doc/geany.docbook:
   Make Go to Tag Definition work for all tags except forward
   declarations and externs.


2007-01-16  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/vte.c: Use g_shell_quote to avoid problems with special
              characters in the path of a filename.


2007-01-16  Nick Treleaven  <nick.treleaven@btinternet.com>

 * tagmanager/c.c:
   Backport improvements from Anjuta 2.02.
   Parse anonymous struct and enums (using contextual_fake_count).
   Add better C99 support, e.g. wchar_t variables.
 * tagmanager/include/tm_symbol.h, tagmanager/tm_symbol.c:
   Add tm_arglist_compare().
   Fix comparison in tm_symbol_tag_compare().


2007-01-15  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/vte.c:
   Fixed changing directories when the path contains whitespace.
 * src/callbacks.c: When using Save As the returned filename needs to be
                    converted into UTF-8.
 * geany.glade, po/POTFILES.in, src/callbacks.c, src/callbacks.h,
   src/geany.h, src/interface.c, src/main.c, src/makefile.win32,
   src/Makefile.am, src/project.c, src/project.h:
   Started to implement project management (still unusable).
   Added project.[c|h].


2007-01-15  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/symbols.c:
   Reorder symbol list by Namespaces, Classes, Functions, Members,
   Structs, Macros, Variables.
   Add D Variables, rename D Methods -> Functions.


2007-01-14  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/build.c, src/document.c, src/geany.h,
   src/highlighting.c, src/interface.c, src/keyfile.c, src/prefs.c,
   src/sci_cb.c, src/sci_wrappers.c, src/sciwrappers.h, src/utils.c,
   src/utils.h:
   Added sci_set_use_tabs().
   Fixed mem leak in sci_cb_auto_forif().
   Moved free_pointers() to utils.c.
   Applied patch from Jeff Pohlmeyer to add an option for using spaces
   or tabulators when inserting some whitespace.
 * src/about.c: Updated copyright information.
 * geany_private.rc, README, src/*.c, src/*.h:
   Updated copyright information.
 * data/filetype_extensions.conf, src/filetypes.c:
   jsp is a Java extension.
 * src/sci_cb.c:
   Enabled auto completion of constructs for filetype JavaScript.


2007-01-14  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/treeviews.c, src/treeviews.h, src/symbols.c, po/POTFILES.in:
   Move treeviews_init_tag_list() and symbol list GtkTreeIters to
   symbols.c.
 * src/highlighting.c:
   Fix segfault when setting Lua filetype.


2007-01-13  Enrico Tröger  <enrico.troeger@uvena.de>

 * data/filetype_extensions.conf, data/filetypes.javascript,
   data/filetypes.lua, scintilla/KeyWords.cxx, scintilla/LexLua.cxx,
   scintilla/Makefile.am, scintilla/makefile.win32, src/filetypes.c,
   src/filetypes.h, src/highlighting.c, src/highlighting.h,
   src/sci_cb.c, src/templates.c, tagmanager/js.c, tagmanager/lua.c,
   tagmanager/Makefile.am, tagmanager/makefile.win32,
   tagmanager/parsers.h: Added new filetypes Javascript and Lua.
 * geany.glade, THANKS, src/geany.h, src/interface.c, src/keyfile.c,
   src/prefs.c, src/sci_cb.c:
   Applied patch from Jeff Pohlmeyer to add an option for disabling DnD
   in the editor widget.


2007-01-13  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/main.c, src/socket.c, po/POTFILES.in:
   Print an error message (instead of debug message) when a
   command-line file cannot be loaded.
 * src/utils.c, src/utils.h, src/geany.h, src/symbols.c,
   src/ui_utils.c, src/symbols.h:
   Move utils_compare_symbol(), GeanySymbol, recreate_tag_list()
   to symbols.c.
 * src/document.c:
   Update the symbol list when starting a new document.


2007-01-12  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c, src/symbols.c, src/symbols.h:
   Use '::' context separator for C also (so C/C++ share the same
   syntax, and C++ .h headers use correct syntax).
   Add symbols_get_context_separator() and use for calltips and the
   symbol list.
 * src/treeviews.c, src/document.c:
   Don't select the current document when reordering tabs (fixes
   #1632708).
 * src/utils.c:
   Fix g_strconcat leaks in utils_make_settings_dir().


2007-01-11  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c:
   Fix commenting multiple lines (oops).
   Set single undo action when toggling multiple lines.


2007-01-09  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c:
   Try to fix paste problems on Windows (should close #1628951).


2007-01-09  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/sci_cb.c, src/sciwrappers.c:
   Prevent some possible buffer overflows.


2007-01-08  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.docbook, src/keybindings.c, src/keybindings.h:
   Added keyboard shortcut for Save As.
   Added missing documentation for some keyboard shortcuts.
 * src/vte.c: Improved tool tip for terminal emulation.


2007-01-07  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/utils.h, src/encodings.c, src/document.c,
   src/encodings.h, src/dialogs.c, src/ui_utils.c:
   Fix memory leak when using utils_scan_unicode_bom().
   Prevent invalid memory read in utils_scan_unicode_bom() when text
   length is < 4.
   Move utils_scan_unicode_bom(), utils_is_unicode_charset() to
   encodings.c.
   Read the BOM length in handle_bom().


2007-01-07  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c: Fixed typo.


2007-01-06  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/sci_cb.c, src/sci_cb.h, src/templates.c,
   src/templates.h:
   Removed multiline template because it makes not much sense, instead
   just comment three lines using the general comment functionality.
   Removed special templates for Pascal and some other filetypes using
   "#" as comment char. The comment characters for fileheader and GPL
   templates are now added dynamically according to the current
   filetype.
 * geany.glade, doc/geany.docbook, src/callbacks.c, src/callbacks.h,
   src/interface.c, src/templates.c, src/templates.h:
   Added template for BSD licence.
 * src/document.c: Fixed missing colouring of tab menu label.
 * doc/geany.docbook, src/geany.h, src/utils.c, src/templates.c:
   Save template files in a subdirectory "templates" inside Geany's
   configuration directory.


2007-01-06  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c:
   Ensure the VTE visual settings are applied when switching to VTE
   when the Message Window is hidden.
   Show the Message Window when switching to Scribble.
 * src/document.c:
   Use load_text_file() in document_open_file() to read, verify and
   handle encoding using FileData struct.
   Refactored handle_[forced_]encoding with FileData* argument.
   Update data length after removing BOM chars in handle_bom().


2007-01-04  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/build.h:
   Make build_parse_make_dir() more efficient.


2007-01-03  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c, tagmanager/entry.h, tagmanager/tm_tag.c,
   tagmanager/include/tm_tag.h, tagmanager/c.c:
   Parse pointers in function return type for C-like files.
   Show scope in calltips.
   Made tm_tag_destroy() static.
 * src/treeviews.c:
   Fix for C89 compatibility.
 * src/templates.c, src/build.c, src/templates.h, src/build.h,
   src/highlighting.c, src/filetypes.h:
   Added filetype_id typedef so that GEANY_FILETYPES_* can be shown
   when debugging (also renamed some filetype_id variable names).


2006-12-31  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/treeviews.c: When opening a file, set the current selected
                    entry in the open files list to the file's filename.


2006-12-30  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.c:
   Don't use gtk_rc_get_style() in ui_update_tab_status() because it
   can cause an invalid memory read on some systems.
 * src/build.c, src/build.h, src/msgwindow.c, src/msgwindow.h:
   Applied patch from Josef Whiter to parse 'Entering directory' build
   messages so that subsequent error messages are handled correctly
   (thanks).
   Assume gcc-style error messages when filetype is not set.


2006-12-26  Nick Treleaven  <nick.treleaven@btinternet.com>

 * tagmanager/tm_tag.c, tagmanager/include/tm_tag.h:
   Fix missed matches in tm_tags_find().
 * src/sci_cb.c, tagmanager/tm_workspace.c,
   tagmanager/include/tm_workspace.h:
   Add calltip support for D constructors.
   Add tm_workspace_find_scoped() (adapted from Anjuta 2.02
   tm_workspace_find()).


2006-12-24  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/sci_cb.c:
   Only call SCI_BRACEMATCH once in sci_cb_highlight_braces().
   Separate find_calltip() from sci_cb_show_calltip().
 * src/sciwrappers.c:
   Improve accuracy of sci_scroll_to_line() when line wrapping and/or
   folding is used.


2006-12-22  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c:
   Don't reparse the current function when fold level is higher than
   the function fold level (when the line has only changed by 1).


2006-12-21  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.1.in, doc/Makefile.am, doc/geany.docbook, doc/images/*,
   doc/html/*:
   Fixed encoding of generated PDF file.
   Deleted all jpg images and replaced them by png images.
   Updated date in documentation and manpage.
 * src/callbacks.c: Fixed wrong paste behaviour under Windows with some
                    applications.
 * src/ui_utils.c: Start column count from 0 in the statusbar display.
 * New release: Geany 0.10 "Sander".
 * configure.in, src/geany.h, geany_private.rc:
   Version bump and updated codename for the next release.


2006-12-20  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/keyfile.c: Changed default values:
   Confirm exit -> disabled by default
   Use tab to indent -> disabled by default.


2006-12-20  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keyfile.c:
   Fix strv leak in configuration_open_files().
 * src/treeviews.c, src/ui_utils.c:
   Fix tag treeview not being freed (because of g_object_ref).
   Separate recreate_tag_list() from ui_update_tag_list().
 * src/vte.c:
   Stop Valgrind complaining about a vc->emulation leak.
 * src/callbacks.c, src/search.c:
   Remove unneeded static from current word strings.


2006-12-18  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/tools.c: Completed list of special characters, implemented
                expanding and collapsing of categories at double click.
 * src/geany.h: Updated codename (not really important).


2006-12-18  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c, src/search.c, src/document.c:
   Don't log simple error messages like 'No text to find'.
 * src/keyfile.c:
   Open tabs left to right by default.
 * src/keyfile.c:
   Scroll cursor to 50% of the view for session files at startup.
 * src/callbacks.c, src/dialogs.c:
   Always switch to the tab when showing the unsaved file dialog.
 * src/document.c:
   Don't set the cursor to the start of the document when attempting to
   open an already open file.
 * src/utils.c, src/utils.h, src/callbacks.c, src/sci_cb.c,
   src/document.c:
   Force a file changed check when attempting to open an already open
   file.
 * src/sciwrappers.c, src/sciwrappers.h, src/document.c:
   Scroll cursor to 50% of the view when reloading a file.
   Rename sci_goto_pos() argument 'unfold'.


2006-12-17  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c:
   Made the sidebar notebook tabs scrollable.
 * geany.glade, src/callbacks.c, src/callbacks.h, src/interface.c,
   src/ui_utils.c:
   Fixed wrong insert position when the cursor was moved by keyboard
   and comments, includes or a date was inserted.
   Also fixed some segfault when inserting comments, dates and includes
   at a position prior to some deleted text.
 * src/document.c: Fixed disabled build menu items after opening the
                   first file of a filetype.


2006-12-17  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/search.c:
   Fix using the current word on first use of the Find in Files dialog.
 * src/document.c:
   Don't log 'replaced 0 occurrences' status messages.
 * src/search.c:
   Remove unneeded 'missing response' debug messages.


2006-12-16  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c:
   Fix memory leak in utils_check_disk_status().
 * src/highlighting.c, src/sci_cb.c, src/sci_cb.h, src/document.c,
   src/symbols.c, src/symbols.h:
   Colourise C enum, union and D/Java interface typenames.
   Add sci_cb_lexer_get_type_keyword_idx() for use when finding if a
   lexer supports typename colouring.


2006-12-15  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/main.c, src/sci_cb.c, src/sci_cb.h, src/symbols.c,
   src/symbols.h:
   Moved html_entities array to symbols.c.
   Fixed some checks for the new D lexer and improved detection of
   comments when auto completing or showing calltips.
 * src/search.c: Bring the Find, Replace and FIF dialog back to top if
                 they are already shown but lost focus.


2006-12-15  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c:
   Only remove extra space indent after a multiline comment if the
   indent contains one too many spaces.
 * src/highlighting.c, data/filetypes.d:
   Show D typedefs in bold.
 * src/sci_cb.c, src/sci_cb.h, src/document.c:
   Fix setting project typenames for the new D lexer.
   Add sci_cb_lexer_is_c_like() which returns TRUE for C++/D lexers.
   Only recolourise C-like files when updating project typename
   keywords.


2006-12-14  Frank Lanitz  <frank@frank.uvena.de>

 * src/about.c: Fixed a typo.


2006-12-14  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c:
   Fix updating the symbol list when a file is saved.
   Update C-like typedef keywords when reloading a file.
 * src/sci_cb.c:
   Fix adding a multiline comment character after pressing enter on the
   last line of a multiline comment.
   Remove multiline comment indent after pressing enter on last line.
   Prevent invalid memory reads in auto_multiline().


2006-12-13  Frank Lanitz  <frank@frank.uvena.de>

 * THANKS: Small update of contact data and small fix of translated
           language.


2006-12-13  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.h, src/about.c, src/treeviews.c, src/msgwindow.c,
   src/callbacks.c, src/keyfile.c, src/document.c, src/prefs.c,
   src/main.c, src/ui_utils.c:
   Fix memory leaks when using GdkPixbuf, PangoFontDescription and some
   strings.
   Capitalize main window title.
   Add ui_widget_modify_font_from_string().
 * src/build.c, src/keybindings.c, src/msgwindow.c, src/msgwindow.h,
   src/vte.c, src/main.c:
   Add 'Hide Message Window' popup menu item for each window in the
   message window area.
   Add msgwin_menu_add_common_items().
   Move remaining message window setup code to msgwin_init().
 * src/interface.c, geany.glade:
   Add 'Invert syntax highlighting colours' Preferences dialog option
   (hidden for now).


2006-12-12  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c, src/geany.h, src/keyfile.c, src/sciwrappers.c,
   src/sciwrappers.h: Added option to toggle usage of Tab button for
                      indentation.
 * geany.glade, po/POTFILES.in, src/callbacks.c, src/callbacks.h,
   src/interface.c, src/keybindings.c, src/keybindings.h,
   src/Makefile.am, src/makefile.win32, src/tools.c, src/tools.h:
   New files tools.c and tools.h.
   Added a dialog to insert HTML special characters.


2006-12-12  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/interface.c, src/callbacks.c, src/ui_utils.c,
   geany.glade:
   Use GNOME HIG Header style capitalization for all menu items.
 * src/main.c:
   Make files loaded from the command-line at startup get added to the
   recent files menus.


2006-12-11  Enrico Tröger  <enrico.troeger@uvena.de>

 * data/filetypes.vhdl: Fixed typo in "number" and "string" styles.


2006-12-11  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/main.c:
   Show GTK+, GLib runtime version debug message after socket_init().
 * src/callbacks.c:
   Make indenting and unindenting keep the same cursor position when
   the cursor is within the indentation characters.
 * configure.in:
   Link with libsocket if necessary to fix building on Solaris.


2006-12-10  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/build.c, src/callbacks.c, src/document.c, src/keyfile.c,
   src/prefs.c, src/vte.c, src/vte.h:
   Added option to execute programs in the VTE instead of executing
   them in a terminal emulation window (closes #1594456).
 * src/dialogs.c: Use a table to layout the word count dialog.


2006-12-09  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c:
   Fix building on win32; also fix some warnings.
 * src/document.c:
   Read the file's modification timestamp after saving because on
   Windows it can be later than expected (closes #1611530).
 * src/keybindings.c:
   Show the Message window when switching to the vte.
 * src/build.c, src/keybindings.c, src/keybindings.h:
   Add keybindings for Next Message and Next Error commands.


2006-12-08  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/interface.c, src/ui_utils.h, src/build.h,
   src/keybindings.c, src/msgwindow.c, src/callbacks.c,
   src/msgwindow.h, src/callbacks.h, src/main.c, src/ui_utils.c,
   geany.glade:
   Add Next Message and Next Error menu items.
   Don't select the last build message on completing a build.
   Change build_get_menu_items(-1) to return current build menu.
   Add Copy popup menu item for Status and Messages windows.
   Move on_message_treeview_clear_activate(),
   on_compiler_treeview_copy_activate() to msgwindow.c.
   Create the Recent files submenu item manually because Glade 2.10
   removes empty menus.
 * src/dialogs.c, src/ui_utils.c:
   Use ui_button_new_with_image() in dialogs_show_unsaved_file().


2006-12-08  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/build.c: Made the created run script for command execution a bit
                more portable to other shells than bash (thanks to
                Nacho Cabanes for reporting).
 * src/document.c, src/document.h, src/sciwrappers.c, src/ui_utils.h,
   src/sciwrappers.h:
   Fixed broken overtype update in the statusbar.
   Removed unused field do_overwrite in document struct.
 * src/msgwindow.c: Removed compiler warning.
 * src/sci_cb.c, src/sci_cb.h:
   Made sci_cb_get_indent and sci_Cb_auto_multiline static.
   Improved auto completion of multi line comments and support
   /+ +/ for D files.
 * src/msgwindow.c: Fixed wrong check button state in view menu if
                    message window was shown automatically.


2006-12-07  Frank Lanitz  <frank@frank.uvena.de>

 * src/about.c, THANKS, configure.in, po/fr.po:
   Added French translation (Thanks to Jean-Philippe Moal).


2006-12-07  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c: Create new tm file object when changing the filetype
                   of a document to avoid a confused tagmanager.
 * data/filetypes.d, scintilla/KeyWords.cxx, scintilla/LexD.cxx,
   scintilla/Makefile.am, scintilla/makefile.win32,
   scintilla/include/SciLexer.h, src/highlighting.c:
   Added new scintilla lexer for D. It needs testing and there is more
   work to do to get it working properly.
 * src/about.c, src/build.c, src/callbacks.c, src/document.c,
   src/encodings.c, src/gb.c, src/keyfile.c, src/prefs.c, src/sci_cb.c,
   src/search.c, src/symbols.c, src/ui_utils.c, src/utils.c,
   src/utils.h, src/dialogs.c, src/vte.c:
   Revert the last change to utils_str_equal() and use it again because
   g_str_equal() is not NULL-safe.


2006-12-06  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Don't insert extra indentation in Python files after a
                 colon if the line is a comment (closes #1609761).
 * src/about.c, src/build.c, src/callbacks.c, src/document.c,
   src/encodings.c, src/gb.c, src/keyfile.c, src/prefs.c, src/sci_cb.c,
   src/search.c, src/symbols.c, src/ui_utils.c, src/utils.c,
   src/utils.h: Removed utils_str_equal() and use g_str_equal() from
                GLib because it does exactly the same.


2006-12-05  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/treeviews.c, tagmanager/latex.c:
   Let the LaTeX parser recognise the keyword \chapter.


2006-12-05  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/socket.c:
   Prevent Valgrind warning with unlink(NULL).
 * src/ui_utils.h, src/treeviews.c, src/callbacks.c, src/notebook.c,
   src/treeviews.h, src/notebook.h, src/document.c, src/document.h,
   src/ui_utils.c:
   Show read-only notebook tabs in green.
   Add document_get_status() to get the tab colour for the document.
   Use ui_update_tab_status() to update notebook tabs and open files
   treeview items.
   Avoid using GtkTreeIter struct as treeviews function arguments.
   Remove unneeded arguments for treeviews_openfiles_add(),
   notebook_new_tab().


2006-12-04  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/highlighting.c, data/filetypes.d:
   Move C/C++ styling_within_preprocessor code out of C-like styles.
   Use styleset_c_like() when applying C-like Scintilla styles.
   Synchronize gsd_reserved_word, gsd_system_word and data/filetypes.d
   with styles in data/filetypes.c.


2006-12-04  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c: Use default GTK foreground colour for filenames on
                   notebook tabs instead of hardcoded colour black.
 * src/sci_cb.c: Fixed broken auto completion for LaTeX files.


2006-12-03  Enrico Tröger  <enrico.troeger@uvena.de>

 * data/filetypes.c, data/filetypes.cpp, data/filetypes.d,
   data/filetypes.ferite, data/filetypes.java, src/highlighting.c:
   Added new style for doc keyword error and added some doc key words
   for Doxygen and Javadoc.
 * geany.glade, src/geany.h, src/interface.c, src/keyfile.c,
   src/prefs.c, src/sci_cb.c:
   Added new preference to unfold all children of a fold point if the
   fold point is unfolded.
 * src/msgwindow.c: Applied patch from Bob Doan to ignore libtool
                    messages when parsing the output of make (thanks).
 * src/sci_cb.c, src/sci_cb.h:
   Made handle_xml() static.
   Fixed wrong XML auto completion in PHP files when inserting '>',
   thanks to Bob Doan for reporting.


2006-12-02  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/highlighting.c: Use the same style for unknown doc keywords
                       (/** @something */) as for known keywords.


2006-12-01  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c, src/geany.h, src/main.c,
   src/ui_utils.c:
   Removed invisible place holder menu item in recent files menu.
   Create separate sub menu for the recent files menu in the toolbar to
   prevent GTK warnings when using GTK >= 2.10.


2006-12-01  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/vte.c:
   Make the switch to vte menu shortcut override work before the VTE
   has been realized.


2006-11-30  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/main.c:
   Disable open toolbutton recent files menu for now because on
   GTK+2.10 packing the recent files menu twice causes warnings.
 * src/build.c, src/build.h, src/keybindings.c, src/callbacks.c,
   src/filetypes.c, src/filetypes.h, src/dialogs.c:
   Make all filetypes except LaTeX use the same build menu, disabling
   any items that don't apply for the current document.
   Move BuildMenuItems struct type to build.h.


2006-11-29  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/build.h, src/keybindings.c, src/filetypes.c,
   src/filetypes.h:
   Make stop button only apply for killing running programs.
   Disable build commands when building is in progress.
   Make build_menu_update() detect how to call set_stop_button().
   Make build_menu_update() also update the LaTeX build menu.
   Make build keybindings only active when the equivalent menu item
   is also active.


2006-11-27  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c:
   Show build result on status bar if Compiler window is not selected.


2006-11-25  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/msgwindow.c, src/notebook.c, src/msgwindow.h, src/notebook.h:
   Add some const char* argument modifiers, remove unneeded static from
   some local vars.
 * src/vte.c:
   Remove vte_char_size_changed() workaround, not needed since r988;
   this also fixes an issue where the VTE is limited to 30x5 chars.
 * src/search.c, src/document.c, src/document.h:
   When replacing in session, use notebook page order and show a count
   of the files changed.
   Show the filename when replacing text over a range.
   Add DOC_FILENAME() null-safe macro to get the filename at doc_idx.
 * src/build.c, src/ui_utils.h, src/msgwindow.c, src/search.c,
   src/document.c, src/ui_utils.c:
   Make ui_set_statusbar() use printf-style arguments & assume the
   message should not be overridden.
 * data/filetypes.python:
   Change python default compile command to create a compiled python
   .pyc file (thanks to Bajusz Tamás).


2006-11-24  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.h, src/prefs.c, src/dialogs.c, src/ui_utils.c:
   Add frame for VTE Preferences tab, update packing.
   Replace ui_frame_new() with ui_frame_new_with_alignment().
 * src/callbacks.c, src/callbacks.h, src/vte.c, src/vte.h, src/prefs.c,
   src/prefs.h:
   Move VTE preferences GUI code to vte.c.
   Move on_pref_tools_button_clicked() to prefs.c.


2006-11-23  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/vte.c: Fixed segfault when opening the preferences dialog for
              the first time from the VTE widget.


2006-11-23  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/highlighting.c, src/geany.h, doc/geany.docbook,
   data/filetypes.*:
   Only use [a-zA-Z0-9] chars for default wordchars, to avoid problems
   with word matching when using Find & Replace functions.
 * src/keybindings.c:
   Add switching to a notebook tab number using Alt-1 to Alt-9; Alt-0
   switches to the last tab.
 * src/geany.h, data/filetypes.*:
   Add underscore to default wordchars again (oops).


2006-11-22  Frank Lanitz  <frank@frank.uvena.de>

 * po/hu.po, src/about.c, THANKS, configure.in:
   Added Hungarian translation (Thanks to Gabor Kmetyko aka
   kilo <kg_kilo@freemail.hu>).


2006-11-22  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/notebook.c, src/notebook.h, src/document.c:
   Ensure tab DnD is enabled when tabs are added; use
   notebook_remove_page() instead of gtk_notebook_remove_page().
   Unified notebook_[en|dis]able_dnd_for_dropping_files() in
   tab_count_changed().


2006-11-21  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/callbacks.h, src/document.c, src/main.c,
   src/notebook.c, src/notebook.h:
   Removed DnD handler for the main window (not very useful).
   Fixed broken tab reordering by only enabling DnD for dropping files
   when there are no open file tabs, otherwise disable it and enable
   DnD for moving file tabs. Dropping files into Geany when file tabs
   are open still works because then it is handled by the Scintilla
   widget.
 * src/msgwin.c: Applied patch from Bob Doan to parse PHP compile
                 errors better (thanks).


2006-11-18  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sciwrappers.c, src/sciwrappers.h:
   Added sci_get_first_visible_line().
 * src/interface.c, src/geany.h, src/sci_cb.h, src/keyfile.c,
   src/vte.c, src/search.c, src/document.c, src/prefs.c, geany.glade:
   Applied patch from Bob Doan to prevent scrolling when wrap searching
   around a document, and to add a preference for suppressing search
   dialogs when wrapping or after Find Next.
   Rearranged some Preferences dialog options, added Files tab.
   Disable tab position when file tabs are hidden (not new file tab
   placement option, it still affects order of pages).
 * src/interface.c, geany.glade:
   Add Preferences frame alignment for Tools, Templates, Keybindings.
   Revert tab placement label text.


2006-11-17  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/build.c, src/main.c:
   Fixed compile error under Win32.
   Ignore pressed Stop button under Win32 (at least for the moment,
   not yet implemented).


2006-11-17  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/search.c:
   Change Find Next/Previous buttons to use better stock icons.
 * src/callbacks.c, src/sci_cb.c, src/document.c, src/document.h:
   Fix sign comparison warnings.


2006-11-16  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/main.c: Enabled DnD also for the main notebook widget to drop
               files in the main area of Geany.


2006-11-15  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/vte.c: Don't unload the VTE module on exit to avoid crashes on
              some systems.
 * src/main.c: Fixed small memory leak.
 * src/callbacks.c, src/callbacks.h, src/document.c, src/document.h,
   src/main.c, src/sci_cb.c:
   Enabled drag and drop for the whole main window to be able to drop
   files even if no tabs are open.
   Moved code for getting the file list to document_open_file_list().


2006-11-15  Frank Lanitz  <frank@frank.uvena.de>

 * src/about.c, configure.in, THANKS, po/zh_TW.po:
   Added tranditional Chinese translation (Thanks to KoViCH
   <kovich.ian@gmail.com>).


2006-11-15  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.h, src/search.c, src/ui_utils.c:
   Add search history for Find in Files.
   Add ui_combo_box_add_to_history() and use to prevent blocks of
   duplicates (but not all duplicates) from search history combo boxes,
   and limit history to 30 entries.
 * src/build.c:
   Remove the stop button in build_exit_cb() when using Make commands.
   Fix set_stop_button() when using Make when the current file has no
   filetype.


2006-11-14  Enrico Tröger  <enrico.troeger@uvena.de>

 * scintilla/LexPascal.c: Tried to fix wrong styling at "end.".


2006-11-14  Frank Lanitz  <frank@frank.uvena.de>

 * po/zh_CN.po, src/about.c, configure.in, THANKS:
   Added simple Chinese (zh_CN) translation (Thanks to
   Dormouse Young <mouselinux@163.com>).


2006-11-14  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/templates.c, src/templates.h, src/callbacks.c, src/filetypes.c,
   src/filetypes.h, src/document.c, src/document.h:
   Add NULL-safe FILETYPE_ID macro to get filetype::id from pointer.
   Allow insertion of GPL notice and file header when the filetype is
   not set.
   Add commenting for PHP & HTML GPL notice and file header templates.
   Add make_comment_block() to templates.c.
   Move document_prepare_template(), filetypes_get_template() to
   templates.c.


2006-11-13  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/filetypes.c, src/filetypes.h, src/highlighting.c,
   src/highlighting.h, src/treeviews.c, scintilla/Makefile.am,
   scintilla/makefile.win32, scintilla/KeyWords.cxx,
   scintilla/LexVHDL.cxx, tagmanager/vhdl.c, tagmanager/parsers.h,
   tagmanager/Makefile.am, tagmanager/makefile.win32,
   data/filetype_extensions.conf, data/filetypes.vhdl:
   Added new filetype VHDL.
 * geany.glade, src/interface.c, src/keybindings.c:
   Use plural for line commentation description labels.
 * src/build.c: Added missing inclusion of signal.h.


2006-11-13  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c: Fix invalid memory read in sci_cb_get_indent().
 * src/callbacks.c: Fix invalid memory write in on_exit_clicked().


2006-11-12  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/vte.c: Fix message window horizontal scrollbar being too tall on
              some systems (thanks to Rob van der Linde).


2006-11-11  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/vte.c: Probe different versions of libvte.so, not only libvte.so
              and libvte.so.4.
 * src/keyfile.c: Fixed a segfault when closing preferences dialog and
                  loading VTE was enabled after it was disabled.
 * src/build.c, src/build.h, src/main.c:
   Extended the build_info struct with useful information of the
   current running command.
   Added stop button(using the Run button) to cancel the execution of a
   command like Run, Compile or Build.
   Fixed a typo in an error message.
 * doc/geany.docbook:
   Described new folding_horiz_line setting in filetypes.common.
   Added documentation for stopping of running processes.


2006-11-09  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/highlighting.c, data/filetypes.java, data/filetypes.cpp,
   data/filetypes.ferite, data/filetypes.c, data/filetypes.d,
   data/filetypes.pascal, data/filetypes.sql, data/filetypes.xml:
   Changed commentdoc(used for javadoc and Doxygen, /** */) colour to a
   light blue.


2006-11-09  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keyfile.c, src/main.c:
   Fix a possible bug with g_file_test when opening files at startup.
   Show warning message on status bar if some session files couldn't be
   loaded, showing debug messages for each session file that fails.


2006-11-08  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/highlighting.c, src/utils.h, src/callbacks.c,
   src/sci_cb.c, src/document.c, src/symbols.c, src/ui_utils.c,
   src/symbols.h:
   Move utils_get_tag_list() to symbols.c, make utils_find_tm_tag()
   static.
   Move symbols_get_global_keywords() to get_global_typenames() in
   highlighting.c.
   Add symbols_find_tags_as_string(), symbols_get_tag_list(),
   symbols_get_macro_list(), symbols_find_in_workspace() from various
   tag-related existing code.
 * src/ui_utils.c:
   Never show the Sidebar if app->show_sidebar is false (prevents
   showing Sidebar after setting Preferences, when user has chosen to
   hide the Sidebar).
 * src/utils.c, src/utils.h, src/about.c, src/callbacks.c,
   src/sci_cb.c, src/keyfile.c, src/search.c, src/encodings.c,
   src/document.c, src/prefs.c, src/gb.c, src/symbols.c:
   Rename utils_strcmp() utils_str_equal() (to avoid return value
   confusion with strcmp()).


2006-11-07  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/treeviews.c: Fixed unintentional appearance of sidebar after it
                    was hidden and the preferences dialog was closed.
 * data/filetypes.common, src/highlighting.c:
   Added an option to draw an horizontal line above or below folded
   text.
 * src/dialogs.c: Don't set width of file open dialog.


2006-11-07  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/win32.c, src/win32.h, src/callbacks.c, src/keyfile.c,
   src/dialogs.c, src/dialogs.h:
   Don't close any tabs when quitting until all unsaved changes have
   been accounted for; switch to each unsaved file before showing the
   unsaved dialog.
   Remove limit of ~256 chars for session filenames.
   Make dialogs_show_unsaved_file() fail if the Save As dialog was
   cancelled.


2006-11-06  Enrico Tröger  <enrico.troeger@uvena.de>

 * data/filetypes.java, src/highlighting.c:
   Added Java keywords true and false.
   Converted "NULL" to lower case.
 * src/sci_cb.c: Little code cleanup in brace_match().


2006-11-05  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Fixed (hopefully) wrong indentation in some cases when
                 inserting '}'.


2006-11-04  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/highlighting.c, src/highlighting.h:
   Applied patch from Bob Doan to do not set keywords for XML
   documents(thanks).
   Made styleset_markup() static.


2006-11-04  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/search.c: Fix pressing enter to search from the Find dialog.
 * src/keyfile.c, src/keyfile.h, src/main.c:
   Make filetype_extensions.conf generation only available with a debug
   build of Geany.
 * src/filetypes.c, data/filetype_extensions.conf:
   Recognise *.xsl, *.xslt filenames for XML filetype.
   Recognise 'GNUmakefile' filename for Make filetype.


2006-11-03  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/msgwindow.c:
   Don't set error indicators when clicking on an error message if the
   document has been modified.
 * src/notebook.c: Focus the current document after clicking on a tab.
 * src/utils.c, src/keybindings.c, src/callbacks.c, src/sci_cb.c,
   src/sciwrappers.c, src/search.c, src/sciwrappers.h, src/document.c,
   src/document.h:
   Scroll matching selection to 1/3 of the view when searching.
   Add sci_scroll_to_line(); remove sci_goto_line_scroll().
   Show 'not found' message on status bar also when enter is pressed in
   the search bar.


2006-11-02  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/dialogs:
   Run set includes build dialogs for LaTeX files modally, too.


2006-11-02  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/highlighting.c, data/filetypes.perl, data/filetypes.pascal,
   data/filetypes.sh, data/filetypes.makefile, data/filetypes.ruby,
   data/filetypes.tcl:
   Make all remaining 0xff0000 comment styles darker using a common
   default comment style.
   Add some other generic styles (used only by C-like filetypes for
   now).


2006-11-01  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/search.c: Changed tooltip of checkbox "Close dialog" to be more
                 descriptive.
 * src/keybindings.c: Changed keybinding for Print to Ctrl+P.
 * scintilla/LexBash.cxx: Fixed wrong detection of some words.


2006-11-01  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c: Prevent possible invalid memory read.
 * src/ui_utils.h, src/search.c, src/search.h, src/ui_utils.c,
   src/callbacks.c:
   Add Find Previous, Find All in File/Session buttons to the Find
   dialog.
   Move Find Usage code from on_find_usage1_activate to search.c.
   Add ui_button_new_with_image(), ui_hbutton_box_copy_layout().
 * src/utils.c: Prevent end of line char showing for current function.
 * src/search.c: Update Save All state after Replace in Session.
 * src/callbacks.c: Update Undo items when switching notebook pages.


2006-10-30  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Add extra indentation for Python after a colon.
 * tagmanager/latex.c, src/treeviews.c:
   Removed "begin" section in symbol list and sort it at environment.


2006-10-29  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c, src/prefs.c, src/geany.h,
   src/keyfile.c, src/ui_utils.c, src/main.c:
   Added an Apply button to preferences dialog.
   New setting to show/hide the Quit toolbar item.
   New setting to show/hide notebook tabs.
 * src/document.c, src/treeviews.c, src/treeviews.h:
   Colour also the open files list items according to their changed
   state.
 * src/callbacks.c, src/callbacks.h, src/msgwindow.c, src/msgwindow.h,
   src/treeviews.c, src/treeviews.h, src/geany.h:
   Moved all treeview related callback functions from callbacks.c to
   msgwindow.c and treeviews.c.
 * src/document.c: Fixed bug when setting colour of open files list
                   entry on new, unnamed files.


2006-10-28  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.c:
   Add temporary fix for sci infinite loop in Document::GetColumn(int)
   when current pos is beyond document end (can occur when removing
   blocks of selected lines especially brace sections near end of
   file).


2006-10-28  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.docbook:
   Some small updates.
   Got rid of &app; entitity.
   Extended description of encoding support.


2006-10-27  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/highlighting.c, src/filetypes.c, src/filetypes.h,
   data/filetypes.java, data/filetypes.cpp, data/filetypes.ferite,
   data/filetypes.c, data/filetypes.d:
   Add filetypes_get_conf_extension() and use in highlighting.c.
   Fix a memory leak in load_keyfiles().
   Group C-like default syntax in init_c_like_styleset().
   Make C-like comment colour darker; make globalclass brighter to
   distinguish it from word colour.
   Make Java use same default syntax highlighting colours as C.
 * src/utils.c:
   Limit parse depth to 500 chars when parsing C-like function name.
 * src/sci_cb.c:
   Find last unmatched open bracket for Show Calltip so nested matched
   brackets are ignored (except LaTeX).


2006-10-26  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c, src/keybindings.h:
   Only accept editing keybindings when the current Scintilla widget
   has focus.
   Group editing keybindings together in cb_func_edit.
   Change keybinding callbacks to pass keybinding index as an argument.


2006-10-25  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c:
   When replacing tabs by space, prevent the scroll position changing,
   and fix a possible change of cursor position.


2006-10-25  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/dialogs.c, src/dialogs.h, src/build.c, src/prefs.c, src/win32.c
   src/document.c:
   Added warning message dialog, united dialogs_show_info() and
   dialogs_show_error() to dialogs_show_msgbox().
 * src/document.c: Added warning message when opening files that cannot
                   be handled correctly and set them to read-only mode.
 * src/document.c, src/encodings.c, src/encodings.h, src/utils.c,
   src/utils.h: Moved utils_convert_to_utf8() and
                utils_convert_to_utf8_from_charset() to encodings.c.


2006-10-24  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/build.c, src/socket.c: Fixed compiler warnings under Windows.
 * win32-config.h, src/dialogs.c:
   Use GTK's file open dialog also under Windows to have the extended
   options(kept old dialog code for optional use).
 * win32-config.h, src/dialogs.c, src/geany.h:
   Removed unneeded macro GEANY_MAX_TAGS_COUNT.
   Moved macro GEANY_USE_WIN32_DIALOG to geany.h.


2006-10-24  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sciwrappers.h, src/sciwrappers.c, src/document.h,
   src/document.c:
   Fix setting document unchanged state when using Undo/Redo for
   encoding or BOM changes.
   Add sci_is_modified().
   Added useful doc() function used only when debugging.
 * src/search.c:
   Reorder Replace All buttons.
 * src/msgwindow.c src/callbacks.c:
   Change Messages and Compiler window to go to line with a single
   click instead of double click.


2006-10-23  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/encodings.c, src/encodings.h, src/document.c, src/callbacks.c,
   src/dialogs.c: Added new encoding "None" to open files without any
                  character conversions (fixes #1580456).
 * src/callbacks.c: Don't allow changing the encoding or setting a BOM
                    if the file is read only.


2006-10-22  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/geany.h, src/keyfile.c, src/main.c:
   Added configuration option for the alignment of toolbar quit button.
 * geany.glade, src/interface.c, src/geany.h, src/keyfile.c,
   src/main.c: Removed previously added configuration option and
               removed the right alignment of the toolbar quit button.
 * src/sci_cb.c, src/sci_cb.h, src/search.c:
   Let the Find, Replace and FIF dialogs use the word at current cursor
   position if there is no selection.
 * src/filetypes.c: Added shebang detection for D files (dmd).
 * src/callbacks.c, src/dialogs.c, src/document.c:
   Added drop down box to the file open dialog to select an encoding.
   Added possibility to open a file without any character set
   conversions (could already fix #1580456, have to be continued).


2006-10-22  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.h, src/search.c, src/document.c, src/dialogs.c,
   src/document.h, src/ui_utils.c:
   Add separate Replace button, rename old button Replace & Find.
   Add expander to group Replace All options for Replace dialog.
   Use Replace All In Session button instead of checkbox.
   Add border, update packing for all dialogs in search.c.
   Add ui_dialog_vbox_new() for consistent dialog borders.


2006-10-21  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c:
   Make search bar automatically wraparound if necessary.
   Detect when Find has searched all text and display a 'not found'
   message on the status bar.
 * src/build.c: Remove unused argument.
 * src/callbacks.c, src/document.c, src/document.h:
   Rename document_find_next() document_search_bar_find().
 * src/msgwindow.h, src/dialogs.h, src/main.h:
   Add G_GNUC_PRINTF checks for variable argument function prototypes.
 * src/build.c, src/utils.c, src/highlighting.c, src/geany.h,
   src/callbacks.c, src/sci_cb.c, src/vte.c, src/search.c, src/main.h:
   Move geany_debug prototype to geany.h so that all files can use it
   without a dependency on main.h.
 * src/callbacks.c, src/main.c, src/main.h:
   Moved finalization code from destroyapp() to main_quit().


2006-10-20  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/interface.c, src/main.c, geany.glade:
   Add drop-down recent files menu to Open toolbar button.
   Align quit toolbar button on the right.
   Move Colour Chooser, Word Count to Tools menu.
   Reorder Format, add Indent icons, edit Remove Indicators items.


2006-10-19  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/about.c, src/dialogs.c:
   Added 6pt border, changed padding for all dialogs in dialogs.c;
   also allow ESC to close cancellable dialogs.
   Updated unsaved, LaTeX Set Arguments dialogs.


2006-10-18  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/utils.c, src/treeviews.c, tagmanager/c.c:
   Use "::" as context separator only for C++, otherwise use ".".
   Detect module declarations in D and put them in the symbol list.
 * src/callbacks.c, src/geany.h, src/msgwindow.c, src/treeviews.c:
   Use enum values to reference different treeview widgets
   (code cleanup).


2006-10-18  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/build.h, src/ui_utils.h, src/ui_utils.c,
   src/keybindings.c, src/callbacks.c, src/callbacks.h, src/document.c,
   src/main.c:
   Move build menu related functions and callbacks to build.c.
   Renamed ui_update_build_menu -> build_menu_update.


2006-10-17  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c, src/filetypes.h, src/ui_utils.c:
   Disable Make All, Make Custom menu items for unnamed files.
   Allow Run and Make Object for C header files.
 * src/document.c:
   Fixed Undo/Redo setting the wrong document changed state when making
   edits after saving a file.


2006-10-17  Enrico Tröger  <enrico.troeger@uvena.de>

 * THANKS, configure.in, src/about.c:
   Added Italian translation (thanks to M. Baldinelli and
   Dario Santomarco).


2006-10-16  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c: Change goto matching brace default keybinding to
                      CTRL-SHIFT-< (requires shift on some keyboards).
 * src/build.c, src/build.h, src/geany.h, src/callbacks.c:
   Don't overwrite Make Custom string when using Make Object.
   Move app->build_make_custopt to build_options struct in build.c.
 * src/build.c, src/build.h, src/msgwindow.c, src/callbacks.c,
   src/msgwindow.h:
   Move build_info struct to build.c and merge with build_options.

2006-10-13  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/ui_utils.c, src/treeviews.c:
   Improved symbol list view for filetype Java.


2006-10-13  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c: Fix infinite loop from parsing current function name.


2006-10-12  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/utils.c: Improved function name parsing to fix some invalid
                parsed function names.


2006-10-12  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c:
   Fix parsing the current function name for Java.
   When the document is unedited, get the current function name from
   the previous function tag parsed by tagmanager.
   Don't update the current function if the cursor is 1 line from the
   previous call and the fold level is unchanged.
 * tagmanager/tm_workspace.c, tagmanager/include/tm_workspace.h:
   Backported tm_get_current_function() from Anjuta.
 * src/sciwrappers.c, src/sciwrappers.h:
   Added sci_get_last_child(), sci_get_fold_parent().
 * src/keyfile.c: Small fix for sign warning.


2006-10-11  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/keyfile.c, src/geany.h: Removed hard limit of session files.
 * doc/geany.docbook: Updated section about session files limit.
 * tagmanager/makefile.win32, tagmanager/Makefile.am,
   tagmanager/parsers.h, tagmanager/diff.c, src/filetypes.c,
   src/treeviews.c: Added simple parser for filetype Diff to create
                    tags for each patched file in a diff file.
 * src/sci_wrappers.c: Added sci_find_bracematch().
 * src/keybindings.c: Added keyboard shortcut Ctrl+< to jump between
                      matching braces(closes #1571283).
 * doc/geany.docbook: Updated missing keybindings.


2006-10-10  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c: Connect only once to the "sci-notify" signal.
 * scintilla/CellBuffer.cxx, scintilla/Document.cxx,
   scintilla/include/Scintilla.h:
   Applied patch from Armel Asselin (thanks). It adds SC_START_ACTION
   notification which is required for Geany's new Undo system.
 * src/document.c, src/sci_cb.c, src/callbacks.c:
   Finished new Undo system. Now some more actions can be undone and
   also redone.
 * src/sci_cb.c: Got rid of goto usage and added auto completion for
                 monitor construct for filetype Ferite.
 * src/highlighting.c, data/filetypes.css:
   Fixed several highlighting errors, added new styles: identifier2,
   important and id.


2006-10-09  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/win32.c, src/geany.h, src/callbacks.c, src/search.c,
   src/document.c, src/document.h, src/prefs.c, src/dialogs.c,
   src/main.c, src/ui_utils.c:
   Removed the GEANY_MAX_OPEN_FILES limit, using a dynamic array.


2006-10-09  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/dialogs.c:
   Made string "Permissions" in the file property dialog translatable.


2006-10-08  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/highlighting.c, data/filetypes.ferite: Added some new keywords.
 * src/sci_cb.c:
   Added auto completion for iferr construct for filetype Ferite.
 * src/socket.c:
   Added additional header files for compatibility with FreeBSD.


2006-10-08  Nick Treleaven  <nick.treleaven@btinternet.com>

 * tagmanager/tm_source_file.c:
   Only parse tags once for simple parsers.


2006-10-06  Enrico Tröger  <enrico.troeger@uvena.de>

 * tagmanager/python.c: Improved Python parser to support nested classes.
 * src/filetypes.c, src/document.c:
   Implemented simple "shebang" detection. It is used prior to the
   filename extension detection.
 * src/highlighting.c, data/filetypes.latex:
   Changed foreground colour for LaTeX style "math" to differentiate it
   from the "comment" style.


2006-10-04  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/ui_utils.c, src/main.c, src/document.c, src/callbacks.c:
   Renamed ui_build_show_hide() in ui_update_build_menu().
 * src/filetypes.c, src/ui_utils.c:
   Fixed crash when using "Make object" on new files(closes #1570818).


2006-10-03  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c: Save configuration(i.e. list of open files) as late
                    as possible and save the filetype build commands
                    first shortly before quitting.
 * doc/geany.docbook, doc/geany.1.in, src/main.c, src/document.c:
   Reordered command line options alphabetically.
   Added new command line option --line to set the initial line for the
   first opened file.
 * data/filetypes.sh, src/highlighting.c: Added keyword "until".


2006-10-02  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/templates.c:
   Added a blank line indent for templates D, HTML, PHP.
 * src/symbols.c, src/symbols.h, src/highlighting.c,
   src/makefile.win32, src/Makefile.am, po/POTFILES.in:
   Move global tags code to symbols.c.
   Added symbols_global_tags_loaded(), symbols_get_global_keywords().
 * src/callbacks.c, src/sci_cb.c, src/sciwrappers.c, src/sciwrappers.h,
   src/document.c:
   Change sci_get_line to return a NULL terminated string.
   Fix memory leak and possible invalid read in sci_cb_auto_latex().


2006-10-01  Enrico Tröger  <enrico.troeger@uvena.de>

 * configure.in: Use datarootdir for defining paths to fix autoconf
                 2.60 problems(thanks to Christoph Berg for reporting).


2006-10-01  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c, src/filetypes.c, src/filetypes.h, TODO:
   Save the build includes and arguments on quitting.


2006-09-30  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/highlighting.c, src/highlighting.h:
   Changed StyleSet struct to use Style array, which can use less
   memory. Added separate struct for the common style set. Also
   use a struct for tracking the loaded global tags files. Renamed
   some static functions.
 * src/document.c, src/ui_utils.c:
   Clear the symbol list when opening a file with no tags.


2006-09-29  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/filetypes.c, data/filetype_extensions.conf:
   Added pattern *.agi for filetype Perl (closes #1567355).
 * doc/geany.docbook:
   Updated information for Debian and Gentoo packages.
 * New release: Geany 0.9 "Kintaro".
 * THANKS, src/about.c: Changed credits of topi.


2006-09-27  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/vte.c: Change VTE word selection chars to include paths.
 * src/highlighting.c, data/filetypes.common:
   Only override the default Scintilla selection style if foreground
   and/or background flags are set in filetypes.common.
   Also increase the current line background brightness.


2006-09-27  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Fixed broken autocompletion for filetype PHP.


2006-09-26  Enrico Tröger  <enrico.troeger@uvena.de>

 * win32-config.h: Enabled socket code on Windows.
 * src/socket.c: Re-enabled the gtk_window_present() call for Windows
                 to pop up the main window.
 * src/utils.c, src/sci_cb.c:
   Enabled notification if file on disk has changed under Windows, it
   seems to work (closes #1557689).


2006-09-26  Frank Lanitz  <frank@frank.uvena.de>

 * po/nl.po, THANKS, configure.in, src/about.c:
   Added Dutch translation (Thanks to Kurt De Bree).


2006-09-22  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/main.c: Apply toolbar style on startup (Fixes #1563125).
 * src/build.c, src/geany.h:
   Prevent a segfault if the Terminal tool is not set.
   Use cmd.exe as default Terminal tool on Windows.
 * scintilla/makefile.win32, src/makefile.win32,
   tagmanager/makefile.win32, makefile.win32:
   Let make clean continue when a file can't be deleted.


2006-09-21  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.c:
   Fix a bug when clicking on a recent file.
 * src/callbacks.c, src/sciwrappers.c:
   Prevent a partial selection on a line being deleted when using
   CTRL-I to indent; also improve CTRL-Shift-I unindenting. Closes
   #1557963.


2006-09-20  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Don't start autocompletion in strings and comments.


2006-09-20  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/search.c, src/search.h:
   Add whole word only matching option for Find in Files.
   Add fixed string matching option for Find in Files.
   Make fixed string, case sensitive matching default for efficiency.
   Sort filenames passed to Grep alphabetically.
 * src/socket.c:
   Don't move Geany to the current desktop when opening files remotely.


2006-09-18  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/dialogs.c, src/callbacks.c:
   Fixed compiler warnings and removed unnecessary signal handler.


2006-09-17  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/templates.h, src/templates.c:
   Move all static strings from templates.h to templates.c.
 * src/sci_cb.c: Fix sign comparison warning.
 * src/utils.c, src/msgwindow.c:
   Improve utils_get_current_time_string().
 * src/ui_utils.c:
   Only reorder recent files menu when recent file loaded correctly.
   Reorder the recent file menu instead of recreating it.


2006-09-15  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/ui_utils.h, src/ui_utils.c, src/callbacks.c, src/dialogs.c:
   Add ui_frame_new().
   Run set includes build dialogs modally, keeping the same filetype.
   Updated set includes & arguments dialog layout & text.
 * src/build.c: Don't print the g_spawn argv strings in build_run_cmd()
                on the status bar.


2006-09-12  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c, src/callbacks.c, src/keybindings.c:
   Added menu items for toggle line commentation.
   Changed some mnemonics in the "format" submenu.
 * src/callbacks.c, src/keybindings.c:
   Added keyboard shortcuts for "Convert Selection to lower-case".


2006-09-12  Frank Lanitz  <frank@frank.uvena.de>

 * data/pascal.tags: Adding data for unit x86.


2006-09-11  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/socket.c: Made socket code for detecting running instances
                 working under Windows.
 * src/win32.c, src/ui_utils.c, src/dialogs.c:
   Fixed compile warnings under Windows.
 * src/highlighting.c: Fixed a typo.
 * src/callbacks.c, src/build.c, src/main.c, src/prefs.c,
   src/ui_utils.c: Implemented Run command (from the build menu) under
                   Windows, the other commands will follow somewhen.


2006-09-10  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c, src/keybindings.c, src/callbacks.c:
   Added comment toggle functionality to easily comment and uncomment a
   line with one shortcut (default Ctrl+B) (closes #1552184).


2006-09-09  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c, src/ui_utils.c:
   Reorder the recent files list if necessary when a file is
   (re)opened - closes #1552178.
 * src/msgwindow.c: Check msgwin visible before scrolling.
 * src/ui_utils.h, src/ui_utils.c, src/callbacks.c,
   src/callbacks.h, src/dialogs.c, src/dialogs.h, src/main.c:
   Move on_recent_file_activate, dialogs_create_recent_menu,
   dialogs_create_build_menu_gen, dialogs_create_build_menu_tex to
   ui_utils.c. Also make some functions static.


2006-09-08  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/msgwindow.c, src/msgwindow.h:
   Show parsable errors in red; stderr and compile failure in dark red.
 * src/callbacks.c: Fix compilation problem with sci_cb_do_comment.
 * src/document.c: Quick fix for C89 compatibility.
 * src/msgwindow.c:
   Make C, C++, Ruby and Java error message parsing more tolerant so
   that linker errors are also parsed if debug line info is available.
   Group all gcc-like error message parsing information together.
 * src/msgwindow.c, src/msgwindow.h:
   Allow compiler and find messages to be added when the messages
   window is hidden.
   Add msgwin_show().
 * src/build.c:
   Show messages window on build failure.
   Show build success message on status bar if messages window hidden.
 * src/document.c:
   Use handle_forced_encoding(), handle_encoding() and handle_bom()
   when opening files.


2006-09-07  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/socket.c, src/main.c, src/callbacks.c:
   Moved the socket code from main.c to socket.c.
 * src/document.c: Remove an unchanged empty document when loading a
                   new file (closes #1545129).


2006-09-06  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/document.c, src/ui_utils.c, src/sci_cb.c:
   Added own implementation of an Undo stack (not yet working).
 * src/utils.c, src/document.c:
   Convert tag names to UTF-8 before showing them in the sidebar.
 * src/document.c:
   Fixed a crash when a compiler output reports an error in a blank
   line(can happen in LaTeX). Thanks to Frank for reporting.


2006-09-05  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/templates.c, src/document.c, src/filetypes.c:
   Added new file template for filetype HTML.
 * src/document.c, src/dialogs.c:
   Don't quit when an error occurs while saving changed files.


2006-09-05  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/utils.h, src/ui_utils.c, src/ui_utils.h,
   src/keybindings.c, src/about.c, src/treeviews.c, src/msgwindow.c,
   src/callbacks.c, src/notebook.c, src/sci_cb.c, src/keyfile.c,
   src/vte.c, src/document.c, src/prefs.c, src/main.c,
   po/POTFILES.in, src/Makefile.am, src/makefile.win32:
   Moved UI related utils from utils.c to ui_utils.c.


2006-09-04  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keyfile.c, src/main.c, src/main.h:
   Rename --no-socket, -s command-line option to --new-instance, -i.
   Add --no-session, -s command-line option to not load session files.
   Only save session when session files were loaded at startup.
 * doc/geany.docbook:
   Update command-line options and running instance behaviour.
 * src/callbacks.c, src/callbacks.h, src/sci_cb.c, src/sci_cb.h,
   src/keybindings.c, src/document.c:
   Move current_word and clickpos to editor_info struct in sci_cb.c.
   Move on_editor_button_press_event to sci_cb.c.


2006-09-03  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/main.c: Open a new instance without loading session files if
               socket already exists and no filenames are specified
               on the command-line.


2006-09-03  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/utils.c: Save All button is also active when only one file is
                changed(improves usability).


2006-09-02  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c, src/search.c:
   Escape special characters when shown in the status window after
   "Replace All" or replacing a selection.
   Set the focus to the replace entry widget when pressing the
   tabulator key in the find entry widget in the replace dialog.
   Set the focus to the find entry widget when pressing the tabulator
   key in the directory entry widget in the FIF dialog.


2006-09-02  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/sci_cb.c, src/main.c:
   Fixed C89 variable declaration and two sign comparison warnings.
 * src/document.c, src/document.h: Add document_get_current().
 * src/msgwindow.c:
   Use parse_file_line() for grep and compiler error messages.
   Add error message support for D, also for the GDC frontend.


2006-09-01  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c, src/dialogs.c, src/prefs.c, src/callbacks.c,
   src/interface.c, geany.glade: Fixed some typos.
 * src/filetypes.c, src/highlighting.c, src/keybindings.c,
   src/sci_cb.c, data/filetypes.html, data/filetype_extensions.conf,
   src/callbacks.c, src/msgwindow.c:
   Split filetype PHP/HTML into PHP and HTML.


2006-09-01  Frank Lanitz  <frank@frank.uvena.de>

 * configure.in, po/vi.po:
   Added Vietnamese translation (Thanks Clytie Siddall).
 * THANKS, src/about.c: Added translator credits.


2006-08-31  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/msgwindow.c, data/filetypes.ferite:
   Improved parsing compiler messages when using the ferite compiler.
   Added some primitives and improved compiler settings for Ferite.


2006-08-30  Enrico Tröger  <enrico.troeger@uvena.de>

 * configure.in, src/callbacks.c, src/geany.h, src/main.c:
   Removed the whole FIFO code and replaced it with support for
   (Unix Domain) Sockets(including Windows support, but not yet done).
 * src/vte.c, src/callbacks.c, src/document.c:
   Change the current working directory within the VTE also when a new
   file is saved.


2006-08-29  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Added auto completion for LaTeX command "begin".


2006-08-28  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c: Fixed typo in a tooltip text.
 * THANKS, src/about.c: Added translator credits.
 * src/treeviews.c, src/utils.c:
   Fixed a crash when switching between several filetypes.


2006-08-27  Frank Lanitz  <frank@frank.uvena.de>

 * configure.in, po/cs.po:
   Added Czech translation (Thanks Petr Messner).


2006-08-27  Enrico Tröger  <enrico.troeger@uvena.de>

 * tagmanager/parsers.h, tagmanager/c.c, data/filetype_extensions.conf,
   data/filetypes.diff, data/filetypes.ferite, src/highlighting.c,
   src/filetypes.c, src/msgwindow.c:
   Added new filetypes Diff and Ferite.
 * src/search.c: Applied patch from Stefan Oltmanns to add the
                 possibility to keep the Replace dialog open.


2006-08-26  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/geany.h, src/main.c, src/utils.c:
   Fixed weird behaviour of Save all tool button and menu item.
 * src/document.c:
   Fixed missing styling settings on new files (needs to be tested).
   Now the filetype sub menu in the document file menu will be updated
   when the filetype is set by the filename on new files.


2006-08-23  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/prefs.c, src/vte.c:
   Added new VTE settings to the preferences dialog.
   Improved ignore menu bar accelerator setting.
   Keep current working directory when restarting the VTE
   (happens when hitting Ctrl+C).
 * src/document.c: Added counter when using "Replace All" and display
                   the count of replacements in the status window.


2006-08-23  Frank Lanitz  <frank@frank.uvena.de>

 * src/highlighting.c, data/pascal.tags:
   Added auto completion for PASCAL.
 * data/latex.tags: Update of catalog.


2006-08-22  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c: Fix quit confirmation message with no files open.


2006-08-22  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/vte.c, src/prefs.c, src/keyfile.c, src/utils.c:
   Save all VTE settings in an own VTE section in the configuration
   file instead of using an unhandy string list.
   Added new settings: ignore menu bar accelerator and define the shell
   which is started within the VTE.
   (Code not yet complete, might be buggy, GUI stuff is missing)
 * tagmanager/pascal.c: Added recognition for keyword "type".


2006-08-21  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/images.c, src/notebook.c:
   Applied patch from Củ Văn Chuối to enlarge the tab close icon. This
   should fix some display issues.
 * scintilla/*: Updated Scintilla to version 1.71.


2006-08-20  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/build.c, src/document.c, src/document.h, src/geany.h,
   src/highlighting.c, src/main.h, src/sci_cb.c, src/search.c,
   src/templates.c, src/utils.c, src/vte.c:
   Moved prototype for geany_debug() to main.h.
   Moved declaration of document struct to document.h.
 * src/sci_cb.c: Keep selection when commenting and uncommenting code.


2006-08-20  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c, src/main.c:
   Fix opening more than one file from the command-line (with fifo).
 * src/geany.h, src/callbacks.c, src/Makefile.am, src/main.c,
   src/main.h:
   Moved HAVE_FIFO MyApp fields to fifo_info struct in src/main.c.
   Prevent unnecessary 'does not look like a filename' debug messages.
   Added fifo_finalize().
 * src/geany.h, src/filetypes.h, document.h, src/highlighting.h,
   src/sci_cb.h, src/highlighting.c, src/sciwrappers.c:
   Remove filetypes.h and Scintilla includes from geany.h.
 * src/document.h: Add VALID_DOC_IDX macro.
 * src/utils.h, src/utils.c, src/callbacks.c, src/keybindings.c,
   src/sci_cb.h, src/sci_cb.c, src/dialogs.c, src/filetypes.h,
   src/filetypes.c:
   Move utils_brace_match to sci_cb.c.
   Move utils_find_current_word to sci_cb.c.
   Move utils_create_file_filter to filetypes.c.


2006-08-19  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c, src/keybindings.c, src/utils.c,
   src/geany.h, src/callbacks.c, src/main.c, src/keyfile.c:
   Added menu items to insert configurable date/time strings.
 * src/dialogs.c, src/callbacks.c:
   Replaced dialogs_show_make_target() by dialogs_show_input() to have
   a general input dialog.
 * src/sci_cb.c:
   Comment already commented lines, too (re-closes #1521714).


2006-08-19  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c: Fix a segfault at startup if terminal follow path
                    setting is enabled.
 * src/geany.h, src/callbacks.c, src/keyfile.c, src/vte.c, src/vte.h,
   src/prefs.c, src/main.c:
   Move HAVE_VTE MyApp settings to vte_info struct in src/vte.c.
 * src/vte.c, src/vte.h:
   Add vte_get_working_directory adapted from Terminal by os-cillation.
 * src/vte.c, src/keyfile.c: Remember the VTE current directory.
 * src/callbacks.c: Only send VTE cd command if directory is different.


2006-08-18  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c: Use codepage SC_CP_UTF8 because we use always
                   GTK even under Windows.


2006-08-18  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keyfile.c: Fix a small memory leak in configuration_load.
 * src/dialogs.c: Change Don't save button icon and add mnemonic.
 * src/main.c: Fix building on win32 - thanks to Củ Văn Chuối.
 * src/dialogs.c, src/dialogs.h:
   Add dialogs_show_question_full for custom buttons and extra text.
   Don't show message dialogs in the window manager taskbar.
 * src/utils.c: Use Reload button for utils_check_disk_status dialog.
 * src/callbacks.c: Improve Reload and Quit dialog.
                    Share on_reload_as_activate code for reloading.
* tagmanager/d.c, tagmanager/c.c, tagmanager/Makefile.am:
  Merged tagmanager/d.c with tagmanager/c.c, which also adds user
  function calltips support for D.


2006-08-17  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c, src/callbacks.h, src/main.c:
   Move signal_cb to main.c.
 * src/main.c:
   Move main_init command line settings to parse_command_line_options.
   Use setup_paths, locale_init, parse_command_line_options,
   setup_config_dir in main().
 * src/msgwindow.c: Reorder widget lookup; ensure FIF dir is set.
 * src/main.c: Fix Show messages window checkbox state when -m used.


2006-08-15  Nick Treleaven  <nick.treleaven@btinternet.com>

 * tagmanager/c.c: Backported calltips workspace support for C-like
                   user files from Anjuta.
 * src/keybindings.c, src/sci_cb.c, src/sci_cb.h:
   Return to showing calltips after successful autocompletion.
   Use separate functions for html and tag autocompletion.


2006-08-15  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c:
   Made increase/decrease indentation working with selections.
   Keep the old cursor position when working on a single line
   (do not jump to line start).
 * src/sci_cb.c: Fixed "while" and "switch" autocompletion.
 * src/highlighting.c, data/filetypes.common, doc/geany.docbook:
   Use the filetype's default style(SCE_*_DEFAULT) as the main default
   style(STYLE_DEFAULT).
 * src/sci_cb.c: Improved HTML "<table>" auto completion to use the
                 indentation better.
 * src/filetypes.c, src/highlighting.c, src/msgwindow.c,
   data/filetypes.fortran, data/filetype_extensions.conf,
   scintilla/Makefile.am, scintilla/LexFortran.cxx,
   scintilla/KeyWords.cxx, tagmanager/fortran.c,
   tagmanager/Makefile.am, tagmanager/parsers.c:
   Added new filetype Fortran 77.


2006-08-14  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sci_cb.c: Applied patch from Jens Granseuer to fix build with
                 gcc 2.95 (closes #1539502).
 * src/build.c, src/geany.h, src/msgwindow.c, src/msgwindow.h,
   src/callbacks.c, src/search.c, src/search.h, src/main.c:
   Store build information instead of using app->cur_idx.
   Assume C-like warning messages when running make when the current
   file is a Makefile.
   Moved some msgwin setup and cleanup code to msgwindow.c.
 * src/utils.c, src/utils.h:
   Moved utils_parse_compiler_error_line to msgwindow.c.


2006-08-13  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c:
   Use wrappers for converting between utf8 and locale encoding.
   Fixed small memory leak.
 * src/vte.c: Added the GTK IM menu items to the VTE popup menu.
 * src/utils.c, src/dialogs.c, src/build.c, src/callbacks.c,
   src/search.c, src/keyfile.c: Use utf8/locale encoding wrappers.
 * data/filetypes.common, src/highlighting.c, src/geany.h,
   src/keyfile.c, src/prefs.c, src/document.c, src/interface.c,
   geany.glade, doc/geany.docbook:
   Added colour values for indentation guides and white space.
   Made hard coded SCI_AUTOCSETMAXHEIGHT changeable and added an option
   in the preferences dialog.
 * src/sciwrappers.c: Added sci_set_autoc_max_height().


2006-08-12  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c:
   Removed unnecessary code in document_replace_tabs().
   Really take tab width when replacing instead of using width = 4.
 * src/Makefile.am: Applied patch from Fryderyk Dziarmagowski to fix
                    build problem with linker flag "-Wl,--as-needed"
                    (closes #1539239).


2006-08-12  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/search.c: Enable case sensitive when regex search enabled.
                 Some label text changes for the dialogs.
                 Use hbox packing in Find and Find in files dialogs.
                 Add select directory button for Find in files.
 * src/utils.c, src/utils.h:
   Add wrappers for converting between utf8 and locale encoding.


2006-08-11  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c, src/geany.h, src/callbacks.c, src/callbacks.h,
   src/search.c, src/search.h, src/dialogs.c, src/main.c,
   src/dialogs.h: Group search related code.


2006-08-11  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c:
   Changed SEARCH_NOT_FOUND_TXT.
   Fixed possible segfault when replacing tabs by spaces.
 * tagmanager/python.c: Fixed wrong classification of local functions
                        as methods(thanks to Sebastian Koch).
 * src/sci_cb.c: Fixed segfault when try to (un)comment some code and
                 no filetype is set(reported by John Gabriele).


2006-08-09  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.docbook:
   Removed section about global ctags, the information were obsolete.
   Added section about file encodings and the Unicode Byte-Order-Mark.
 * doc/images/*: Updated screenshots.
 * New release: Geany 0.8 "Kadir".


2006-08-09  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/main.c: Add startup debug message showing GTK+ runtime version.
 * src/notebook.c: Use native tab DnD reordering on GTK+ 2.10; closes
                   #1519650.


2006-08-08  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/notebook.c: Fixed GTK 2.6 workaround for DnD tab reordering so
                   it works on the first attempt.
 * src/utils.c, src/highlighting.c, src/geany.h, src/treeviews.c,
   src/callbacks.c, src/keyfile.c, src/encodings.c, src/dialogs.c:
   Fixed all sign comparison warnings.


2006-08-07  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c: Applied patch from Củ Văn Chuối to re-enable
                    XIM support. Thanks!


2006-08-07  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c: Allow Find even when the replace text is the same.
                    Place the cursor in "" for insert blank include.
 * src/utils.c, src/utils.h, src/callbacks.c, src/document.c:
   Move recent file item to the top when it is clicked on.


2006-08-06  Nick Treleaven  <nick.treleaven@btinternet.com>

 * doc/geany.docbook:
   Improved search section; added all find and go to commands.
   Added Filetype extensions section.
   Grouped configuration file sections into a chapter.


2006-08-05  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c: Allow partial word selection for Find Usage.
 * src/keyfile.c, src/filetypes.c, src/filetypes.h:
   Use unique filetype id in geany.conf to avoid new filetype problems.
   Make unique id numbers compatible with Geany 0.7 filetype order.
 * src/highlighting.c: Fix loading Perl, TCL system config files first.


2006-08-04  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c, src/callbacks.h, src/dialogs.c:
   Disable word and word start matching when regexes are enabled.
   Don't hide the Find dialog after searching; use Close button.
 * src/filetypes.c: Set radio item None for new files.


2006-08-03  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/callbacks.c, src/filetypes.c, src/filetypes.h,
   src/encodings.c, src/encodings.h, src/interface.c, src/utils.c:
   Made document related submenus(filetype, encoding, line endings)
   radio buttons for better usability.


2006-08-03  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/utils.h, src/sci_cb.c:
   Wrap calltip and prevent it obscuring the current line.


2006-08-02  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c:
   Don't set file as changed when changing encoding to the same one.
 * src/document.c, src/callbacks.c, dialogs.c:
   Fixed wrong behaviour of Save As on unchanged files.


2006-08-01  Enrico Tröger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c, src/callbacks.c, src/keybindings.c,
   src/main.c, src/sciwrappers.c:
   Added some menu items to the edit menu for editing tasks.
   Added keyboard shortcuts for increase/decrease of line indentation
   (closes #1521717).


2006-08-01  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/interface.c, src/utils.c, src/utils.h, src/callbacks.c,
   src/keyfile.c, src/document.c, src/prefs.c, geany.glade:
   Added Auto indentation and Line wrapping options to Preferences
   dialog. Split up Miscellaneous items into Display and Features.
   Renamed Change Selection and Run toolbutton.
 * src/keyfile.c: Change default for removing trailing spaces to off.
 * src/callbacks.c: Clear search flags when using find toolbar entry.
                    Removed some unnecessary static variables.
 * document.c, document.h, prefs.c:
   Apply the tab width setting for new documents.
 * src/keyfile.c, data/filetype_extensions.conf, Makefile.am:
   Install a system filetype_extensions.conf which can be overridden.
 * src/filetypes.c data/filetype_extensions.conf:
   Add Make pattern to recognise makefile*.
 * src/keyfile.c, src/keyfile.h, src/main.c:
   Add hidden option -g to generate filetype_extensions.conf.


2006-07-31  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/keybindings.c, src/sci_cb.c:
   Added functionality to uncomment code and added keyboard shortcut
   Ctrl+Shift+D for this (closes #1521714).


2006-07-30  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/geany.docbook, data/filetypes.common, src/.c:
   Added style to change the colour of the caret(closes #1530486).


2006-07-29  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/msgwindow.c, src/msgwindow.h, src/callbacks.c, src/search.c:
   Remember Find in files directory for opening grep results.
 * Makefile.am: Add win32 build files to EXTRA_DIST.


2006-07-28  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/search.c, src/callbacks.c, src/dialogs.c:
   Added some options to the Find in files dialog, made search
   directory editable.


2006-07-28  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sciwrappers.h: Set PLAT_GTK before including ScintillaWidget.h.
 * src/Makefile.am, geany_windres.rc.in: Correct a typo.
 * scintilla/makefile.win32, src/makefile.win32, makefile.win32,
   tagmanager/makefile.win32, win32-config.h, geany_private.rc:
   Add makefiles for building on win32.


2006-07-27  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sciwrappers.c, src/callbacks.c, src/utils.c, src/dialogs.c,
   src/keybindings.c:
   Removed unused colour parsing functions.
   Let the colour chooser pick the colour under the cursor.
 * data/filetypes.*, src/highlighting.c, src/utils.c:
   Fixed bug in parsing strings containing hex values, modified the
   styles to keep the syntax highlighting consistent.
 * src/main.c: Removed startup warning.
 * src/geany.h, src/main.c: Added Select All item to sensitive buttons.
 * src/win32.c, src/dialogs.c, src/callbacks.c:
   Let the colour chooser pick the colour under the cursor(Win32 code).
   Added some sanity checks.


2006-07-26  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/Makefile.am: Added target to remove geany_res.res when cleaning.
 * src/geany.h, src/main.c, src/callbacks.c, src/highlighting.c,
   src/document.c, src/dialogs.c, src/prefs.c, src/utils.c,
   src/win32.c, src/keybindings.c, src/gb.c, src/about.c:
   Removed macro GEANY_WIN32, use G_OS_WIN32 instead.
   Introduced global variables for PACKAGE_DATA_DIR and
   PACKAGE_LOCALE_DIR, removed macro DOCDIR
   (these changes are important for the Windows port).


2006-07-26  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/win32.c: Don't add .c extension for All files filter.
                Only set open tool dialog path if it exists.
 * src/keybindings.c: Use CTRL-SHIFT-space for Windows show calltips.
 * src/prefs.c: Never show compile & run toolbuttons on Windows and
                hide the prefs option to show them.
 * src/main.c: Disable the Compiler tab instead of hiding it so that
               messages window tabs have the right index on switching.
 * src/utils.c: Only replace untitled.x within the first 2 lines.


2006-07-25  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/encodings.c, src/document.c, src/keyfile.c, src/main.c:
   Save default encoding for new files as charset string.
 * src/filetypes.c: Reordered the filetypes (just a cosmetic change).
 * src/win32.c, src/utils.c:
   Removed title argument from win32_message_dialog because it is
   defined by the dialog type.
   Added simple wrapper function win32_open_browser().
 * src/dialogs.c, src/main.c, src/document.c, src/callbacks.c:
   Removed some unneeded functions to avoid duplicate code.
 * src/callbacks.c:
   Fixed broken Find usage.
   Put "No matches" message also in the message window.
 * Makefile.am, geany_windres.rc, configure.in, src/Makefile.am,
   scintilla/Makefile.am, src/callbacks.c, tagmanager/tm_work_object.c,
   tagmanager/ctags.c, tagmanager/get.c:
   Small changes to get cross compiling using mingw32 suite working.
 * tagmanager/get.c: Applied patch to fix building with gcc 2.95
                     (closes #1528516, thanks).


2006-07-24  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/geany.h, tagmanager/strlist.c, tagmanager/tm_project.c,
   tagmanager/parse.c, tagmanager/general.h, tagmanager/ctags.c,
   tagmanager/tm_workspace.c: Fixed some cross compiling/Win32 issues.
 * geany.glade, src/callbacks.c, src/document.c, src/interface.c,
   src/main.c:
   Added menu item to the document menu to add/remove BOM.
   Replaced switch_notebook_page by ignore_callback flag.
 * src/win32.c, src/dialogs.c:
   Convert Unicode strings to wide characters to avoid weird display.
 * src/document.c: Set CR/LF as EOL mode on new files on Windows.


2006-07-24  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/geany.h: Use generic font names & increase the default size.
 * src/notebook.c: Use tab reorder workaround only if GTK runtime <2.8.
 * src/utils.c, src/about.c: Change 2 paths to use G_DIR_SEPARATOR_S.
 * src/dialogs.c: Wait for Save as dialog to run before closing tab.


2006-07-23  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/build.c: Search terminal program in PATH (closes #1527203).
 * src/documents.c: Fixed some mistakes from last commit.
 * src/dialogs.c, src/utils.c, src/document.c, src/geany.h:
   Renamed document element unicode_bom in has_bom.
 * src/callbacks.c:
   Let Find usage search for the current selection if there is one.


2006-07-22  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/dialogs.c: Make Find and Replace dialogs more compact.
 * src/treeviews.c: Fix a warning when updating open files treeview.


2006-07-22  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/utils.c, src/document.c, src/encodings.c,
   src/geany.h, src/main.c, src/dialogs.c, geany.glade,
   src/interface.c, src/sci_cb.c, src/keyfile.c:
   Added Unicode BOM detection.
   Added "Reload as" menu item to force opening a file with a specified
   encoding(both were patches from Stefan Oltmanns).
 * src/callbacks.c: Fixed two issues when showing / hiding the sidebar.
 * src/filetypes.c: Added *.cfg as extension for config files.
 * src/treeviews.c, src/notebook.c:
   Keep the list of open files in sync when reordering notebook tabs.


2006-07-21  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/dialogs.c: Prevent using Find in files for unnamed files.


2006-07-21  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/geany.h, src/main.c, src/callbacks.c:
   Introduced app->ignore_callback to ignore callback actions when
   changing the state of GUI elements.
 * geany.glade, src/interface.c, src/main.c, src/callbacks.c,
   src/utils.c, src/prefs.c, src/keybindings.c:
   Added menu item View->Show Sidebar and improved code around it.


2006-07-20  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/highlighting.c: Unset fold.compact setting.


2006-07-20  Nick Treleaven  <nick.treleaven@btinternet.com>

 * TODO: Added 3 more items discussed on the ML.
 * doc/scikeybinding.docbook: Commented out some keys not working.
 * src/dialogs.c: Share find/replace common checkbox setup code.
 * src/build.c, src/build.h, src/sciwrappers.h, src/dialogs.c,
   src/dialogs.h: Don't include geany.h.
 * src/geany.h, src/callbacks.h: Moved GEANY_RESPONSE_* to callbacks.h.
 * src/callbacks.c, src/document.c, src/document.h, src/dialogs.c:
   Added Find button to Replace dialog to skip a match.
   Change Replace button to find first & use current selection.
   Ask whether to wraparound when replacing and no next match is found.


2006-07-19  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/highlighting.c, data/filetypes.common:
   Highlighting of current line can be disabled.
 * geany.glade, src/interface.c: Fixed typo.
 * src/utils.c, src/callbacks.c, src/dialogs.c:
   Improved replacing escape sequences in Find and Replace dialog
   (thanks to Stefan Oltmanns).


2006-07-18  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sciwrappers.c, src/sciwrappers.h, src/document.c:
   Fix replacing the right length of text matched from a regex.
   Add support for back references when replacing with regex.
   Improve the speed of replace all/replace in selection.
   Don't lose the selection range after replacing in selection.
 * src/callbacks.c, src/callbacks.h, src/document.c, src/dialogs.c,
   doc/geany.docbook:
   Use more POSIX-like syntax for regular expression bracket matching.
   Prevent searching backwards with a regex (unsupported).
   Scroll in view after the last replacement for replace all/selection.


2006-07-18  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/dialogs.c, src/callbacks.c:
   Added option to replace escape sequences in Find and Replace dialog.
 * doc/Makefile.am: Reverted last change, we want to use xmlto.
 * src/encodings.c: Restored original order of the encodings, kept the
                    sorted order in the document menu.
 * src/notebook.c:
   Compile notebook_motion_notify_event_cb() only with GTK 2.6 (again).
 * src/about.c: Made "built on" string translatable.


2006-07-17  Nick Treleaven  <nick.treleaven@btinternet.com>

 * doc/scikeybinding.docbook, doc/geany.docbook, doc/geany_gpl.docbook:
   Moved external appendix elements to geany.docbook to validate ok.


2006-07-17  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/utils.c, src/document.c, src/callbacks.c:
   Moved document related functions from utils.c to document.c.
   Keep cursor position when replacing tabs by spaces.
 * doc/geany.xsl: Added UTF-8 as default encoding.
 * doc/Makefile.am: Replaced xmlto command by xsltproc.
 * doc/geany.docbook: Added reference for the GPL appendix.


2006-07-16  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/encodings.c:
   Reordered encodings in the file menu, divided into subregions.
 * geany.glade, src/interface.c: Added missing mnemonics to file menu.
 * src/document.c: Added filename to an error message.
 * src/encodings.c: Removed function encodings_get_encodings().
 * src/utils.c: Simplified locale detection and little speed up.
 * src/main.c, src/document.c, src/geany.h:
   Removed code for alternative scrolling(it was not better).
 * src/sci_cb.c, src/callbacks.c, src/utils.c, src/highlighting.c,
   src/main.c, data/html_entities.tags, Makefile.am:
   Moved HTML entities from sci_cb.h to data/html_entities.tags.


2006-07-16  Nick Treleaven  <nick.treleaven@btinternet.com>

 * doc/scikeybinding.docbook, doc/geany.docbook:
   Added Scintilla keyboard commands appendix taken from the SciTE
   documentation section 'Keyboard Commands'.


2006-07-15  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/keybindings.c, src/sci_cb.c:
   Show auto completion list immediately when called by a keybinding.
 * geany.glade, src/interface.c, src/prefs.c, src/geany.h,
   src/keyfile.c, src/utils.c:
   Toolbar items for file operations can also be hidden.


2006-07-15  Nick Treleaven  <nick.treleaven@btinternet.com>

 * keybindings.c, keybindings.h: Add keybinding for Find in files.
 * doc/geany.docbook: Updated Make command names and keybindings.
 * src/vte.c: Fix applying vte settings on startup and prevent the
              message window vertical scrollbar being hidden.


2006-07-14  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/search.c: Give accurate message on finishing finding in files.
 * src/callbacks.c: Use locale encoding for Find in files and
                    remember previous searches.


2006-07-14  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/filetypes.c, src/highlighting.c, tagmanager/tm_tag.c,
   tagmanager/tm_workspace.c: Fixed autocompletion for filetype C++.
 * src/utils.c: Removed unneeded functions:
   utils_glist_strings_free() and utils_glist_from_string().
 * src/encodings.c: Fixed wrong charset detection on UTF-8
                    (and maybe other) systems.


2006-07-13  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/interface.c, src/utils.c, src/utils.h, src/geany.h,
   src/msgwindow.c, src/msgwindow.h, src/callbacks.c, src/callbacks.h,
   src/keyfile.c, src/search.c, src/search.h, src/prefs.c,
   src/dialogs.c, src/main.c, src/dialogs.h, src/Makefile.am,
   geany.glade: Added basic Find in files search functionality.


2006-07-11  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/dialogs.c: Moved dialogs_show_prefs_dialog() to src/prefs.c.
 * geany.glade, src/interface.c, src/vte.c, src/prefs.c, src/dialogs.c,
   src/geany.h, src/main.c, src/callbacks.c, src/keybindings.c,
   src/keyfile.c, src/utils.c:
   Improved toolbar popup menu.
   Added new preferences tab for toolbar settings, several toolbar
   buttons can be hidden.
   Added Undo and Redo toolbar buttons (closes request #1519261).
 * src/sci_cb.c, src/keybindings.c:
   Added return value and tag name to the calltip.


2006-07-11  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/main.c: Prefix command-line opened files with the current
               directory so relative paths will work better.


2006-07-10  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Autocompletion only works on blank lines.
 * src/callbacks.c, src/dialogs.c:
   Added "Replace in all open files" option in the replace dialog.


2006-07-09  Enrico Tröger  <enrico.troeger@uvena.de>

 * tagmanager/d.c, tagmanager/Makefile.am, tagmanager/parsers.h,
   src/filetypes.c, src/highlighting.c, src/utils.c, src/build.c,
   src/templates.c, data/filetypes.d:
   Added new filetype D(patch by Christoph Berg, thanks).


2006-07-08  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keyfile.c: Fix saving the terminal tool on quitting.
 * src/keyfile.c, src/main.c:
   Improve switching out of fullscreen after startup.


2006-07-08  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/encodings.c: Made encoding descriptions translatable.
 * src/notebook.c:
   Compile notebook_motion_notify_event_cb() only with GTK 2.6.


2006-07-07  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/prefs.c: Fixed bug when saving VTE settings.
 * src/keybindings.c, src/utils.c, src/callbacks.c, src/geany.h,
   src/prefs.c, src/keyfile.c:
   Improved behaviour of toggle sidebar after a restart.
   Introduced new flag sidebar_visible, renamed configuration keys.


2006-07-06  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c, src/keybindings.h, src/dialogs.c:
   Add keybinding for Make object, update Make descriptions.


2006-07-05  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/sciwrappers.c: Make sci_goto_line_scroll work better with
                      line wrapping and folding.
 * src/callbacks.c, src/dialogs.c:
   Add Make object command to compile the current file.
   Added some separators and renamed Build with make items.


2006-07-03  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/dialogs.c:
   Fix a problem with the recent files menu.
 * src/utils.c, src/sciwrappers.c, src/sciwrappers.h:
   Scroll to 1/4 of visible lines when going to a line number.


2006-07-03  Enrico Tröger  <enrico.troeger@uvena.de>

 * doc/Makefile.am: Fixed wrong dependency in target 'install'.


2006-07-02  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/msgwindow.c, src/utils.c:
   Improved "Find usage", so it displays not "null" for unsaved files
   in the results, and unsaved file are also clickable.
 * geany.glade, src/interface.c, src/geany.h, src/keyfile.c,
   src/prefs.c, src/dialogs.c, src/main.c:
   Little redesign of the preferences dialog.
   New options for setting the placement of notebook tabs.
 * doc/Makefile.am: Minor improvements.
 * src/keyfile.c, src/geany.h, src/prefs.c, src/vte.c, src/callbacks.c,
   src/dialogs.c: Added option to disable the VTE follows path feature.
 * THANKS, configure.in, src/about.c: Added new Portuguese translation.


2006-07-02  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c: For Find Usage, ignore unnamed files.


2006-07-01  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/document.c, src/keybindings.c: Added shortcut for Select All.
 * src/main.c: Deiconify the main window when a new file is opened from
               the named pipe.
 * src/geany.h, src/keyfile.c: Moved some default values to geany.h.
 * doc/geany.docbook.c, doc/html/*:
   Added documentation for indicators and printing support.
   Updated keybindings actions and compile time options.


2006-07-01  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/notebook.c: Don't prevent notebook tab focus because this
                   disables the notebook arrows.
 * src/callbacks.c: Prevent a segfault if the VTE has not been loaded.
 * src/utils.c, src/utils.h, src/msgwindow.c:
   Add utils_get_current_time_string and fix getting the time string.
 * src/utils.c, src/utils.h, src/callbacks.c:
   Fix a segfault on Go to tag defn/decl if no files have tags.
   Add utils_find_tm_tag.
 * src/keyfile.c: Save the toolbar icon size when quitting.
                  Set large toolbar icons by default.
 * src/keyfile.c: Use the user settings for toolbar icon size & style.


2006-06-30  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/vte.c, src/callbacks.c:
   Change the path in the VTE widget when switching between files
   according to the path of the current file.
   Process the switch_page callback only once.
 * src/callbacks.c: Finally fixed the second call of the switch_page
                    callback.
 * geany.glade, src/interface.c, src/callbacks.c, src/sci_wrappers.c:
   Added "Select All" menu item.
 * geany.glade, src/interface.c, src/document.c, src/sci_wrappers.c,
   src/prefs.c, src/geany.h:
   Improved settings for the long line marker, it can now be easily
   disabled or set to highlight the background of too long lines.


2006-06-29  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/utils.h, src/win32.c, src/callbacks.c,
   src/document.c, src/prefs.c:
   Apply fonts in Preferences when they are set and only if they have
   changed. Rename utils_set_font to utils_set_editor_font.


2006-06-29  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/geany.h, src/build.c, src/callbacks.c, src/keyfile.c,
   src/utils.c, src/prefs.c:
   Renamed tools settings from build_* in tools_*.
 * src/main.c:
   Ignore SIGPIPE to prevent crashes when running external programs.
 * src/geany.h, src/dialogs.c, src/callbacks.c, src/keyfile.c,
   src/utils.c, src/prefs.c, geany.glade, src/interface.c,
   src/keybindings.c, src/document.c:
   Implemented simple printing support.
 * src/utils.c: Added function is_opening_brace().
 * src/sci_cb.c:
   Use is_opening_brace() for better handling of calltips.
 * src/callbacks.c:
   Create a new tm_source_file object if a file is renamed, otherwise
   tagmanager won't work correctly.


2006-06-28  Enrico Tröger  <enrico.troeger@uvena.de>

 * src/utils.c, src/keyfile.c: Fixed weird behaviour of the recent
                               files list.
 * src/document.c:
   Fixed a small typo.
   Skip converting from UTF-8 in UTF-8 when saving.
   Show an error messages dialog if the conversion into an encoding
   failed.


2006-06-27  Enrico Troeger  <enrico.troeger@uvena.de>

 * data/filetypes.php, data/filetypes.pascal, src/callbacks.c,
   src/build.c: Parse stdout of compiler output too.
 * src/utils.c, data/filetypes.latex:
   Add support for parsing compiler output for LaTeX with latex's
   --file-line-error-style command line argument.
   Removed unneeded function utils_free_ptr_array().
 * src/sci_cb.c: Fixed a crash when auto completion or call tips are
                 used if no filetype was set. Added some sanity checks.


2006-06-27  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/geany.h, src/keyfile.c:
   Add recent files items in the same order as they were saved.
   Remove app->recent_files and use g_strfreev in keyfile.c.
 * src/utils.c, src/utils.h, src/msgwindow.c:
   Make Status messages override the document statistics using
   utils_set_statusbar; don't use a fixed buffer for statistics.


2006-06-26  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Fixed broken auto completion for switch().
 * src/document.c: Reload also the symbol list when reloading a file.
 * src/treeviews.c: Changed some titles to plural. Added own
                    definitions for filetype Python.
 * src/filetypes.c, tagmanager/make.c: Add mk pattern for Makefile.
 * tagmanager/tm_source_file.c: Fixed bug which prevented tag creation
                                for the first opened file.
 * src/document.c, src/callbacks.c: Removed unused code.
 * tagmanager/sh.c: Fixed missing tags beginning with underscore.
 * tagmanager/get.c: Fixed problem in preprocessor directive handling.
 * tagmanager/c.c: Fixed identification of prototypes of functions
                   returning wchar_t * without the extern keyword.


2006-06-26  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c: Fix a possible segfault on quitting caused by
                   processing GTK messages before status messages.


2006-06-25  Enrico Troeger  <enrico.troeger@uvena.de>

 * README, doc/geany.docbook: Added license notice Scintilla.
 * src/callbacks.c, src/keybindings.c:
   Remember the active page when toggling the sidebar. Simplified code
   for toggling messages window.
 * tagmanager/tm_tag.c, tagmanager/tm_workspace.c:
   Fixed wrong line numbers for found tags.


2006-06-25  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/notebook.c, src/notebook.h, src/document.c, src/callbacks.c,
   src/callbacks.h:
   Enable drag reordering of tabs for GTK+2.8, and a temporary
   workaround for GTK+2.6.
   Add notebook_new_tab and update document_create_new_sci to use it;
   also remove on_tab_close_clicked.
 * src/notebook.c: Fix close tab button bug introduced in last commit.
 * src/callbacks.c, src/utils.c:
   Add clipboard functionality for find and go to line widgets,
   and Scribble widget.


2006-06-24  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c: Replaced 'blank' by 'include "..."'. Fixed a bug in
                utils_brace_match() which prevents correctly matching.
 * src/document.c, src/sci_cb.c, src/filetypes.c:
   Made auto completion work only for the current filetype
   (i.e. it hides symbols from other filetypes).
 * tagmanager/options.c, tagmanager/parse.c: Removed unneeded code.
 * tagmanager/tm_workspace.c, tagmanager/tm_source_file
   tagmanager/tm_tag.c, tagmanager/tm_project, tagmanager/parsers.h,
   tagmanager/tm_file_entry.c, tagmanager/entry.c, src/highlighting.c,
   data/latex.tags, data/php.tags, Makefile.am:
   Added global auto completion tags for PHP and LaTeX.
 * src/keybindings.c, src/callbacks.c, src/sci_cb.c, src/main.c,
   src/geany.h, src/dialogs.c:
   Added some sanity checks to prevent crashes.
 * src/sci_cb.c, src/highlighting.c:
   Removed URL highlighting code(useless feature, never was enabled).
 * src/treeviews.c: Set policy settings for the scolledwindow.
 * scintilla/License.txt, scintilla/Makefile.am, doc/Makefile.am:
   Added Scintilla license file.


2006-06-23  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/msgwindow.c: Add a timestamp to messages in the Status window
                    (closes request #1509908).


2006-06-22  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c: Reorganised C include file items, added C++ headers.
 * src/callbacks.c: Insert include statements and comment templates at
                    mouse pointer position instead of cursor position.


2006-06-21  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/keybindings.c: Added missing shortcut for "Close".
 * geany.glade, src/interface.c, src/prefs.c, src/keyfile.c,
   src/document.c, src/dialogs.c, src/encodings.h:
   Added option in the preferences dialog to replace tabs by spaces
   when saving a file.
   Added option for default encoding for new files.
 * scintilla/*: Updated Scintilla to version 1.70.


2006-06-20  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c, src/utils.h, src/callbacks.c, src/document.c,
   src/document.h: Go back to the same line when reloading.
                   Fix start selection bug when clicking in the
                   current file if it has changed.
 * src/msgwindow.c, src/document.c:
   Also show status messages on the status bar.


2006-06-19  Enrico Troeger  <enrico.troeger@uvena.de>

  * THANKS, src/about.c: Added translator credits.
  * src/callbacks.c, src/encodings.c, src/utils.c, src/document.c,
    geany.glade, src/interface.c:
    Implemented encoding support to switch between different encodings.


2006-06-19  Frank Lanitz  <frank@frank.uvena.de>

 * configure.in: Added Spanish translation. More info at
                 po/ChangeLog.


2006-06-19  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/build.c, src/utils.c, src/utils.h, src/callbacks.c:
   Don't open files or go to errors automatically whilst compiling.
   Rename utils_goto_workspace_tag to utils_goto_file_line.


2006-06-18  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/keybindings.c: Fixed a segfault when pressing shortcut for
                      "Find Usage" and there is no open file.
 * src/dialogs.c: Removed unneeded label padding.


2006-06-18  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/dialogs.c: Make Keyboard shortcuts dialog scrollable.
 * src/interface.c, geany.glade:
   Set toolbar button Compile text, Execute icon and insert separators
   before Quit and before Revert, Close.
   Move popup item Goto definition above declaration (used more often).
   Move recent files menu up to Open item.
   In prefs use 'Recent files' instead of 'MRU'.
   Correct indentation spelling.
 * src/keybindings.c: Show shortcut keys for Undo/Redo and popup items.
 * src/keybindings.c, src/geany.h, src/callbacks.c, src/sci_cb.c,
   src/callbacks.h: Use correct current_word buffer for popup menu item
                    keybindings; also use GEANY_MAX_WORD_LENGTH.


2006-06-17  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c, src/sciwrappers.c, src/sciwrappers.h,
   doc/geany.docbook: Made Duplicate Line command duplicate selection
                      if present.
 * src/highlighting.c: Fixed styling for unmatched braces.
 * src/keybindings.h, doc/geany.docbook:
   Group toggle sidebar keybinding with toggle messages.
 * src/keybindings.c: Set keyboard shortcuts for switching tab pages.
 * src/keybindings.c, src/keybindings.h:
   Add keybindings for Find Usage, Go to definition/declaration,
   based on the current cursor position.
 * src/utils.c: Ensure null termination in utils_find_current_word.


2006-06-16  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/build.c: Delete all indicators when starting a new compilation.
 * src/highlighting.c, data/filetypes.common:
   Added keys for linenumber and folding margin, added key for
   inverting all colours(if you like dark background).


2006-06-16  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/notebook.c, src/notebook.h, src/main.c, src/Makefile.am:
   Added currently disabled drag reordering of notebook tabs.
 * src/callbacks.c: Execute: only save file if the run command uses it.
 * src/templates.c, src/templates.h, src/utils.c, src/utils.h,
   src/callbacks.c: Cache the current function name for efficiency in
                    utils_get_current_function, other related fixes.
 * src/geany.h, src/callbacks.c, src/prefs.c, src/dialogs.c:
   src/main.c: Don't include keybindings.h in geany.h.


2006-06-15  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c: Fixed a bug at opening files when clicking on compiler
                error messages(thanks Yura Semashko).
 * doc/Makefile.am: Fixed a bug which breaks "make install" when xmlto
                    is not installed.


2006-06-13  Enrico Troeger  <enrico.troeger@uvena.de>

 * doc/Makefile.am: Renamed target html/index.html in htmldoc, added
                    geany.xsl to EXTRA_DIST.
 * doc/geany.docbook: Removed appendix for keybindings, updated section
                      keybindings to new action identifiers.
 * src/utils.c: Improved and finished switching between files when
                clicking on compiler error messages.
 * src/sciwrappers.c, src/document.c, src/highlighting.c, src/build.c,
   src/keyfile.c, src/prefs.c, src/interface.c, geany.glade,
   src/geany.h:
   Implemented code for setting indicators while compiling.


2006-06-12  Enrico Troeger  <enrico.troeger@uvena.de>

 * THANKS, src/about.c: Added translator credits.
 * src/main.c: Defined N_() again, so command line args are really
               translatable.
 * geany.glade, src/interface.c: Added missing mnemonic to build menu
                                 item.


2006-06-12  Frank Lanitz  <frank@frank.uvena.de>

 * configure.in: Added Belarusian and Russian language support.
                 More Information at po/ChangeLog


2006-06-11  Enrico Troeger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c: Added some mnemonics in the file menu.
 * src/highlighting.c: Replaced "/" by G_DIR_SEPARATOR_S.
 * src/utils.c: Fixed an issue, which let the build menu item
                insensitive once a new file w/o template was opened.
 * src/document.c: Fixed a segfault in document_find_by_filename().
 * src/geany.h, src/callbacks.c, src/main.c:
   Improved the handling of GIOChannels(for named pipes), ensure they
   are closed in a proper way.
 * src/document.c: document_open_file() returns the index of the opened
                   file.
 * src/utils.c: Open or switch to files when clicking on compiler error
                messages and the error message mentions another file
                than the opened one.


2006-06-10  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/main.c: Made command line options translatable, hide compiler
               message treeview under Win32.
 * src/filetypes.c: Added additional patterns to detect configure
                    scripts as Shell scripts.
 * src/dialogs.c: Made preferences dialog transient for the main window


2006-06-08  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/keybindings.c, src/prefs.c, src/dialogs.c:
   Added labels for each defined shortcut to have a nicer
   representation in the dialogs.
 * geany.desktop.in: Removed duplicate entry for Encoding, now
                     desktop-file-validate processes with no errors.
 * configure.in, doc/geany.1.in:
   Renamed geany.1 to geany.1.in to let it be processed by configure.
   Added GEANY_DATA_DIR to configure.in.
 * doc/Makefile.am, doc/geany.xsl:
   Removed unneeded code for generating geany.1. Added man_MANS to get
   installed the manpage. Changed build command for HTML documentation.
   Added new file doc/geany.xsl.
 * geany.spec.in: Some improvements, corrected download URL.
 * src/prefs.c: Hide make and terminal settings under Windows.


2006-06-07  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c: Fixed segfault when inserting comments and no
                    filetype is set.
 * src/callbacks.c, src/sciwrappers.c, src/sciwrappers.h:
   Use the character position under the mouse click for Go to
   definition/declaration and for overridden middle click text paste.
 * src/utils.c, src/utils.h, src/callbacks.c, src/document.c,
   src/document.h: Fix bug with Go to tag defn/decl when the filename
                   is a link (TagManager dereferences linked filenames)


2006-06-06  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/highlighting.c: Enabled folding for markup filetypes
                       (HTML, XML, PHP, DocBook).
 * src/treeviews.c: Replaced "Members" by "Methods" to make it clearer.


2006-06-05  Nick Treleaven  <nick.treleaven@btinternet.com>

 * doc/geany.docbook: Added save current file behaviour when building.
 * src/sci_cb.c: Fix empty white box glitch with tag autocompletion,
                 also improves typing response efficiency.


2006-06-05  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/dialog.c, src/callbacks.c: Added dialog to show defined keyboard
                                  shortcuts, this replaces the previous
                                  link to the documentation.
 * src/main.c, src/document.c: Fixed wrong setting of filetype when
                               using "All files" as filetype.
 * src/dialogs.c: Fixed compiler warning "not enough variable arguments
                  to fit a sentinel".


2006-06-04  Enrico Troeger  <enrico.troeger@uvena.de>

 * README, NEWS: updated for Geany 0.7
 * src/keybindings.c: Changed default keybinding for menu_replace to
                      Ctrl+E.
 * new release: Geany 0.7 "Ravik"
 * configure.in: Fixed svn detection code, changed version to 0.8.


2006-06-03  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: Fixed bug in auto completion of constructs.
 * doc/geany.docbook: Added documentation for filetype definition files
                      and definable keyboard shortcuts.


2006-06-03  Nick Treleaven  <nick.treleaven@btinternet.com>

 * doc/geany.docbook: More minor corrections/rewording.
                      Added Build System section.
                      Some corrections to the Filetypes section.


2006-06-02  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/highlighting.c, data/filetypes.css: improved colouring
 * src/utils.c: Added some sanity checks if filetype is NULL.
 * src/utils.c: Corrected readme text for filedefs/filetypes.README.


2006-06-02  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/dialogs.c: Fix dialog path warnings for command-line files.
 * src/callbacks.c: Fix Go to tag declaration/definition.
 * tagmanager/docbook.c: Fix a segfault with missing id in element.
 * doc/geany.docbook: Minor changes to chapter 1.


2006-05-31  Nick Treleaven  <nick.treleaven@btinternet.com>

 * scintilla/PlatGTK.cxx:
   Backport a Scintilla fix for crashes with recent GTK+ font issue.
 * src/keyfile.c: Discard old session files also for unsaved documents.


2006-05-30  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keyfile.c, src/sciwrappers.c, src/sciwrappers.h, src/document.c:
   Scroll session files in view after all resizing of the Scintilla
   widget and rename sci_scroll_to_line.
 * data/filetypes.pascal: Updated identifier styling as highlighting.c.


2006-05-30  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/dialogs.c, src/main.c:
   Removed unneeded function dialogs_show_fifo_error(), fixed small
   memory leak in dialogs_show_question()
 * src/utils.c: Fixed a wrong(non ISO-C) array size allocation,
                improved utils_replace_tabs().
 * src/keybindings.c: Added shortcut for Replace Tabs by Space,
                      extend usage of GEANY_ADD_ACCEL macro.
 * src/prefs.c: Detect duplicate shortcuts and prevent saving them.
 * tagmanager/css.c: Fixed a crash when opening malformed CSS files.


2006-05-29  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/about.c: Added Jacek Wolszczak and Frank Lanitz to the credits.


2006-05-28  Enrico Troeger  <enrico.troeger@uvena.de>

 * configure.in, po/pl.po: Added Polish translation contributed by
                           Jacek Wolszczak.
 * src/dialogs.c, src/utils.c: Made recent files menu item insensitive
                               when the list is empty.


2006-05-26  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/interface.c, src/callbacks.c, src/callbacks.h, geany.glade:
   Fixed nasty hang when closing a tab and both the next tab and the
   first tab files have been externally modified.
 * src/dialogs.c: Add mnemonics to Replace dialog buttons, reorder.
 * src/document.c: Fix incremental find and replace of back to back
                   matches.


2006-05-25  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/document.c: On loading use SCI_SETTEXT instead of SCI_ADDTEXT
                   to avoid Scintilla text changed signal.
 * src/callbacks.c, src/document.c, src/document.h:
   Make Replace in selection non-incremental and use single Undo
   blocks for this and for Replace All.


2006-05-24  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/keybindings.c, src/keybindings.h:
   Add shortcuts for Find Previous, Go to line
 * src/keybindings.c:
   Set shortcut for Replace and split keybindings_init code


2006-05-23  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/utils.c: check if file has been closed in
                utils_goto_workspace_tag
 * src/interface.c, src/callbacks.c, src/callbacks.h, geany.glade:
   created Search menubar item with Find items from Edit menu, added
   Find Previous and Go to line commands
 * src/vte.c: remove vte middle click override to allow X paste and
              update popup preferences item for Terminal tab number


2006-05-22  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/callbacks.c, src/templates.c:
   insert the file type extension and fix a warning when inserting a
   fileheader in a new document


2006-05-22  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/keybindings.c, src/utils.c: improved toggle visibility of
                                   sidebar when toggled by keyboard


2006-05-21  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/keybindings.c: added menu_messagewindow and toggle_sidebar
                      shortcuts
 * src/highlighting.c, data/filetypes.c, data/filetypes.cpp:
   added option to disable styling within preprocessor directives
 * src/dialogs.c, src/about.c, src/callbacks.c, configure.in:
   rewrote about dialog to reduce code size, added subversion revision
 * src/vte.c: declared some functions static
 * src/dialogs.c: do not create VTE settings in the preferences dialog
                  if VTE is disabled at runtime
 * geany.glade, src/interface.c, src/callbacks.c, src/keyfile.c,
   src/main.c, src/prefs.c:
   added option to disable load of VTE at startup
 * src/highlighting.c, src/utils.c: applied sanity check patch from
                                    Pierre(posted on mailing list)


2006-05-20  Nick Treleaven  <nick.treleaven@btinternet.com>

 * src/dialogs.c: fix pressing enter to open more than one file in
                  the open file dialog
 * src/sci_cb.c: fix a segfault when commenting out lines with ctrl-d
                 when no filetype is set
 * src/utils.c: fix a segfault clicking on a compile error if the
                compiled file has been closed


2006-05-19  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: fix a small bug in sci_cb_show_calltip() to prevent an
                 endless loop
 * src/keybindings.c, src/dialogs.c, src/callbacks.c, src/main.c,
   src/Makefile.am, src/geany.h, src/prefs.c, geany.glade:
   make keyboard shortcuts user-definable
 * src/document.c, src/utils.c: fixed a crash when clicking on the run
                                button and no file is opened


2006-05-17  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c: added code for creation of filedefs subdirectory
 * src/document.c: fixed compiler warning
 * src/keyfile.c: removed obsolete and commented code


2006-05-16  Enrico Troeger  <enrico.troeger@uvena.de>

 * tagmanager/Makefile.am, tagmanager/tcl.c, tagmanager/parsers.h,
   scintilla/Makefile.am, scintilla/LexTCL.cxx, scintilla/KeyWords.cxx,
   src/filetypes.c, src/highlighting.c, data/filetypes.tcl:
   new filetype Tcl/Tk
 * src/sci_cb.c: enabled autocompletion for all filetypes (fine tuning
                 still needed)
 * src/document.c: removed mmap()-code, use at the moment only
                   g_file_get_contents, fixed memory leak
 * scintilla/ScintillaGTK.cxx: updated to CVS version
 * data/filetypes.*: quoted filename wildcards for filenames with
                     whitespace


2006-05-15  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c, src/callbacks.c:
   added previously code to prevent opening of non-text files, fixed
   detection of C++-destructors and other improvements in
   utils_get_current_tag()


2006-05-14  Enrico Troeger  <enrico.troeger@uvena.de>

 * configure.in, po/ca.po, THANKS, src/dialogs.c:
   added catalan translation contributed by Topi
 * data/filetypes.php, data/filetypes.perl, data/filetypes.ruby,
   data/filetypes.pascal, src/utils.c:
   added compiler commands to run a syntax check and parse the output,
   so it is clickable in compiler message window


2006-05-12  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c. src/callbacks.c: added code for parsing python error
                                 messages when clicked in compiler
                                 message window
 * tagmanager/ruby.c, src/treeviews.c: improved parser to detect
                                       variables and members
 * src/highlighting.c, data/filetypes.ruby: added missing keywords


2006-05-11  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c: show appropriate error code when use(i.e. write access)
                of configuration directory fails
 * src/highlighting.c, src/filetypes.c:
   read the filetype definitions first from the configuration directory
   and then from the datadir (%prefix/share/geany)


2006-05-10  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/document.c, src/filetypes.c, src/templates.c, src/callbacks.c:
   added template support for filetypes with comment character #,
   updated GPL to the current address of the FSF
 * tagmanager/python.c: fixed wrong identification of keyword class in
                        ''' comments
 * tagmanager/parse.c, tagmanager/python.c:
   added code from anjuta to parse methods and functions separately
 * tagmanager/ruby.c: applied patch from ctags Sourceforge site to
                      recognise things like Foo::Bar (ctags #1213512)
 * tagmanager/perl.c, src/treeviews.c:
   improved symbol list for filetype Perl, improved parser
 * src/document.c, src/callbacks.c: improved tag list updating, should
                                    be a bit faster on opening files


2006-05-09  Enrico Troeger  <enrico.troeger@uvena.de>

 * scintilla/ScintillaGTK.cxx: fixed encoding problem which causes many
                               problems with non-Ascii characters
 * src/document.c: fixed a strange segfault at creating new file tabs


2006-05-08  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: save current file if it is executed
                    (e.g. shell scripts)
 * src/highlighting.c: fixed a typo which prevented highlighting of
                       variables in Perl
 * src/filetypes.c, tagmanager/Makefile.am, tagmanager/parsers.h,
   tagmanager/css.c: added parser for CSS filetype
 * tagmanager/ruby.c, tagmanager/Makefile.am, tagmanager/parsers.h,
   scintilla/LexRuby.cxx, scintilla/Makefile.am, scintilla/KeyWords.cxx
   src/filetypes.c, src/highlighting.c: added new filetype Ruby



2006-05-05  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: fix a crash when clicking in the compiler output
 * src/dialogs.c: improved file permission display if they cannot be
                  read (e.g. on Windows)


2006-05-03  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/win.c, src/utils.c, src/highlighting.c:
   moved my_strtod() from win32.c to utils.c, use it always, not only
   on Win32 systems


2006-05-01  Enrico Troeger  <enrico.troeger@uvena.de>

 * data/filetypes.perl: added two compiler commands
 * data/filetypes.cpp, src/highlighting.c: added some C++ keywords
 * src/sci_cb.c: added try-catch-auto completion


2006-04-30  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/main.c: fixed a crash when starting Geany without debug messages
 * sci_cb.c: fixed a small issue when dragging files to Geany
 * new release: Geany 0.6 "Nivers"


2006-04-29  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/keyfile.c, src/callbacks.c:
   applied two patches from Nick Treleaven to fix invalid memory read
   and improve the ordering of file tabs while loading session files
 * src/vte.c: applied patch from Nick Treleaven to improve removing the
              vte widget, fixed also a bug with disappearing scrollbars


2006-04-28  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/treeviews.c, src/msgwindow.c:
   disabled interactive search function since it never worked and is
   unnecessary and confusing
 * src/utils.c: added small check for NULL pointer
 * src/document.c: fixed some inconsistency with the read only check
                   box in the file menu


2006-04-27  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: improved key press handling to avoid that cursor
                    rans out of editor widget when pressing F8
 * src/sciwrappers.c: applied two little patches from Nick Treleaven
 * tagmanager/tex.c: fixed naming of the parser to get recognised again
                     for parsing LaTeX files


2006-04-26  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/document.c: applied patch from Nick Treleaven to right-align the
                   close buttons on each tab, reload the symbol list at
                   reloading a file
 * src/dialogs.c, src/callbacks.c:
   applied patch from Nick Treleaven which improves the file open
   dialog, make it more compact, replaced read-only checkbox by a
   button, fixed memory leak
 * src/sci_cb.c: applied patch from Nick Treleaven to fix a small bug
                 in auto commenting lines with CTRL+D
 * src/document.c: applied patch from Nick Treleaven to switch to the
                   new opened tab if placement of new file tabs is set
                   to Right
 * src/utils.c: applied patch from Nick Treleaven to fix a bug in
                utils_get_current_tag() with C++ methods


2006-04-25  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: added support for complete do while loops
 * src/highlighting.c, data/filetypes.cpp: added keywords this, public,
                                           private and protected
 * scintilla/ScintillaGTK.cxx, scintilla/PlatGTK.cxx:
   applied patches from John Ehresmann (posted on the Scintilla ML)
 * src/dialogs.c: improved the file properties dialog
 * src/gb.c: translated comments into English and fixed some bugs


2006-04-24  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/main.c, src/geany.h: removed unneeded time variables


2006-04-23  Enrico Troeger  <enrico.troeger@uvena.de>

 * scintilla/LexBash.cxx: fixed crash when typing "\" as last character
                          in a bash file (patch from Scintilla ML)


2006-04-20  Enrico Troeger  <enrico.troeger@uvena.de>

 * geany.glade, src/keyfile.c, src/document.c, src/interface.c
   src/prefs.c, src/geany.h: added option to place new file tabs to the
                             right or left of the tab list
 * src/utils.c, src/keyfile.c, src/prefs.c, src/build.c, src/vte.c,
   src/filetypes.c: replaced lots of g_new() by g_new0()
 * src/dialogs.c: at saving a new file, the extension of the file is
                  guessed based on the default extension in filetypes.c
 * src/build.c, src/msgwindow.c: improved scrolling of compiler
                                 messages at building
 * src/build.c, src/dialogs.c, src/callbacks.c:
   rewrote most of the building code, get compiler settings from
   filetype definition files, handle non-UTF8 filenames better and much
   more things


2006-04-18  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/geany.h, src/keyfile.c, src/utils.c:
   added option to match < and > to, but disabled by default


2006-04-09  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: added handler for dragged file URIs in the editor
                 widget, so they will get opened


2006-04-07  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/dialogs.c: now the file save dialog returns when pressing Enter,
                  too, also fixed a bug if path of current file
                  contains non-UTF8 characters, added question dialog,
                  to ask for various things, so removed
                  dialogs_show_confirm_exit()
 * src/callbacks.c: added a check for overwriting files when using file
                    save dialog
 * src/document.c: default charset encoding for new files is set to UTF-8
 * src/highlighting.c, data/filestypes.common:
   added setting folding_style to define the style of the folding icons


2006-04-06  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/build.c: fixed some errors with non-UTF8 filenames and paths
 * bugfix: src/dialogs.c: fixed an error when changing the current
                          directory in the file open dialog and the
                          path contains non-UTF8 characters
 * src/document.c: removed useless for loop in document_set_filetype


2006-04-05  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: src/document.c: fixed a segfault when opening a file and
                           filename is NULL


2006-04-04  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: src/callbacks.c: fixed potentially segfault when opening a
                            file from the recent file menu


2006-04-03  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/vte.c: applied three patches from Nick Treleaven to improve
              usage of the VTE component


2006-04-01  Enrico Troeger  <enrico.troeger@uvena.de>

 * tagmanager/general.h: added inclusion of unistd.h to avoid compile
                         errors on MacOSX
 * src/document.c: fixed memory allocation while opening files, so that
                   empty files (size = 0 byte) can also be opened


2006-03-29  Enrico Troeger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c: let the editor widget also be resized,
                                 so resizing the main window is nicer
 * src/keyfile.c, src/main.c:
   moved some code from configuration_open_files to
   configuration_apply_settings, because configuration_open_files is
   not called every time


2006-03-28  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c, src/sci_cb.c, src/callbacks.c:
   applied patch from Nick Treleaven to avoid segmentation faults on
   long words(>120 characters)
 * src/main.c, src/sci_cb.c: applied patch from Nick Treleaven to fix a
                             possible segmentation fault


2006-03-22  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c: added error messages to utils_write_file()
 * src/keyfile.c: rewrote the code for reading the session files


2006-03-19  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/highlighting.c, src/sci_cb.c, data/filetypes.*:
   added definable comment characters to all filetypes


2006-03-18  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/highlighting.c, data/filetypes.*:
   added wordchars key to all filetypes
 * src/main.c: improved reading and writing of the named pipe, so Geany
               does not go into in an endless loop after opening a file


2006-03-17  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: src/sci_cb.c: typing } on lines longer than 256 chars caused
                         a crash (segfault)
 * src/dialogs.c, src/callbacks.c, src/interface.c, geany.glade:
   moved VTE settings tab code in the preferences dialog to dialogs.c,
   so this code will not be compiled if HAVE_VTE is unset


2006-03-15  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/geany.h, src/main.c, src/keyfile.c:
   added GEANY_WINDOW_MINIMAL_WIDTH, GEANY_WINDOW_MINIMAL_HEIGHT,
   GEANY_WINDOW_DEFAULT_WIDTH, GEANY_WINDOW_DEFAULT_HEIGHT to make it
   easier to changed these defaults


2006-03-14  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: added check for existing documentation, otherwise
                    try online documentation


2006-03-11  Enrico Troeger  <enrico.troeger@uvena.de>

 * geany.glade, src/interface.c, src/main.c:
   set minimal size to 620x440, default size to 900x600, added command
   line option -m or --no-msgwin to disable message window at startup
 * doc/geany.docbook: added description for -m option


2006-03-10  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: applied patch from Nick Treleaven to allow
                    reclicking of taglist treeview item
 * src/keyfile.c: fixed small error which adds every time a new comment
                  in the filetype extensions configuration file
 * data/filetypes.*, src/highlighting.c:
   added italic flag to all styles, added background colour for current
   line
 * src/dialogs.c, src/sciwrappers.c:
   applied patch from Nick Treleaven which improved inserting of
   current selection in the find and replace dialogs
 * src/filetypes.c: added new extensions for filetype Pascal
 * src/data/filetypes.conf, src/highlighting.c:
   added "key" and edited colours for changed lexer
 * scintilla/*: updated Scintilla to version 1.68


2006-03-09  Enrico Troeger  <enrico.troeger@uvena.de>

 * data/filetypes.pascal: added new keywords supplied by Marko Peric
 * src/highlighting.c: added support for // and (* ... *) comments in
                       Pascal
 * src/utils.c, src/document.c: improved utils_check_disk_status()
                                behaviour to work with files on
                                filesystems with another time than the
                                time from the local host


2006-03-02  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/build.c, src/geany.h:
   clicking on a compiler error message jumps to the correct file, if
   it is not the current one
 * src/dialogs.c: fixed crash when closing find or replace dialog twice
                  by pressing escape (triggering the delete_event),
                  closes #1441359


2006-02-27  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: added auto completion in LaTeX mode for \begin


2006-02-26  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: removed unneeded destroyapp_early()
 * src/main.c, src/utils.c: improved configuration directory creation
 * src/sci_cb.c, src/highlighting.c, src/document.c, geany.glade,
   src/geany.h, src/interface.c, src/prefs.c, src/callbacks.c:
   implemented first version of rudimentary folding support, added
   goto line entry in the toolbar and made it hideable


2006-02-25  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/keyfile.c: fixed memory leak, load filetype extensions from a
                  file in the configuration directory, the filetype of
                  a document is now also stored at loading and saving
                  session files
 * src/filetypes.c: removed unneeded constant GEANY_MAX_PATTERNS


2006-02-24  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c, src/callbacks.c, src/dialogs.c, src/main.c:
   made "make" build menu items sensitive for C header files
 * bugfix: src/vte.c: hopefully fixed a crash when closing the
                      preferences dialog and message window was hidden
                      and shown before


2006-02-21  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c: added utils_make_human_readable_str()
 * src/dialogs.c: added file properties dialog
 * geany.glade, src/interface.c, src/callbacks.c, src/dialogs.c:
   moved font selection dialog from glade code to dialogs.c, removed
   unnecessary callback functions for delete_event's


2006-02-20  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: fixed bug when using color selector and no file is
                    open, only fixed on some other actions
 * src/geany.h, src/main.c: disable menu functions of the edit menu
                            when no files are open
 * src/main.c: added the possibility to delete an existing fifo in the
               case, that Geany crashed previously


2006-02-17  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/gb.c: fixed bug which caused always same figures under Win32,
             some other code cleanups and changes
 * geany.glade, src/interface.c, src/callbacks.c, src/main.c:
   replaced the New toolbar button by a menu button, so it works also
   under Win32
 * src/prefs.c: all settings are now saved by pressing OK in the
                settings dialog, up to now it was only done at exiting


2006-02-16  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/main.c, callbacks.c, document.c: fixed some line breaking issues


2006-02-14  Enrico Troeger  <enrico.troeger@uvena.de>

 * Makefile.am, doc/Makefile.am: improved "make uninstall" of Geany
 * configure.in: added check for mkfifo(), made it also an option
 * src/main.c: added a message box if lost pipe was found, FIFO code
               now depends on HAVE_FIFO
 * src/Makefile.am: do not compile win32.c anymore, added to EXTRA_DIST
 * src/geany.h, src/main.c, src/callbacks.c:
   added command line option -p or --no-pipe to ignore a running
   instance of Geany and force opening a new instance


2006-02-13  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c: added utils_show_linenumber_margin()
 * geany.glade, src/interface.c, src/callbacks.c, src/dialogs.c,
   src/main.c, src/geany.h, src/keyfile.c, src/sci_cb.c:
   removed some items from the document menu to the preferences dialog,
   removed file save dialog from interface.c to dialogs.c, added
   toggle for line numbers


2006-02-10  Enrico Troeger  <enrico.troeger@uvena.de>

 * scintilla/LexOMS.cxx, scintilla/keywords.cxx,
   scintilla/include/SciLexer.h, scintilla/Makefile.am:
   added new lexer LexOMS(based on LexBash) for OMS support
 * src/highlighting.c: added new filetype OMS (O-Matrix)
 * src/dialogs.c: improved the find and replace dialog, an existing
                  selection is inserted, fixed focus settings
 * src/callbacks.c: prevent Geany entering an endless loop, at
                    replacing something like "YELLOW" with "yellow", if
                    search flag "Case sensitive" is not checked


2006-02-08  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/main.c, src/callbacks.c, src/geany.h:
   Geany now creates a FIFO, to communicate between different instances


2006-02-07  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c, src/callbacks.c, src/document.c: fixed a memory leaks
 * src/document.c: improved filename handling on saving files
 * src/callbacks.c: improved the filename entry widget in the file open
                    dialog, it handles now directories, too


2006-02-06  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/document.c: improved behaviour of HOME/END keys on wrapped lines
 * src/sciwrappers.c: added sci_assign_cmdkey()
 * geany.glade, src/interface.c, src/callbacks.c, src/dialogs.c:
   rewrite of the file open dialog, now it enters a directory instead
   of trying to open it in Geany (closes #1421776)
 * src/sci_cb.c: improved sci_cb_do_comment() to handle SQL and Caml
                 comments
 * src/sciwrappers.c, src/sci_cb.c:
   applied patch from Nick Treleaven to improve multiline selection
   by selecting the lines in the line number margin, removed also the
   right click behaviour to set a marker
 * src/highlighting.c: added filetypes SQL and (O)Caml, heavily reduced
                       code size
 * src/main.c: fixed wrong handling of the visibility of the message
               window
 * src/vte.c: fixed a crash when preferences are set and message window
              is hidden (thanks to Joo Martin for reporting)


2006-02-03  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/document.c: improved filename handling in document_open_file(),
                   fixed a crash at reloading files
 * src/main.c: fixed a crash when opening more than 25 files from the
               command line (closes #1422135)
 * src/sci_cb.c: improved sci_cb_do_comment() to handle CSS comments


2006-02-01  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/build.c: applied patch from Nick Treleaven to fix memory leaks
 * src/document.c: changed <? to <?php in new file template
 * src/keyfile.c: changed "term" to "xterm", this was a simple typo
 * src/utils.c: added encoding to the status bar, fixed a freeze with
                C++ files (closes #1419473)


2006-01-29  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/win32.c: set the Open File dialog directory to the same
                directory as the current file
 * src/utils.c: disabled the build menu under Win32, at least temporary
 * src/templates.c, doc/geany.docbook:
   added new wildcard {geanyversion} to have actual Geany version in
   filetype templates (e.g. HTML template)


2006-01-27  Enrico Troeger  <enrico.troeger@uvena.de>

 * new release: Geany 0.5 "Rebus"


2006-01-26  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c, src/dialogs.c: set the Open File dialog directory to
                               the same directory as the current file
                               (thanks to Nick Treleaven for this patch)
 * src/sci_cb.c: fixed a bug with auto indention and CR/LF line endings
                 (thanks to Tamim for reporting)


2006-01-21  Enrico Troeger  <enrico.troeger@uvena.de>

 * tagmanager/tex.c, src/treeviews.c: added tag support for "\begin",
                                      fixed gcc4 warnings
 * tagmanager/docbook.c: fixed gcc4 warnings
 * src/filetypes.c, src/document.c, src/keyfile.c:
   fixed some bugs when opening files with non UTF-8 filenames


2006-01-18  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: it is now possible to insert a function description
                    (use right mouse button popup menu) without having
                    the cursor inside the { and } of a function


2006-01-17  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: fixed two auto indention bugs
 * geany.glade, src/interface.c: fixed incorrect size of Save as dialog


2006-01-16  Enrico Troeger  <enrico.troeger@uvena.de>

 * scintilla/*: updated Scintilla to version 1.67
 * src/treeviews.c: added category class to the symbol list, changed
                    category names for filetype DocBook and LaTeX
 * src/sci_cb.c: improved auto indention, now "for (...) {" works, too
 * configure.in: set prefix if it was not specified
 * geany.desktop.in: added GenericName[de]


2006-01-15  Enrico Troeger  <enrico.troeger@uvena.de>

 * configure.in, Makefile.am, desktop.in:
   replaced geany.desktop by geany.desktop.in, some changes to the
   desktop file like absolute icon path
 * tagmanager/tex.c: added tags section, subsection and subsubsection
 * tagmanager/docbook.c: complete rewrite, works great


2006-01-14  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: src/document.c, src/treeviews.c: update open file list entry
                                            when "Saving as"
 * bugfix: src/document.c: fixed wrong g_object_unref() which causes
                           crashes
 * bugfix: src/geany.h, src/document.c, src/utils.c:
   fixed wrong symbol list in files with tag support but without
   exisiting symbols, added new boolean has_tags in document struct
 * src/geany.h, src/document.c, src/utils.c:
   removed unneeded utils_get_new_sci_number() and scid from document
   struct
 * src/treeviews.c, src/callbacks.c:
   added popup menu to symbol list, added "Hide" and "Hide sidebar" to
   symbol list popup and open files list popup, to quickly hide the list
   or the whole sidebar


2006-01-10  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: geany.glade, src/interface.c: added missing tooltip to
                                         compile button
 * src/filetypes.c: applied patch from Nick Treleaven, to add .cc, .hh
                    and .hxx extension for filetype C++ and improve the
                    pattern handling


2006-01-08  Enrico Troeger  <enrico.troeger@uvena.de>

 * tagmanager/docbook.c, tagmanager/parsers.h, tagmanager/Makefile.am:
   added conf.c(built from pascal.c), to create tags for docbook files
 * src/build.c, src/utils.c, src/main.c, src/callbacks.c:
   made the build menu filetype specific to have different menu items
 * bugfix: src/keyfile.c: save window geometry with
                          gtk_window_get_position() so restoring the
                          window works correctly under Win32, too


2006-01-06  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/main.c, src/callbacks.c, src/vte.c, src/geany.h:
   added commandline option to specify the path to the VTE library


2006-01-03  Enrico Troeger  <enrico.troeger@uvena.de>

 * data/filetypes.markup, src/highlighting.c:
   added new keywords for PHP5 and replaced phpKeyWords by php
   (thanks to Simon Stoye for reporting)
 * geany.glade, src/interface.c, src/prefs.c, src/keyfile.c
   src/callbacks.c, src/document.c, src/build.c, src/sci_cb.c:
   added new option "Beep on errors" to disable beeping


2005-12-31  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/gb.c: fixed segfault when exiting the easteregg program when it
             is still running
 * src/highlighting.c, src/win32.c: added my_strtod(), as replacement
                                    for Win32 strtod()


2005-12-29  Enrico Troeger  <enrico.troeger@uvena.de>

 * tagmanager/tm_tag.c: eliminated compiler (gcc4) warnings
 * bugfix: tagmanager/tm_workspace.c:
   replaced macro __unix__ by HAVE_GLOB_H(closes #1387828) and improved
   handling of P_tmpdir (closes #1387839)


2005-12-28  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: src/dialogs.c: fixed a segfault in dialogs_show_not_found()
 * bugfix: src/utils.c: fixed bug in utils_strpos() which returned -1
                        if length needle is 1
 * src/utils.c: added utils_treeviews_showhide(), to get the right
                settings at startup for the left side treeviews
 * src/gb.c: eliminated compiler(gcc4) warnings, replaced macro
             __unix__ by HAVE_FCNTL_H, use /dev/urandom or /dev/random
             (in this order) if available and rand() if not
 * src/configure.in: added checks for /dev/urandom and /dev/random


2005-12-25  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/dialogs.c: text entry field in the find and replace dialog grabs
                  focus by default, so the cursor is always inside


2005-12-19  Enrico Troeger  <enrico.troeger@uvena.de>

 * new release: Geany 0.4 "Tarkin"
 * src/gb.c: several improvements and bugfixes
 * src/prefs.c, src/callbacks.c: improved HAVE_VTE handling
 * src/sci_cb.c: set cursor position between brackets in
                 sci_cb_auto_close_bracket()


2005-12-18  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: changed keyboard shortcut for rebuilding the symbol
                    list, now it is Ctrl+Shift+R, Ctrl+R is now used
                    reload the current file
 * src/callback.c, src/utils.c, src/document.c, src/treeviews.c,
   src/main.c, src/geany.h:
   made the symbol list document-oriented, so it has not to be
   generated on every notebook switch page event
 * src/geany.h, src/main.c, src/keyfile.c, src/callbacks.c:
   introduced opening_session_files, to suppress notebook switch page
   events at loading the files from the last session
 * geany.glade, src/interface.c, src/geany.h, src/callbacks.c:
   added new menu items: Help->Keyboard shortcuts and File->Revert


2005-12-16  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/dialogs.c: changed "build with make" keyboard shortcut to
                  Shift+F9 to avoid problems with window managers key
                  bindings (thanks to Nick Treleaven for reporting)
 * src/about.c, src/gb.c: added a nice easteregg(type "geany" in the
                          about dialog *g*)
 * src/vte.c: added popup menu for the VTE widget
 * bugfix: src/prefs.c: fixed crash when opening option dialog and VTE
                        is disabled
 * geany.glade, src/interface.c, src/main.c, src/callbacks.c:
   removed unnecessary functions


2005-12-13  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/sci_cb.c: added sci_cb_auto_close_bracket() to close { and [
                 brackets in LaTex-Mode (more could be added)


2005-12-12  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: changed key binding to switch between open
                    documents from CTRL to ALT+Left/Right, so
                    CTRL+Left/Right moves the cursor to word boundaries


2005-12-11  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: added shortcut F6 to switch to the VTE widget
 * doc/geany.docbook: described some of the compile time options in
                      geany.h and marked filename with <filename>-tag.
 * src/interface.c, src/prefs.c, src/utils.c, src/callbacks.c,
   src/geany.h, src/documents.c: made length of MRU list changeable
 * bugfix: src/highlighting.c: fixed a wrong color value


2005-12-10  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/prefs.c, src/vte.c, src/keyfile.c, src/utils.c, src/callbacks.c:
   many changes, adding color settings for VTE


2005-12-09  Enrico Troeger  <enrico.troeger@uvena.de>

 * geany.glade, src/utils.c, src/interface.c, src/callbacks.c,
   src/main.c, src/keyfile.c: removed symbol list combo box in the
                              toolbar
 * src/treeviews.c, src/utils.c: heavily improved the tag list to
                                 categorise the tags in a tree


2005-12-08  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/interface.c: added tooltip text for exit button
 * src/main.c: open a new file at startup if none is open
 * bugfix: src/keyfile.c: fixed a segfault when starting without a
                          configuration dir


2005-12-06  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/document.c, src/callbacks.c: diabled extended HOME and END key
                                    default behaviour due to many
                                    problems


2005-12-03  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/filetypes.c, src/highlighting.c: added new filetype "Assembler"


2005-12-01  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/document.c, src/callbacks.c: extending HOME and END key default
                                    behaviour, to jump back to previous
                                    cursor position if pressed again


2005-11-30  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/keyfile.c, src/prefs.c, src/interface.c, src/vte.c:
   added some options for the VTE to the preferences dialog
 * bugfix: src/sci_cb.c: fixed a small bug by auto closing }-brackets
 * src/callbacks.c, src/main.c: added signal and handler for F12 key,
                                pressed in the main widget


2005-11-28  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/vte.c: added rudimentary clipboard support by pressing
              middle(paste) and right(copy) mouse button


2005-11-27  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/vte.c/h: newly created: contains functions for the terminal
                emulator widget, which is loaded if libvte.so.4 is
                available
 * configure.in: added option --[en|dis]able-vte to disable vte support


2005-11-25  Enrico Troeger  <enrico.troeger@uvena.de>

 * scintilla/LexOthers.cxx: edited the properties lexer to colourize
                            key=value pairs a bit nicer
 * tagmanager/parsers.h, tagmanager/conf.c, tagmanger/Makefile.am:
   added conf.c(built from make.c), to create tags for config files
 * src/utils.c, src/callbacks.c: rewrite untitled.extension after
                                 "Save As" in the file header


2005-11-24  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/keyfile.c, src/interface.c, src/prefs.c, src/msgwindow.c:
   added new option "Switch to status message list"
 * src/keyfile.c: store the position of vpaned1 too(sizer between
                  editor window and the status message list)
 * src/highlighting.c, src/filetypes.c: added new filetype "Conf"


2005-11-22  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: src/sci_cb.c: added missing / to the closing tr-tag in HTML
                         table auto completion
 * src/sci_cb.c: disabled auto completion in HTML at writing pure CDATA


2005-11-21  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/keyfile.c: store the position of hpaned1(sizer between editor
                  window and the taglist) and load it if window
                  positions are saved and restored
 * src/treeviews.c, src/callbacks.c: added special popup menu to the
                                     list of open files


2005-11-20  Enrico Troeger  <enrico.troeger@uvena.de>

 * new release: Geany 0.3 "Muzzer"
 * src/treeviews.c/h: newly created: contains functions for the taglist
   and open files treeviews on the left side
 * src/treeviews.c, src/callbacks.c: added an open files treeview,
   which represents all open files
 * src/interface.c: added a toolbar button to open the color chooser
 * bugfix: src/sci_cb.c: there was an error at the next line after
                         closing a multiline comment in C/C++/Java


2005-11-18  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/document.c: make a beep if a file could not be saved


2005-11-16  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: src/sci_cb.c: fixed a small bug that kills the current line
                         if a } was added and there is no newline and
                         there are no non-space characters on the line
                         (thanks to Frank Lanitz for reporting)


2005-11-15  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c: Save As add a recent opened file to the list, too


2005-11-14  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/utils.c, src/callbacks.c: added shortcut for "walking" between
                                 open documents by pressing
                                 STRG+LEFT resp. STRG+RIGHT
 * src/templates.h, src/templates.c, src/document.c, src/filetypes.c:
   removed hardcoded filetype templates from filetypes.c and added them
   to templates.h/c


2005-11-12  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/templates.c, src/interface.c, src/callbacks.c, src/prefs.c,
   src/keyfile.c, src/document.c, src/filetypes.c:
   removed GPL options(in the settings dialog, in the context menu for
   inserting comments like fileheader with GPL), now this is completly
   done within the fileheader template and the wildcard {gpl}, added
   also the first template for new file (filetype None)


2005-11-11  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: src/utils.c: fixed segfault if configuration directory could
                        not created
 * src/dialogs.c, src/main.c, src/callbacks.c:
   added a error box which is shown if configuration directory could
   not created
 * bugfix: src/callbacks.c: fixed a bug which freezed Geany sometimes
                            at exiting(thanks to Frank Lanitz for re-
                            porting)


2005-11-09  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: src/filetypes.c: set correct filetype id for type C++, so
                            template for new C++ file will work again
                            (thanks to Frank Lanitz for reporting)

2005-11-06  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/highlighting.c: added highlighting support for Python
 * src/highlighting.c: extracted all hardcoded styling definitions for
                       all filetypes, so they can be easily edited by
                       user in %PREFIX/%DATADIR/geany, a GUI interface
                       is planned
 * src/main.c, src/highlighting.c: load global.tags file only if a file
                                   was opened
 * src/callbacks.c: added key combo: Shift+Space to explicitly suppress
                    use of sci_cb_auto_forif()
 * Makefile.am: added data/ to be included in tarballs and get installed


2005-11-03  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/interface.c, src/prefs.c: added long line marker settings to
                                 preferences dialog


2005-10-31  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/sciwrappers.c:
   reset the line number margin width at zooming in and out (thanks to
   Frank Lanitz for reporting)
 * src/dialogs.c, src/callbacks.c, src/document.c, src/keyfile.c:
   re-implemented recent files menu, this time in a useful way
 * bugfix: auto completion is working again


2005-10-30  Enrico Troeger  <enrico.troeger@uvena.de>

 * bugfix: src/filetypes.c: fixed the function pointer of filetype
                            Tex to get the correct styling
                            (thanks to Frank Lanitz for reporting)
 * src/document.c: reset the width of line number margin at saving
 * src/document.c, sciwrapper.c, geany.h, keyfile.c:
   added vertical line (by default at column 72) to mark long lines


2005-10-25  Enrico Troeger  <enrico.troeger@uvena.de>

 * new release: Geany 0.2 "Panaka"
 * configure.in, src/utils.c: added check for gethostname()
   and modified utils_get_hostname() appropriately
 * src/dialogs.c, src/interface.c: redesigned file open dialog
                                   to make it looks nicer


2005-10-24  Enrico Troeger  <enrico.troeger@uvena.de>

 * Makefile.am: added autogen.sh to EXTRA_DIST
 * scintilla/*: updated Scintilla to version 1.66
 * bugfix: configure.in: added check for fgetpos(), so compilation
                         with gcc 4 is possible
 * src/sci_cb.c: removed sci_cb_show_entity_list(), because it was
                 unnecessary


2005-10-23  Enrico Troeger  <enrico.troeger@uvena.de>

 * doc/geany.docbook: added search information in section Usage
 * src/utils.c: bugfix: check_disk_status should now work better
 * src/callbacks.c, src/dialogs.c, src/document.c, src/sci_wrappers.c,
   interface.c: created "Replace" dialog with Replace, Replace All and
   Replace Selection, also improved the Find dialog a little bit
 * src/callbacks.c, src/interface.c: added "show hidden files" checkbox
   in file open dialog


2005-10-22  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/dialogs.c, src/document.c:
   heavily improved find dialog
 * src/sci_cb.c: added simple <table>-completion in HTML-mode
 * src/callbacks.c, src/interface.c, src/main.c, src/keyfile.c:
   added toolbar popup entries for toolbar icon size
 * src/dialogs.c, src/images.c: removed compile icon and replaced it
   by the GTK stock icon "convert"


2005-10-21  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/callbacks.c, src/interface.c, src/document.c, src/sciwrappers.c:
   added read-only mode (and checkbox in file open dialog)
   added also text entry in file open dialog to enter directly filenames
 * doc/geany.docbook: added startup information in section General
 * src/callbacks.c, src/interface.c, src/keyfile.c:
   added "Recent files" list to the file menu
 * src/build.c: at linking a file(C and C++): if source is newer than
                a existing object file, it is rebuilt
 * bugfix: src/build.c: compiling a file without any special arguments
                        didn't work


2005-10-20  Enrico Troeger  <enrico.troeger@uvena.de>

 * src/Makefile.am: EXTRA_DIST entry added, to include images.c
   (thanks to Frank Boehme for reporting of missing file)


2005-10-19  Enrico Troeger  <enrico.troeger@uvena.de>

 * first release - Geany 0.1 "Freyborn"