-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
72 lines (63 loc) · 2.55 KB
/
ChangeLog
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
0.0.9
-----
* Fix crashes when opening files
0.0.8
-----
* Incorporate various upstream fixes/changes from 'nano'
0.0.7
-----
* Underscores are considered part of words when moving forward/backward by words
* Incorporate various fixes/changes from 'nano' (up to about their 2.4.0 release)
* Use std::string instead of char* in more places
* Updated some code to avoid compiler warnings
* Use ‘false’ and ‘true’ instead of ‘FALSE’ and ‘TRUE’
* Always build with UTF-8 features (can still be disabled at runtime)
* Use C++ file streams instead of C-style file I/O in some places
* Convert some C-style linked-list structs to use std::list
0.0.6
-----
* Change to use libtermkey (http://www.leonerd.org.uk/code/libtermkey/) for keyboard input, instead of ncurses.
* Allow relative line movement with "go to line" feature (by prefixing amount with + or -).
* Always build with file browser enabled (removed --disable-browser option to configure).
* Remove mouse support (which never worked that well anyway).
* Remove "restricted mode".
* Remove text justification support.
* Use C++ ostream for debug logging.
* Incorporate various fixes/changes from 'nano', including:
* Support file globs (wildcards) with "include" directory in pinotrc files.
* Add syntax highlighting for "Go" language.
0.0.5
-----
* Add "linter" option to rcfile and reuse ^T (speller) shortcut to run lint
command for the current file.
* Always compile with multibuffer support
* Always compile with .pinotrc support.
* Always compile with syntax highlighting.
* Improve debug logging slightly.
* Incorporate fixes/changes from 'nano'.
* Reformat some source code.
* Remove useless code for supporting "legacy" history files that never exist.
* More work on transitioning to using C++-style code.
0.0.4
-----
* Change code from C to C++ (using C++11 features) [a lot of work remains
to be done here]
* Add "extends" command to pinotrc files to allow "syntax" blocks to bring
in color definitions from other "syntax" blocks
* Incorporate minor changes from 'nano'
* Disable "justify" and "speller" by default
* Remove support for "tiny" (less featureful) build
0.0.3
-----
* Incorporate recent changes to 'nano', most notably limited support for
vim-style file locking
0.0.2
-----
* Add M-` keyboard shortcut for executing a command but ignoring its output
0.0.1
-----
Initial release (forked from nano v2.3.1)
* Rebrand as 'pinot'
* Change from using POSIX regular expressions to PCRE regular expressions
* Support 256 colors for syntax highlighting
* Add 'underline' as an option for syntax highlighting