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

[Atom Feed][]

**Please [donate][] or purchase the [book][] to fund continuous development.**

[Atom Feed]: feed
[donate]: http://gum.co/textadept
[book]: MEDIA.html#Book

## 7.3 (01 Jun 2014)

Download:

* [Textadept 7.3 -- Win32][]
* [Textadept 7.3 -- Mac OSX Intel 10.5+][]
* [Textadept 7.3 -- Linux][]
* [Textadept 7.3 -- Linux x86_64][]
* [Textadept 7.3 -- Modules][]

Bugfixes:

* Export Lua symbols correctly on Windows.
* Fixed occasional bug when double-clicking in the message buffer.
* Fixed an edge-case in word highlighting.

Changes:

* Added reST and YAML lexers and official language modules for each.
* Use [`spawn()`][] for launching help.
* Renamed `io.set_buffer_encoding()` to [`buffer:set_encoding()`][].
* Removed Adeptsense in favor of [autocompleter functions][], but kept existing
  [api file format][].
* Renamed `textadept.editing.autocomplete_word()` to
  [`textadept.editing.autocomplete`][]`('word')`.
* New [`textadept.editing.AUTOCOMPLETE_ALL`][] field for autocompleting words
  from all open buffers.
* Dropped support for official java, php, rails, and rhtml modules; they are
  on the wiki now.
* Removed `textadept.editing.HIGHLIGHT_BRACES` option, as indicator style can be
  changed to hide highlighting.
* Removed `textadept.editing.select_indented_block()`.
* In-place menu editing via [`textadept.menu.menubar`][],
  [`textadept.menu.context_menu`][], and [`textadept.menu.tab_context_menu`][]
  tables.
* Removed `textadept.command_entry.complete_lua()` and
  `textadept.command_entry.execute_lua()` and moved their key bindings into
  their module.
* Updated to [Scintilla][] 3.4.2.

[Textadept 7.3 -- Win32]: download/textadept_7.3.win32.zip
[Textadept 7.3 -- Mac OSX Intel 10.5+]: download/textadept_7.3.osx.zip
[Textadept 7.3 -- Linux]: download/textadept_7.3.i386.tgz
[Textadept 7.3 -- Linux x86_64]: download/textadept_7.3.x86_64.tgz
[Textadept 7.3 -- Modules]: download/textadept_7.3.modules.zip
[`spawn()`]: api/_G.html#spawn
[`buffer:set_encoding()`]: api/buffer.html#set_encoding
[autocompleter functions]: api/textadept.editing.html#autocompleters
[api file format]: api/textadept.editing.html#api_files
[`textadept.editing.autocomplete`]: api/textadept.editing.html#autocomplete
[`textadept.editing.AUTOCOMPLETE_ALL`]: api/textadept.editing.html#AUTOCOMPLETE_ALL
[`textadept.menu.menubar`]: api/textadept.menu.html#menubar
[`textadept.menu.context_menu`]: api/textadept.menu.html#context_menu
[`textadept.menu.tab_context_menu`]: api/textadept.menu.html#tab_context_menu
[Scintilla]: http://scintilla.org

## 7.2 (01 May 2014)

Download:

* [Textadept 7.2 -- Win32][]
* [Textadept 7.2 -- Mac OSX Intel 10.5+][]
* [Textadept 7.2 -- Linux][]
* [Textadept 7.2 -- Linux x86_64][]
* [Textadept 7.2 -- Modules][]

Bugfixes:

* None.

Changes:

* Message buffer can send input to spawned processes.

[Textadept 7.2 -- Win32]: download/textadept_7.2.win32.zip
[Textadept 7.2 -- Mac OSX Intel 10.5+]: download/textadept_7.2.osx.zip
[Textadept 7.2 -- Linux]: download/textadept_7.2.i386.tgz
[Textadept 7.2 -- Linux x86_64]: download/textadept_7.2.x86_64.tgz
[Textadept 7.2 -- Modules]: download/textadept_7.2.modules.zip

## 7.2 beta 4 (11 Apr 2014)

Download:

* [Textadept 7.2 beta 4 -- Win32][]
* [Textadept 7.2 beta 4 -- Mac OSX Intel 10.5+][]
* [Textadept 7.2 beta 4 -- Linux][]
* [Textadept 7.2 beta 4 -- Linux x86_64][]
* [Textadept 7.2 beta 4 -- Modules][]

Bugfixes:

* Fixed bug in parsing output from a cancelled dropdown dialog.
* Always use absolute file paths so sessions are saved and reloaded properly.
* Temporarily disabled asynchronous spawning on OSX due to GLib crashes.

Changes:

* None.

[Textadept 7.2 beta 4 -- Win32]: download/textadept_7.2_beta_4.win32.zip
[Textadept 7.2 beta 4 -- Mac OSX Intel 10.5+]: download/textadept_7.2_beta_4.osx.zip
[Textadept 7.2 beta 4 -- Linux]: download/textadept_7.2_beta_4.i386.tgz
[Textadept 7.2 beta 4 -- Linux x86_64]: download/textadept_7.2_beta_4.x86_64.tgz
[Textadept 7.2 beta 4 -- Modules]: download/textadept_7.2_beta_4.modules.zip

## 7.2 beta 3 (01 Apr 2014)

Download:

* [Textadept 7.2 beta 3 -- Win32][]
* [Textadept 7.2 beta 3 -- Mac OSX Intel 10.5+][]
* [Textadept 7.2 beta 3 -- Linux][]
* [Textadept 7.2 beta 3 -- Linux x86_64][]
* [Textadept 7.2 beta 3 -- Modules][]

Bugfixes:

* Fixed bug in Win32 terminal version with "shifted" character input.

Changes:

* New [optionselect][] dialog.
* Added [`ui.SILENT_PRINT`][] option for printing messages.
* The GUI version can [spawn processes][] in separate threads.
* Removed experimental Windows `io.popen()` and `os.execute()` replacements due
  to spawning support.
* [Snapopen][] now supports projects; added new menu entry and key command.
* Added support for [building projects][].
* Updated to [LuaJIT][] 2.0.3.
* Updated to [Scintilla][] 3.4.1.

[Textadept 7.2 beta 3 -- Win32]: download/textadept_7.2_beta_3.win32.zip
[Textadept 7.2 beta 3 -- Mac OSX Intel 10.5+]: download/textadept_7.2_beta_3.osx.zip
[Textadept 7.2 beta 3 -- Linux]: download/textadept_7.2_beta_3.i386.tgz
[Textadept 7.2 beta 3 -- Linux x86_64]: download/textadept_7.2_beta_3.x86_64.tgz
[Textadept 7.2 beta 3 -- Modules]: download/textadept_7.2_beta_3.modules.zip
[optionselect]: api/ui.dialogs.html#optionselect
[`ui.SILENT_PRINT`]: api/ui.html#SILENT_PRINT
[spawn processes]: api/_G.html#spawn
[Snapopen]: 04_WorkingWithFiles.html#Snapopen
[building projects]: api/_M.html#Build.a.Project
[LuaJIT]: http://luajit.org
[Scintilla]: http://scintilla.org

## 7.2 beta 2 (01 Mar 2014)

Download:

* [Textadept 7.2 beta 2 -- Win32][]
* [Textadept 7.2 beta 2 -- Mac OSX Intel 10.5+][]
* [Textadept 7.2 beta 2 -- Linux][]
* [Textadept 7.2 beta 2 -- Linux x86_64][]
* [Textadept 7.2 beta 2 -- Modules][]

Bugfixes:

* Fixed bug with empty entries in multiple entry inputboxes.

Changes:

* Terminal version now has split views along with key bindings for them.

[Textadept 7.2 beta 2 -- Win32]: download/textadept_7.2_beta_2.win32.zip
[Textadept 7.2 beta 2 -- Mac OSX Intel 10.5+]: download/textadept_7.2_beta_2.osx.zip
[Textadept 7.2 beta 2 -- Linux]: download/textadept_7.2_beta_2.i386.tgz
[Textadept 7.2 beta 2 -- Linux x86_64]: download/textadept_7.2_beta_2.x86_64.tgz
[Textadept 7.2 beta 2 -- Modules]: download/textadept_7.2_beta_2.modules.zip

## 7.2 beta (11 Feb 2014)

Download:

* [Textadept 7.2 beta -- Win32][]
* [Textadept 7.2 beta -- Mac OSX Intel 10.5+][]
* [Textadept 7.2 beta -- Linux][]
* [Textadept 7.2 beta -- Linux x86_64][]
* [Textadept 7.2 beta -- Modules][]

Bugfixes:

* Handle *./* and *../* sequences in filepaths.
* Correctly restore views with word wrap enabled.

Changes:

* Added Swedish translation.
* Added support for multiple entry boxes in [inputdialogs][].
* Updated to [Scintilla][] 3.3.9.

[Textadept 7.2 beta -- Win32]: download/textadept_7.2_beta.win32.zip
[Textadept 7.2 beta -- Mac OSX Intel 10.5+]: download/textadept_7.2_beta.osx.zip
[Textadept 7.2 beta -- Linux]: download/textadept_7.2_beta.i386.tgz
[Textadept 7.2 beta -- Linux x86_64]: download/textadept_7.2_beta.x86_64.tgz
[Textadept 7.2 beta -- Modules]: download/textadept_7.2_beta.modules.zip
[inputdialogs]: api/ui.dialogs.html#inputbox
[Scintilla]: http://scintilla.org

## 7.2 alpha (01 Jan 2014)

Download:

* [Textadept 7.2 alpha -- Win32][]
* [Textadept 7.2 alpha -- Mac OSX Intel 10.5+][]
* [Textadept 7.2 alpha -- Linux][]
* [Textadept 7.2 alpha -- Linux x86_64][]
* [Textadept 7.2 alpha -- Modules][]

Bugfixes:

* Honor [`ui.maximized`][] setting in session files.
* Do not halt opening files if one of them is already open.
* Better key input handling in the terminal version.
* Fixed Makefile bug in grabbing dependencies with older versions of wget.
* Recognize lower-case drive letter names for files passed from external
  programs in Windows.

Changes:

* Added Dart lexer.
* Do not split the view when printing messages if tabs are enabled.
* Look for *~/.textadept/osx_env.sh* for [OSX environment variables][] due to
  changes in Mac OSX 10.9.
* [Experimental] Replaced Lua's `io.popen()` and `os.execute()` with versions
  that do not flash the "black box" on Windows.
* Added read-only access to the current key chain via [`keys.keychain`][].
* Renamed "hypertext" lexer and its corresponding module to "html".
* Added configurable tab context menus via `textadept.menu.set_contextmenus()`.
* New GUI theme for Mac OSX.
* [Experimental] Merged separate lexer states into Textadept's Lua state.
* Updated to [Lua][] 5.2.3.
* Updated to [Scintilla][] 3.3.7.

[Textadept 7.2 alpha -- Win32]: download/textadept_7.2_alpha.win32.zip
[Textadept 7.2 alpha -- Mac OSX Intel 10.5+]: download/textadept_7.2_alpha.osx.zip
[Textadept 7.2 alpha -- Linux]: download/textadept_7.2_alpha.i386.tgz
[Textadept 7.2 alpha -- Linux x86_64]: download/textadept_7.2_alpha.x86_64.tgz
[Textadept 7.2 alpha -- Modules]: download/textadept_7.2_alpha.modules.zip
[`ui.maximized`]: api/ui.html#maximized
[OSX environment variables]: 02_Installation.html#Environment.Variables
[`keys.keychain`]: api/keys.html#keychain
[Lua]: http://lua.org
[Scintilla]: http://scintilla.org

## 7.1 (11 Nov 2013)

Download:

* [Textadept 7.1 -- Win32][]
* [Textadept 7.1 -- Mac OSX Intel 10.5+][]
* [Textadept 7.1 -- Linux][]
* [Textadept 7.1 -- Linux x86_64][]
* [Textadept 7.1 -- Modules][]

Bugfixes:

* Textbox dialogs' `scroll_to` option works correctly.
* Emit autocompletion and hotspot events properly.
* Handle replacement captures with escapes properly.

Changes:

* Tabs for multiple buffers along with [`ui.tabs`][] API.
* Split C/C++ lexer into separate lexers and replaced default "cpp" module with
  "ansi\_c".
* Find and replace text may utilize "%0" capture containing the entire match.
* Disable [`textadept.editing.STRIP_TRAILING_SPACES`][] by default.
* [`ui.clipboard_text`][] is no longer read-only.
* Added [`events.FILE_CHANGED`][] event.

[Textadept 7.1 -- Win32]: download/textadept_7.1.win32.zip
[Textadept 7.1 -- Mac OSX Intel 10.5+]: download/textadept_7.1.osx.zip
[Textadept 7.1 -- Linux]: download/textadept_7.1.i386.tgz
[Textadept 7.1 -- Linux x86_64]: download/textadept_7.1.x86_64.tgz
[Textadept 7.1 -- Modules]: download/textadept_7.1.modules.zip
[`ui.tabs`]: api/ui.html#tabs
[`textadept.editing.STRIP_TRAILING_SPACES`]: api/textadept.editing.html#STRIP_TRAILING_SPACES
[`ui.clipboard_text`]: api/ui.html#clipboard_text
[`events.FILE_CHANGED`]: api/io.html#_G.events.FILE_CHANGED

## 7.0 (01 Nov 2013)

Please see the [6 to 7 migration guide][] for upgrading from Textadept 6 to
Textadept 7.

Download:

* [Textadept 7.0 -- Win32][]
* [Textadept 7.0 -- Mac OSX Intel 10.5+][]
* [Textadept 7.0 -- Linux][]
* [Textadept 7.0 -- Linux x86_64][]
* [Textadept 7.0 -- Modules][]

Bugfixes:

* Fixed bug with `buffer.SCFIND_REGEX` flag.
* Fixed OSX Command key recognition for click events.
* Fixed compile error with GTK3.

Changes:

* Added Assembly (NASM) lexer with compile and run commands.
* `textadept.adeptsense.goto_ctag()` can show all known tags now.
* [`textadept.editing.enclose()`][] encloses the whole current word.

[6 to 7 migration guide]: 14_Appendix.html#Textadept.6.to.7
[Textadept 7.0 -- Win32]: download/textadept_7.0.win32.zip
[Textadept 7.0 -- Mac OSX Intel 10.5+]: download/textadept_7.0.osx.zip
[Textadept 7.0 -- Linux]: download/textadept_7.0.i386.tgz
[Textadept 7.0 -- Linux x86_64]: download/textadept_7.0.x86_64.tgz
[Textadept 7.0 -- Modules]: download/textadept_7.0.modules.zip
[`textadept.editing.enclose()`]: api/textadept.editing.html#enclose

## 7.0 beta 5 (21 Oct 2013)

Download:

* [Textadept 7.0 beta 5 -- Win32][]
* [Textadept 7.0 beta 5 -- Mac OSX Intel 10.5+][]
* [Textadept 7.0 beta 5 -- Linux][]
* [Textadept 7.0 beta 5 -- Linux x86_64][]
* [Textadept 7.0 beta 5 -- Modules][]

Bugfixes:

* Show more helpful user-init startup error messages.
* Lua run command buffers output correctly.
* Fixed corner case in paragraph selection.
* Fixed corner case in block uncommenting.

Changes:

* Changed [`ui.set_theme()`][] API to accept a table of property assignments.
* Added Nimrod lexer and compile and run commands.
* Use [`textadept.editing.INDIC_BRACEMATCH`][] indicator for brace highlighting
  instead of styles.
* The [`buffer`][] API applies to all buffers now, not just the global one.
* Added "Save All" to the menu.

[Textadept 7.0 beta 5 -- Win32]: download/textadept_7.0_beta_5.win32.zip
[Textadept 7.0 beta 5 -- Mac OSX Intel 10.5+]: download/textadept_7.0_beta_5.osx.zip
[Textadept 7.0 beta 5 -- Linux]: download/textadept_7.0_beta_5.i386.tgz
[Textadept 7.0 beta 5 -- Linux x86_64]: download/textadept_7.0_beta_5.x86_64.tgz
[Textadept 7.0 beta 5 -- Modules]: download/textadept_7.0_beta_5.modules.zip
[`ui.set_theme()`]: api/ui.html#set_theme
[`textadept.editing.INDIC_BRACEMATCH`]: api/textadept.editing.html#INDIC_BRACEMATCH
[`buffer`]: api/buffer.html

## 7.0 beta 4 (01 Oct 2013)

Download:

* [Textadept 7.0 beta 4 -- Win32][]
* [Textadept 7.0 beta 4 -- Mac OSX Intel 10.5+][]
* [Textadept 7.0 beta 4 -- Linux][]
* [Textadept 7.0 beta 4 -- Linux x86_64][]
* [Textadept 7.0 beta 4 -- Modules][]

Bugfixes:

* Fixed various compile and install errors.
* Fixed error when block commenting plain text.

Changes:

* [`events.disconnect()`][] now accepts function argument instead of ID.
* [`buffer.filename`][] and all internal filenames are no longer encoded in
  UTF-8, but in [`_CHARSET`][].
* Removed many unused Scintilla constants and stripped many constants of `SC`
  and `SC_` prefixes.
* Changed marker margin symbols via *properties.lua*.
* Calling [`textadept.editing.select_word()`][] repeatedly makes multiple
  selections.
* Renamed `buffer:convert_eo_ls()` to [`convert_eols()`].
* Added [`textadept.run.MARK_WARNING`][] marker.
* Renamed `textadept.run.compile_command` and `textadept.run.run_command` to
  [`compile_commands`][] and [`run_commands`][], respectively.
* Renamed `textadept.run.error_detail` to [`error_patterns`][] and changed its
  internal structure.
* Compile and run commands for languages that support them are now built-in
  along with their respective warning and error messages. The supplemental ones
  on the wiki are no longer needed.
* New [`ui.dialogs`][] module for more user-friendly dialog support. Removed
  `ui.filteredlist()` as a result.
* Changed [`io.open_file()`][] and [`io.snapopen()`][] to accept tables of files
  and paths instead of "\n" delimited strings.

[Textadept 7.0 beta 4 -- Win32]: download/textadept_7.0_beta_4.win32.zip
[Textadept 7.0 beta 4 -- Mac OSX Intel 10.5+]: download/textadept_7.0_beta_4.osx.zip
[Textadept 7.0 beta 4 -- Linux]: download/textadept_7.0_beta_4.i386.tgz
[Textadept 7.0 beta 4 -- Linux x86_64]: download/textadept_7.0_beta_4.x86_64.tgz
[Textadept 7.0 beta 4 -- Modules]: download/textadept_7.0_beta_4.modules.zip
[`events.disconnect()`]: api/events.html#disconnect
[`buffer.filename`]: api/buffer.html#filename
[`_CHARSET`]: api/_G.html#_CHARSET
[`textadept.editing.select_word()`]: api/textadept.editing.html#select_word
[`convert_eols()`]: api/buffer.html#convert_eols
[`textadept.run.MARK_WARNING`]: api/textadept.run.html#MARK_WARNING
[`compile_commands`]: api/textadept.run.html#compile_commands
[`run_commands`]: api/textadept.run.html#run_commands
[`error_patterns`]: api/textadept.run.html#error_patterns
[`ui.dialogs`]: api/ui.dialogs.html
[`io.open_file()`]: api/io.html#open_file
[`io.snapopen()`]: api/io.html#snapopen

## 7.0 beta 3 (11 Sep 2013)

Download:

* [Textadept 7.0 beta 3 -- Win32][]
* [Textadept 7.0 beta 3 -- Mac OSX Intel 10.5+][]
* [Textadept 7.0 beta 3 -- Linux][]
* [Textadept 7.0 beta 3 -- Linux x86_64][]
* [Textadept 7.0 beta 3 -- Modules][]

Bugfixes:

* User functions that connect to `events.BUFFER_NEW` and `events.VIEW_NEW` are
  run on startup.
* Fixed potential crash caused by split views.

Changes:

* Copied constants from `_SCINTILLA.constants` into `buffer`.
* Renamed `events.LANGUAGE_MODULE_LOADED` to [`events.LEXER_LOADED`][].
* Renamed `gui` to [`ui`][].
* Renamed `_M.textadept` to [`textadept`][].
* New [`events.INITIALIZED`][] event.
* Renamed `buffer:get_style_name()` to [`buffer.style_name`][].
* Renamed `ui.docstatusbar_text` to [`ui.bufstatusbar_text`][].
* Removed `textadept.bookmarks.BOOKMARK_COLOR`,
  `textadept.editing.HIGHLIGHT_COLOR`, and `textadept.run.ERROR_COLOR` while
  exposing their respective marker and indicator numbers for customization.
* Moved buffer IO functions into [`io`][].
* Updated to [CDK][] 5.0-20130901.

[Textadept 7.0 beta 3 -- Win32]: download/textadept_7.0_beta_3.win32.zip
[Textadept 7.0 beta 3 -- Mac OSX Intel 10.5+]: download/textadept_7.0_beta_3.osx.zip
[Textadept 7.0 beta 3 -- Linux]: download/textadept_7.0_beta_3.i386.tgz
[Textadept 7.0 beta 3 -- Linux x86_64]: download/textadept_7.0_beta_3.x86_64.tgz
[Textadept 7.0 beta 3 -- Modules]: download/textadept_7.0_beta_3.modules.zip
[`events.LEXER_LOADED`]: api/textadept.file_types.html#_G.events.LEXER_LOADED
[`ui`]: api/ui.html
[`textadept`]: api/textadept.html
[`events.INITIALIZED`]: api/events.html#INITIALIZED
[`buffer.style_name`]: api/buffer.html#style_name
[`ui.bufstatusbar_text`]: api/ui.html#bufstatusbar_text
[`io`]: api/io.html
[CDK]: http://invisible-island.net/cdk/cdk.html

## 7.0 beta 2 (11 Aug 2013)

Download:

* [Textadept 7.0 beta 2 -- Win32][]
* [Textadept 7.0 beta 2 -- Mac OSX Intel 10.5+][]
* [Textadept 7.0 beta 2 -- Linux][]
* [Textadept 7.0 beta 2 -- Linux x86_64][]
* [Textadept 7.0 beta 2 -- Modules][]

Bugfixes:

* Fixed bug with theme loading when resetting.
* Fixed bug with property settings in [`gui.set_theme()`][] not persisting.

Changes:

* New [`gui.maximized`][] field so Textadept can remember its maximized state.
* Updated to [Scintilla][] 3.3.4.

[Textadept 7.0 beta 2 -- Win32]: download/textadept_7.0_beta_2.win32.zip
[Textadept 7.0 beta 2 -- Mac OSX Intel 10.5+]: download/textadept_7.0_beta_2.osx.zip
[Textadept 7.0 beta 2 -- Linux]: download/textadept_7.0_beta_2.i386.tgz
[Textadept 7.0 beta 2 -- Linux x86_64]: download/textadept_7.0_beta_2.x86_64.tgz
[Textadept 7.0 beta 2 -- Modules]: download/textadept_7.0_beta_2.modules.zip
[`gui.set_theme()`]: api/ui.html#set_theme
[`gui.maximized`]: api/ui.html#maximized
[Scintilla]: http://scintilla.org

## 7.0 beta (11 Jul 2013)

Download:

* [Textadept 7.0 beta -- Win32][]
* [Textadept 7.0 beta -- Mac OSX Intel 10.5+][]
* [Textadept 7.0 beta -- Linux][]
* [Textadept 7.0 beta -- Linux x86_64][]
* [Textadept 7.0 beta -- Modules][]

Bugfixes:

* Added file type for Go.
* Fixed disorienting scrolling in some instances of splitting views.
* Fixed corner-case bug in Lua Pattern "Replace All".

Changes:

* Renamed `_M.textadept.mime_types` to [`_M.textadept.file_types`][].
* Eliminated *mime_types.conf* files. Add or modify file type tables
  [directly][].
* Changed scrollbar look and feel on Mac OSX.

[Textadept 7.0 beta -- Win32]: download/textadept_7.0_beta.win32.zip
[Textadept 7.0 beta -- Mac OSX Intel 10.5+]: download/textadept_7.0_beta.osx.zip
[Textadept 7.0 beta -- Linux]: download/textadept_7.0_beta.i386.tgz
[Textadept 7.0 beta -- Linux x86_64]: download/textadept_7.0_beta.x86_64.tgz
[Textadept 7.0 beta -- Modules]: download/textadept_7.0_beta.modules.zip
[`_M.textadept.file_types`]: api/textadept.file_types.html
[directly]: 08_Preferences.html#File.Types

## 7.0 alpha 2 (01 Jul 2013)

Download:

* [Textadept 7.0 alpha 2 -- Win32][]
* [Textadept 7.0 alpha 2 -- Mac OSX Intel 10.5+][]
* [Textadept 7.0 alpha 2 -- Linux][]
* [Textadept 7.0 alpha 2 -- Linux x86_64][]
* [Textadept 7.0 alpha 2 -- Modules][]

Bugfixes:

* Fixed bug in user theme loading.
* Fixed "Enter" key autocompletion in curses.
* Fixed crash when transposing in an empty buffer.
* Fixed bug in find and run double-click event handlers.

Changes:

* Makefile improvements. See the [compiling][] page for more information. The
  source release is no longer necessary.
* Removed `_G._LEXERPATH` and `_L._EXISTS()`.
* Renamed Adeptsense image fields.
* Renamed `_M.textadept.editing.STRIP_WHITESPACE_ON_SAVE` to
  `STRIP_TRAILING_SPACES`.
* [`_M.textadept.editing.block_comment()`][] supports block comment delimiters.
* Block comments for languages is now built-in. The supplemental ones on the
  wiki are no longer needed.
* [`gui.set_theme()`][] accepts key-value argument pairs for overriding theme
  properties.
* Removed `gui.select_theme()` since selected themes do not persist.
* Removed `_G.RESETTING` flag.
* Consolidated `_M.textadept.bookmarks.goto_*()` functionality into
  [`_M.textadept.bookmarks.goto_mark()`][].
* Updated to [LuaJIT][] 2.0.2.
* New [nightly builds][].

[Textadept 7.0 alpha 2 -- Win32]: download/textadept_7.0_alpha_2.win32.zip
[Textadept 7.0 alpha 2 -- Mac OSX Intel 10.5+]: download/textadept_7.0_alpha_2.osx.zip
[Textadept 7.0 alpha 2 -- Linux]: download/textadept_7.0_alpha_2.i386.tgz
[Textadept 7.0 alpha 2 -- Linux x86_64]: download/textadept_7.0_alpha_2.x86_64.tgz
[Textadept 7.0 alpha 2 -- Modules]: download/textadept_7.0_alpha_2.modules.zip
[compiling]: 12_Compiling.html
[`_M.textadept.editing.block_comment()`]: api/textadept.editing.html#block_comment
[`gui.set_theme()`]: api/ui.html#set_theme
[`_M.textadept.bookmarks.goto_mark()`]: api/textadept.bookmarks.html#goto_mark
[LuaJIT]: http://luajit.org
[nightly builds]: README.html#Download

## 7.0 alpha (01 Jun 2013)

Download:

* [Textadept 7.0 alpha -- Win32][]
* [Textadept 7.0 alpha -- Mac OSX Intel 10.5+][]
* [Textadept 7.0 alpha -- Linux][]
* [Textadept 7.0 alpha -- Linux x86_64][]
* [Textadept 7.0 alpha -- Source][]
* [Textadept 7.0 alpha -- Modules][]

Bugfixes:

* None.

Changes:

* Completely new [theme implementation][].
* New [*properties.lua*][] for custom buffer and view properties.
* Updated to [Scintilla][] 3.3.3.

[Textadept 7.0 alpha -- Win32]: download/textadept_7.0_alpha.win32.zip
[Textadept 7.0 alpha -- Mac OSX Intel 10.5+]: download/textadept_7.0_alpha.osx.zip
[Textadept 7.0 alpha -- Linux]: download/textadept_7.0_alpha.i386.tgz
[Textadept 7.0 alpha -- Linux x86_64]: download/textadept_7.0_alpha.x86_64.tgz
[Textadept 7.0 alpha -- Source]: download/textadept_7.0_alpha.src.zip
[Textadept 7.0 alpha -- Modules]: download/textadept_7.0_alpha.modules.zip
[theme implementation]: 09_Themes.html
[*properties.lua*]: 08_Preferences.html#Buffer.Properties
[Scintilla]: http://scintilla.org

## 6.6 (01 Jun 2013)

Download:

* [Textadept 6.6 -- Win32][]
* [Textadept 6.6 -- Mac OSX Intel 10.5+][]
* [Textadept 6.6 -- Linux][]
* [Textadept 6.6 -- Linux x86_64][]
* [Textadept 6.6 -- Source][]
* [Textadept 6.6 -- Modules][]

Bugfixes:

* Fixed GTK assertion errors in find/replace history.
* Command entry loses focus less often.
* Allow empty tables as keychains if they have metatables.
* Fixed caret placement in block comment/uncomment.
* Use '\n' keycode in curses instead of '\r'.
* Fixed crash caused by split views.

Changes:

* Removed `_M[lang].set_buffer_properties()` functions. Set properties through
  `events.LANGUAGE_MODULE_LOADED` instead.
* Print the results of '=' Lua commands.
* Updated to [Scintilla][] 3.3.2.

[Textadept 6.6 -- Win32]: download/textadept_6.6.win32.zip
[Textadept 6.6 -- Mac OSX Intel 10.5+]: download/textadept_6.6.osx.zip
[Textadept 6.6 -- Linux]: download/textadept_6.6.i386.tgz
[Textadept 6.6 -- Linux x86_64]: download/textadept_6.6.x86_64.tgz
[Textadept 6.6 -- Source]: download/textadept_6.6.src.zip
[Textadept 6.6 -- Modules]: download/textadept_6.6.modules.zip
[Scintilla]: http://scintilla.org

## 6.6 beta (01 May 2013)

Download:

* [Textadept 6.6 beta -- Win32][]
* [Textadept 6.6 beta -- Mac OSX Intel 10.5+][]
* [Textadept 6.6 beta -- Linux][]
* [Textadept 6.6 beta -- Linux x86_64][]
* [Textadept 6.6 beta -- Source][]
* [Textadept 6.6 beta -- Modules][]

Bugfixes:

* Fixed rendering on Mac OSX retina displays.
* Fixed rectangle indicator display in curses.
* Fixed Fn key recognition on Mac OSX.
* Fixed compile errors for Mac OSX.
* Find Previous for Lua patterns works.

Changes:

* Textadept supports multiple curses platforms, not just ncurses. Make targets
  now use "curses" instead of "ncurses".
* Better 16-color terminal support in lexer theme.
* Reduced the delay when pressing `Esc` in curses.
* [Messagebox][] dialogs can show icons via `--icon` and `--icon-file`.
* New Win32 terminal version.
* New [key modes][] functionality.
* Updated to [Scintilla][] 3.3.1.
* Renamed `_G.buffer_new()` to [`buffer.new()`][].
* Changed the display of highlighted words, including removing
  `_M.textadept.editing.INDIC_HIGHLIGHT_ALPHA`.
* Changed `_M.textadept.editing.autocomplete_word()` API.
* Removed `_M.textadept.menu.menubar`, `_M.textadept.menu.contextmenu`, and
  `events.handlers` tables from the API.
* Moved `_M.textadept.filter_through` module functionality into
  [`_M.textadept.editing.filter_through()`][].
* Mark errors in compile/run commands and added
  [`_M.textadept.run.goto_error()`][] menu options and key shortcuts.
* Renamed `gui.find.goto_file_in_list()` to [`gui.find.goto_file_found()`][].
* Consolidated `_M.textadept.editing.grow_selection()` functionality into
  [`_M.textadept.editing.select_enclosed()`][].
* Renamed `io.try_encodings` to [`io.encodings`][].

[Textadept 6.6 beta -- Win32]: download/textadept_6.6_beta.win32.zip
[Textadept 6.6 beta -- Mac OSX Intel 10.5+]: download/textadept_6.6_beta.osx.zip
[Textadept 6.6 beta -- Linux]: download/textadept_6.6_beta.i386.tgz
[Textadept 6.6 beta -- Linux x86_64]: download/textadept_6.6_beta.x86_64.tgz
[Textadept 6.6 beta -- Source]: download/textadept_6.6_beta.src.zip
[Textadept 6.6 beta -- Modules]: download/textadept_6.6_beta.modules.zip
[Messagebox]: http://foicica.com/gtdialog/02_Usage.html#Messageboxes
[key modes]: api/keys.html#Modes
[Scintilla]: http://scintilla.org
[`buffer.new()`]: api/buffer.html#new
[`_M.textadept.editing.filter_through()`]: api/textadept.editing.html#filter_through
[`_M.textadept.run.goto_error()`]: api/textadept.run.html#goto_error
[`gui.find.goto_file_found()`]: api/gui.find.html#goto_file_found
[`_M.textadept.editing.select_enclosed()`]: api/textadept.editing.html#select_enclosed
[`io.encodings`]: api/io.html#encodings

## 6.5 (01 Apr 2013)

Download:

* [Textadept 6.5 -- Win32][]
* [Textadept 6.5 -- Mac OSX Intel 10.5+][]
* [Textadept 6.5 -- Linux][]
* [Textadept 6.5 -- Linux x86_64][]
* [Textadept 6.5 -- Source][]
* [Textadept 6.5 -- Modules][]

Bugfixes:

* Only consider visible directories in *_USERHOME/themes/* as themes.
* Indicator for highlighted words works in ncurses.
* Improved message double-clicking behavior for compile and run commands by
  adding [`_M.textadept.run.cwd`][].
* Fixed disorienting scrolling when wrapping only one search result.

Changes:

* Reset Lua state after selecting a new theme.
* Added [`lfs.dir_foreach()`][].
* Added file and directory [filtering][] for Find in Files.
* Moved `_M.textadept.snapopen` into [`io`][].
* Renamed some [`lexer` constants][].
* Added Less, Literal Coffeescript, and Sass lexers.
* Updated to [Scintilla][] 3.3.0.
* Updated to [Lua][] 5.2.2.

[Textadept 6.5 -- Win32]: download/textadept_6.5.win32.zip
[Textadept 6.5 -- Mac OSX Intel 10.5+]: download/textadept_6.5.osx.zip
[Textadept 6.5 -- Linux]: download/textadept_6.5.i386.tgz
[Textadept 6.5 -- Linux x86_64]: download/textadept_6.5.x86_64.tgz
[Textadept 6.5 -- Source]: download/textadept_6.5.src.zip
[Textadept 6.5 -- Modules]: download/textadept_6.5.modules.zip
[`_M.textadept.run.cwd`]: api/textadept.run.html#cwd
[`lfs.dir_foreach()`]: api/lfs.html#dir_foreach
[filtering]: api/gui.find.html#FILTER
[`io`]: api/io.html#snapopen
[`lexer` constants]: api/lexer.html#FOLD_BASE
[Scintilla]: http://scintilla.org
[Lua]: http://lua.org

## 6.4 (01 Mar 2013)

Download:

* [Textadept 6.4 -- Win32][]
* [Textadept 6.4 -- Mac OSX Intel 10.5+][]
* [Textadept 6.4 -- Linux][]
* [Textadept 6.4 -- Linux x86_64][]
* [Textadept 6.4 -- Source][]
* [Textadept 6.4 -- Modules][]

Bugfixes:

* Dialogs belong to the Textadept window.
* Fixed bug in documentation link generator.
* Fixed bug with indexable buffer properties that return strings.

Changes:

* Added [command line switches][] for loading sessions on startup.
* Added [command line switches][] for running Lua code on startup.
* Updated to [Scintilla][] 3.2.5.
* Updated to [LuaJIT][] 2.0.1.

[Textadept 6.4 -- Win32]: download/textadept_6.4.win32.zip
[Textadept 6.4 -- Mac OSX Intel 10.5+]: download/textadept_6.4.osx.zip
[Textadept 6.4 -- Linux]: download/textadept_6.4.i386.tgz
[Textadept 6.4 -- Linux x86_64]: download/textadept_6.4.x86_64.tgz
[Textadept 6.4 -- Source]: download/textadept_6.4.src.zip
[Textadept 6.4 -- Modules]: download/textadept_6.4.modules.zip
[command line switches]: 13_Help.html#Command.Line.Parameters
[Scintilla]: http://scintilla.org
[LuaJIT]: http://luajit.org

## 6.3 (01 Feb 2013)

Download:

* [Textadept 6.3 -- Win32][]
* [Textadept 6.3 -- Mac OSX Intel 10.5+][]
* [Textadept 6.3 -- Linux][]
* [Textadept 6.3 -- Linux x86_64][]
* [Textadept 6.3 -- Source][]
* [Textadept 6.3 -- Modules][]

Bugfixes:

* Do not error on non-existant dropped URIs.
* Fixed crash in Python module when parsing some syntax error messages.

Changes:

* Use Scintilla API for ncurses mark mode.
* Updated to [Scintilla][] 3.2.4.
* Added [typeover characters][].

[Textadept 6.3 -- Win32]: download/textadept_6.3.win32.zip
[Textadept 6.3 -- Mac OSX Intel 10.5+]: download/textadept_6.3.osx.zip
[Textadept 6.3 -- Linux]: download/textadept_6.3.i386.tgz
[Textadept 6.3 -- Linux x86_64]: download/textadept_6.3.x86_64.tgz
[Textadept 6.3 -- Source]: download/textadept_6.3.src.zip
[Textadept 6.3 -- Modules]: download/textadept_6.3.modules.zip
[Scintilla]: http://scintilla.org
[typeover characters]: api/textadept.editing.html#TYPEOVER_CHARS

## 6.2 (01 Jan 2013)

Download:

* [Textadept 6.2 -- Win32][]
* [Textadept 6.2 -- Mac OSX Intel 10.5+][]
* [Textadept 6.2 -- Linux][]
* [Textadept 6.2 -- Linux x86_64][]
* [Textadept 6.2 -- Source][]
* [Textadept 6.2 -- Modules][]

Bugfixes:

* None.

Changes:

* Greatly improved speed when loading large files.
* `make install` and `make ncurses install` install separate binaries on Linux.
* Changed API for [`_M.textadept.snapopen.open()`][] and removed `PATHS`.

[Textadept 6.2 -- Win32]: download/textadept_6.2.win32.zip
[Textadept 6.2 -- Mac OSX Intel 10.5+]: download/textadept_6.2.osx.zip
[Textadept 6.2 -- Linux]: download/textadept_6.2.i386.tgz
[Textadept 6.2 -- Linux x86_64]: download/textadept_6.2.x86_64.tgz
[Textadept 6.2 -- Source]: download/textadept_6.2.src.zip
[Textadept 6.2 -- Modules]: download/textadept_6.2.modules.zip
[`_M.textadept.snapopen.open()`]: api/textadept.snapopen.html#open

## 6.1 (11 Dec 2012)

Download:

* [Textadept 6.1 -- Win32][]
* [Textadept 6.1 -- Mac OSX Intel 10.5+][]
* [Textadept 6.1 -- Linux][]
* [Textadept 6.1 -- Linux x86_64][]
* [Textadept 6.1 -- Source][]
* [Textadept 6.1 -- Modules][]

Bugfixes:

* Do not set current directory when opening/saving files.
* Detect Linux processor arch better.
* Recognize special ncurses keys better.
* Fixed potential bug with determining `_HOME` on Linux.
* Fixed bug when opening non-existent files from the command line.
* LuaJIT compiles correctly on ARM now.

Changes:

* Improved speed and memory usage of lexers.
* Better Makefile support for building packages for Linux distros.
* Rewrote LuaDoc [API documentation][].
* Added French translation.
* Updated to [LuaJIT][] 2.0.0.

[Textadept 6.1 -- Win32]: download/textadept_6.1.win32.zip
[Textadept 6.1 -- Mac OSX Intel 10.5+]: download/textadept_6.1.osx.zip
[Textadept 6.1 -- Linux]: download/textadept_6.1.i386.tgz
[Textadept 6.1 -- Linux x86_64]: download/textadept_6.1.x86_64.tgz
[Textadept 6.1 -- Source]: download/textadept_6.1.src.zip
[Textadept 6.1 -- Modules]: download/textadept_6.1.modules.zip
[API documentation]: api/index.html
[LuaJIT]: http://luajit.org

## 6.0 (01 Nov 2012)

Please see the [5 to 6 migration guide][] for upgrading from Textadept 5 to
Textadept 6.

Download:

* [Textadept 6.0 -- Win32][]
* [Textadept 6.0 -- Mac OSX Intel 10.5+][]
* [Textadept 6.0 -- Linux][]
* [Textadept 6.0 -- Linux x86_64][]
* [Textadept 6.0 -- Source][]
* [Textadept 6.0 -- Modules][]

Bugfixes:

* Handle rapidly pressing `Esc` twice in ncurses dialogs.
* Complete transition to `buffer.tab_size` from `buffer.indent`.
* Fixed regression in ncurses command selection.
* Fixed GUI menu key shortcut handling.
* Fixed string collation bug in ncurses due to CDK.
* Pass `Esc` to Scintilla correctly in ncurses.

Changes:

* Added key binding for toggling fold points.
* Added ncurses key bindings for bookmarks.
* Added [`event.FIND_WRAPPED`][] event.
* Removed `_M.textadept.run.execute()`.
* Updated documentation and documentation formatting.
* Added [Python module][].
* Updated to [Scintilla][] 3.2.3.
* Updated to [LuaJIT][] 2.0.0-beta11.

[5 to 6 migration guide]: 14_Appendix.html#Textadept.5.to.6
[Textadept 6.0 -- Win32]: download/textadept_6.0.win32.zip
[Textadept 6.0 -- Mac OSX Intel 10.5+]: download/textadept_6.0.osx.zip
[Textadept 6.0 -- Linux]: download/textadept_6.0.i386.tgz
[Textadept 6.0 -- Linux x86_64]: download/textadept_6.0.x86_64.tgz
[Textadept 6.0 -- Source]: download/textadept_6.0.src.zip
[Textadept 6.0 -- Modules]: download/textadept_6.0.modules.zip
[`event.FIND_WRAPPED`]: api/gui.find.html#_G.events.FIND_WRAPPED
[Python module]: api/_M.python.html
[Scintilla]: http://scintilla.org
[LuaJIT]: http://luajit.org

## 6.0 beta 3 (01 Oct 2012)

Download:

* [Textadept 6.0 beta 3 -- Win32][]
* [Textadept 6.0 beta 3 -- Mac OSX Intel 10.5+][]
* [Textadept 6.0 beta 3 -- Linux][]
* [Textadept 6.0 beta 3 -- Linux x86_64][]
* [Textadept 6.0 beta 3 -- Source][]
* [Textadept 6.0 beta 3 -- Modules][]

Bugfixes:

* Cancelling in [`buffer:close()`][] caused unwanted key propagation.
* Correctly emit [`RUN_OUTPUT` events][].
* Fixed bug with extra empty entry in the buffer browser.
* Fixed incremental find in ncurses.
* Fixed ncurses crash when pasting with no clipboard text.
* Keep termios disabled in ncurses CDK widgets.
* Do not write ncurses initialization errors over titlebar.
* Fixed bug in [`string.iconv()`][].

Changes:

* Attempt to autodetect locale using `LANG` environment variable.
* Removed `_M.textadept.menu.rebuild_command_tables()`.
* Manual and Lua API documentation largely re-written.
* Key Bindings reference moved from Appendix to [`_M.textadept.keys`][] LuaDoc.
* Plain text lexer name changed from `container` to `text`.
* New application icon.
* Removed `./?.lua` and `./?.so` from `package.path` and `package.cpath`,
  respectively.
* Added marks for making selections in ncurses.

[Textadept 6.0 beta 3 -- Win32]: download/textadept_6.0_beta_3.win32.zip
[Textadept 6.0 beta 3 -- Mac OSX Intel 10.5+]: download/textadept_6.0_beta_3.osx.zip
[Textadept 6.0 beta 3 -- Linux]: download/textadept_6.0_beta_3.i386.tgz
[Textadept 6.0 beta 3 -- Linux x86_64]: download/textadept_6.0_beta_3.x86_64.tgz
[Textadept 6.0 beta 3 -- Source]: download/textadept_6.0_beta_3.src.zip
[Textadept 6.0 beta 3 -- Modules]: download/textadept_6.0_beta_3.modules.zip
[`buffer:close()`]: api/buffer.html#close
[`RUN_OUTPUT` events]: api/textadept.run.html#Run.Events
[`string.iconv()`]: api/string.html#iconv
[`_M.textadept.keys`]: api/textadept.keys.html

## 6.0 beta 2 (01 Sep 2012)

Download:

* [Textadept 6.0 beta 2 -- Win32][]
* [Textadept 6.0 beta 2 -- Mac OSX Intel 10.5+][]
* [Textadept 6.0 beta 2 -- Linux][]
* [Textadept 6.0 beta 2 -- Linux x86_64][]
* [Textadept 6.0 beta 2 -- Source][]
* [Textadept 6.0 beta 2 -- Modules][]

Bugfixes:

* Disabled `--help` switch to ncurses version due to terminal output mangling.
* ncurses replace entry can now be focused.
* Fixed ncurses memory leaks.
* Fixed multiple selection in Mac OSX.
* Show key shortcuts in ncurses [`_M.textadept.menu.select_command()`][].

Changes:

* Added `make install` and `make uninstall` rules for optional installation.
* Updated manual with ncurses key commands.
* Consolidated `_M.textadept.bookmarks.add()` and
  `_M.textadept.bookmarks.remove()` into [`_M.textadept.bookmarks.toggle()`][].
* Updated manual images.
* [`_M.textadept.snapopen.DEFAULT_DEPTH`][] is now `99` since [`MAX`][] is the
  limiting factor.
* Use constant names in theme options instead of nondescript integers.
* Updated to [Scintilla][] 3.2.2.

[Textadept 6.0 beta 2 -- Win32]: download/textadept_6.0_beta_2.win32.zip
[Textadept 6.0 beta 2 -- Mac OSX Intel 10.5+]: download/textadept_6.0_beta_2.osx.zip
[Textadept 6.0 beta 2 -- Linux]: download/textadept_6.0_beta_2.i386.tgz
[Textadept 6.0 beta 2 -- Linux x86_64]: download/textadept_6.0_beta_2.x86_64.tgz
[Textadept 6.0 beta 2 -- Source]: download/textadept_6.0_beta_2.src.zip
[Textadept 6.0 beta 2 -- Modules]: download/textadept_6.0_beta_2.modules.zip
[`_M.textadept.menu.select_command()`]: api/textadept.menu.html#select_command
[`_M.textadept.bookmarks.toggle()`]: api/textadept.bookmarks.html#toggle
[`_M.textadept.snapopen.DEFAULT_DEPTH`]: api/textadept.snapopen.html#DEFAULT_DEPTH
[`MAX`]: api/textadept.snapopen.html#MAX
[Scintilla]: http://scintilla.org

## 6.0 beta (01 Aug 2012)

Download:

* [Textadept 6.0 beta -- Win32][]
* [Textadept 6.0 beta -- Mac OSX Intel 10.5+][]
* [Textadept 6.0 beta -- Linux][]
* [Textadept 6.0 beta -- Linux x86_64][]
* [Textadept 6.0 beta -- Source][]
* [Textadept 6.0 beta -- Modules][]

Bugfixes:

* Lots of bugfixes to the experimental ncurses version.

Changes:

* Removed Lua, Ruby, and PHP modules' `goto_required()` functions.
* Moved `_M.textadept.editing.prepare_for_save()` directly into event handler.
* Moved `_M.textadept.session.prompt_load()` and `prompt_save()` functionality
  into [`_M.textadept.session.load()`][] and [`_M.textadept.session.save()`][].
* Removed `_G.user_dofile()`.
* Converted some `buffer` "get" and "set" functions into properties.
* Moved `_M.textadept.adeptsense.complete_symbol()` and `show_documentation()`
  functionality into `_M.textadept.adeptsense.complete()` and `show_apidoc()`.
* New 64-bit Windows version (note: without LuaJIT).
* Updated to [Scintilla][] 3.2.1.

[Textadept 6.0 beta -- Win32]: download/textadept_6.0_beta.win32.zip
[Textadept 6.0 beta -- Mac OSX Intel 10.5+]: download/textadept_6.0_beta.osx.zip
[Textadept 6.0 beta -- Linux]: download/textadept_6.0_beta.i386.tgz
[Textadept 6.0 beta -- Linux x86_64]: download/textadept_6.0_beta.x86_64.tgz
[Textadept 6.0 beta -- Source]: download/textadept_6.0_beta.src.zip
[Textadept 6.0 beta -- Modules]: download/textadept_6.0_beta.modules.zip
[`_M.textadept.session.load()`]: api/textadept.session.html#load
[`_M.textadept.session.save()`]: api/textadept.session.html#save
[Scintilla]: http://scintilla.org

## 5.5 beta (01 Jul 2012)

Download:

* [Textadept 5.5 beta -- Win32][]
* [Textadept 5.5 beta -- Mac OSX Intel 10.5+][]
* [Textadept 5.5 beta -- Linux][]
* [Textadept 5.5 beta -- Linux x86_64][]
* [Textadept 5.5 beta -- Source][]
* [Textadept 5.5 beta -- Modules][]

Bugfixes:

* None.

Changes:

* Experimental ncurses support.
* No more `'gtk-'` stock menu item support and changed `'separator'` to `''`.
* Renamed `gui.gtkmenu()` to [`gui.menu()`][].
* Changed [`gui.statusbar_text`][] to be write-only.
* Changed 'Quit' key command to 'Ctrl+Q' on Win32 and Linux.
* Show text that could not be localized.
* Changed `make` commands for [compiling][] Textadept.
* x86\_64 binary provides `libpng12` executables by default.
* Can cross compile to Mac OSX from Linux.
* Updated to [Lua 5.2.1][].
* Updated to [LuaJIT][] 2.0.0-beta10.

[Textadept 5.5 beta -- Win32]: download/textadept_5.5_beta.win32.zip
[Textadept 5.5 beta -- Mac OSX Intel 10.5+]: download/textadept_5.5_beta.osx.zip
[Textadept 5.5 beta -- Linux]: download/textadept_5.5_beta.i386.tgz
[Textadept 5.5 beta -- Linux x86_64]: download/textadept_5.5_beta.x86_64.tgz
[Textadept 5.5 beta -- Source]: download/textadept_5.5_beta.src.zip
[Textadept 5.5 beta -- Modules]: download/textadept_5.5_beta.modules.zip
[`gui.menu()`]: api/ui.html#menu
[`gui.statusbar_text`]: api/ui.html#statusbar_text
[compiling]: 12_Compiling.html
[Lua 5.2.1]: http://www.lua.org/manual/5.2/
[LuaJIT]: http://luajit.org

## 5.4 (01 Jun 2012)

Download:

* [Textadept 5.4 -- Win32][]
* [Textadept 5.4 -- Mac OSX Intel 10.5+][]
* [Textadept 5.4 -- Linux][]
* [Textadept 5.4 -- Linux x86_64][]
* [Textadept 5.4 -- Source][]
* [Textadept 5.4 -- Modules][]

Bugfixes:

* None.

Changes:

* Updated to [Scintilla][] 3.2.0.

[Textadept 5.4 -- Win32]: download/textadept_5.4.win32.zip
[Textadept 5.4 -- Mac OSX Intel 10.5+]: download/textadept_5.4.osx.zip
[Textadept 5.4 -- Linux]: download/textadept_5.4.tgz
[Textadept 5.4 -- Linux x86_64]: download/textadept_5.4.x86_64.tgz
[Textadept 5.4 -- Source]: download/textadept_5.4.src.zip
[Textadept 5.4 -- Modules]: download/textadept_5.4.modules.zip
[Scintilla]: http://scintilla.org

## 5.3 (01 May 2012)

Download:

* [Textadept 5.3 -- Win32][]
* [Textadept 5.3 -- Mac OSX Intel 10.5+][]
* [Textadept 5.3 -- Linux][]
* [Textadept 5.3 -- Linux x86_64][]
* [Textadept 5.3 -- Source][]
* [Textadept 5.3 -- Modules][]

Bugfixes:

* Fixed bug with run/compile commands in LuaJIT version.
* User annotation preferences are preserved.
* Fixed bug with number representation in some locales.

Changes:

* Annotations are used for showing run/compile command output.
* Textadept is [single-instance][] by default on Linux and Mac OSX.
* Textadept requires [GTK][] 2.18 or higher now instead of 2.16.
* The provided Textadept binaries [require][] [GLib][] 2.28 or higher.
* Updated to [Scintilla][] 3.1.0.

[Textadept 5.3 -- Win32]: download/textadept_5.3.win32.zip
[Textadept 5.3 -- Mac OSX Intel 10.5+]: download/textadept_5.3.osx.zip
[Textadept 5.3 -- Linux]: download/textadept_5.3.tgz
[Textadept 5.3 -- Linux x86_64]: download/textadept_5.3.x86_64.tgz
[Textadept 5.3 -- Source]: download/textadept_5.3.src.zip
[Textadept 5.3 -- Modules]: download/textadept_5.3.modules.zip
[single-instance]: 02_Installation.html#Single.Instance
[GTK]: http://gtk.org
[require]: 02_Installation.html#Requirements
[GLib]: http://gtk.org/download/linux.php
[Scintilla]: http://scintilla.org

## 5.2 (01 Apr 2012)

Download:

* [Textadept 5.2 -- Win32][]
* [Textadept 5.2 -- Mac OSX Intel 10.5+][]
* [Textadept 5.2 -- Linux][]
* [Textadept 5.2 -- Linux x86_64][]
* [Textadept 5.2 -- Source][]
* [Textadept 5.2 -- Modules][]

Bugfixes:

* Fixed LuaDoc for [`buffer:get_lexer()`][].
* Fixed bug with relative paths from command line files.
* [`buffer:get_lexer(true)`][] is used more often when it should be.
* Improved message double-clicking behavior for run and compile commands.

Changes:

* [`_M.set_buffer_properties()`][] is now optional for language modules.
* Added keypad keys to [`keys.KEYSYMS`][].
* [`_G.timeout()`][] accepts fractional seconds.
* Replaced `scripts/update_doc` with `src/Makefile` targets.
* New Manual and LuaDoc HTML page formatting.
* `_M.textadept.editing.autocomplete_word()` accepts default words.
* Added documentation on [generating LuaDoc][] and Lua Adeptsense.
* Moved `Markdown:` comments into LuaDoc.
* Added Spanish and German translations.
* Use [GTK][] 2.24 on Windows.
* Updated to [Scintilla][] 3.0.4.

[Textadept 5.2 -- Win32]: download/textadept_5.2.win32.zip
[Textadept 5.2 -- Mac OSX Intel 10.5+]: download/textadept_5.2.osx.zip
[Textadept 5.2 -- Linux]: download/textadept_5.2.tgz
[Textadept 5.2 -- Linux x86_64]: download/textadept_5.2.x86_64.tgz
[Textadept 5.2 -- Source]: download/textadept_5.2.src.zip
[Textadept 5.2 -- Modules]: download/textadept_5.2.modules.zip
[`buffer:get_lexer()`]: api/buffer.html#buffer.get_lexer
[`buffer:get_lexer(true)`]: api/buffer.html#buffer.get_lexer
[`_M.set_buffer_properties()`]: api/_M.html#Buffer.Properties
[`keys.KEYSYMS`]: api/keys.html#KEYSYMS
[`_G.timeout()`]: api/_G.html#timeout
[generating LuaDoc]: 11_Scripting.html#Generating.LuaDoc
[GTK]: http://gtk.org
[Scintilla]: http://scintilla.org

## 5.1 (01 Mar 2012)

Download:

* [Textadept 5.1 -- Win32][]
* [Textadept 5.1 -- Mac OSX Intel 10.5+][]
* [Textadept 5.1 -- Linux][]
* [Textadept 5.1 -- Linux x86_64][]
* [Textadept 5.1 -- Source][]
* [Textadept 5.1 -- Modules][]

Bugfixes:

* Fixed crash caused by `gui.filteredlist()` dialogs.
* Support multiple `@return` tags in Lua Adeptsense.
* Fixed display of `buffer._type` when it has slashes in its name.

Changes:

* Better Lua Adeptsense formatting.
* Use new Cocoa-based [GtkOSXApplication][] library for better OSX support.
* Lexers with no tokens can be styled manually.
* Added more OSX default key shortcuts.

[Textadept 5.1 -- Win32]: download/textadept_5.1.win32.zip
[Textadept 5.1 -- Mac OSX Intel 10.5+]: download/textadept_5.1.osx.zip
[Textadept 5.1 -- Linux]: download/textadept_5.1.tgz
[Textadept 5.1 -- Linux x86_64]: download/textadept_5.1.x86_64.tgz
[Textadept 5.1 -- Source]: download/textadept_5.1.src.zip
[Textadept 5.1 -- Modules]: download/textadept_5.1.modules.zip
[GtkOSXApplication]: https://live.gnome.org/GTK%2B/OSX/Integration#Gtk-mac-integration.2BAC8-GtkOSXApplication

## 5.0 (01 Feb 2012)

Please see the [4 to 5 migration guide][] for upgrading from Textadept 4 to
Textadept 5.

Download:

* [Textadept 5.0 -- Win32][]
* [Textadept 5.0 -- Mac OSX Intel 10.5+][]
* [Textadept 5.0 -- Linux][]
* [Textadept 5.0 -- Linux x86_64][]
* [Textadept 5.0 -- Source][]
* [Textadept 5.0 -- Modules][]

Bugfixes:

* Fixed bug with recent files in sessions.

Changes:

* Added default extension and folder filters in
  `modules/textadept/snapopen.lua`.
* Added ChucK lexer.
* Updated to [Scintilla][] 3.0.3.
* Also include [LuaJIT][] executables in releases.

[4 to 5 migration guide]: 14_Appendix.html#Textadept.4.to.5
[Textadept 5.0 -- Win32]: download/textadept_5.0.win32.zip
[Textadept 5.0 -- Mac OSX Intel 10.5+]: download/textadept_5.0.osx.zip
[Textadept 5.0 -- Linux]: download/textadept_5.0.tgz
[Textadept 5.0 -- Linux x86_64]: download/textadept_5.0.x86_64.tgz
[Textadept 5.0 -- Source]: download/textadept_5.0.src.zip
[Textadept 5.0 -- Modules]: download/textadept_5.0.modules.zip
[Scintilla]: http://scintilla.org
[LuaJIT]: http://luajit.org

## 5.0 beta (11 Jan 2012)

Download:

* [Textadept 5.0 beta -- Win32][]
* [Textadept 5.0 beta -- Mac OSX Intel 10.5+][]
* [Textadept 5.0 beta -- Linux][]
* [Textadept 5.0 beta -- Linux x86_64][]
* [Textadept 5.0 beta -- Source][]
* [Textadept 5.0 beta -- Modules][]

Bugfixes:

* Fixed bug in [`reset()`][] from update to Lua 5.2.

Changes:

* Changed `locale.localize()` to global [`_L`][] table and removed `locale`
  module.
* Renamed `_m` to [`_M`][].
* Do not clear registered images when autocompleting with Adeptsense.
* Renamed editing module's `current_word()` to [`select_word()`][].
* Updated [manual][].

[Textadept 5.0 beta -- Win32]: download/textadept_5.0_beta.win32.zip
[Textadept 5.0 beta -- Mac OSX Intel 10.5+]: download/textadept_5.0_beta.osx.zip
[Textadept 5.0 beta -- Linux]: download/textadept_5.0_beta.tgz
[Textadept 5.0 beta -- Linux x86_64]: download/textadept_5.0_beta.x86_64.tgz
[Textadept 5.0 beta -- Source]: download/textadept_5.0_beta.src.zip
[Textadept 5.0 beta -- Modules]: download/textadept_5.0_beta.modules.zip
[`reset()`]: api/_G.html#reset
[`_L`]: api/_L.html
[`_M`]: api/_M.html
[manual]: ./
[`select_word()`]: api/textadept.editing.html#select_word

## 5.0 alpha (21 Dec 2011)

Download:

* [Textadept 5.0 alpha -- Win32][]
* [Textadept 5.0 alpha -- Mac OSX Intel 10.5+][]
* [Textadept 5.0 alpha -- Linux][]
* [Textadept 5.0 alpha -- Linux x86_64][]
* [Textadept 5.0 alpha -- Source][]
* [Textadept 5.0 alpha -- Modules][]

Bugfixes:

* None.

Changes:

* Updated to [Lua 5.2][].
* Updated sections in the [manual][] to reflect Lua 5.2 changes.
* Textadept can be compiled with [LuaJIT][].

[Textadept 5.0 alpha -- Win32]: download/textadept_5.0_alpha.win32.zip
[Textadept 5.0 alpha -- Mac OSX Intel 10.5+]: download/textadept_5.0_alpha.osx.zip
[Textadept 5.0 alpha -- Linux]: download/textadept_5.0_alpha.tgz
[Textadept 5.0 alpha -- Linux x86_64]: download/textadept_5.0_alpha.x86_64.tgz
[Textadept 5.0 alpha -- Source]: download/textadept_5.0_alpha.src.zip
[Textadept 5.0 alpha -- Modules]: download/textadept_5.0_alpha.modules.zip
[Lua 5.2]: http://www.lua.org/manual/5.2/
[manual]: ./
[LuaJIT]: http://luajit.org

## 4.3 (01 Dec 2011)

Download:

* [Textadept 4.3 -- Win32][]
* [Textadept 4.3 -- Mac OSX Intel 10.5+][]
* [Textadept 4.3 -- Linux][]
* [Textadept 4.3 -- Linux x86_64][]
* [Textadept 4.3 -- Source][]
* [Textadept 4.3 -- Modules][]

Bugfixes:

* Fixed bug with opening files in the current directory from the command line.
* Fixed erroneous charset conversion.

Changes:

* Added on-the-fly [theme switching][].
* All new `light` and `dark` themes.
* Removed `_m.textadept.editing.select_style()`.
* Simplify theming via [gtkrc][] by naming `GtkWindow` only.
* Updated to [Scintilla][] 3.0.1.

[Textadept 4.3 -- Win32]: download/textadept_4.3.win32.zip
[Textadept 4.3 -- Mac OSX Intel 10.5+]: download/textadept_4.3.osx.zip
[Textadept 4.3 -- Linux]: download/textadept_4.3.tgz
[Textadept 4.3 -- Linux x86_64]: download/textadept_4.3.x86_64.tgz
[Textadept 4.3 -- Source]: download/textadept_4.3.src.zip
[Textadept 4.3 -- Modules]: download/textadept_4.3.modules.zip
[theme switching]: api/ui.html#set_theme
[gtkrc]: 8_Themes.html#Theming.the.GUI
[Scintilla]: http://scintilla.org

## 4.2 (01 Nov 2011)

Download:

* [Textadept 4.2 -- Win32][]
* [Textadept 4.2 -- Mac OSX Intel 10.5+][]
* [Textadept 4.2 -- Linux][]
* [Textadept 4.2 -- Linux x86_64][]
* [Textadept 4.2 -- Source][]
* [Textadept 4.2 -- Modules][]

Bugfixes:

* Fixed bug with `%n` in Replace introduced in 4.1.
* Fixed Adeptsense autocomplete for single item.

Changes:

* Updated to [Scintilla][] 3.0.0.

[Textadept 4.2 -- Win32]: download/textadept_4.2.win32.zip
[Textadept 4.2 -- Mac OSX Intel 10.5+]: download/textadept_4.2.osx.zip
[Textadept 4.2 -- Linux]: download/textadept_4.2.tgz
[Textadept 4.2 -- Linux x86_64]: download/textadept_4.2.x86_64.tgz
[Textadept 4.2 -- Source]: download/textadept_4.2.src.zip
[Textadept 4.2 -- Modules]: download/textadept_4.2.modules.zip
[Scintilla]: http://scintilla.org

## 4.1 (01 Oct 2011)

Download:

* [Textadept 4.1 -- Win32][]
* [Textadept 4.1 -- Mac OSX Intel 10.5+][]
* [Textadept 4.1 -- Linux][]
* [Textadept 4.1 -- Linux x86_64][]
* [Textadept 4.1 -- Source][]
* [Textadept 4.1 -- Modules][]

Bugfixes:

* Only fold when clicking on fold margin, not any sensitive one.
* Fixed bug with `CALL_TIP_CLICK` event disconnect in Adeptsense.
* Fixed bug with autocomplete and capitalization.

Changes:

* Handle mouse [dwell events][] `DWELL_START` and `DWELL_END`.
* Rearranged `Tools` menu slightly.
* Slight API changes:
  + [`_BUFFERS`][] and [`_VIEWS`][] structure changed.
  + Removed `buffer.doc_pointer` and `view.doc_pointer`.
  + Added [`view.buffer`][] field.
  + Renamed `gui.check_focused_buffer()` to [`buffer:check_global()`][].
  + [`view:goto_buffer()`][] and [`gui.goto_view()`] arguments make sense now.
    (May require changes to custom key commands.)
* Directory is remembered in file chooser dialog after open or save as.
* Added language-specific [context menu][] support.
* Use [LuaCoco][] patch for Lua 5.1.4.
* Use lexer at the caret for key commands and snippets.
* Updated to [Scintilla][] 2.29.

[Textadept 4.1 -- Win32]: download/textadept_4.1.win32.zip
[Textadept 4.1 -- Mac OSX Intel 10.5+]: download/textadept_4.1.osx.zip
[Textadept 4.1 -- Linux]: download/textadept_4.1.tgz
[Textadept 4.1 -- Linux x86_64]: download/textadept_4.1.x86_64.tgz
[Textadept 4.1 -- Source]: download/textadept_4.1.src.zip
[Textadept 4.1 -- Modules]: download/textadept_4.1.modules.zip
[dwell events]: api/events.html
[`_BUFFERS`]: api/_G.html#_BUFFERS
[`_VIEWS`]: api/_G.html#_VIEWS
[`view.buffer`]: api/view.html#buffer
[`buffer:check_global()`]: api/buffer.html#buffer.check_global
[`view:goto_buffer()`]: api/view.html#view:goto_buffer
[`gui.goto_view()`]: api/ui.html#goto_view
[context menu]: api/_M.html#Context.Menu
[LuaCoco]: http://coco.luajit.org/
[Scintilla]: http://scintilla.org

## 4.0 (01 Sep 2011)

Please see the [3 to 4 migration guide][] for upgrading from Textadept 3 to
Textadept 4.

Download:

* [Textadept 4.0 -- Win32][]
* [Textadept 4.0 -- Mac OSX Intel 10.5+][]
* [Textadept 4.0 -- Linux][]
* [Textadept 4.0 -- Linux x86_64][]
* [Textadept 4.0 -- Source][]
* [Textadept 4.0 -- Modules][]

Bugfixes:

* Makefile should only link to `libdl.so` on Linux/BSD.
* Fixed memory access bug in [`gui.dialog()`][].
* Autocompletion list sort order respects [`buffer.auto_c_ignore_case`][] now.
* Fixed split view focus bug with the same buffer in two views.
* Set new buffer EOL mode properly on Mac OSX.

Changes:

* Added Russian translation.
* Changed some key commands from 4.0 beta 2.
* Do not hide the statusbar when the command entry has focus.

[3 to 4 migration guide]: 14_Appendix.html#Textadept.3.to.4
[Textadept 4.0 -- Win32]: download/textadept_4.0.win32.zip
[Textadept 4.0 -- Mac OSX Intel 10.5+]: download/textadept_4.0.osx.zip
[Textadept 4.0 -- Linux]: download/textadept_4.0.tgz
[Textadept 4.0 -- Linux x86_64]: download/textadept_4.0.x86_64.tgz
[Textadept 4.0 -- Source]: download/textadept_4.0.src.zip
[Textadept 4.0 -- Modules]: download/textadept_4.0.modules.zip
[`gui.dialog()`]: api/ui.html#dialog
[`buffer.auto_c_ignore_case`]: api/buffer.html#auto_c_ignore_case

## 4.0 beta 2 (11 Aug 2011)

Download:

* [Textadept 4.0 beta 2 -- Win32][]
* [Textadept 4.0 beta 2 -- Mac OSX Intel 10.5+][]
* [Textadept 4.0 beta 2 -- Linux][]
* [Textadept 4.0 beta 2 -- Linux x86_64][]
* [Textadept 4.0 beta 2 -- Source][]
* [Textadept 4.0 beta 2 -- Modules][]

Bugfixes:

* Fixed transpose characters bug at end of buffer.
* Do not autosave over explicitly loaded session.
* Fixed startup crash on Mac OSX.
* Fixed resize crash on Mac OSX Lion.

Changes:

* Added Scala lexer.
* Add [recent file list][] to session files.
* Autocomplete supports multiple selections.
* Swapped OSX `c` and `m` key command definition modifiers.
* Changed some key bindings from 4.0 beta.

[Textadept 4.0 beta 2 -- Win32]: download/textadept_4.0_beta_2.win32.zip
[Textadept 4.0 beta 2 -- Mac OSX Intel 10.5+]: download/textadept_4.0_beta_2.osx.zip
[Textadept 4.0 beta 2 -- Linux]: download/textadept_4.0_beta_2.tgz
[Textadept 4.0 beta 2 -- Linux x86_64]: download/textadept_4.0_beta_2.x86_64.tgz
[Textadept 4.0 beta 2 -- Source]: download/textadept_4.0_beta_2.src.zip
[Textadept 4.0 beta 2 -- Modules]: download/textadept_4.0_beta_2.modules.zip
[recent file list]: api/io.html#recent_files

## 4.0 beta (01 Aug 2011)

Download:

* [Textadept 4.0 beta -- Win32][]
* [Textadept 4.0 beta -- Mac OSX Intel 10.5+][]
* [Textadept 4.0 beta -- Linux][]
* [Textadept 4.0 beta -- Linux x86_64][]
* [Textadept 4.0 beta -- Source][]
* [Textadept 4.0 beta -- Modules][]

Bugfixes:

* None.

Changes:

* Mac OSX uses GTK 2.24.
* Added [`io.open_recent_file()`][].
* Changes to localization file again.
* [`buffer` functions][] may omit the first `buffer` argument (e.g.
  `buffer.line_down()` is allowed).
* Complete overhaul of menus and added accelerators to [menu][] items.
* Renamed `_m.textadept.editing.SAVE_STRIPS_WS` to
  [`_m.textadept.editing.STRIP_WHITESPACE_ON_SAVE`][].
* Renamed `_m.textadept.editing.select_scope()` to
  `_m.textadept.editing.select_style()`.
* *Completely new set of key commands.*
* Updated to [Scintilla][] 2.28.

[Textadept 4.0 beta -- Win32]: download/textadept_4.0_beta.win32.zip
[Textadept 4.0 beta -- Mac OSX Intel 10.5+]: download/textadept_4.0_beta.osx.zip
[Textadept 4.0 beta -- Linux]: download/textadept_4.0_beta.tgz
[Textadept 4.0 beta -- Linux x86_64]: download/textadept_4.0_beta.x86_64.tgz
[Textadept 4.0 beta -- Source]: download/textadept_4.0_beta.src.zip
[Textadept 4.0 beta -- Modules]: download/textadept_4.0_beta.modules.zip
[`io.open_recent_file()`]: api/io.html#open_recent_file
[`buffer` functions]: api/buffer.html#Functions
[`_m.textadept.editing.STRIP_WHITESPACE_ON_SAVE`]: api/textadept.editing.html#STRIP_WHITESPACE_ON_SAVE
[menu]: api/ui.html#gtkmenu
[Scintilla]: http://scintilla.org

## 3.9 (01 Jul 2011)

Download:

* [Textadept 3.9 -- Win32][]
* [Textadept 3.9 -- Mac OSX Intel 10.5+][]
* [Textadept 3.9 -- Linux][]
* [Textadept 3.9 -- Linux x86_64][]
* [Textadept 3.9 -- Source][]
* [Textadept 3.9 -- Modules][]

Bugfixes:

* Fixed bug for when [`gui.dialog`][] steals focus.

Changes:

* Added support for [GTK][] 3.0.
* Use ID generator [functions][] for marker, indicator, and user list IDs.
* Updated to [Scintilla][] 2.27.
* Use string constants for event names.
* Compile and run commands [emit events][].
* Enhanced Luadoc and Lua Adeptsense.
* Added `fold.line.comments` property for folding multiple single-line comments.
* Use [GTK][] 2.22 on Windows.
* Can localize the labels and buttons in the GUI [find][] frame.
* Added ConTeXt lexer.

[Textadept 3.9 -- Win32]: download/textadept_3.9.win32.zip
[Textadept 3.9 -- Mac OSX Intel 10.5+]: download/textadept_3.9.osx.zip
[Textadept 3.9 -- Linux]: download/textadept_3.9.tgz
[Textadept 3.9 -- Linux x86_64]: download/textadept_3.9.x86_64.tgz
[Textadept 3.9 -- Source]: download/textadept_3.9.src.zip
[Textadept 3.9 -- Modules]: download/textadept_3.9.modules.zip
[GTK]: http://gtk.org
[`gui.dialog`]: api/ui.html#dialog
[functions]: api/_SCINTILLA.html#Functions
[Scintilla]: http://scintilla.org
[emit events]: api/textadept.run.html#Run.Events
[find]: api/gui.find.html

## 3.8 (11 Jun 2011)

Download:

* [Textadept 3.8 -- Win32][]
* [Textadept 3.8 -- Mac OSX Intel 10.5+][]
* [Textadept 3.8 -- Linux][]
* [Textadept 3.8 -- Linux x86_64][]
* [Textadept 3.8 -- Source][]
* [Textadept 3.8 -- Modules][]

Bugfixes:

* Removed non-existant key chain.
* Fixed bug in snippets.

Changes:

* Updated Adeptsense and documentation.
* [`events.handlers`][] is accessible.
* Added menu mnemonics for indentation size.
* Added support for indicator and hotspot [events][].
* Updated [documentation][] for installing [official modules][].
* Updated to [Scintilla][] 2.26.
* Writing custom folding for lexers is much [easier][] now.
* Added native folding for more than 60% of existing lexers. The rest still use
  folding by indentation by default.

[Textadept 3.8 -- Win32]: download/textadept_3.8.win32.zip
[Textadept 3.8 -- Mac OSX Intel 10.5+]: download/textadept_3.8.osx.zip
[Textadept 3.8 -- Linux]: download/textadept_3.8.tgz
[Textadept 3.8 -- Linux x86_64]: download/textadept_3.8.x86_64.tgz
[Textadept 3.8 -- Source]: download/textadept_3.8.src.zip
[Textadept 3.8 -- Modules]: download/textadept_3.8.modules.zip
[`events.handlers`]: api/events.html#handlers
[events]: api/events.html
[documentation]: 7_Modules.html#Getting.Modules
[official modules]: http://foicica.com/hg
[Scintilla]: http://scintilla.org
[easier]: api/lexer.html#Simple.Folding

## 3.7 (01 May 2011)

Download:

* [Textadept 3.7 -- Win32][]
* [Textadept 3.7 -- Mac OSX Intel 10.5+][]
* [Textadept 3.7 -- Linux][]
* [Textadept 3.7 -- Linux x86_64][]
* [Textadept 3.7 -- Source][]
* [Textadept 3.7 -- Modules][]

Bugfixes:

* Fixed bug in [`buffer:get_lexer()`][].

Changes:

* Changed Mac OSX Adeptsense complete key command from `~` to `Ctrl+Escape`.
* Added [PHP module][].

[Textadept 3.7 -- Win32]: download/textadept_3.7.win32.zip
[Textadept 3.7 -- Mac OSX Intel 10.5+]: download/textadept_3.7.osx.zip
[Textadept 3.7 -- Linux]: download/textadept_3.7.tgz
[Textadept 3.7 -- Linux x86_64]: download/textadept_3.7.x86_64.tgz
[Textadept 3.7 -- Source]: download/textadept_3.7.src.zip
[Textadept 3.7 -- Modules]: download/textadept_3.7.modules.zip
[`buffer:get_lexer()`]: api/buffer.html#buffer.get_lexer
[PHP module]: api/_M.php.html

## 3.7 beta 3 (01 Apr 2011)

Download:

* [Textadept 3.7 beta 3 -- Win32][]
* [Textadept 3.7 beta 3 -- Mac OSX Intel 10.5+][]
* [Textadept 3.7 beta 3 -- Linux][]
* [Textadept 3.7 beta 3 -- Linux x86_64][]
* [Textadept 3.7 beta 3 -- Source][]
* [Textadept 3.7 beta 3 -- Modules][]

Bugfixes:

* Small Adeptsense bugfixes.
* Snapopen respects filesystem encoding.
* Standard input dialogs have "Cancel" button by default.

Changes:

* Adeptsense tweaks for better completion and apidoc support.
* Language modules load a user [`post_init.lua`][] script if it exists.
* Added Ruby on Rails lexer and [module][].
* Added [RHTML module][].
* Updated mime-types and prioritize by shebang, pattern, and then file
  extension.
* [`buffer:get_lexer(true)`] returns the lexer at the caret position.
* Adeptsense can be triggered in embedded lexers now.
* Added C standard library and Lua C API to C/C++ Adeptsense.
* Lua module fields are now in Lua Adeptsense.
* Updated to [Scintilla][] 2.25.
* Rewrote [`_m.textadept.snippets`][] with syntax changes.
* `Alt+I` (`Ctrl+I` on Mac OSX) is now "Select Snippet" instead of "Show Style".
  "Show Style" is now `Ctrl+Alt+Shift+I` (`Ctrl+Apple+Shift+I`).
* Adeptsense can exclude types matched by `sense.syntax.type_declarations`
  patterns.
* `Ctrl+T, V` (`Apple+T, V` on Mac OSX) keychain for toggling whitespace, wrap,
  etc. is now `Ctrl+Shift+B` (`Apple+Shift+B`).
* Key commands and menu definition syntax changed.
* Snapopen allows for multiple-selection.
* [`gui.print()`][] handles `nil` and non-string arguments properly.
* Officially supported modules have their own [repositories][] and are available
  as a separate download.

[Textadept 3.7 beta 3 -- Win32]: download/textadept_3.7_beta_3.win32.zip
[Textadept 3.7 beta 3 -- Mac OSX Intel 10.5+]: download/textadept_3.7_beta_3.osx.zip
[Textadept 3.7 beta 3 -- Linux]: download/textadept_3.7_beta_3.tgz
[Textadept 3.7 beta 3 -- Linux x86_64]: download/textadept_3.7_beta_3.x86_64.tgz
[Textadept 3.7 beta 3 -- Source]: download/textadept_3.7_beta_3.src.zip
[Textadept 3.7 beta 3 -- Modules]: download/textadept_3.7_beta_3.modules.zip
[`post_init.lua`]: 7_Modules.html#Customizing.Modules
[module]: api/_M.rails.html
[RHTML module]: api/_M.rhtml.html
[`buffer:get_lexer(true)`]: api/buffer.html#buffer.get_lexer
[Scintilla]: http://scintilla.org
[`_m.textadept.snippets`]: api/textadept.snippets.html
[`gui.print()`]: api/ui.html#print
[repositories]: http://foicica.com/hg

## 3.7 beta 2 (01 Mar 2011)

Download:

* [Textadept 3.7 beta 2 -- Win32][]
* [Textadept 3.7 beta 2 -- Mac OSX Intel 10.5+][]
* [Textadept 3.7 beta 2 -- Linux][]
* [Textadept 3.7 beta 2 -- Linux x86_64][]
* [Textadept 3.7 beta 2 -- Source][]

Bugfixes:

* Fixed bug with Win32 paths in Adeptsense `goto_ctag()`.
* Adeptsense could not recognize some symbols.
* Handle `\n` sequences correctly in Adeptsense apidoc.
* Fixed bug with Adeptsense C/C++ type declarations.
* Adeptsense can now recognize more than 1 level of inheritence.
* Keychain is cleared on key command error.
* Fixed infinite loop bug in `_m.textadept.editing.select_scope()`.

Changes:

* Updated to [Scintilla][] 2.24.
* Updated mime-types.
* Line margin width is now `4`.
* Adeptsense completion list images are accessible via scripts.
* Added class context completion to Adeptsense.
* Added class type-inference through variable assignment to Adeptsense.
* Added Adeptsense tutorial.
* Added `_m.textadept.adeptsense.always_show_globals` setting for showing
  globals in completion lists.
* `Ctrl+H` (highlight word) is now `Ctrl+Shift+H`.
* `Ctrl+H` now shows Adeptsense documentation.
* Added Adeptsense `complete()` and `show_documentation()` functions to the
  menu.
* Language modules condensed into single `init.lua` file.
* Added `sense.syntax.word_chars` to Adeptsense.
* Included libpng12 build for 64-bit Debian-based Linux distros (Ubuntu).
* Added [CSS][], [HTML][], [Java][], and [Ruby][] modules with Adeptsenses.

[Textadept 3.7 beta 2 -- Win32]: download/textadept_3.7_beta_2.win32.zip
[Textadept 3.7 beta 2 -- Mac OSX Intel 10.5+]: download/textadept_3.7_beta_2.osx.zip
[Textadept 3.7 beta 2 -- Linux]: download/textadept_3.7_beta_2.tgz
[Textadept 3.7 beta 2 -- Linux x86_64]: download/textadept_3.7_beta_2.x86_64.tgz
[Textadept 3.7 beta 2 -- Source]: download/textadept_3.7_beta_2.src.zip
[Scintilla]: http://scintilla.org
[CSS]: api/_M.css.html
[HTML]: api/_M.html.html
[Java]: api/_M.java.html
[Ruby]: api/_M.ruby.html

## 3.7 beta (01 Feb 2011)

Download:

* [Textadept 3.7 beta -- Win32][]
* [Textadept 3.7 beta -- Mac OSX Intel 10.5+][]
* [Textadept 3.7 beta -- Linux][]
* [Textadept 3.7 beta -- Linux x86_64][]
* [Textadept 3.7 beta -- Source][]

Bugfixes:

* `update_ui` is called properly for `buffer_new` and `view_new` events.
* Use proper pointer type for Scintilla calls.
* Fixed bug with loading lexers from `_USERHOME` on Win32.

Changes:

* More informative error message for unfocused buffer.
* Added Adeptsense, a smarter form of autocompletion for programming languages.
* Emit a `language_module_loaded` as appropriate.
* Added indentation settings to "Buffer" menu (finally).
* Added `gui.filteredlist()` shortcut for `gui.dialog('filteredlist', ...)`.
* Can navigate between bookmarks with a filteredlist.
* Language-specific [`char_matches`][] and [`braces`][] can be defined.
* `command_entry_keypress` event accepts modifier keys.

[Textadept 3.7 beta -- Win32]: download/textadept_3.7_beta.win32.zip
[Textadept 3.7 beta -- Mac OSX Intel 10.5+]: download/textadept_3.7_beta.osx.zip
[Textadept 3.7 beta -- Linux]: download/textadept_3.7_beta.tgz
[Textadept 3.7 beta -- Linux x86_64]: download/textadept_3.7_beta.x86_64.tgz
[Textadept 3.7 beta -- Source]: download/textadept_3.7_beta.src.zip
[`char_matches`]: api/textadept.editing.html#char_matches
[`braces`]: api/textadept.editing.html#braces

## 3.6 (01 Jan 2011)

Download:

* [Textadept 3.6 -- Win32][]
* [Textadept 3.6 -- Mac OSX Intel 10.5+][]
* [Textadept 3.6 -- Linux][]
* [Textadept 3.6 -- Linux x86_64][]
* [Textadept 3.6 -- Source][]

Bugfixes:

* Fixed infinite recursion errors caused in events.
* Fix statusbar update bug with key chains.
* Do not emit `buffer_new` event when splitting the view.

Changes:

* [`buffer.rectangular_selection_modifier`][] on Linux is the Super/Windows key.
* Improved HTML lexer.
* Added Markdown, BibTeX, CMake, CUDA, Desktop Entry, F#, GLSL, and Nemerle
  lexers.
* Added [`_m.textadept.filter_through`][] module for [shell commands][].
* Moved GUI events from `core/events.lua` to `core/gui.lua`.
* Separated key command manager from key command definitions.

[Textadept 3.6 -- Win32]: download/textadept_3.6.win32.zip
[Textadept 3.6 -- Mac OSX Intel 10.5+]: download/textadept_3.6.osx.zip
[Textadept 3.6 -- Linux]: download/textadept_3.6.tgz
[Textadept 3.6 -- Linux x86_64]: download/textadept_3.6.x86_64.tgz
[Textadept 3.6 -- Source]: download/textadept_3.6.src.zip
[`buffer.rectangular_selection_modifier`]: api/buffer.html#rectangular_selection_modifier
[`_m.textadept.filter_through`]: api/textadept.filter_through.html
[shell commands]: 10_Advanced.html#Shell.Commands.and.Filtering.Text

## 3.5 (01 Dec 2010)

Download:

* [Textadept 3.5 -- Win32][]
* [Textadept 3.5 -- Mac OSX Intel 10.5+][]
* [Textadept 3.5 -- Linux][]
* [Textadept 3.5 -- Linux x86_64][]
* [Textadept 3.5 -- Source][]

Bugfixes:

* Fixed bug introduced when exposing Find in Files API.

Changes:

* Lua files are syntax-checked for errors on save.
* [Menus][] are easier to create.
* Changed [`_m.textadept.editing.enclose()`][] behavior.
* Win32 and Mac OSX packages are all-in-one bundles; GTK is no longer an
  external dependency.
* New [manual][].
* Added `file_after_save` [event][].

[Textadept 3.5 -- Win32]: download/textadept_3.5.win32.zip
[Textadept 3.5 -- Mac OSX Intel 10.5+]: download/textadept_3.5.osx.zip
[Textadept 3.5 -- Linux]: download/textadept_3.5.tgz
[Textadept 3.5 -- Linux x86_64]: download/textadept_3.5.x86_64.tgz
[Textadept 3.5 -- Source]: download/textadept_3.5.src.zip
[Menus]: api/textadept.menu.html
[`_m.textadept.editing.enclose()`]: api/textadept.editing.html#enclose
[manual]: ./
[event]: api/io.html#File.Events

## 3.4 (01 Nov 2010)

Download:

* [Textadept 3.4 -- Win32][]
* [Textadept 3.4 -- Mac OSX Intel 10.5+][]
* [Textadept 3.4 -- Linux][]
* [Textadept 3.4 -- Linux x86_64][]
* [Textadept 3.4 -- Source][]

Bugfixes:

* Fixed menu item conflicts.
* Pressing `Cancel` in the [Switch Buffers][] dialog does not jump to the
  selected buffer anymore.
* Autocomplete lists sort properly for machines with a different locale.
* Statusbar is not cleared when set from a key command.
* Unreadable files are handled appropriately.

Changes:

* Multi-language lexers (HTML, PHP, RHTML, etc.) are processed as fast as single
  language ones, resulting in a huge speed improvement.
* An `update_ui` event is triggered after a Lua command is entered.
* [`gui.dialog()`][] can take tables of strings as arguments now.
* [`_m.textadept.snapopen.open()`][] takes a recursion depth as a parameter and
  falls back on a [`DEFAULT_DEPTH`][] if necessary.
* Removed `_m.textadept.editing.smart_cutcopy()` and
  `_m.textadept.editing.squeeze()` functions.
* Added `_m.textadept.editing.SAVE_STRIPS_WS` option to disable strip whitespace
  on save.
* Changed locale implementation. Locale files are much easier to create now.
* [`gui.statusbar_text`][] is now readable instead of being write-only.
* Can [highlight][] all occurances of a word.
* Added jsp lexer.
* More consistant handling of `\` directory separator for Win32.
* Consolidated `textadept.h` and `lua_interface.c` into single `textadept.c`
  file.
* Added [`_G.timeout()`][] function for calling functions and/or events after a
  period of time.
* Find in files is accessible through [find API][].
* Updated to [Scintilla][] 2.22.
* Renamed `_G.MAC` to [`_G.OSX`][].

[Textadept 3.4 -- Win32]: download/textadept_3.4.win32.zip
[Textadept 3.4 -- Mac OSX Intel 10.5+]: download/textadept_3.4.osx.zip
[Textadept 3.4 -- Linux]: download/textadept_3.4.tgz
[Textadept 3.4 -- Linux x86_64]: download/textadept_3.4.x86_64.tgz
[Textadept 3.4 -- Source]: download/textadept_3.4.src.zip
[Switch Buffers]: 4_WorkingWithFiles.html#Buffer.Browser
[`gui.dialog()`]: api/ui.html#dialog
[`_m.textadept.snapopen.open()`]: api/textadept.snapopen.html#open
[`DEFAULT_DEPTH`]: api/textadept.snapopen.html#DEFAULT_DEPTH
[`gui.statusbar_text`]: api/ui.html#statusbar_text
[highlight]: 6_AdeptEditing.html#Word.Highlight
[`_G.timeout()`]: api/_G.html#timeout
[find API]: api/gui.find.html#find_in_files
[Scintilla]: http://scintilla.org
[`_G.OSX`]: api/_G.html#OSX

## 3.3 (01 Oct 2010)

Download:

* [Textadept 3.3 -- Win32][]
* [Textadept 3.3 -- Mac OSX Intel 10.5+][]
* [Textadept 3.3 -- Linux][]
* [Textadept 3.3 -- Linux x86_64][]
* [Textadept 3.3 -- Source][]

Bugfixes:

* Fixed buggy snippet menu.

Changes:

* Added [`_m.textadept.snapopen`][] module with menu options for rapidly opening
  files.

[Textadept 3.3 -- Win32]: download/textadept_3.3.win32.zip
[Textadept 3.3 -- Mac OSX Intel 10.5+]: download/textadept_3.3.osx.zip
[Textadept 3.3 -- Linux]: download/textadept_3.3.tgz
[Textadept 3.3 -- Linux x86_64]: download/textadept_3.3.x86_64.tgz
[Textadept 3.3 -- Source]: download/textadept_3.3.src.zip
[`_m.textadept.snapopen`]: api/textadept.snapopen.html

## 3.2 (01 Sep 2010)

Download:

* [Textadept 3.2 -- Win32][]
* [Textadept 3.2 -- Mac OSX Intel 10.5+][]
* [Textadept 3.2 -- Linux][]
* [Textadept 3.2 -- Linux x86_64][]
* [Textadept 3.2 -- Source][]

Bugfixes:

* Fixed "Replace All" infinite loop bug.

Changes:

* Updated to the new [Scintillua][] that does not required patched Scintilla.
* Updated to [Scintilla][] 2.21.

[Textadept 3.2 -- Win32]: download/textadept_3.2.win32.zip
[Textadept 3.2 -- Mac OSX Intel 10.5+]: download/textadept_3.2.osx.zip
[Textadept 3.2 -- Linux]: download/textadept_3.2.tgz
[Textadept 3.2 -- Linux x86_64]: download/textadept_3.2.x86_64.tgz
[Textadept 3.2 -- Source]: download/textadept_3.2.src.zip
[Scintillua]: http://foicica.com/scintillua
[Scintilla]: http://scintilla.org

## 3.1 (21 Aug 2010)

Download:

* [Textadept 3.1 -- Win32][]
* [Textadept 3.1 -- Mac OSX Intel 10.5+][]
* [Textadept 3.1 -- Linux][]
* [Textadept 3.1 -- Linux x86_64][]
* [Textadept 3.1 -- Source][]

Bugfixes:

* Fixed memory leak in Mac OSX.

Changes:

* Refactored key commands to support [propagation][].
* Updated to [Scintilla][] 2.20.
* Added Lua autocompletion.

[Textadept 3.1 -- Win32]: download/textadept_3.1.win32.zip
[Textadept 3.1 -- Mac OSX Intel 10.5+]: download/textadept_3.1.osx.zip
[Textadept 3.1 -- Linux]: download/textadept_3.1.tgz
[Textadept 3.1 -- Linux x86_64]: download/textadept_3.1.x86_64.tgz
[Textadept 3.1 -- Source]: download/textadept_3.1.src.zip
[propagation]: api/keys.html#Propagation
[Scintilla]: http://scintilla.org

## 3.0 (01 Jul 2010)

Please see the [2 to 3 migration guide][] for upgrading from Textadept 2 to
Textadept 3.

Download:

* [Textadept 3.0 -- Win32][]
* [Textadept 3.0 -- Mac OSX Intel 10.5+][]
* [Textadept 3.0 -- Linux][]
* [Textadept 3.0 -- Linux x86_64][]
* [Textadept 3.0 -- Source][]

Bugfixes:

* None

Changes:

* More accurate CSS and Diff lexers.

[2 to 3 migration guide]: 14_Appendix.html#Textadept.2.to.3
[Textadept 3.0 -- Win32]: download/textadept_3.0.win32.zip
[Textadept 3.0 -- Mac OSX Intel 10.5+]: download/textadept_3.0.osx.zip
[Textadept 3.0 -- Linux]: download/textadept_3.0.tgz
[Textadept 3.0 -- Linux x86_64]: download/textadept_3.0.x86_64.tgz
[Textadept 3.0 -- Source]: download/textadept_3.0.src.zip

## 3.0 beta (21 Jun 2010)

Download:

* [Textadept 3.0 beta -- Win32][]
* [Textadept 3.0 beta -- Mac OSX Intel 10.5+][]
* [Textadept 3.0 beta -- Linux][]
* [Textadept 3.0 beta -- Linux x86_64][]
* [Textadept 3.0 beta -- Source][]

Bugfixes:

* Fixed Mac OSX paste issue.
* Fixed [`buffer:text_range()`][] argcheck problem.

Changes:

* Remove initial "Untitled" buffer when necessary.
* Moved core extension modules into [`textadept`][] module.
* New [API][].
* `~/.textadept/init.lua` is created for you if one does not exist.
* No more autoload of `~/.textadept/key_commands.lua` and
  `~/.textadept/snippets.lua`
* Updated to [Scintilla][] 2.12.
* [Abbreviated][] Lua commands in the command entry.
* Dynamic command line [arguments][].
* Added statusbar notification on [`reset()`][].
* Added Gtkrc, Prolog, and Go lexers.

[Textadept 3.0 beta -- Win32]: download/textadept_3.0_beta.win32.zip
[Textadept 3.0 beta -- Mac OSX Intel 10.5+]: download/textadept_3.0_beta.osx.zip
[Textadept 3.0 beta -- Linux]: download/textadept_3.0_beta.tgz
[Textadept 3.0 beta -- Linux x86_64]: download/textadept_3.0_beta.x86_64.tgz
[Textadept 3.0 beta -- Source]: download/textadept_3.0_beta.src.zip
[`buffer:text_range()`]: api/buffer.html#buffer.text_range
[`textadept`]: api/textadept.html
[API]: api
[Scintilla]: http://scintilla.org
[Abbreviated]: 10_Advanced.html#Command.Entry
[arguments]: api/args.html
[`reset()`]: api/_G.html#reset

## 2.2 (11 May 2010)

Download:

* [Textadept 2.2 -- Win32][]
* [Textadept 2.2 -- Mac OSX Intel 10.5+][]
* [Textadept 2.2 -- Linux][]
* [Textadept 2.2 -- Linux x86_64][]
* [Textadept 2.2 -- Source][]

Bugfixes:

* Save buffer before compiling or running.
* Fixed error in the manual for `~/.textadept/init.lua` example.
* Ignore `file://` prefix for filenames.

Changes:

* [`_USERHOME`][] comes before [`_HOME`][] in `package.path` so `require`
  searches `~/.textadept/` first.

[Textadept 2.2 -- Win32]: download/textadept_2.2.win32.zip
[Textadept 2.2 -- Mac OSX Intel 10.5+]: download/textadept_2.2.osx.zip
[Textadept 2.2 -- Linux]: download/textadept_2.2.tgz
[Textadept 2.2 -- Linux x86_64]: download/textadept_2.2.x86_64.tgz
[Textadept 2.2 -- Source]: download/textadept_2.2.src.zip
[`_USERHOME`]: api/_G.html#_USERHOME
[`_HOME`]: api/_G.html#_HOME

## 2.2 beta 2 (01 May 2010)

Download:

* [Textadept 2.2 beta 2 -- Win32][]
* [Textadept 2.2 beta 2 -- Mac OSX Intel 10.5+][]
* [Textadept 2.2 beta 2 -- Linux][]
* [Textadept 2.2 beta 2 -- Linux x86_64][]
* [Textadept 2.2 beta 2 -- Source][]

Bugfixes:

* Fixed crash with [`buffer:text_range()`][].
* Fixed snippets bug with `%n` sequences.
* Respect tab settings for snippets.
* Fixed help hanging bug in Win32.
* Fixed Lua module commands bug.

Changes:

* Added BSD support.
* Removed kill-ring from editing module.
* [Run][] and [compile][] commands are in language modules.
* [Block comment][] strings are in language modules now.
* Remove "Untitled" buffer when necessary.
* Moved "Search" menu into "Tools" menu to prevent `Alt+S` key conflict.
* Rewrote lexers implementation.
* Added Inform, Lilypond, and NSIS lexers.
* `_m.textadept.editing.enclosure` is now an accessible table.

[Textadept 2.2 beta 2 -- Win32]: download/textadept_2.2_beta2.win32.zip
[Textadept 2.2 beta 2 -- Mac OSX Intel 10.5+]: download/textadept_2.2_beta2.osx.zip
[Textadept 2.2 beta 2 -- Linux]: download/textadept_2.2_beta2.tgz
[Textadept 2.2 beta 2 -- Linux x86_64]: download/textadept_2.2_beta2.x86_64.tgz
[Textadept 2.2 beta 2 -- Source]: download/textadept_2.2_beta2.src.zip
[`buffer:text_range()`]: api/buffer.html#buffer.text_range
[run]: api/_M.html#Run
[compile]: api/_M.html#Compile
[Block comment]: api/_M.html#Block.Comment

## 2.2 beta (01 Apr 2010)

Download:

* [Textadept 2.2 beta -- Win32][]
* [Textadept 2.2 beta -- Mac OSX Intel 10.5+][]
* [Textadept 2.2 beta -- Linux][]
* [Textadept 2.2 beta -- Linux x86_64][]
* [Textadept 2.2 beta -- Source][]

Bugfixes:

* Fixed transform bug in snippets.
* Fixed bug with Io lexer mime-type.
* Fixed embedded css/javascript bug in HTML lexer.

Changes:

* Removed `_m.textadept.mlines` module since Scintilla's multiple selections
  supercedes it.
* Removed side pane.
* New [`gui.dialog('filteredlist', ...)][] from [gtdialog][].
* Can select buffer from filteredlist dialog (replacing side pane buffer list).
* Can select lexer from filteredlist dialog.
* Can have user `key_commands.lua`, `snippets.lua`, `mime_types.conf`,
  `locale.conf` that are loaded by their respective modules.
* Added Matlab/Octave lexer.
* Backspace deletes auto-inserted character pairs.
* Added notification for session files not found.
* Snippets use multiple carets.
* Removed api file support.

[Textadept 2.2 beta -- Win32]: download/textadept_2.2_beta.win32.zip
[Textadept 2.2 beta -- Mac OSX Intel 10.5+]: download/textadept_2.2_beta.osx.zip
[Textadept 2.2 beta -- Linux]: download/textadept_2.2_beta.tgz
[Textadept 2.2 beta -- Linux x86_64]: download/textadept_2.2_beta.x86_64.tgz
[Textadept 2.2 beta -- Source]: download/textadept_2.2_beta.src.zip
[gtdialog]: http://foicica.com/gtdialog
[`gui.dialog('filteredlist', ...)]: api/ui.html#dialog

## 2.1 (01 Mar 2010)

Download:

* [Textadept 2.1 -- Win32][]
* [Textadept 2.1 -- Mac OSX Intel 10.5+][]
* [Textadept 2.1 -- Linux][]
* [Textadept 2.1 -- Linux x86_64][]
* [Textadept 2.1 -- Source][]

Bugfixes:

* Do not close files opened from command line when loading PM session.
* Fixed bug for running a file with no path.
* Fixed error message for session file not being found.
* Fixed key command for word autocomplete on Win32.
* Changed conflicting menu shortcut for Lexers menu.
* Fixed typos in templates generated by modules PM browser.

Changes:

* Added Dot and JSON lexers.
* Search [`_USERHOME`][] in addition to [`_HOME`][] for themes.
* Added command line switch for not loading/saving session.
* Modified key commands to be more key-layout agnostic.
* Added `reset_before` and `reset_after` events while `textadept.reset()` is
  being run.
* Reload current lexer module after `textadept.reset()`.
* Added `~/.textadept/modules/` to `package.path`.
* Updated to [Scintilla][] 2.03.
* Modified quit and close dialogs to be more readable.

[Textadept 2.1 -- Win32]: download/textadept_2.1.win32.zip
[Textadept 2.1 -- Mac OSX Intel 10.5+]: download/textadept_2.1.osx.zip
[Textadept 2.1 -- Linux]: download/textadept_2.1.tgz
[Textadept 2.1 -- Linux x86_64]: download/textadept_2.1.x86_64.tgz
[Textadept 2.1 -- Source]: download/textadept_2.1.src.zip
[`_USERHOME`]: api/_G.html#_USERHOME
[`_HOME`]: api/_G.html#_HOME
[Scintilla]: http://scintilla.org

## 2.0 (01 Oct 2009)

Download:

* [Textadept 2.0 -- Win32][]
* [Textadept 2.0 -- Mac OSX Intel 10.5+][]
* [Textadept 2.0 -- Linux][]
* [Textadept 2.0 -- Linux x86_64][]
* [Textadept 2.0 -- Source][]

Bugfixes:

* Fixed bug with reloading PM width from session file.
* Only show a non-nil PM context menu.
* Fixed bug in `modules/textadept/lsnippets.lua`.
* Fixed bug in `core/ext/mime_types.lua` caused during `textadept.reset()`.
* Close all buffers before loading a session.
* Identify `shellscript` files correctly.
* D lexer no longer has key-command conflicts.

Changes:

* Refactored `modules/textadept/lsnippets.lua`.
* Updated key commands.
* Allow PM modules in the `~/.textadept` user directory.
* Added [`style_whitespace`][] to [lexers][] for custom styles.
* Added standard `F3` key command for "Find Next" for Windows/Linux.

[Textadept 2.0 -- Win32]: download/textadept_2.0.win32.zip
[Textadept 2.0 -- Mac OSX Intel 10.5+]: download/textadept_2.0.dmg
[Textadept 2.0 -- Linux]: download/textadept_2.0.tgz
[Textadept 2.0 -- Linux x86_64]: download/textadept_2.0.x86_64.tgz
[Textadept 2.0 -- Source]: download/textadept_2.0.src.zip
[`style_whitespace`]: api/lexer.html#style_whitespace
[lexers]: api/lexer.html

## 2.0 beta (31 Jul 2009)

Download:

* [Textadept 2.0 beta -- Win32][]
* [Textadept 2.0 beta -- Linux][]
* [Textadept 2.0 beta -- Linux x86_64][]
* [Textadept 2.0 beta -- Source][]

Bugfixes:

* Alphabetize lexer list.
* Fixed some locale issues.
* Fixed some small memory leaks.
* Try a [list of encodings][] rather than just UTF-8 so "conversion failed" does
  not happen so often.
* Restore a manually set lexer.

Changes:

* Removed `_m.textadept.macros` module and respective PM browser (use Lua
  instead).
* Linux version can be installed and run from anywhere; no need to recompile
  anymore.
* Added many more [events][] to hook into lots of core functionality.
* Updated to [Scintilla][] 1.79.
* Run module allows more flexible [compile commands][] and [run commands][].
* Save project manager cursor over sessions.
* Allow mime-types and compile and run commands to be user-redefinable in user
  scripts.
* Use `~/.textadept/` for holding user lexers, themes, sessions, etc.
* Added "Help" menu linking to Manual and LuaDoc.
* Textadept compiles as C99 code. (Drops Microsoft Visual Studio support.)
* Sessions functionality moved to `modules/textadept/session.lua` from
  `core/file_io.lua`.
* The `char_added` event now passes an int, not a string, to handler functions.
* Replaced [cocoaDialog][] and [lua_dialog][] with my C-based [gtdialog][].
* [Incremental find][] via the Lua command entry.
* *NO* dependencies other than [GTK][] on _all_ platforms.

  + Win32 no longer requires the MSVC++ 2008 Runtime.
  + Linux no longer requires `libffi`.
  + Mac OSX no longer requires [cocoaDialog][].

* Can cross compile to Win32 from Linux.
* Removed confusing `local function` and `local table` LuaDoc.
* Rewrote the manual and most of the documentation.

[Textadept 2.0 beta -- Win32]: download/textadept_2.0_beta.win32.zip
[Textadept 2.0 beta -- Linux]: download/textadept_2.0_beta.tgz
[Textadept 2.0 beta -- Linux x86_64]: download/textadept_2.0_beta.x86_64.tgz
[Textadept 2.0 beta -- Source]: download/textadept_2.0_beta.src.zip
[list of encodings]: api/io.html#try_encodings
[events]: api/events.html
[Scintilla]: http://scintilla.org
[compile commands]: api/textadept.run.html#compile_commands
[run commands]: api/textadept.run.html#run_commands
[gtdialog]: http://foicica.com/gtdialog
[lua_dialog]: http://luaforge.net/projects/lua-dialog
[cocoaDialog]: http://cocoadialog.sf.net
[Incremental find]: 6_AdeptEditing.html#Find.Incremental
[GTK]: http://gtk.org

## 1.6 (01 Apr 2009)

Download:

* [Textadept 1.6 -- Win32][]
* [Textadept 1.6 -- Mac OSX Intel 10.5+][]
* [Textadept 1.6 -- Linux][]
* [Textadept 1.6 -- Linux x86_64][]
* [Textadept 1.6 -- Source][]

Bugfixes:

* Fixed `NULL` byte bug associated with Lua interface due to multi-encoding
  support.
* Find marker is colored consistently.
* Fixed issue with buffer browser cursor saving.
* Fixed block character insertion issue on GTK-OSX.

Updates:

* Trimmed theme files.
* Added `file_before_save` [event][].

[Textadept 1.6 -- Win32]: download/textadept_1.6.win32.zip
[Textadept 1.6 -- Mac OSX Intel 10.5+]: download/textadept_1.6.dmg
[Textadept 1.6 -- Linux]: download/textadept_1.6.tgz
[Textadept 1.6 -- Linux x86_64]: download/textadept_1.6.x86_64.tgz
[Textadept 1.6 -- Source]: download/textadept_1.6.src.zip
[event]: api/io.html#File.Events

## 1.6 beta (01 Mar 2009)

Download:

* [Textadept 1.6 beta -- Win32][]
* [Textadept 1.6 beta -- Mac OSX Intel 10.5+][]
* [Textadept 1.6 beta -- Linux][]
* [Textadept 1.6 beta -- Linux x86_64][]
* [Textadept 1.6 beta -- Source][]

Bugfixes:

* Fixed bookmarks bugs.
* PM browsers are not re-added to the list again on `textadept.reset()`.
* Fixed ctags PM browser bug with filenames.
* Marker colors are set for all views now.
* Fixed never-ending "reload modified file?" dialog bug.
* Fixed key command for `m_snippets.list`.
* Fixed issues with [`_m.textadept.run`][] module.
* Fixed document modification status bug for unfocused split views.
* Fixed filename encoding issues for Windows.

Updates:

* Added key commands and menu items to navigate "Find in Files" list.
* The `recent_files` popup list behaves better.
* Attempt to preserve existing EOL mode for opened files.
* Add drag-and-dropped directories to the PM browser list.
* Removed `project` PM browser.
* Multiple character encoding support for opening and saving files.

[Textadept 1.6 beta -- Win32]: download/textadept_1.6beta.win32.zip
[Textadept 1.6 beta -- Mac OSX Intel 10.5+]: download/textadept_1.6beta.dmg
[Textadept 1.6 beta -- Linux]: download/textadept_1.6beta.tgz
[Textadept 1.6 beta -- Linux x86_64]: download/textadept_1.6beta.x86_64.tgz
[Textadept 1.6 beta -- Source]: download/textadept_1.6beta.src.zip
[`_m.textadept.run`]: api/textadept.run.html

## 1.5 (20 Feb 2009)

Download:

* [Textadept 1.5 -- Win32][]
* [Textadept 1.5 -- Mac OSX Intel 10.5+][]
* [Textadept 1.5 -- Linux][]
* [Textadept 1.5 -- Linux x86_64][]
* [Textadept 1.5 -- Source][]

Bugfixes:

* Fixed some corner cases in Find in Files user interface.
* Fixed some OSX key command issues for consistency.
* Fixed some key command modifiers for "enclose in" series.

Updates:

* Consolidated `core/ext/key_commands_{std,mac}.lua` into single
  `core/ext/key_commands.lua`.
* Can use the `Tab` and `Shift+Tab` keys for snippets now.
* Removed support for Textmate-style snippets in favor of Lua-style snippets.
* Load drag-and-dropped directories into file browser.
* Can toggle showing "dot" files in file browser.
* Prompt for file reload when files are modified outside Textadept.
* Added `textadept.context_menu` field for right-click inside Scintilla.
* Project Manager cursors are saved and restored.
* Only use escape sequences in Lua pattern searches.
* Rewrote `modules/textadept/run.lua` to be easier to use and configure.
* Find in Files marks the selected line for easier reference.
* Save special buffers in session file (e.g. error buffer, message buffer, etc.)
* Moved mime-types into `core/ext/mime_types.conf` configuration file.
* Moved localization into `core/locale.conf` configuration file.

[Textadept 1.5 -- Win32]: download/textadept_1.5.win32.zip
[Textadept 1.5 -- Mac OSX Intel 10.5+]: download/textadept_1.5.dmg
[Textadept 1.5 -- Linux]: download/textadept_1.5.tgz
[Textadept 1.5 -- Linux x86_64]: download/textadept_1.5.x86_64.tgz
[Textadept 1.5 -- Source]: download/textadept_1.5.src.zip

## 1.4 (10 Feb 2009)

Download:

* [Textadept 1.4 -- Win32][]
* [Textadept 1.4 -- Mac OSX Intel 10.5+][]
* [Textadept 1.4 -- Linux][]
* [Textadept 1.4 -- Linux x86_64][]
* [Textadept 1.4 -- Source][]

Bugfixes:

* Handle empty clipboard properly.
* Fixed some widget focus issues.
* Fixed a couple Find in Files bugs.
* Workaround for GTK-OSX pasting issue.

Updates:

* Added menu options for changing line endings.
* The Project Manager Entry responds better.
* Improved Lua State integrity for critical data.
* Keep only 10 items in Find/Replace history.
* Special buffers are not "Untitled" anymore.
* Moved `textadept.locale` table to `_G`.

[Textadept 1.4 -- Win32]: download/textadept_1.4.win32.zip
[Textadept 1.4 -- Mac OSX Intel 10.5+]: download/textadept_1.4.dmg
[Textadept 1.4 -- Linux]: download/textadept_1.4.tgz
[Textadept 1.4 -- Linux x86_64]: download/textadept_1.4.x86_64.tgz
[Textadept 1.4 -- Source]: download/textadept_1.4.src.zip

## 1.3 (30 Jan 2009)

Download:

* [Textadept 1.3 -- Win32][]
* [Textadept 1.3 -- Mac OSX Intel 10.5+][]
* [Textadept 1.3 -- Linux][]
* [Textadept 1.3 -- Linux x86_64][]
* [Textadept 1.3 -- Source][]

Bugfixes:

* Binary files are opened and handled properly.
* Drag-and-dropped files are now opened in the correct split view they were
  dropped in.
* Fixed some various GTK-OSX UI issues.
* Fixed a special case of "Replace All".
* Clicking "Ok" closes any error dialogs on init.
* Fixed statusbar glitch when creating new buffers.
* Windows' CR+LF line endings are handled properly.
* Do not go to non-existent buffer index when loading session.
* Do not attempt to open non-existent files when double-clicking error messages.

Updates:

* Look for `~/.ta_theme` for setting Textadept `_THEME`.
* `_THEME` can now be a directory path.
* Themes now contain their own `lexer.lua` for defining lexer colors.
* Added "Find in Files" support.
* Can set the Project Manager cursor through Lua.
* Look for `~/.ta_modules` to load instead of default modules in `init.lua`.
* Added "Replace All" for just selected text.
* Removed menu label text in favor of using menu id numbers for menu actions.
* Added Find/Replace history.
* Use a combo entry for the Project Manager browser entry.
* Print messages to a split view instead of switching buffers.

[Textadept 1.3 -- Win32]: download/textadept_1.3.win32.zip
[Textadept 1.3 -- Mac OSX Intel 10.5+]: download/textadept_1.3.dmg
[Textadept 1.3 -- Linux]: download/textadept_1.3.tgz
[Textadept 1.3 -- Linux x86_64]: download/textadept_1.3.x86_64.tgz
[Textadept 1.3 -- Source]: download/textadept_1.3.src.zip

## 1.2 (21 Jan 2009)

Download:

* [Textadept 1.2 -- Win32][]
* [Textadept 1.2 -- Mac OSX Intel 10.5+][]
* [Textadept 1.2 -- Linux][]

Bugfixes:

* None.

Updates:

* Windows command line support ("Open With Textadept" works too).
* New [`_m.textadept.run`][] module for compiling and running programs. Output
  is displayed in a message buffer and you can double-click errors and warnings
  to go to them in the source file.

[Textadept 1.2 -- Win32]: download/textadept_1.2.win32.zip
[Textadept 1.2 -- Mac OSX Intel 10.5+]: download/textadept_1.2.dmg
[Textadept 1.2 -- Linux]: download/textadept_1.2.tgz
[`_m.textadept.run`]: api/textadept.run.html

## 1.1 (11 Jan 2009)

Download:

* [Textadept 1.1 -- Win32][]
* [Textadept 1.1 -- Mac OSX Intel 10.5+][]
* [Textadept 1.1 -- Linux][]

Bugfixes:

* Fixed `core/ext/key_commands_std.lua` key conflict (`Ctrl+V`).

Updates:

* Dramatic speed increase in lexing for large, single-language files.
* Added [localization][] support.
* Added [bookmarks][] support.
* All `require` statements have been moved to `init.lua` for easy module
  configuration.
* Various improvements to efficiency, speed, and readability of source code.
* Manually parse `~/.gtkrc-2.0` on Mac since GTK-OSX does not do it.

[Textadept 1.1 -- Win32]: download/textadept_1.1_win32.zip
[Textadept 1.1 -- Mac OSX Intel 10.5+]: download/textadept_1.1.dmg
[Textadept 1.1 -- Linux]: download/textadept_1.1.tgz
[localization]: api/_L.html
[bookmarks]: api/textadept.bookmarks.html

## 1.0 (01 Jan 2009)

Download:

* [Textadept 1.0 -- Win32][]
* [Textadept 1.0 -- Mac OSX Intel 10.5+][]
* [Textadept 1.0 -- Linux][]

Bugfixes:

* Fixed bug with placeholders in Lua-style snippets.
* Fixed view grow/shrink error thrown when the view is not split.
* Various fixes to recognize windows directory separators.
* Fixed some Find bugs.
* Fixed macro recording and playback bugs.

Updates:

* Added actions for all menu items.
* Added Lua interface functions and fields for the [find][] box.
* Nearly full Mac OSX support with [GTK-OSX][].
* Compile [LPeg][] and [LuaFileSystem][] libraries into Textadept by default.
* Use UTF-8 encoding by default.
* Added `light` color theme used by default.
* New Textadept icons.
* Added a true project manager.

[Textadept 1.0 -- Win32]: download/textadept_1.0_win32.zip
[Textadept 1.0 -- Mac OSX Intel 10.5+]: download/textadept_1.0.dmg
[Textadept 1.0 -- Linux]: download/textadept_1.0.tgz
[find]: api/gui.find.html
[GTK-OSX]: http://www.gtk.org/download/macos.php
[LPeg]: http://www.inf.puc-rio.br/~roberto/lpeg/lpeg.html
[LuaFileSystem]: http://keplerproject.github.com/luafilesystem/

## 0.6 (03 Oct 2008)

Download:

* [Textadept 0.6 -- Win32][]
* [Textadept 0.6 -- Linux][]
* [Textadept 0.6 -- Linux x86_64][]

Bugfixes:

* Gracefully exit when `core/init.lua` fails to load.

Updates:

* Windows support! (finally)
* [Theming][] support (SciTE theme used by default).
* Added `textadept.size` field and save it in session files.
* Some C++ API-simplifying changes.
* Drag-and-drop files into Textadept works as expected.
* Revised [manual][].
* Buffer and View properties are no longer set in C++, but in Lua through
  "buffer_new" and "view_new" event handlers respectively.
* File types can be recognized by [pattern matching][] the first line.

[Textadept 0.6 -- Win32]: download/ta_beta_r6_win32.zip
[Textadept 0.6 -- Linux]: download/ta_beta_r6.tgz
[Textadept 0.6 -- Linux x86_64]: download/ta_beta_r6_x86_64.tgz
[Theming]: 8_Themes.html
[manual]: ./
[pattern matching]: 9_Preferences.html#Detect.by.Pattern

## 0.5 (23 Jul 2008)

Download:

* [Textadept 0.5 -- Linux][]
* [Textadept 0.5 -- Linux x86_64][]

Bugfixes:

* Fixed bug in Lua module when there is no matching file to go to.

Updates:

* Added user-friendly key commands and menus.
* Added 43 more lexers.
* Moved block-comment commands from language modules to `textadept.editing`
  module.
* Updated some Luadoc.

[Textadept 0.5 -- Linux]: download/ta_beta_r5.tgz
[Textadept 0.5 -- Linux x86_64]: download/ta_beta_r5_x86_64.tgz

## 0.4 (25 Jun 2008)

Download:

* [Textadept 0.4 -- Mac OSX Intel 10.5+][]
* [Textadept 0.4 -- Linux][]
* [Textadept 0.4 -- Linux x86_64][]

Bugfixes:

* Fixed bug with "%" being contained in text to replace.
* Fixed compile warnings.
* Fixed bug for menu actions on non-focused buffer.

Updates:

* Added [bookmark][] support through `modules/textadept/bookmarks.lua` (not
  loaded by default).
* Added icons to Textadept.
* Added a modules browser for adding, deleting, and editing modules easily.
* Consolidated source files into `textadept.c`, `textadept.h`, and
  `lua_interface.c`.
* Always load project manager settings from session file if available.
* Include `liblua5.1.a` for compiling Lua into Textadept.
* Added true [tab-completion][] to Lua command entry.
* Added Doxygen documentation for C source files.
* Updated Luadoc, and added Textadept manual.

[Textadept 0.4 -- Mac OSX Intel 10.5+]: download/ta_beta_r4_osx.tgz
[Textadept 0.4 -- Linux]: download/ta_beta_r4.tgz
[Textadept 0.4 -- Linux x86_64]: download/ta_beta_r4_x86_64.tgz
[bookmark]: api/textadept.bookmarks.html
[tab-completion]: 10_Advanced.html#Tab.Completion

## 0.3 (04 Mar 2008)

Download:

* [Textadept 0.3 -- Linux][]

Bugfixes:

* Fixed bug in editing module's `select_indented_block()`.
* Fixed empty [`buffer.filename`][] bug in `textadept.io.save_as()`.
* Fixed setting of Ruby lexer after detecting filetype.

Updates:

* Makefile builds Textadept to optimize for small size.
* Lua is no longer an external dependency and built into Textadept.
* [Zenity][] is no longer a dependency on Linux. [lua_dialog][] is used instead.
* Resources from `io.popen()` are handled more appropriately.
* Added `textadept.reset()` function for for reloading Lua scripts.
* Added new find in files project manager browser.
* Fixed some code redundancy and typos in documentation.

[Textadept 0.3 -- Linux]: download/ta_beta_r3.tgz
[`buffer.filename`]: api/buffer.html#filename
[Zenity]: http://live.gnome.org/Zenity
[lua_dialog]: http://luaforge.net/projects/lua-dialog

## 0.2 (20 Dec 2007)

Download:

* [Textadept 0.2 -- Mac OSX Intel 10.5+][]
* [Textadept 0.2 -- Linux][]

Bugfixes:

* Fixed command line parameters bug.
* Fixed `package.path` precedence bug.
* Use 8 style bits by default.

Updates:

* Scintilla-st.
* Lexers.
* Improved support for embedded language-specific snippets.

[Textadept 0.2 -- Mac OSX Intel 10.5+]: download/ta_beta_r2.1_osx.tgz
[Textadept 0.2 -- Linux]: download/ta_beta_r2.tgz

## 0.1 (01 Dec 2007)

Download:

* [Textadept 0.1 -- Mac OSX Intel 10.5+][]
* [Textadept 0.1 -- Linux][]

Initial Release

[Textadept 0.1 -- Mac OSX Intel 10.5+]: download/ta_beta_r1_osx.tgz
[Textadept 0.1 -- Linux]: download/ta_beta_r1.tgz