blob: e423e03ac1cd47e63327277ad2febb9ea942e6e5 [file] [log] [blame]
Chris Allegrettae8ad5ed2002-10-25 03:15:48 +00001CVS code -
Chris Allegretta5beed502003-01-05 20:41:21 +00002Changes
David Lawrence Ramseydc60b722002-10-25 16:08:53 +00003- General:
Chris Allegretta7662c862003-01-13 01:35:15 +00004 - Completely removed PICO_MODE, as with the search/replace
5 history patch we should have the extended functionality we can
6 without being incompatible with Pico. Removed all code for
7 different search/replace string editing and alternate shortcut
8 list. I'm sure I won't even have to ask for feedback on this
9 one :-)
10 - Add in Pico's -p flag, (-p, --preserve). To preserve the XON
11 and XOFF keys (^Q and ^S). Add warning if we invoke -p and
12 add checks for using --preserve (to skip warning) and --pico
13 (to force showing it). New flag PRESERVE, function
14 do_preserve_msg(), changes to main(), signal_init().
15 - Search history and replace history up/down cursor arrows,
16 w/history tab completion, not available w/NANO_SMALL. Changes
17 to statusq(), others (Ken Tyler). Added shortcut to
18 search/replace shortcuts so people will know it's there,
19 forced KEY_UP and KEY_DOWN defs in nano.h (Chris, in case
20 blame needs to be placed later). Minor fixes by DLR: allow ^P
21 and ^N as alternatives to the up and down arrows, make sure
22 the "Up" shortcut is displayed properly in the help menu,
23 remove a few bits of unneeded and/or warning-generating code,
24 and fix some missing statusq() prompts with --enable-tiny.
Jordi Mallach5e4b8cf2002-10-26 15:02:14 +000025 - Translation updates (see po/ChangeLog for details).
David Lawrence Ramseydc60b722002-10-25 16:08:53 +000026 - Forward-ported Chris' --disable-wrapping-as-root option from
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +000027 1.0.9. Per Jordi's suggestions, have it override
28 $SYSCONFDIR/nanorc but not ~/.nanorc. (DLR)
29 - Change all references to /etc/nanorc in the documentation to
30 $SYSCONFDIR/nanorc. (DLR)
David Lawrence Ramsey99519ae2002-11-04 16:12:19 +000031 - Minor cosmetic tweaks to the ngettext() macro, and fix to
32 properly detect systems lacking ngettext() and correctly
33 compile on them; the previous fix didn't work. (DLR)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +000034 - Fix problems with some code sections' not being #ifdef'ed out
35 when they should be, or being #ifdef'ed out improperly. (David
36 Benbennick and DLR)
37 - Change FOLLOW_SYMLINKS to NOFOLLOW_SYMLINKS, and rework the
38 associated logic accordingly, throughout the code. (David
39 Benbennick)
40 - Rework #ifdefs to not include mouse_init() at all if
41 DISABLE_MOUSE is defined or NCURSES_MOUSE_VERSION isn't. (DLR)
42 - For consistency, change many references of (!x) to (x == NULL)
43 and (x) to (x != NULL). (DLR)
44 - Define KEY_IC properly (and KEY_DC more portably) when slang
45 support is enabled, and remove the hack to work around the
46 former's not being defined. (David Benbennick and DLR)
Chris Allegretta7662c862003-01-13 01:35:15 +000047 - Miscellaneous tweaks to update_color() calls, to make sure
48 they're called at the right times and that refreshes are done
49 afterwards only when needed. (David Benbennick)
50 - Renamed [have_]past_editbuff [have_]search_offscreen. (DLR)
51 - Add the "preserve" option to the nanorc file, to match
52 nanorc.sample. (DLR)
Chris Allegretta0e7a3f52003-01-15 03:06:25 +000053 - Fixed awful scrolling in do_int_speller. Problem was
54 findnextstr() calling edit_update(), though screen updating
55 is not its business. Added checks in do_search() and
56 do_replace_loop() to do the checks. It really should not be
57 done here, as some function in winio.c should handle this,
58 but I can't seem to find a good place to put this check.
Jordi Mallach3e5ad632002-12-14 22:15:35 +000059- configure.ac:
60 - Added tr to ALL_LINGUAS (Jordi).
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +000061 - Fix now inaccurate description of --enable-tiny's effects; it
62 no longer disables NLS support. (DLR)
63 - Fix typo. (David Benbennick)
64 - Check for strcasecmp() and strncasecmp(), since they are
65 apparently only standard under BSD. (DLR)
Jordi Mallach631ee1f2003-01-15 17:40:35 +000066 - Small cleanups. Add copyright header, add autopoint support and
67 define bug report address and full package name in AC_INIT. Move
68 ALL_LINGUAS to po/LINGUAS, recommended place for gettext 0.11.
Chris Allegretta7662c862003-01-13 01:35:15 +000069- color.c:
70 update_color():
71 - Remove an unneeded edit_refresh() call after do_colorinit().
72 (David Benbennick)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +000073- cut.c:
74 do_cut_text()
75 - Fix a memory corruption problem caused by accessing edittop
76 after it was freed but before it was reset to a sane value
77 from current. (David Benbennick)
78 do_uncut_text()
79 - If uncutting more than one line of unmarked text at editbot,
80 don't center the screen, since Pico doesn't. (DLR)
Chris Allegretta688c8eb2003-01-14 23:36:11 +000081 - If uncutting previously unmarked text, uncut to end if we're
82 not at the beginning of the line, and set placewewant to 0 if
83 we are. This matches Pico's behavior. (DLR)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +000084- files.c:
Chris Allegretta7662c862003-01-13 01:35:15 +000085 load_file()
86 - Remove unneeded wmove() call. (David Benbennick)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +000087 read_line()
88 - Miscellaneous cleanups. (David Benbennick)
Chris Allegretta7662c862003-01-13 01:35:15 +000089 open_file()
90 - If we're in multibuffer mode and there's an error opening the
91 file in read-only mode, display the error message on the
92 statusbar regardless of the value of quiet. (DLR)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +000093 read_file()
94 - Miscellaneous cleanups. (David Benbennick)
95 - Fix len's being off by one when reading in Mac-format files,
96 exposed by one of David Benbennick's cleanups. (DLR)
97 - If NO_CONVERT isn't set when we first enter, and it gets set
98 while reading in the file, unset it again afterwards. (DLR)
Chris Allegretta7662c862003-01-13 01:35:15 +000099 do_insertfile()
100 - If we're in multibuffer mode and there's an error opening the
101 file that we're trying to insert, close the new buffer that we
102 made to hold it and reload the buffer we had open before.
103 (DLR)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000104 add_open_file()
105 - Fix minor logic error when determining when to resave fileage
106 and filebot. (DLR)
Chris Allegretta7662c862003-01-13 01:35:15 +0000107 load_open_file()
108 - If switching between files when CONSTUPDATE is set, only force
109 a cursor position display update if DISABLE_CURPOS isn't set.
110 This will ensure that the "Switching to [file]" messages are
111 shown. (DLR)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000112 write_file()
113 - Change lineswritten from a long to an int, to match
114 filestruct->lineno. (DLR; mismatch found by David Benbennick)
Chris Allegretta7662c862003-01-13 01:35:15 +0000115 real_dir_from_tilde()
116 - Since this is needed for proper interpretation of paths
117 containing tildes and not just for tab completion, include and
118 use it regardless of whether tab completion is disabled.
119 (David Benbennick and DLR)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000120 input_tab()
121 - Variable name change: matchBuf -> matchbuf. (DLR)
122 diralphasort()
123 - Remove the HAVE_STRCASECMP #ifdef block; see the changes to
124 configure.ac and nano.h for why. (DLR)
Chris Allegretta7662c862003-01-13 01:35:15 +0000125- global.c:
126 thanks_for_all_the_fish()
127 - Miscellaneous cleanups. (David Benbennick)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000128- move.c:
129 do_page_down()
130 - If there's a page or less of text, do an edit_update() if the
131 mark is on; otherwise, the highlight won't be displayed. (DLR)
David Lawrence Ramsey9e050ad2002-11-04 16:18:52 +0000132- nano.c:
Chris Allegretta7662c862003-01-13 01:35:15 +0000133 - Added free_history() list calls clean up, added init of list
134 headers, and modified statusq() calls (Ken Tyler).
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000135 do_prev_word()
136 - Make the assert match that in do_next_word(). (DLR)
137 do_enter()
138 - If smooth scrolling is on, and Enter is pressed on the
139 magicline, don't center the screen. (DLR)
140 do_justify()
141 - Fix memory corruption problem triggered when edittop and
142 current->next pointed to the same value and current->next was
143 destroyed during justification. (DLR)
144 - Center the screen when justification moves the cursor entirely
145 off the bottom of the screen, instead of when it moves the
146 cursor near the bottom of the screen, to more closely match
147 Pico's behavior. (DLR)
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +0000148 version()
149 - Remove obsolete reference to --enable-undo. (David Benbennick)
Chris Allegretta5ad92ac2002-12-09 00:58:51 +0000150 do_int_speller()
151 - Make internal spell program use sort -f and uniq to create a less
152 redundant word list. [The only reason this is going in during
153 feature freeze is because the int speller is useless as is and should
154 either be improved or removed. I chose improved].
Chris Allegretta3f1b6852003-01-12 23:54:05 +0000155 - Change all child error checks to use one goto (gasp!) called
156 close_pipes_and_exit, so we don't leak FDs.
Chris Allegretta334a9402002-12-16 04:25:53 +0000157 do_int_speller(), do_alt_speller()
158 - Programs now return char *, NULL for successful completion,
159 otherwise the error string to display. This allows us to give
160 more useful feedback to the user when spell checking fails.
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000161 ABCD()
162 - Renamed abcd(). (DLR)
Chris Allegretta7662c862003-01-13 01:35:15 +0000163 main()
164 - Remove an unneeded do_colorinit() call, do major cleanups, and
165 allow loading of multiple files on the command line when
166 multibuffers are used. (David Benbennick)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000167- nano.h:
168 - Make sure NO_RCFILE and COLOR_SYNTAX aren't set to the same
169 value. (DLR; discovered by Ken Tyler)
170 - If strcasecmp() and/or strncasecmp() aren't available, use
Chris Allegretta7662c862003-01-13 01:35:15 +0000171 strcmp() and/or strncmp() instead. (DLR)
172- proto.h:
173 - Fix the #ifdef block for DISABLE_TABCOMP's being undefined
174 so that functions only used with tab completion are properly
175 #ifdef'ed out. (DLR)
176- search.c:
Chris Allegretta688c8eb2003-01-14 23:36:11 +0000177 do_search()
178 - Remove erroneously introduced near-duplicate call to
179 update_history(). (DLR)
Chris Allegretta7662c862003-01-13 01:35:15 +0000180 print_replaced()
181 - Remove and replace with an equivalent ngettext() call. (DLR)
182 do_replace_loop()
183 - Fix bug where if text on the magicline was replaced (which can
184 be done via a regexp replace of "^$" with something other than
185 ""), a new magicline wouldn't be created. (DLR)
Chris Allegrettaca7113a2003-01-14 23:35:24 +0000186 - Remove check for answer being a blank string, presumed to be
187 a PICO_MODE holdover, but it stops us from doing a blank
188 spelling replacement.
Chris Allegretta7662c862003-01-13 01:35:15 +0000189 do_replace()
190 - For greater Pico compatibility, when an attempt to replace a
191 string results in 0 replacements due to the string's not being
192 found, display "[string] not found" instead of "Replaced 0
193 occurrences". (DLR)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000194- utils.c:
Chris Allegretta7662c862003-01-13 01:35:15 +0000195 align()
196 - Don't just assert that the string passed in isn't NULL; check
197 that it isn't and only do the alignment when it isn't. (David
198 Benbennick)
199 nmalloc(), nrealloc()
200 - If the size passed to nmalloc() or nrealloc() is zero, don't
201 die with an erroneous out-of-memory error. Also, change
202 their dying messages to "nano is out of memory!". (David
203 Benbennick)
204 charalloc()
205 - Removed and redefined as a macro that calls nmalloc(). (David
206 Benbennick)
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000207 is_cntrl_char()
208 - Rework to fix a problem with displaying certain high-bit
209 characters. (David Benbennick; reported by Andrzej Marecki)
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +0000210- winio.c:
David Lawrence Ramsey9b13ff32002-12-22 16:30:00 +0000211 edit_refresh()
212 - Miscellaneous cleanups that fix a bug where the screen
213 isn't updated after uncutting chunks of upwardly marked cut
214 text that are over a page in length. (David Benbennick)
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +0000215 do_credits()
216 - Add David Benbennick to credits. (DLR)
217- nanorc.sample:
218 - Added comment to explain the non-escaping of quotes in
219 color regexes, based on info provided by David Benbennick.
220 (DLR)
Chris Allegrettaed4fb2c2003-01-11 01:14:07 +0000221 - Added some examples for groff and the nanorc courtesy of
222 Robert D. Goulding.
223 - Added double hash marks to comment lines, so people who
224 uncomment the beginning of every line won't get syntax errors.
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +0000225- faq.html:
Chris Allegretta7662c862003-01-13 01:35:15 +0000226 - Miscellaneous fixes and updates for typos, broken links, and
227 slashes at the end of directories. It is now fully compliant
228 with HTML 4.01 Transitional. (DLR and David Benbennick)
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +0000229- nano.texi:
230 - Typo fixes and updates. (David Benbennick)
Chris Allegretta9fa5fbd2003-01-13 02:56:29 +0000231 - Updates for the most recent and not so recent changes.
Chris Allegretta916a8ec2003-01-05 21:51:16 +0000232- TODO
233 - Added some wishlist stuff.
Jordi Mallach3e5ad632002-12-14 22:15:35 +0000234- THANKS:
235 - Added Doruk Fisek (Jordi).
Chris Allegrettae8ad5ed2002-10-25 03:15:48 +0000236
Chris Allegretta22578932002-10-25 03:14:11 +0000237GNU nano 1.1.12 - 10/24/2002
Jordi Mallachdab02992002-10-06 23:35:19 +0000238- General:
239 - Translation updates (see po/ChangeLog for details).
Chris Allegretta1dd0bc92002-10-13 18:43:45 +0000240 - Remove malloc.h, as it's unneeded and just causes annoyances on
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +0000241 *BSD systems. Added stdlib.h to global.c.
Chris Allegretta1dd0bc92002-10-13 18:43:45 +0000242 - Added Meta-Y toggle to disable/enable color syntax highlighting
243 completely. This may eventually be per-buffer, but that's too
244 complicated for a feature freeze.
Chris Allegrettae42df732002-10-15 00:27:55 +0000245 - Disable VSTOP keystroke. Stops people accidentally locking up
246 nano (suggested by David Benbennick).
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +0000247 - Pluralize messages with ngettext() where needed. (David
Chris Allegrettad45c5992002-10-25 01:41:31 +0000248 Benbennick) Tweaked to compile on systems lacking ngettext()
249 by DLR (problem found by Ken Tyler).
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +0000250 - Update nano.1 and nano.1.html to show that nano now does an
251 emergency save on receiving SIGHUP or SIGTERM. (DLR)
252 - Don't include "nowrap" in the long options if
253 DISABLE_WRAPPING is defined. (DLR)
254- files.c:
255 read_file()
256 - Minor efficiency fixes, some of which fit in with the change
257 to ngettext() usage mentioned above. (David Benbennick)
258 do_browser()
259 - Make sure the value of path is mallocstrcpy()ed into retval
260 and not just assigned to it, to avoid memory corruption
261 problems. (DLR)
262- nano.c:
Chris Allegretta2a15c582002-10-25 01:51:13 +0000263 version()
264 - If ENABLE_NLS isn't defined, display "--disable-nls"
265 (suggested by Ken Tyler). (DLR)
David Lawrence Ramsey2ab03f62002-10-17 02:19:31 +0000266 justify_format()
267 - Make sure the double space maintained after sentence-ending
268 punctuation is done when that punctuation is immediately
269 followed by a bracket-type character, so justifying e.g.
270 sentences in parentheses works properly. (David Benbennick)
271 handle_hup()
272 - Renamed handle_hupterm() to show that it now handles SIGTERM
273 as well as SIGHUP. (DLR)
274 signal_init()
275 - Do an emergency save on receiving either SIGHUP or SIGTERM,
276 not just SIGHUP. (David Benbennick)
277 main()
278 - Fix a problem where control key commands were printed
279 literally instead of interpreted after a failed search of a
280 one-line file. (David Benbennick)
281- proto.h:
282 handle_hup()
283 - Renamed handle_hupterm(); see above for why. (DLR)
284- winio.c:
285 edit_add()
286 - Fix a potential infinite loop occurring with certain
287 zero-length regexes. (David Benbennick)
Chris Allegretta71fb1f52002-10-02 00:21:31 +0000288
Chris Allegretta136a38a2002-10-02 00:05:40 +0000289GNU nano 1.1.11 - 10/01/2002
Jordi Mallach25daa052002-07-29 00:16:38 +0000290- General:
291 - Translation updates (see po/ChangeLog for details).
Jordi Mallach1f1022f2002-08-21 18:19:53 +0000292 - Upgraded to gettext 0.11.5 (Jordi).
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000293 - Updated nano.1, nano.1.html, and nano.texi to fix an
294 inaccuracy in the description of -Q/--quotestr. (DLR)
295 - Set REG_EXTENDED in all regcomp() calls. (DLR)
296 - Minor cosmetic code cleanups. (DLR)
Chris Allegrettaf7c68112002-09-03 22:58:40 +0000297 - Changed do_insertfile to (a) report multibuffer status at the
298 prompt and allowing it to be toggled, taking into account the
299 need to keep the translatable strings, and (b) added a
300 variable inspath to keep track of what the string was before
301 toggling. I'm sure there's bugs, have at it.
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000302 - Make sure all functions have prototypes in proto.h, and swap
303 some functions around to put similar functions closer
304 together (for this, rename clear_bottombars() to
305 blank_bottombars()). (DLR; suggested by David Benbennick)
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000306 - More changes of char *'s to const char *'s when possible.
307 (David Benbennick)
308 - Fix various minor memory leaks in files.c. (David Benbennick)
309 - Fix minor problems with the operating directory code: set the
310 operating directory properly if it's specified only in a
311 nanorc file, and handle an operating directory of "/"
312 properly. New function init_operating_dir() to handle
313 setting it both on the command line and in the nanorc file.
314 (David Benbennick)
David Lawrence Ramsey1f28b8f2002-09-27 14:21:59 +0000315 - Major rewrite of color and screen update routines to fix
316 minor bugs and increase efficiency. New function
317 set_colorpairs() for the former. (David Benbennick)
Jordi Mallachcb7c8d82002-07-27 02:49:46 +0000318- configure.ac:
319 - Added pt_BR to ALL_LINGUAS (Jordi).
Chris Allegretta82559b32002-08-22 01:12:41 +0000320 - Changed --enable-color warning to be slightly less severe.
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000321 - Put the configure options in more or less alphabetical order,
322 and remove --enable-undo, since it doesn't do anything. (DLR)
Chris Allegrettad865da12002-07-29 23:46:38 +0000323- files.c:
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000324 open_file()
325 - String change: "File "x" is a directory" -> ""x" is a
326 directory". (Jordi)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000327 do_insertfile()
328 - Disallow multibuffer toggling at the "Insert File" prompt if
329 we're in both view and multibuffer mode, so as to keep proper
330 integration between the two, and make sure the toggle
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000331 actually works all the time otherwise. Also, make sure
332 TOGGLE_LOAD_KEY isn't referenced when NANO_SMALL and
333 ENABLE_MULTIBUFFER are both defined. (DLR)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000334 open_prevfile_void(), open_nextfile_void()
335 - Return the return values of open_prevfile() and
336 open_nextfile(), respectively, instead of (incorrectly)
337 calling them and returning 0. (DLR)
Chris Allegrettad865da12002-07-29 23:46:38 +0000338 real_dir_from_tilde()
339 - Rework to use getpwent() exclusively and end reliance on
340 $HOME. Adapted from equivalent code in do_rcfile(). (DLR)
341 input_tab()
342 - Most likely fixed the check marked with FIXME, so that tab
343 completion works properly when we're trying to tab-complete a
344 username and the string already contains data. (DLR)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000345- global.c:
346 shortcut_init()
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000347 - Disable the new multibuffer toggle at the file insertion
348 prompt when NANO_SMALL and ENABLE_MULTIBUFFER are both
349 defined. (DLR)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000350 thanks_for_all_the_fish()
351 - Make sure the reference to help_text is #ifdefed out when
352 --disable-help is used. (DLR)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000353- move.c:
354 page_up()
355 - Fix bug where current is moved up two lines when the up arrow
356 is pressed on the top line of the edit window; this causes a
357 segfault is the top line in the edit window is the second
358 line of the file, as the line current ends up on doesn't
David Lawrence Ramsey768e8f02002-08-22 04:03:45 +0000359 exist. (Jeff DeFouw)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000360 do_down()
361 - Fix bug where, if the last line in the edit window is the
362 line before the magicline, and smooth scrolling is turned
363 off, pressing the down arrow on that last line centers the
364 cursor without updating the edit window. (Jeff DeFouw)
Chris Allegrettad865da12002-07-29 23:46:38 +0000365- nano.c:
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000366 version()
367 - Put the listed configure options in more or less alphabetical
368 order. (DLR)
369 open_pipe()
370 - If we're in view mode here (in which case we're also in
371 multibuffer mode), don't set the modification flag. (DLR)
Chris Allegrettad865da12002-07-29 23:46:38 +0000372 do_next_word(), do_prev_word()
373 - If we're on the last/first line of the file, don't center the
374 screen; Pico doesn't in the former case. (DLR)
375 do_backspace()
376 - Rework to call edit_refresh() regardless of the value of
377 current_x if ENABLE_COLOR is defined, so that multiple-line
378 color regexes are properly updated onscreen as they are in
379 do_delete(). (DLR)
380 do_delete()
381 - Rework to only call edit_refresh() unconditionally if
382 ENABLE_COLOR is defined; if it isn't, and we're not deleting
383 the end of the line, only call update_line(). (DLR)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000384 do_wrap()
385 - Make sure wrapping is done properly when the number of
386 characters on the line is exactly one over the limit. (David
387 Benbennick)
Chris Allegretta0ae5c722002-09-19 23:20:26 +0000388 - Restore the previous wrapping point behavior (pre 1.1.10)
Chris Allegretta43000922002-09-21 15:41:33 +0000389 (David Benbennick). Minor fix by DLR to prevent spaces from
390 being added to the ends of lines ending in spaces or lines
391 ending in tabs (the latter case found by David Benbennick).
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000392 do_alt_speller()
393 - Readd DLR's fix to preserve marking when using the alternate
394 spell checker; it was accidentally dropped. (David
395 Benbennick)
396 do_justify()
397 - Fix cosmetic problems caused when justifying on the
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000398 magicline, and a minor problem where the cursor would
399 sometimes be moved to the wrong line after justification.
400 (David Benbennick)
David Lawrence Ramseyad40fdb2002-09-06 20:35:28 +0000401 main()
402 - When searching through the main shortcut list looking for a
403 shortcut key, stop searching after finding one; this avoids a
404 rare segfault. (DLR)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000405- nano.h:
406 - Change search toggles for case sensitive searching and regexp
407 searching to M-C and M-R, respectively. (DLR; suggested by
408 Chris)
Chris Allegretta515ba322002-09-14 21:16:40 +0000409 - Add support for HP-UX's curses, which doesn't seem to support
410 KEY_HOME and KEY_END.
Chris Allegretta79cdfdc2002-08-22 02:58:55 +0000411- nanorc.sample:
412 - Fix the c-file regex for all caps words to be extended regex
413 format ({} instead of \{\}) (found by DLR).
Chris Allegretta3f9c3bf2002-09-18 00:00:12 +0000414 - Add a better string matching sequence that includes escaped
415 quotes (thanks to Carl E. Lindberg, who doesn't even know he
David Lawrence Ramsey1f28b8f2002-09-27 14:21:59 +0000416 helped ;-). Some unneeded \'s in that sequence removed, and
417 a new sequence to handle multi-line quotes added, by David
418 Benbennick.
Chris Allegretta136a38a2002-10-02 00:05:40 +0000419 - Add some examples for HTML and TeX files (David Benbennick).
Chris Allegrettade852622002-09-18 00:28:57 +0000420- rcfile.c:
421 parse_colors()
422 - Stop infinite loop when syntax doesn't begin with " char.
David Lawrence Ramseye21adfa2002-09-13 18:14:04 +0000423- utils.c:
424 charalloc()
425 - Switch from using calloc() to using malloc(). (David
426 Benbennick)
David Lawrence Ramsey605165e2002-09-11 01:48:14 +0000427- faq.html:
428 - Typo fix. (DLR)
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +0000429- AUTHORS:
430 - Add David Benbennick. (Jordi and Chris)
David Lawrence Ramsey0341b582002-08-21 16:10:37 +0000431- TODO:
432 - Add entry in the 1.4 section for Pico's paragraph searching
433 ability (at the search prompt, ^W goes to the paragraph's
434 beginning, and ^O goes to the paragraph's end). (DLR)
Chris Allegretta52069c62002-07-25 22:27:50 +0000435
Chris Allegretta720a9e02002-07-25 22:26:33 +0000436GNU nano 1.1.10 - 07/25/2002
Jordi Mallachcb7c8d82002-07-27 02:49:46 +0000437- General:
Jordi Mallach1f226872002-05-13 15:05:38 +0000438 - Translation updates (see po/ChangeLog for details).
Jordi Mallach790d3622002-06-03 12:44:05 +0000439 - Upgraded to gettext 0.11.2 (Jordi).
Jordi Mallachbd338652002-06-03 12:32:28 +0000440 Removed intl/ entirely, and a few more tweaks by gettextize.
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000441 - i18nized a few strings used in DEBUG mode. (DLR)
442 - Some chars being assigned 0 are now assigned '\0'. (DLR)
David Lawrence Ramseyc5967552002-06-21 03:20:06 +0000443 - Put header file #includes in a more consistent order. (DLR)
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000444 - Remove some unneeded blank lines and spaces, and make some
445 spacing more consistent. (DLR)
446 - When possible, use iscntrl() to determine whether a character
447 is a control character or not. (DLR)
448 - Miscellaneous typo fixes. (DLR)
David Lawrence Ramseyc5967552002-06-21 03:20:06 +0000449 - Many fixes to the help browser and shortcut lists: efficiency
450 updates, consistency fixes, help text fixes and improvements,
451 and spacing improvements. (David Benbennick)
Chris Allegretta6df90f52002-07-19 01:08:59 +0000452 - Make some functions use const variables when possible, and
453 also make them static when necessary. (David Benbennick,
454 necessary redefined by Chris ;-)
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000455 - Add Carl Drinkwater's backup file option (-B or --backup on the
456 command line, M-B in nano's global shortcuts). If the original
457 file is unchanged from when it was loaded, it is backed up to
458 filename~; if the original file has been changed or deleted
459 since it was originally loaded, it isn't backed up. The backup
460 file retains the permissions, owner/group, and
461 access/modification times of the original file. This option is
462 disabled when --enable-tiny is used. It will not back up
463 temporary files. Minor fixes to it by David Benbennick and
464 DLR. Changes to open_file(), add_open_file(),
465 load_open_file(), write_file(), and do_writeout().
466 - Add \n's to the ends of "filename is %s" debugging strings.
467 (Carl Drinkwater)
468 - Add the long option --quotestr as an alternative for -Q, and
469 --regexp as an alternative for -R; they were listed in nano's
470 usage information, but weren't actually in nano. Also, display
471 "-?" as an alternative for "-h" in nano's usage information,
Chris Allegretta6df90f52002-07-19 01:08:59 +0000472 put the command line options in a more consistent (i.e. mostly
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000473 alphabetical) order in nano, put the long options in a more
474 consistent order in rcfile.c and nanorc.sample, don't include
475 rcfile options if their equivalent command line options are
476 disabled, and remove obsolete relative option from
477 nanorc.sample. (DLR)
478 - Change "File Name to Append/Prepend" to "File Name to
479 Append/Prepend to". The original prompt could confusingly
480 imply that we are appending/prepending another file to the
481 current file, when we are actually appending/prepending the
482 current file to another file. (DLR)
Chris Allegretta6df90f52002-07-19 01:08:59 +0000483 - Put nano.1, nano.1.html, and nano.texi up to date, and fix a
484 few inconsistencies in them. (DLR)
485 - Typo fixes for the ChangeLog. (David Benbennick and DLR)
486 - Complete rewrite of justification code to fix some bugs and
487 improve its functionality. (David Benbennick)
488 - If a variable isn't going to be used in tiny mode, #define it
489 out when possible. (David Benbennick)
490 - Major reworking of the cutting/screen-updating code in cut.c,
491 some functions in utils.c, the cursor placement code in
492 winio.c, and many, many other areas to increase efficiency.
493 (David Benbennick)
494 - Rework handling of prompts when there's a list of partial
495 filename matches on the screen: remove kludgy case-by-case
496 handling (which didn't even handle every case), and have
497 statusq() handle it directly for all cases. (David Benbennick
498 and DLR)
499 - Fix some warnings and errors that show up when using gcc's
500 -pedantic option. (DLR)
501 - Add a comment to nanorc.sample warning that an out-of-range
502 negative value for fill can make nano die complaining that
503 the screen is too small (which may not be immediately
Chris Allegrettad865da12002-07-29 23:46:38 +0000504 obvious). (DLR)
Chris Allegretta6df90f52002-07-19 01:08:59 +0000505 - There were some opendir() calls in files.c without
506 corresponding closedir() calls; add them. (DLR)
507 - Move align() and null_at() from nano.c to utils.c, and move
508 the openfilestruct handling functions from nano.c to files.c.
509 (DLR)
510 - In color.c, start the "#ifdef ENABLE_COLOR" block after
511 including all the header files, as rcfile.c does; this fixes
512 a warning about ANSI C'S inability to handle blank files.
513 (DLR)
Chris Allegrettacf287c82002-07-20 13:57:41 +0000514 - Add new function is_cntrl_char() as a wrapper for iscntrl();
515 this is needed to treat ASCII 0x80-0x9f as control characters
516 consistently. (Without this, they will only be treated as
517 such when gettext is used; when it isn't used, they will be
518 printed as-is and be interpreted as commands by xterm, which
519 will corrupt the display.) (DLR)
Chris Allegretta6df90f52002-07-19 01:08:59 +0000520 - Add command line option -I/--ignorercfiles to ignore
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +0000521 $SYSCONFDIR/nanorc and ~/.nanorc. (Carl Drinkwater). Fix to
522 parsing getopt args (DLR).
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000523 - Fix minor bugs with importing certain text files in Mac
524 format. (DLR)
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000525- files.c:
Chris Allegrettadffa2072002-07-24 01:02:26 +0000526 append_slash_if_dir(), input_tab()
527 - Changed variable names: lastWasTab -> lastwastab, matchBuf ->
528 matchbuf. (DLR)
529 check_operating_dir()
530 - Memory leak fix. (David Benbennick)
531 check_writable_directory()
532 - Optimizations (David Benbennick).
533 cwd_tab_completion()
534 - Changed a variable name: dirName -> dirname. (DLR)
535 do_browser()
536 - Optimizations and mouse selection fixes (David Benbennick).
537 do_writeout()
538 - Fix problem with formatstr's being defined as NULL when
539 --enable-tiny is used. Since formatstr isn't ever used in tiny
540 mode, don't bother even creating the variable. (David
541 Benbennick and DLR)
542 do_insertfile()
543 - Memory leak fix (accidentally dropped 1st time).
544 (David Benbennick).
545 get_full_path()
546 - Memory leak fix. Also, make it properly interpret ~/ notation
547 so, among other things, the option "--operatingdir ~" works.
548 (David Benbennick)
549 - More optimizations (David Benbennick).
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000550 new_file()
Chris Allegretta6df90f52002-07-19 01:08:59 +0000551 - Make sure current_x is zero; this fixes a problem where the
552 current cursor position wasn't reset when reading in a file in
553 multibuffer mode. (David Benbennick)
Chris Allegrettadffa2072002-07-24 01:02:26 +0000554 - Use make_new_node rather than setting up fileage by hand
555 (David Benbennick).
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000556 read_file(), read_line()
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000557 - Rework to properly handle nulls in the input file, fix
558 detection of binary files to properly mark a file as binary if
559 the only binary characters it contains are ASCII 127's, and
560 after reading the last line of a file that doesn't end in a
561 newline, increment totsize. Remove previous kludge to set
562 totsize properly. (DLR)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000563 write_file()
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000564 - Rework to properly handle nulls in the input file. When
565 appending/prepending, don't change the current file's name to
566 the name of the file it's being appended/prepended to. When
567 writing a marked selection to a file, save and restore totsize
568 so it isn't decreased by the size of the selection afterward.
569 (DLR)
Chris Allegrettadffa2072002-07-24 01:02:26 +0000570 - Optimizations (David Benbennick).
Chris Allegretta6fe98d72002-05-16 23:30:14 +0000571- global.c:
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000572 free_toggles()
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000573 - Only include if we're not using tiny mode. (David Benbennick)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000574 toggle_init()
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000575 - Remove global entries for search toggles, as they aren't really
576 global. (DLR)
577 - Don't reinititialize the toggles if they've already been
578 initialized; it's unnecessary and even causes a segfault in
579 do_toggle() if Pico emulation mode is the toggle in question.
580 Don't free the toggles here, either; it's unnecessary after the
581 above change. (David Benbennick)
Chris Allegretta6df90f52002-07-19 01:08:59 +0000582 - If wrapping is disabled, don't include the toggle for it.
583 (DLR)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000584 shortcut_init()
Chris Allegretta6fe98d72002-05-16 23:30:14 +0000585 - Rework IFHELP macro (David Benbennick).
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000586- move.c
587 page_down(), page_up()
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000588 - Put sanity checks for current_x back in, to avoid rare
589 segfaults (oops). Now, however, they are only called when
590 placewewant is zero instead of being called unconditionally;
591 see changes to winio.c:actual_x_from_start() below. (DLR)
Jordi Mallach790d3622002-06-03 12:44:05 +0000592- nanorc.sample:
Chris Allegretta5c6379d2002-05-18 03:13:03 +0000593 - Put in much less crappy example regex rules for c-file.
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000594- nano.c:
Chris Allegrettadffa2072002-07-24 01:02:26 +0000595 clear_filename()
596 - Remove this function, as it has unneeded functionality, is
597 short enough to be inlined, and is only called in two spots
598 anyway. (DLR)
599 die()
600 - Rework slightly to remove redundant printing of last message
601 and print all messages after resetting the terminal. (DLR)
602 do_backspace()
603 - Make sure placewewant is set properly, and that the mark is
604 moved backwards. (David Benbennick)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000605 do_char()
Chris Allegretta6df90f52002-07-19 01:08:59 +0000606 - Fix a problem where, if ENABLE_COLOR wasn't used, typing
607 characters on a marked line before the beginning of the mark
608 would make the highlight short by one. (David Benbennick)
Chris Allegrettadffa2072002-07-24 01:02:26 +0000609 do_cont()
610 - Handle the case where the window was resized while we were
611 stopped. (David Benbennick)
612 do_delete()
613 - Make sure placewewant is set properly, to match Pico's
614 behavior. (DLR)
615 do_int_spell(), do_alt_spell()
616 - Rework to save the marked selection before doing spell checking
617 and restore it afterward. (DLR)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000618 do_next_word(), do_prev_word()
Chris Allegretta6df90f52002-07-19 01:08:59 +0000619 - Fix a problem where highlighting isn't done properly after
620 calling either of these, and another problem where the cursor
621 would move back too far in certain cases with do_prev_word().
622 (David Benbennick)
Chris Allegrettadffa2072002-07-24 01:02:26 +0000623 do_toggle()
624 - Since the search mode toggles aren't global anymore, we don't
625 need to explicitly block them here anymore (which will end up
626 blocking the global backup mode toggle, which is the same as
627 the backwards search toggle). (DLR)
628 do_wrap()
629 - fill fixes and 'two short word wrap' bug (David Benbennick).
630 global_init()
631 - Call die_too_small() when fill is 0. (DLR)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000632 handle_sigwinch()
Chris Allegretta6df90f52002-07-19 01:08:59 +0000633 - Make sure we adjust fill when the window is resized. (David
634 Benbennick)
635 - Call die_too_small() when fill is 0. (DLR)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000636 help_init()
Chris Allegretta6df90f52002-07-19 01:08:59 +0000637 - Since the return value of snprintf() isn't well defined, use
638 sprintf() instead. (David Benbennick)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000639 main()
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000640 - Rework to blank out filename manually before doing anything
641 with it, instead of calling clear_filename() in two places.
642 Make startline an int instead of a long, since it's supposed to
643 hold a line number. (DLR)
David Lawrence Ramseyc5967552002-06-21 03:20:06 +0000644 - Properly handle multiple -r settings on the command line. (Carl
645 Drinkwater)
Chris Allegretta6df90f52002-07-19 01:08:59 +0000646 - Fix a bug that prevented file insertion via the Insert key
647 from working at all when --enable-multibuffer wasn't used
648 (oops). (DLR)
649 - Adapt David Benbennick's fix to get fill to accept negative
650 numbers properly in parse_rcfile() (see below) to the
651 handlers for the -r and -T options as well, so that -r/-T 0
652 can be treated separately from -r/-T string. (DLR)
Chris Allegrettacf287c82002-07-20 13:57:41 +0000653 - Fix so that Esc-Esc-Space is properly treated as Ctrl-Space.
654 (DLR)
Chris Allegrettadffa2072002-07-24 01:02:26 +0000655 usage()
656 - List the options that are ignored for the purpose of Pico
657 compatibility, and make some minor consistency fixes. (DLR)
Chris Allegrettac46337b2002-07-23 00:34:48 +0000658- nano.h:
659 - Fix some space/tab formatting for flags (DLR).
Chris Allegretta6df90f52002-07-19 01:08:59 +0000660- proto.h:
661 - Remove external declaration of the global int fill, since
662 it's now static. (DLR)
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000663- rcfile.c:
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000664 parse_rcfile()
Chris Allegretta6df90f52002-07-19 01:08:59 +0000665 - Add David Benbennick's fix that allows fill to accept
666 negative numbers properly. Specifically, use strtol() there
667 instead of atoi() so that errors can be detected. Also
668 adapted for tabsize by DLR.
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000669 parse_next_regex(), colortoint()
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000670 - Only include if ENABLE_COLOR is defined. (DLR)
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000671- search.c:
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000672 search_init()
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000673 - Since the search mode toggles aren't global anymore, rework the
674 part of this function referencing them so that they still work.
675 (DLR)
676 - Remove unneeded toggles variable. (David Benbennick)
Chris Allegretta6df90f52002-07-19 01:08:59 +0000677 - Fix a problem where the first character of buf was overwritten
678 if the last search string was one third the number of columns
679 plus one. (David Benbennick)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000680 findnextstr()
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000681 - Update the current line at current_x if we don't find a match.
David Lawrence Ramseyc5967552002-06-21 03:20:06 +0000682 Also, pass current_x_find to strstrwrapper() so we know whether
683 we're at the beginning of a string or not (see changes to
684 strstrwrapper() below), and reset it between lines. (DLR)
685 do_gotoline():
686 - Make sure placewewant is zero after we go to a line. (David
687 Benbennick)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000688 do_gotopos()
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000689 - Simplify the sanity check to only put x within the range of the
690 current line; don't call actual_x() anymore. (DLR)
691- utils.c:
692 - Add sunder() and unsunder(). These functions convert nulls
693 other than the terminating null in strings to newlines and
694 back; they're used to handle null characters in files properly.
695 (DLR)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000696 lowercase()
Chris Allegretta6df90f52002-07-19 01:08:59 +0000697 - Remove, since it isn't actually used anywhere. (David
698 Benbennick)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000699 strstrwrapper()
700 - Set REG_NOTBOL when we're not at the beginning of a
David Lawrence Ramseyc5967552002-06-21 03:20:06 +0000701 string, to avoid false positives when searching for regular
702 expressions prefixed with ^. Make it take a new parameter,
703 line_pos, to determine where we are in the string. (DLR)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000704 check_wildcard_match()
Chris Allegretta6df90f52002-07-19 01:08:59 +0000705 - Changed variable names: retryPat -> retrypat, retryText ->
706 retrytext. (DLR)
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000707- winio.c:
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000708 actual_x_from_start()
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000709 - Overhaul to make cursor placement more like that of Pico: add
710 sanity check for i, and then place i as close to the value of
711 xplus column as possible. This change is most noticeable when
712 moving down through binary files. (DLR)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000713 do_credits()
714 - Fix for the i18ned credits so it will compile with -pedantic
715 (DLR & Chris).
Chris Allegretta079b5492002-09-19 23:54:53 +0000716 do_help()
717 - Add support for the handled keyboard escape sequences in the
718 help menu, as they are needed with some terminals (e.g. xterm
719 with TERM=ansi). (DLR)
720 edit_refresh()
721 - Turn on leaveok() so the cursor doesn't bounce around the
722 screen while we're updating it (most noticeable when using
723 color syntax over a very slow connection).
724 do_replace_highlight()
725 - When using regexps, make sure the highlight is the length of
726 the search result and not the regexp string. (DLR)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000727 nanogetstr()
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000728 - After the user presses Enter at the prompt, refresh the edit
729 window in case there's a list of possible filename matches
730 (left over from attempted tab completion) on it. (DLR)
Chris Allegretta079b5492002-09-19 23:54:53 +0000731 statusbar()
732 - Limit statusbar display to the number of columns less four, and
733 don't allow it to go over its original row. (David Benbennick)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000734 titlebar()
David Lawrence Ramseyc5967552002-06-21 03:20:06 +0000735 - Tweak text spacing and printing so that the titlebar text looks
736 better on smaller terminals. (Carl Drinkwater)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000737 update_line()
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000738 - When marking control characters, make sure the mark moves
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000739 forward by two characters instead of one. Rework control
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000740 character display routine to display newlines within the line
741 (which should never occur under normal circumstances; they will
742 only be there if the line had nulls in it and was unsunder()ed
743 beforehand) as ^@'s. (DLR)
Chris Allegrettacf287c82002-07-20 13:57:41 +0000744 - Fix to properly treat ASCII 128-159 as control characters.
745 (DLR)
Jordi Mallach7d401342002-07-05 23:46:31 +0000746- configure.ac:
747 - Added ms to ALL_LINGUAS (Jordi).
748 - Merged acconfig.h in (Jordi).
Chris Allegretta6df90f52002-07-19 01:08:59 +0000749 - Fixed so that --enable-debug defines DEBUG and undefines
750 NDEBUG. (Carl Drinkwater)
Jordi Mallach790d3622002-06-03 12:44:05 +0000751- THANKS:
752 - Completed a bit (Jordi).
Chris Allegretta6df90f52002-07-19 01:08:59 +0000753 - Fixed David Benbennick's email address. (David Benbennick)
754 - Typo fix. (DLR)
Chris Allegrettac4e3d9e2002-07-21 15:44:13 +0000755
Chris Allegretta8b75a782002-05-13 00:09:30 +0000756GNU nano 1.1.9 - 05/12/2002
Chris Allegretta7162e3d2002-04-06 05:02:14 +0000757- General:
758 - Typos n misspellings all over the place (David Benbennick).
759 - Allow --tiny and --multibuffer to cooperate (who the heck
760 would want this is beyond me but ;-). Changes to
761 configure.ac, global.c, , (David Benbennick).
Chris Allegrettaf2387fb2002-04-10 02:31:20 +0000762 - Change to openfilestruct for multibuffer mode by DLR.
763 New functions nano.c:make_new_opennode(), free_openfilestruct(),
764 delete_opennode(), unlink_opennode(), splice_opennode(),
765 new struct openfilestruct in nano.h.
Chris Allegretta0e9b7aa2002-04-16 03:15:47 +0000766 - Preliminary prepend code. This may be a bad idea, but I've
767 been wanting it for awhile now and we'll see how bad it messes
768 everything up. Changes to files.c:do_writeout(), write_file().
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000769 Fixes for O_CREAT & append compatibility by David Benbennick.
Chris Allegretta0547eb32002-04-22 23:52:34 +0000770 - Change from read() and write() to file streams by Jay Carlson.
771 Allows OS to implement read and write ahead rather than making
772 us do it. Hopefully merged properly.
Chris Allegrettadab017e2002-04-23 10:56:06 +0000773 - More cleanups with DISABLE flags, better free_shortcutage and
774 free_toggle, and get rid of unnecessary variable decls with
775 NANO_SMALL in shortcut_init() by David Benbennick.
Chris Allegrettab6c5dc22002-05-04 03:47:33 +0000776 - Added "syntax" command to .nanorc file, to allow multiple
777 syntaxes. New function color.c:update_color(), calls in various
778 files.c places, syntaxtype struct, global variables syntaxes,
Chris Allegretta21c433d2002-05-04 04:24:29 +0000779 syntaxfile_regexp and synfilematches. Global flag -Y ,--syntax
Chris Allegretta09900ff2002-05-04 04:23:30 +0000780 to specify the type on the command line, if there's no good
781 filename regex to use. Global variable syntaxstr.
Chris Allegretta4dc03d52002-05-11 03:04:44 +0000782 - Changed many strcmp()s and strcpy()s to their equivalent
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000783 '\0' counterparts (David Lawrence Ramsey).
784 - Many changes to allow marked cutting to work with multiple
Chris Allegretta4dc03d52002-05-11 03:04:44 +0000785 file buffers: changes to openfilestruct type in nano.h and
786 files.c (David Lawrence Ramsey).
Chris Allegretta6232d662002-05-12 19:52:15 +0000787 - Changed NANO_SMALL to ENABLE_NLS for gettext disabling
788 (David Benbennick).
789 - Move next_key and pev_key definitions out of main() and into
790 global.c where they belong (David Benbennick).
Chris Allegretta5e76fe92002-05-12 20:54:16 +0000791- color.c:
792 update_color()
793 - Add regfree call here to avoid memory leaks.
Chris Allegretta7162e3d2002-04-06 05:02:14 +0000794- configure.ac:
795 - Define NDEBUG to silence asserts (David Benbennick).
796- files.c:
797 get_next_filename()
798 - Optimizations (David Benbennick).
799- global.c:
800 shortcut_init()
801 - Add missing free_shortcutage()s (David Benbennick).
Chris Allegretta6232d662002-05-12 19:52:15 +0000802 thanks_for_all_the_fish()
803 - Only defined when using DEBUG, makes sense (David Benbennick).
Chris Allegretta7162e3d2002-04-06 05:02:14 +0000804- nano.c:
805 die_save_file()
806 - Add missing free (David Benbennick).
807 do_justify()
808 - Optimizations (David Benbennick).
809 do_wrap()
810 - Complete rewrite (David Benbennick).
Chris Allegretta6232d662002-05-12 19:52:15 +0000811 help_init()
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000812 - A little less readable, a lot shorter :-) (David Benbennick).
Chris Allegretta6232d662002-05-12 19:52:15 +0000813 - Fix Meta-A not getting capitalized, and convert the ASCII
814 #s to their character equivalent.
Chris Allegretta7c27be42002-05-05 23:03:54 +0000815 main()
816 - Changed charalloc(), strcpy()s to mallocstrcpy()s.
Chris Allegretta66f373f2002-04-05 23:33:09 +0000817- nano.h:
818 - NANO_ALT_COMMAND and NANO_ALT_PERIOD were reversed (lol)
819 (David Benbennick).
Chris Allegretta8902eba2002-03-30 18:02:54 +0000820- nano.spec.in:
821 - Don't put Chris' name as the Packager in the distribution
822 by default (Im an idiot).
Chris Allegretta4dc03d52002-05-11 03:04:44 +0000823 - Fixed Source line (David Lawrence Ramsey).
Jordi Mallach42c64052002-04-30 02:33:14 +0000824- nano.1:
825 - Changed references to Debian GNU/Linux to Debian GNU (Jordi).
Chris Allegretta4dc03d52002-05-11 03:04:44 +0000826- nano.1.html:
827 - Updated for -Y option (David Lawrence Ramsey).
Chris Allegretta6232d662002-05-12 19:52:15 +0000828- rcfile.c:
Chris Allegretta7c27be42002-05-05 23:03:54 +0000829 - Made some rc file errors less fatal.
Chris Allegretta4dc03d52002-05-11 03:04:44 +0000830 - Added in my patch for getpwent instead of relying on $HOME
831 (David Lawrence Ramsey).
Chris Allegretta7c27be42002-05-05 23:03:54 +0000832- winio.c:
833 edit_add()
David Lawrence Ramseyf21cd102002-06-13 00:40:19 +0000834 - Changed some syntax highlight computations for the sake of COLS.
Chris Allegretta3674c1d2002-05-12 20:43:49 +0000835 - Add in the necessary regfree() calls to stop nano from leaking
836 memory like a sieve when using color syntax highlighting :-)
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000837 bottombars(), onekey()
Chris Allegretta6232d662002-05-12 19:52:15 +0000838 - Cleanups (David Benbennick).
Jordi Mallach0ab011f2002-04-05 11:25:00 +0000839- po/gl.po:
840 - Galician translation updates (Jacobo Tarrio).
841- po/de.po:
842 - German translation updates (Michael Piefel).
843- po/fr.po:
844 - French translation updates (Jean-Philippe Guérard).
845- po/ca.po, po/es.po:
846 - Catalan and Spanish translation updates (Jordi).
Jordi Mallachb18bc692002-04-10 16:26:17 +0000847- po/sv.po:
848 - Swedish translation updates (Christian Rose).
Jordi Mallachd301e102002-04-13 14:46:26 +0000849- po/nl.po:
850 - Dutch translation updates (Guus Sliepen).
Jordi Mallach7f80e662002-04-13 16:31:03 +0000851- po/it.po:
852 - Italian translation updates (Marco Colombo).
Jordi Mallach0417a7b2002-04-19 21:59:35 +0000853- po/ru.po, po/uk.po:
854 - Russian and Ukrainian translation updates (Sergey A. Ribalchenko).
Jordi Mallach934b76b2002-04-25 22:24:48 +0000855- po/id.po:
856 - Indonesian translation updates (Tedi Heriyanto).
Jordi Mallachca76fa92002-05-05 15:04:26 +0000857- po/sv.po:
858 - Swedish translation updates (Christian Rose).
Chris Allegretta06d62372002-03-30 16:51:38 +0000859GNU nano 1.1.8 - 03/30/2002
Chris Allegrettabef12972002-03-06 03:30:40 +0000860- General
861 - Type misalignments and mem leaks in renumber_all, do_justify
862 and do_spell (Rocco & Steven Kneizys).
Chris Allegrettabb88ece2002-03-25 13:40:39 +0000863 - New "External Command" code, originally by Dwayne Rightler,
Chris Allegretta77777d42002-03-29 16:31:29 +0000864 various fixes and changes by Chris, Rocco and David Benbennick.
865 New function nano.c:open_pipe() and signal handler cancel_fork(),
866 changes to do_insertfile(), new list extcmd_list, cmd is
867 ^X after ^R.
Chris Allegretta3533a342002-03-24 23:19:32 +0000868 - Added separate regex variable (color_regex and colormatches)
869 so that color syntax and regex search/replace can coexist.
Chris Allegretta06d62372002-03-30 16:51:38 +0000870 - Added new nano.spec file from Brett <brett@bad-sports.com>,
871 added because maintaining the spec file is getting to be a large
872 hassle ;)
Chris Allegretta564535a2002-03-06 15:32:17 +0000873- files.c:
874 check_writable_directory()
875 - Stat full_path, not path (Steven Kneizys).
Chris Allegretta2598c662002-03-28 01:59:34 +0000876 open_pipe()
877 - I18nize the pipe error (DLR).
Chris Allegrettae3739092002-03-29 15:06:05 +0000878 do_insertfile()
879 - Handle cancel from ExtCmd properly (David Benbennick).
Chris Allegretta52c5a6e2002-03-21 05:07:28 +0000880 read_file()
881 - Abort if we read a file of 0 lines (num_lines == 0), fixes BUG #70.
Chris Allegrettaf6cba642002-03-26 13:05:54 +0000882 - Reverse tests to stop segfault on editing a new file of 0
883 lines (David Benbennick)
884 - Change input var to one char instead of array (David Benbennick).
Chris Allegretta2598c662002-03-28 01:59:34 +0000885 - Move NO_CONVERT check up so chars get read in properly (DLR).
Chris Allegretta40ecbad2002-03-06 15:27:44 +0000886- nano.c:
Chris Allegrettacf1d8122002-03-21 19:53:36 +0000887 do_justify()
888 - More fixes for indented justify (David Benbennick).
Chris Allegrettaf21f3fc2002-03-25 03:26:27 +0000889 do_int_speller()
890 - Fix zombie processes and spelling buffer issues (Rocco Corsi).
Chris Allegretta5902f962002-03-07 12:40:39 +0000891 help_init()
892 - Capitalize Meta altkeys.
Chris Allegrettab479c892002-03-09 20:03:10 +0000893 - Various fixes and string changes.
Chris Allegretta40ecbad2002-03-06 15:27:44 +0000894 main()
895 - Put NANO_SMALL defines around toggle pointer (noticed by Jordi);
Chris Allegretta97e6fe62002-03-09 17:38:47 +0000896 usage()
Chris Allegretta3fc5d572002-03-09 18:51:58 +0000897 - Rewritten to encompass systems with and without GETOPT_LONG.
898 New function print1opt does most of the dirty work, stops
899 duplication of effort and eases translator's jobs. Also
900 breaks all the current translations ;-)
Chris Allegretta45329a12002-03-10 01:22:21 +0000901- proto.h:
902 - Missing externs (Rocco).
Chris Allegretta1596d382002-03-07 00:46:17 +0000903- rcfile.c:
Chris Allegretta78f0fc62002-03-29 19:41:57 +0000904 do_rcfile()
905 - Reset lineno between system and local .nanorc file.
906 - Fix errno->strerror(errno) mismatch.
Chris Allegrettae8e10342002-03-07 00:47:22 +0000907 parse_rcfile()
908 - Don't use i for both for loop and atoi(), fixes lots of
Jordi Mallach4951c662002-03-07 14:12:53 +0000909 potential crashes, 1st reported by Jean-Philippe Guérard.
Chris Allegretta78f0fc62002-03-29 19:41:57 +0000910 rcfile_error()
911 - Don't print out the file name if we haven't opened the file
912 yet (lineno == 0).
Chris Allegretta45329a12002-03-10 01:22:21 +0000913- search.c:
914 search_init()
915 - Fix a missing free (Rocco).
Chris Allegrettad1c2c1c2002-03-26 17:58:42 +0000916 do_gotoline()
917 - Set placewewant if we actually move to a different line.
Chris Allegretta40ecbad2002-03-06 15:27:44 +0000918- utils.c:
Chris Allegrettadce44ab2002-03-16 01:03:41 +0000919 stristr()
920 - Defined regardless of NANO_SMALL (noticed by Jordi).
Chris Allegretta77777d42002-03-29 16:31:29 +0000921 nperror()
922 - New wrapper for perror (David Benbennick).
Chris Allegrettadce44ab2002-03-16 01:03:41 +0000923- winio.c:
924 do_credits()
925 - Add Thomas Dickey.
Chris Allegrettaf3a07b22002-03-29 15:15:38 +0000926 do_cursorpos()
927 - Make col numbering start from 1 (suggested by Andrew Ho).
Chris Allegretta2598c662002-03-28 01:59:34 +0000928 update_line(), xpt()
929 - Add check for 127 (DLR).
Jordi Mallach4951c662002-03-07 14:12:53 +0000930- po/sv.po:
931 - Swedish translation updates (Christian Rose).
932- po/de.po:
933 - German translation updates (Michael Piefel).
Jordi Mallach4e803aa2002-03-09 18:05:53 +0000934- po/id.po:
935 - Indonesian translation updates (Tedi Heriyanto).
Chris Allegretta2598c662002-03-28 01:59:34 +0000936- po/it.po:
Chris Allegretta06d62372002-03-30 16:51:38 +0000937 - Serious typo.
Jordi Mallach4e803aa2002-03-09 18:05:53 +0000938- po/ca.po, po/es.po:
939 - Catalan and Spanish translation updates (Jordi).
Chris Allegretta2598c662002-03-28 01:59:34 +0000940 - Typo (DLR).
Jordi Mallach558b5d82002-03-11 13:23:33 +0000941- po/fr.po:
942 - French translation updates (Jean-Philippe Guérard).
Jordi Mallach5477e102002-03-12 16:15:50 +0000943- po/gl.po:
944 - Galician translation updates (Jacobo Tarrio).
Jordi Mallach057c3c42002-03-14 11:00:56 +0000945- po/uk.po, po/ru.po:
946 - Russian and Ukrainian translation updates (Sergey A. Ribalchenko).
Jordi Mallachb83e61a2002-03-15 15:15:13 +0000947- po/pl.po:
948 - Polish translation updates (Wojciech Kotwica).
Jordi Mallach7fa082d2002-03-17 00:35:41 +0000949- po/fr.po:
950 - French translation updates (Jean-Philippe Guérard).
Jordi Mallach7afc6d92002-03-27 16:34:46 +0000951- po/it.po:
952 - Italian translation updates (Marco Colombo).
Jordi Mallach465a0ff2002-03-29 00:46:05 +0000953- po/da.po:
954 - Danish translation updates (Keld Simonsen).
Chris Allegrettabef12972002-03-06 03:30:40 +0000955
Chris Allegretta97489d22002-03-05 23:47:44 +0000956GNU nano 1.1.7 - 03/05/2002
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000957- General
958 - malloc->calloc, etc cleanups (DLR).
959 - New option, noconvert (-N, --noconvert) to completely stop
960 the translation of files from DOS or Mac format (DLR).
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000961 - New functions check_writable_directory() and safe_tempnam()
Chris Allegrettabc72e362002-02-16 20:03:44 +0000962 to get around the tempnam warning. More improvements (DLR)
Chris Allegretta48b06702002-02-22 04:30:50 +0000963 Still needs testing.
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000964 - Added DOS and Mac format options to write file routine.
965 Changes to shortcut_init() and do_writeout().
966 - Removed stupid static definitions of toggles and shortcut
967 lists. Many changes to shortcut_init(), toggle_init(),
968 statusq(), nanogetstr(), main(), and many other places.
Chris Allegretta48b06702002-02-22 04:30:50 +0000969 - Multibuffer mode now allows multiple empty filenames.
970 Changes to add_open_files(), removed open_file_dup_search(),
971 open_file_dup_fix(), etc (DLR).
972 - New code to handle multiple .save files. Changes to
973 die_save_file(), new function files.c:get_next_filename()
974 and utils.c:num_of_digits(). (Dwayne Rightler, DLR & Chris)
Chris Allegrettaf5de33a2002-02-27 04:14:16 +0000975 - Many malloc() cleanups and files.c tweaks by Steven Kneizys,
976 new functions utils.c:free_shortcutage() (got to love that
977 name!) & free_toggles(), and big cleanup program
978 thanks_for_all_the_fish() (originally
979 thanks_for_the_memories()). Mods to shortcut_init() by Chris.
Chris Allegrettae4f940d2002-03-03 22:36:36 +0000980 - Preliminary quoting support for justify. New arg -Q, --quotestr,
981 changes to do_justify(), global variable quotestr().
Chris Allegretta8dbfb5c2002-01-28 15:56:15 +0000982- Makefile.am:
David Lawrence Ramsey0084eaa2002-11-04 16:05:42 +0000983 - Add SYSCONFDIR to DEFS, so we can have an $SYSCONFDIR/nanorc.
Chris Allegretta40b85e72002-02-09 21:56:09 +0000984 - Change localedir line to 1.0's version.
Jordi Mallach3c5653d2002-02-23 18:23:43 +0000985 - Moved m4/ stuff to its own m4/Makefile.am.
Jordi Mallach87435d92002-03-05 17:58:34 +0000986- m4/aclocal_inc.m4:
987 - New macro AM_ACLOCAL_INCLUDE, tells configure.ac where to look for
988 macros (Gergely Nagy).
Jordi Mallach3c5653d2002-02-23 18:23:43 +0000989- configure.in:
990 - Renamed to configure.ac.
991- configure.ac:
992 - Moved to autoconf 2.52 (Jeff Bailey).
Jordi Mallach87435d92002-03-05 17:58:34 +0000993 - Added call to AM_ACLOCAL_INCLUDE.
Chris Allegrettaa8c22572002-02-15 19:17:02 +0000994- files.c:
995 read_byte()
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +0000996 - Added check for control characters (indicative of a binary
Chris Allegretta48b06702002-02-22 04:30:50 +0000997 file), set NO_CONVERT if found (fixes by DLR).
Chris Allegrettaf5de33a2002-02-27 04:14:16 +0000998 do_insertfile()
999 - Added support for -o in prompt (Steven Kneizys).
Chris Allegrettaa8c22572002-02-15 19:17:02 +00001000- global.c:
1001 - Move openprev and opennext functions to shortcuts, they really
1002 aren't toggles (DLR).
Chris Allegrettaf27c6972002-02-12 01:57:24 +00001003- rcfile.c:
Chris Allegrettaa8c22572002-02-15 19:17:02 +00001004 parse_next_regex()
Chris Allegretta3d8e7592002-02-02 07:13:02 +00001005 - Allow " symbol to be in regex without leading \ by checking
1006 for *ptr+1 is not the end of the regex.
Chris Allegrettaff8a68c2002-02-16 20:34:57 +00001007 do_rcfile()
1008 - Parse rcfile in $SYSCONFDIR as well (Dwayne Rightler).
Chris Allegretta48b06702002-02-22 04:30:50 +00001009- nano.1:
1010 - Added Noconvert option to man page (DLR).
Chris Allegrettaa8c22572002-02-15 19:17:02 +00001011- nano.c:
Chris Allegrettad4fa0d32002-03-05 19:55:55 +00001012 justify_format(), do_justify()
1013 - Various fixes for starting blank spaces, spaces after
1014 punctuation, & segfault with quoting strings (David Benbennick).
Chris Allegretta46c1b9e2002-03-05 19:58:45 +00001015 do_justify()
1016 - Don't continue to justify string if it's indented more
1017 (quoting wise) than the beginning of the justification.
Chris Allegrettaa8c22572002-02-15 19:17:02 +00001018 help_init()
1019 - Added message re: having multiple blank buffers (DLR).
Chris Allegretta9caa1932002-02-15 20:08:05 +00001020 main()
1021 - Add 407 as equiv of 26, this seems to be sent when using
1022 ^Z in linux console with keypad() enabled.
Chris Allegrettabc72e362002-02-16 20:03:44 +00001023- rcfile.c:
1024 - Get rid of unneeded relativechars from rcopts (DLR).
1025- search.c
1026 do_replace(), findnextstr()
1027 - Fixes for various search issues (Ken Tyler)
Chris Allegrettaf27c6972002-02-12 01:57:24 +00001028- winio.c:
1029 do_cursorpos()
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00001030 - Rewritten to show col place as well as character place, without
Chris Allegrettaf27c6972002-02-12 01:57:24 +00001031 needing an entirely separate flag.
Chris Allegrettaa8c22572002-02-15 19:17:02 +00001032 bottombars(), onekey()
1033 - Make bottom list dynamic with screen size (Guus Sliepen & Chris).
Chris Allegrettabc72e362002-02-16 20:03:44 +00001034 - More cleanups w/width of shortcut.
Chris Allegretta8dbfb5c2002-01-28 15:56:15 +00001035- utils.c:
Chris Allegretta99ed9dc2002-02-28 00:57:18 +00001036 strcasestr(),revstrcasestr()
1037 - Renamed to stristr and revstristr since strcasestr has not
1038 been confirmed to be detected properly on various Linux
1039 systems.
Chris Allegrettad4fa0d32002-03-05 19:55:55 +00001040 strstrwrapper()
1041 - NANO_SMALL test was backwards (Ken Tyler).
1042- winio.c:
1043 strlenpt()
1044 - Changed main function to strnlenpt() for new justify changes,
1045 original function now just a stub.
Chris Allegretta3c597d02002-01-26 03:42:14 +00001046- nanorc.sample
1047 - Mention unset in the sample nanorc.
Jordi Mallach83ffefb2002-01-25 21:00:18 +00001048- po/ca.po, po/es.po:
1049 - Catalan and Spanish translation updates (Jordi).
Jordi Mallach9c34a162002-01-26 00:46:47 +00001050- po/sv.po:
1051 - Swedish translation updates (Christian Rose).
1052- po/fr.po:
1053 - French translation updates (Jean-Philippe Guérard).
Jordi Mallach8636f7b2002-01-26 19:23:37 +00001054- po/nn.po:
1055 - Norwegian nynorsk translation updates (Kjetil Torgrim Homme).
1056- po/de.po:
1057 - German translation updates (Michael Piefel).
Chris Allegretta8dbfb5c2002-01-28 15:56:15 +00001058- po/it.po:
1059 - Italian translation updates (Marco Colombo).
Jordi Mallach94def062002-02-06 12:14:25 +00001060- po/cs.po:
1061 - Partial Czech translation updates (Vaclav Haisman).
Jordi Mallach8bfd3112002-02-06 20:53:04 +00001062- po/hu.po:
1063 - Hungarian translation updates, or to be precise, rewrite
1064 (Gergely Nagy).
Jordi Mallachb3b28c12002-02-07 13:51:00 +00001065- po/uk.po, po/ru.po:
Jordi Mallach507c3612002-02-14 18:57:23 +00001066 - Russian and Ukrainian translation updates (Sergey A. Ribalchenko).
1067- po/da.po:
1068 - Danish translation updates (Keld Simonsen).
Jordi Mallache46d43d2002-02-15 17:13:11 +00001069- po/nb.po:
1070 - Norwegian bokmål translation updates (Stig E Sandoe).
Jordi Mallach62d21712002-02-20 16:21:27 +00001071- po/nl.po:
1072 - Dutch translation updates (Guus Sliepen).
Jordi Mallacha3322fd2002-03-05 11:23:17 +00001073- po/pl.po:
1074 - Polish translation updates (Wojciech Kotwica).
Jordi Mallach83ffefb2002-01-25 21:00:18 +00001075
Chris Allegretta491029e2002-01-25 17:02:32 +00001076nano-1.1.6 - 01/25/2002
Chris Allegretta044d1b12002-01-08 00:33:32 +00001077- General
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00001078 - Add Meta-A as alternate keystroke for ^^ for people with
Chris Allegretta044d1b12002-01-08 00:33:32 +00001079 non-US keyboards.
Chris Allegretta967a1e22002-01-10 00:50:38 +00001080 - Add Alt-G (NANO_ALT_GOTO_KEY) as alternate for goto dir in
1081 browser.
Chris Allegretta1bc0c7e2002-01-08 15:00:24 +00001082 - Better partial word checking code. New function
1083 search.c:is_whole_word(), changes to findnextstr(),
1084 and nano.c:do_int_spell_fix() (Rocco Corsi).
Chris Allegretta6c1e6612002-01-19 16:52:34 +00001085 - Added multiple-line regex support. Format in .nanorc is
1086 start="regex" end="regex". Cleaned up nanorc:parse_colors(),
1087 added parse_next_regex(), changes to edit_add in winio.c(),
1088 changes to colortype, cleaning up some old cruft.
Chris Allegretta15b23f42002-01-19 19:15:18 +00001089 - Upgrade to gettext 0.10.40, probably broke everything again :)
Chris Allegretta24e48d82002-01-23 01:06:20 +00001090 - Upgraded to and then downgraded from automake 1.5, as there
1091 are severe security implications.
Chris Allegrettaea250e82002-01-16 01:09:11 +00001092- color.c:
1093 do_colorinit()
1094 - Moved some comments and braces around so color can work
1095 w/slang (DLR).
Chris Allegrettaf478f832002-01-18 21:54:35 +00001096- global.c:
1097 shorcut_init()
1098 - Replace hard coded ALT_G and ALT_H values in the replace
1099 and goto shortcuts with their macro counterparts NANO_ALT_*_KEY.
Jordi Mallach345a8462002-01-07 11:35:16 +00001100- nano.c:
1101 usage()
1102 - Remove extra \n in --keypad description (Jordi).
Chris Allegrettaf7dee922002-01-07 16:43:25 +00001103 main()
1104 - Check that alt value is an alpha char before comparing to
1105 val - 32, fixes Alt-R calling doprev instead of replace.
Chris Allegrettab2cd10d2002-01-20 00:54:42 +00001106 do_char()
1107 - Run edit_refresh() if ENABLE_COLOR is defined so adding
1108 multi-liners will update (e.g. /* in C).
Chris Allegretta23b74b22002-01-21 20:32:22 +00001109 do_int_spell_fix()
1110 - Temporarily unset REVERSE_SEARCH if it's set (Rocco Corsi).
Chris Allegretta7b0667f2002-01-10 12:44:21 +00001111 do_suspend()
1112 - Call tcsetattr() to restore the old terminal settings, so
Chris Allegretta5bbce6a2002-01-10 12:48:16 +00001113 tcsh can use ^C after suspend for example (fixes BUG #68).
Chris Allegretta438f7132002-01-16 00:54:47 +00001114 do_wrap()
1115 - Move "right" increment to part where new line is created,
1116 should change (fix?) some wrapping problems with autoindent.
Jordi Mallach5285ca92002-01-17 12:40:33 +00001117 version()
1118 - Show --enable-multibuffer independently of --enable-extra being
1119 compiled in (Jordi).
Chris Allegrettaf478f832002-01-18 21:54:35 +00001120- nano.h:
1121 - Changed color struct slightly, because of previous issue with
1122 applying color painting in order, the "str" portion was
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00001123 useless. Renamed "val" in colortype to "start", added "end"
Chris Allegrettaf478f832002-01-18 21:54:35 +00001124 for multi-line color strings.
1125- rcfile.c:
1126 General
1127 - Took silly variables being passed everywhere like lineno and
1128 filename and made them static variables.
Chris Allegretta6c1e6612002-01-19 16:52:34 +00001129 - Re-indented.
Chris Allegretta34f80982002-01-22 20:09:20 +00001130 - Added stdarg.h to includes.
Chris Allegrettaf478f832002-01-18 21:54:35 +00001131 rcfile_error()
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00001132 - Now automatically prepends the "error in line blah at foo"
Chris Allegrettaf478f832002-01-18 21:54:35 +00001133 message to error messages.
1134 parse_colors()
1135 - Added section for computing "end" section.
1136 parse_next_word()
1137 - Added support for "\ ", in word parsing.
Chris Allegrettae29697d2002-01-14 03:31:10 +00001138- search.c:
Chris Allegretta1c2fddc2002-01-21 20:40:14 +00001139 do_search()
1140 - Check position of cursor and return value of findnextstr and
1141 tell user if search string only occurs once (Rocco & Chris).
Chris Allegrettae29697d2002-01-14 03:31:10 +00001142 findnextstr()
1143 - Fix off by one in check for wrap around (Rocco Corsi).
Chris Allegretta3d0739c2002-01-07 14:41:32 +00001144- winio.c:
1145 edit_refresh()
1146 - Rename lines to nlines to fix AIX breakage (reported by
1147 Dennis Cranston, re-reported by arh14@cornell.edu).
Chris Allegrettaf478f832002-01-18 21:54:35 +00001148 edit_add()
1149 - Refuse to honor regex matches of 0 characters when applying
1150 color highlighting, and say so on the statusbar. Otherwise
1151 we go into an infinite loop, the error message should clue
1152 users into the fact that their regex is doing something bad.
Jordi Mallachd6481e42002-01-17 12:14:23 +00001153- THANKS:
1154 - Oops, correct Eivind's entry. His translation was Norwegian nynorsk,
Jordi Mallach83d5ced2002-01-17 12:06:49 +00001155 not bokmål as we claimed (Jordi).
Chris Allegretta9963b0e2002-01-19 19:35:12 +00001156- .cvsignore
1157 - Added config.guess config.sub install-sh missing & mkinstalldirs
Jordi Mallach3da91392002-01-07 11:50:13 +00001158- po/ca.po, po/es.po:
Jordi Mallache36a1522002-01-07 15:12:48 +00001159 - Catalan and Spanish translation updates (Jordi).
1160- po/sv.po:
1161 - Swedish translation update (Christian Rose).
Jordi Mallachd39698f2002-01-07 15:16:26 +00001162- po/de.po:
1163 - German translation update (Michael Piefel).
Jordi Mallachbf1a1e82002-01-08 14:07:39 +00001164- po/fr.po:
1165 - French translation update (Jean-Philippe Guérard).
1166- po/ru.po, po/uk.po:
1167 - Russian and Ukrainian translation updates (Sergey A. Ribalchenko).
Jordi Mallach83d5ced2002-01-17 12:06:49 +00001168- po/no.po:
1169 - Moved to po/nn.po, which is the correct name for Norwegian nynorsk.
1170- po/nn.po:
1171 - Norwegian nynorsk translation updates (Kjetil Torgrim Homme).
1172- po/nb.po:
1173 - New Norwegian bokmål translation (Stig E Sandoe <stig@ii.uib.no>).
Jordi Mallach3a23a552002-01-18 23:04:16 +00001174- po/da.po:
1175 - Danish translation update (Keld Simonsen).
Chris Allegrettad1751932002-01-05 20:01:53 +00001176
Chris Allegretta110927b2002-01-05 19:49:06 +00001177nano-1.1.5 - 01/05/2002
Chris Allegretta32da4562002-01-02 15:12:21 +00001178- General
1179 - Better integration of View mode (-v) and multibuffer.
1180 Fixes to new_file(), do_insertfile_void(), shortcut_init()
1181 (David Lawrence Ramsey).
Chris Allegretta48bd3782002-01-03 21:26:34 +00001182 - The keypad handling has changed (again). We now use
1183 the keypad() function by default. New flag -K, --keypad
1184 allows the old behavior for those using the keypad arrow keys
1185 and rxvt-based terminals.
Jordi Mallach8ae57892002-01-04 17:57:40 +00001186 - Updated copyright notices to 2002 (Jordi).
Chris Allegretta0bb70dc2001-12-17 04:34:23 +00001187- nano.c:
Chris Allegretta32da4562002-01-02 15:12:21 +00001188 die()
1189 - Only save files that were modified (David Lawrence Ramsey).
Chris Allegretta0bb70dc2001-12-17 04:34:23 +00001190 do_cont()
1191 - Run signal_init() after doupdate() so ^Y wont suddenly
1192 start suspending after returning from ^Z suspend in Hurd.
1193 signal_init()
1194 - Unconditionally disable VDSUSP if it exists, stops ^Y
1195 suspending nano on the Hurd.
Jordi Mallach11f39e72001-12-25 19:17:32 +00001196 help_init()
Chris Allegretta64dd95d2001-12-27 20:53:54 +00001197 - Typo fixes in help strings (Jordi).
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00001198 - New variable helplen needed cause currslen is not always
Chris Allegretta13fd44b2002-01-02 13:59:11 +00001199 the length we want (bug found by David Lawrence Ramsey).
Chris Allegretta180a5692002-01-02 14:30:33 +00001200 - Typo in file switch string (found by David Lawrence Ramsey).
1201 main()
1202 - Handle Alt prev/next file keys (,.), as well as normal ones (<>).
Chris Allegretta32da4562002-01-02 15:12:21 +00001203 - Handle OS-specific insert keys by jump to do_insertkey (David
1204 Lawrence Ramsey).
Chris Allegretta64dd95d2001-12-27 20:53:54 +00001205- files.c:
1206 read_file()
1207 - Make conversion message less confusing (suggested by Jordi).
Chris Allegretta13fd44b2002-01-02 13:59:11 +00001208- rcfile.c:
1209 parse_next_word()
1210 - Get rid of ptr == \n check to abort, screws up option
1211 parsing (bug found by David Lawrence Ramsey)
Chris Allegretta52db7a22001-12-17 23:39:36 +00001212- winio.c:
1213 update_line()
Chris Allegretta3c57e502001-12-19 16:20:43 +00001214 - set realdata check to >= 1 && <= 31, lack of > 0 check screwed
1215 high ascii characters.
Jordi Mallach9335f912001-12-23 00:03:18 +00001216 titlebar()
1217 - gettextized a pair of strings.
Chris Allegrettae5b9eac2002-01-05 01:52:02 +00001218 bottombars()
1219 - Get rid of that annoying reversed line when color is on! :)
Chris Allegretta1bf8f5e2002-01-05 03:30:10 +00001220 edit_add()
1221 - Little fixes to let color highlights not bleed onto the next line.
Chris Allegrettaa16e4e92002-01-05 18:59:54 +00001222 statusq()
1223 - Initialize "list".
Chris Allegrettacf680712001-12-18 14:59:20 +00001224- m4/gettext.m4:
1225 - Back down to 1.1.3 version.
Jordi Mallachcf9f7832001-12-26 12:33:01 +00001226- faq.html:
1227 - Various link updates and other fixes (Aaron S. Hawley).
1228 - Typo fixes (David Lawrence Ramsey).
Chris Allegrettafae0dce2002-01-04 13:30:42 +00001229- AUTHORS
1230 - Add DLR.
Jordi Mallach77b12322001-12-22 23:23:40 +00001231- po/sv.po:
1232 - Swedish translation update (Christian Rose).
Jordi Mallach3da91392002-01-07 11:50:13 +00001233- po/ru.po, po/uk.po:
Jordi Mallach32793982001-12-28 16:35:28 +00001234 - Russian and Ukrainian translations updates (Sergey A. Ribalchenko).
Jordi Mallach3da91392002-01-07 11:50:13 +00001235- po/ca.po, po/es.po:
Jordi Mallach414acab2001-12-26 00:15:16 +00001236 - Catalan and Spanish translations updates (Jordi).
Jordi Mallacha4ffccb2001-12-26 00:31:17 +00001237- po/pl.po:
1238 - New Polish, partial translation, by Cezary Sliwa <sliwa@cft.edu.pl>.
Jordi Mallach65f3e422002-01-04 17:48:58 +00001239 - Wojciech Kotwica <wkotwica@post.pl> completed it and is the new
1240 official maintainer.
Jordi Mallach1a58fb42001-12-27 16:00:23 +00001241- po/fr.po:
1242 - French translation update (Michel Robitaille).
Jordi Mallach05d8ce92001-12-27 20:34:42 +00001243- po/gl.po:
1244 - Galician translation update (Jacobo Tarrío).
Jordi Mallach78e2c9d2001-12-27 22:06:38 +00001245- po/it.po:
1246 - Italian translation update (Marco Colombo).
Jordi Mallach32793982001-12-28 16:35:28 +00001247- po/de.po:
1248 - German translation update (Michael Piefel).
Jordi Mallach13f30172002-01-02 18:45:58 +00001249- po/fr.po:
1250 - French translation update (Jean-Philippe Guérard).
Chris Allegretta5fd6cac2001-12-12 13:55:19 +00001251
Chris Allegretta7bf25092001-12-12 02:44:40 +00001252nano-1.1.4 - 12/11/2001
Chris Allegretta08893e02001-11-29 02:42:27 +00001253- General
1254 - Preliminary syntax highlighting support. New functions
1255 colortoint() and parse_color() in rcfile.c, new code in
1256 edit_add() in winio.c to actually do the highlighting. It's
1257 not even close to pretty yet :P
Chris Allegretta2084acc2001-11-29 03:43:08 +00001258 - Many int/long alignments (David Lawrence Ramsey).
Chris Allegretta0567bfe2001-10-28 14:42:18 +00001259- files.c:
Chris Allegretta2084acc2001-11-29 03:43:08 +00001260 - Fixes for tab completion and screen refresh (David Lawrence
1261 Ramsey).
Chris Allegretta0567bfe2001-10-28 14:42:18 +00001262 add_open_file()
1263 - Get rid of unsetting MARK_ISSET because otherwise writing
1264 marked text will automatically unset the marker with
1265 multibuffer enabled.
Chris Allegretta22ec59a2001-10-28 04:56:08 +00001266- global.c:
1267 - Define currshortcut and currslen when either DISABLE_MOUSE
Chris Allegretta8c8d3702001-10-28 05:00:39 +00001268 or DISABLE_HELP or DISABLE_BROWSER is not defined (Silvan
1269 Minghetti).
Chris Allegretta7bf72742001-10-28 04:29:55 +00001270- nano.c:
1271 main()
Chris Allegrettaf3e80ad2001-10-28 04:49:10 +00001272 - Add Esc-[-[IGL] keys for FreeBSD Console (PgUp,PgDn,Insert).
Chris Allegretta9b8b3702001-11-19 05:09:15 +00001273 - Added better Hurd support for function keys (Alt-V,U,9,@,F).
1274 signal_init()
1275 - do SIG_IGN for the SIGTSTP sigaction regardless of whether
1276 we have _POSIX_VDISABLE or not (more Hurd fixes)
Jordi Mallach773623c2001-10-28 21:00:49 +00001277 help_init()
1278 - Typo fixes and additions to the new help texts.
Chris Allegretta2084acc2001-11-29 03:43:08 +00001279 do_curpos()
1280 - Now takes arg for constant updating to always show the cursor
1281 position (David Lawrence Ramsey).
1282 do_wrap()
1283 - Many fixes (David Lawrence Ramsey).
Chris Allegretta80838272001-12-02 06:03:22 +00001284 do_spell()
1285 - Dont prompt for replace if we don't change the word in
1286 question (Rocco Corsi).
Jordi Mallach8c9c5722001-10-31 13:02:12 +00001287- po/de.po:
1288 - German translation updates (Karl Eichwalder).
1289- po/ru.po:
1290 - Russian translation updates (Sergey A. Ribalchenko).
1291- po/sv.po:
1292 - Swedish translation updates (Christian Rose).
Jordi Mallachfeebeb92001-11-19 12:09:51 +00001293- po/da.po:
1294 - Danish translation updates (Keld Simonse).
1295- po/es.po:
1296 - Spanish translation updates (Jordi).
Jordi Mallachdf59ae62001-12-07 14:00:56 +00001297- po/fr.po:
1298 - French translation updates (Michel Robitaille).
Chris Allegretta9c23a442001-12-12 01:45:01 +00001299- m4/gettext.m4:
1300 - diff against mutt 1.2.5's gettext.m4.
Chris Allegretta7b409bd2001-10-26 16:15:58 +00001301
Chris Allegrettadc57bba2001-10-26 16:14:45 +00001302nano-1.1.3 - 10/26/2001
Chris Allegrettab3655b42001-10-22 03:15:31 +00001303- General
1304 - Finally wrote function-specific help mode. Changes to
1305 nano.c:help_init() and winio.c:do_help(). Changed
1306 currshortcut and currslen #ifdefs to depend on both
1307 DISABLE_HELP and DISABLE_MOUSE being defined to not
1308 include. Changed all the shortcuts and lengths.
Chris Allegrettafa0c6962001-10-22 23:22:19 +00001309 - Fixed null_at to ACTUALLY DO SOMETHING with its arg. Again,
1310 this was causing nasty errors if the call to nrealloc moved
1311 where the data was located.
Chris Allegretta3a24f3f2001-10-24 11:33:54 +00001312 - Changed header comments to say "version 2" instead of "version
1313 1" as the COPYING file is actually version 2 of the GPL (bug
1314 noticed by Jordi Mallach).
Chris Allegrettab3655b42001-10-22 03:15:31 +00001315- cut.c:
1316 do_cut_text()
1317 - Check to see whether marked text is contained within edit
1318 window and if so only do an edit_refresh (variable dontupdate
1319 replaces cuttingpartialline).
1320 do_uncut_text()
1321 - Similar display fixes (David Lawrence Ramsey).
Chris Allegrettabeead282001-10-18 14:15:28 +00001322- faq.html
1323 - Removed nano-editor.org FTP site address [deprecated] and added
1324 the GNU one.
Chris Allegretta76e291b2001-10-14 19:05:10 +00001325- files.c:
1326 - Added status messages for converted DOS and Mac files.
Chris Allegrettab3655b42001-10-22 03:15:31 +00001327 People should know that their file wasnt normally formatted.
1328 load_file()
1329 - Status message when trying to load an already loaded file with multiple
1330 buffers (David Lawrence Ramsey).
1331 read_file()
1332 - Get rid of useless linetemp variable and name num_lines int
1333 (David Lawrence Ramsey).
Chris Allegretta76e291b2001-10-14 19:05:10 +00001334- nano.c:
1335 - New function do_prev_word, similar to do_next_word. Hard coded as
Chris Allegretta878ced32001-10-22 20:05:34 +00001336 Alt-space, as next word is hard coded as control-space. Fixed
1337 goofy logic setting x pos to value of last line when hitting the
Chris Allegrettaabf22a82001-10-24 00:58:19 +00001338 beginning of first line, prog should simply abort. Added
1339 the #ifdefs around the code in main().
Chris Allegretta10786402001-10-24 17:27:46 +00001340- nano.h:
1341 - Additional #define, SMALL_TOO to determine how long
1342 MAIN_LIST_LEN is. We need this because of the find matching
1343 bracket code.
Chris Allegretta48ebb812001-10-24 01:34:15 +00001344 main()
Chris Allegretta347c1842001-10-24 01:37:13 +00001345 - Moved #ifndef NANO_SMALL down past the case 0: line so
1346 control-space doesn't insert a \0 (ack!)
Chris Allegrettab3655b42001-10-22 03:15:31 +00001347- rcfile.c:
1348 - Fix incorrect number of rc options (David Lawrence Ramsey).
Jordi Mallach482d1652001-10-06 02:36:25 +00001349- po/sv.po:
1350 - Updated Swedish translation (Christian Rose).
Chris Allegretta2084acc2001-11-29 03:43:08 +00001351- po/da.po:
Jordi Mallach2476ebd2001-10-07 00:26:26 +00001352 - Updated Danish translation (Keld Simonsen).
Jordi Mallach26f46032001-10-07 15:53:27 +00001353- po/es.po:
1354 - Style updates to Spanish translation (Santiago Vila).
Jordi Mallach3da91392002-01-07 11:50:13 +00001355- po/ru.po, po/uk.po:
Jordi Mallacheb94b9e2001-10-15 14:26:48 +00001356 - Updated Russian and Ukrainian translation (Sergey A. Ribalchenko).
Chris Allegretta9a397892001-10-04 01:25:43 +00001357
Chris Allegretta03260b42001-10-04 01:24:07 +00001358nano-1.1.2 - 10/03/2001
Chris Allegrettac1049ac2001-08-17 00:03:46 +00001359- General
1360 - Added BUGS #63 & 64. Fixes in search_init() and nanogetstr(),
1361 new flag CLEAR_BACKUPSTRING because there's no easy way to
1362 clear the backupstring without making it global (messy), so we
1363 use a flag instead (just as messy?)
Chris Allegrettaff989832001-09-17 13:48:00 +00001364 - --enable-tiny now leaves out the Auto Indent code, do you really
1365 need that on a bootdisk? =-)
Chris Allegrettae1f14522001-09-19 03:19:43 +00001366 - New flag -o, --operatingdir, similar to Pico's -o mode. New
1367 function check_operating_dir(), changes to load_file (arg),
Chris Allegrettae09cd1d2001-09-19 03:22:52 +00001368 open_file_dup_search (arg), new function do_gotopos for -F
Chris Allegrettace78c1e2001-09-23 01:18:03 +00001369 (David Lawrence Ramsey).
Chris Allegretta91841892001-09-21 02:37:01 +00001370 - Code to read/write dos formatted files. Massive amounts of
Chris Allegretta7004c282001-09-22 00:42:10 +00001371 new code in read_line and write_file. New cmdline flag
1372 (-D --dos) to automatically write the file in DOS format,
1373 regardless of the original format.
Chris Allegretta995177f2001-09-22 04:34:23 +00001374 - Mac file writing supported too. Flag -M, --mac. Toggle
1375 Meta-O (MacOS? OS-X? =-)
Chris Allegretta3e3ae942001-09-22 19:02:04 +00001376 - New smooth scroll code by Ken Tyler. New flag -S, --smooth,
Chris Allegrettad948edc2001-10-02 00:38:56 +00001377 changes to page_up() and page_down(). Many fixes to paging by
Chris Allegretta5050d352001-09-27 00:44:58 +00001378 David Lawrence Ramsey.
Chris Allegretta8d990b52001-09-22 22:14:25 +00001379 - Bracket (brace, parens, etc) matching code by Ken Tyler.
1380 New functions do_find_bracket(), changes to findnextstr(),
1381 command is Meta-] (hope you dont mind since I already sold off
Chris Allegretta2bef1822001-09-28 19:53:11 +00001382 Meta-O to the MacOS file code Ken...) Fixes to bracket_msg
1383 by DLR.
Chris Allegretta1b3381b2001-09-28 21:59:01 +00001384 - Call do_gotopos from do_alt_spell() to keep position
1385 consistent when invoking alt speller (DLR).
Chris Allegretta7fdbd052001-10-02 00:55:38 +00001386 - Readded DISABLE_CURPOS because in certain instances (like
Chris Allegretta03260b42001-10-04 01:24:07 +00001387 all the "Search Wrapped" lines) the cursor position will
Chris Allegretta7fdbd052001-10-02 00:55:38 +00001388 be different yet we don't want the cursor position displayed.
Chris Allegrettae10f3892001-10-02 03:54:40 +00001389 - Take control-space out of -tiny build, unneeded.
Chris Allegretta222a0862001-10-02 00:24:37 +00001390- cut.c:
1391 cut_marked_segment()
1392 - Add magic line when cutting a selection including filebot
Chris Allegretta31b2b812001-10-03 01:51:33 +00001393 (discovered by DLR, fixed by DLR & Chris, fixes BUG #66).
Chris Allegrettadc2ca882001-10-02 23:55:09 +00001394 do_cut_text()
Chris Allegretta5e4b1082001-10-03 00:45:06 +00001395 - Don't recenter the line when cutting one line (DLR) (Bug #65).
Jordi Mallachf57b8862001-10-03 12:45:22 +00001396- faq.html:
1397 - Notes about the Free Translation Project.
1398 - Debian additions.
Chris Allegretta9519eb02001-09-27 20:46:25 +00001399- files.c:
1400 do_writeout()
1401 - Expanded strings to not use %s and ?: to determine
1402 write/append string to be nice to translators.
Chris Allegretta1b3381b2001-09-28 21:59:01 +00001403 new_file()
1404 - Initialize totsize (DLR).
Chris Allegretta0357c4d2001-09-19 02:59:25 +00001405- nano.c:
1406 main()
Chris Allegrettab516d8e2001-10-03 00:01:36 +00001407 - Added var constcheck as a CRC-like check of whether cursor
Chris Allegretta0357c4d2001-09-19 02:59:25 +00001408 pos has changed and if so update the pos with -c.
Chris Allegrettace78c1e2001-09-23 01:18:03 +00001409 - Many tweaks and changes from numerics to char equivs
1410 (David Lawrence Ramsey).
Chris Allegretta92f5fdc2001-10-02 02:58:07 +00001411 - Fix the KEY_IC being undefined when using slang.
Chris Allegretta6414b402001-09-21 03:21:11 +00001412 do_mouse()
1413 - Send 27 when the menu item clicked is an alt key seq... The
1414 lines aren't lined up since the menu width changed though,
1415 this breakage depends on whether the new widths will be kept
1416 or not (FEEDBACK!!)
Chris Allegrettaa951f212001-09-27 21:07:39 +00001417 - Change k based on currslen to allow the new widths in
1418 bottombars().
Chris Allegretta56214c62001-09-27 02:46:53 +00001419 do_wrap()
1420 - Fixes for Pico incompatibility in cases 2b and 2c.
1421 (David Lawrence Ramsey).
1422 global_init()
1423 - New arg save_cutbuffer, allows cutbuffer to not be lost when
1424 using multibuffer.
Jordi Mallachf57b8862001-10-03 12:45:22 +00001425- nano.1:
1426 - Added new features, fixed some typos (Jordi).
Jordi Mallach372b1a02001-08-08 19:35:23 +00001427- nano.texi:
Jordi Mallachf57b8862001-10-03 12:45:22 +00001428 - Corrected the Mouse Toggle section, noticed by Daniel Bonniot.
1429 - Added many command line options, toggles and other additions
1430 (Jordi).
Chris Allegrettabeb54972001-09-22 23:54:45 +00001431- rcfile.c:
1432 - NUM_RCOPTS fix (DLR).
Chris Allegretta66c33b82001-10-02 23:57:31 +00001433 - Add tabsize support to rc file (Nathan Heagy).
Chris Allegrettaca1a82e2001-10-03 15:18:41 +00001434 - Fix incorrect argument in fill and tabsize error message
1435 (Nathan Heagy)
Chris Allegretta759d3522001-09-27 13:04:10 +00001436- search.c:
1437 - Changed search prompt to "Search" followed by a list of
1438 bracketed, free-standing modifiers that do not imply a grammar,
1439 and the (to replace) string separately. Hopefully this resolves
1440 the i18n problems that this provoked.
Chris Allegretta7fdbd052001-10-02 00:55:38 +00001441 findnextstr()
1442 - Various fixes that need testing (Ken Tyler).
Chris Allegretta9b3c7e82001-08-25 16:00:53 +00001443- winio.c:
1444 - Add David Lawrence Ramsey to credits.
Chris Allegretta96eef732001-08-25 16:41:37 +00001445 bottombars()
1446 - Spread out the menu items, feedback definitely needed on this.
Chris Allegrettace78c1e2001-09-23 01:18:03 +00001447 nanogetstr()
1448 - More key fixes (David Lawrence Ramsey)
Chris Allegretta92f5fdc2001-10-02 02:58:07 +00001449 - Don't be clever and wasteful, just repaint every iteration.
Jordi Mallach2cde0a22001-09-05 13:23:53 +00001450- po/nl.po:
Jordi Mallachc6c35ea2001-09-09 11:04:43 +00001451 - New Dutch translation, by Guus Sliepen <guus@nl.linux.org>.
Jordi Mallachc1917e72001-09-28 13:06:29 +00001452- po/ca.po, po/es.po:
1453 - Updated Catalan and Spanish translation (Jordi).
Jordi Mallachd1625cd2001-09-10 11:36:45 +00001454- po/gl.po:
1455 - Updated Galician translation (Jacobo Tarrío).
Jordi Mallach90bbdd32001-09-12 19:06:59 +00001456- po/da.po:
1457 - New Danish translation, by Keld Simonsen <keld@dkuug.dk>.
Jordi Mallach6c49b3f2001-09-15 22:47:05 +00001458- po/sv.po:
1459 - Updated Swedish translation (Christian Rose).
Jordi Mallach1e36fd82001-10-01 17:24:24 +00001460- po/it.po:
1461 - Updated Italian translation (Marco Colombo).
Jordi Mallach780f3202001-10-03 20:47:47 +00001462- po/fi.po:
1463 - Updated Finnish translation (Pauli Virtanen).
Chris Allegretta47a26862001-07-29 01:17:38 +00001464
Chris Allegretta0e8c8d82001-07-29 01:16:27 +00001465nano-1.1.1 - 07/28/2001
Chris Allegrettaef8f98d2001-07-19 12:24:17 +00001466- General
1467 - Reverted included gettext from 0.10.38 to 0.10.35 in intl/ dir.
1468 - Added m4/ directory to allow rebuilding using only the internal
1469 version of gettext.m4 (Albert Chin).
Chris Allegretta307d4c82001-07-15 20:25:33 +00001470- nano.c:
1471 main()
Chris Allegretta0e8c8d82001-07-29 01:16:27 +00001472 - Change the multibuffer getopt option to 'F' (David Lawrence
1473 Ramsey)
Chris Allegretta41ed0162001-07-24 00:21:03 +00001474 do_mark()
1475 - Temporarily disable cursorpos when enabled to be able to see
1476 the mark (un)set message (Ken Tyler).
Chris Allegretta4839d232001-07-19 22:03:51 +00001477- nanorc.sample
1478 - Typo fixes and updates (David Lawrence Ramsey)
Chris Allegretta5cce53b2001-07-17 10:42:50 +00001479- files.c:
Chris Allegrettae6421972001-07-18 01:03:36 +00001480 new_file()
1481 - Do add_open_files if there aren't any open yet (David Lawrence
1482 Ramsey).
1483 close_open_file()
1484 - Try to open the next file first, then the previous one
1485 (David Lawrence Ramsey).
Chris Allegretta5f36c372001-07-16 00:48:53 +00001486- global.c:
1487 shortcut_init()
1488 - Rewrote the whereis and replace lists to put CANCEL at the end
1489 of the list, and not include the toggle functions when using
1490 NANO_SMALL.
Chris Allegrettaf372bd92001-07-15 22:24:24 +00001491- nano.h:
1492 - Fix type in INSERTFILE_LIST_LEN.
Chris Allegretta5f36c372001-07-16 00:48:53 +00001493 - Rewrote all the macro definitions to be a little less messy,
1494 for the #ifdefs anyway.
Chris Allegretta307d4c82001-07-15 20:25:33 +00001495- rcfile.c:
1496 - Update for the multibuffer option (oops) (David Lawrence Ramsey).
Chris Allegrettaf372bd92001-07-15 22:24:24 +00001497- search.c:
Chris Allegretta5f36c372001-07-16 00:48:53 +00001498 - Added #ifdef NANO_SMALLs around the REVERSE_SEARCH code.
Chris Allegrettaf372bd92001-07-15 22:24:24 +00001499 search_init()
1500 - add #ifdef NANO_SMALL around toggles code.
Chris Allegretta5f36c372001-07-16 00:48:53 +00001501- winio.c:
1502 bottombars()
1503 - Fixed an off by one that wasn't letting lines with odd #
1504 shortcuts work in certain cases.
Chris Allegretta47f77b42001-07-15 16:13:18 +00001505
Chris Allegretta9a748602001-07-15 16:07:23 +00001506nano-1.1.0 - 07/15/2001
Chris Allegretta6b58acd2001-04-12 03:01:53 +00001507- General
1508 - New global variables currshortcut and currslen to support using
Chris Allegretta051fc6e2001-05-05 23:17:36 +00001509 the mouse with the shortcuts. Also supports clicking on files
Chris Allegretta6fe61492001-05-21 12:56:25 +00001510 in browser. Added #ifdef DISABLE_MOUSE around this code also.
Chris Allegretta84de5522001-04-12 14:51:48 +00001511 - Changed mouse disabling code from depending on --enable-tiny
Chris Allegretta88520c92001-05-05 17:45:54 +00001512 to its own flag, --disable-mouse. The --tiny option defines
Chris Allegretta84de5522001-04-12 14:51:48 +00001513 this automatically, but now just mouse support can be disabled
1514 if desired.
Rocco Corsi12f294c2001-04-14 06:50:24 +00001515 - File Browser supports the "Goto Directory"
Chris Allegretta8d8e0122001-04-18 04:28:54 +00001516 - Added rcfile.c source file. Only includes much of anything when
1517 --enable-nanorc is used. Tons of new funcs, most notably
1518 do_rcfile() called from nano.c:main(). Added much needed
1519 function ncalloc(), will have to go through source code later
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00001520 and change the appropriate calls which used nmalloc for lack of
1521 an appropriate calloc function *** FIXME ***
Rocco Corsi4dfaf932001-04-20 01:59:55 +00001522 - After "Alternate" spell checker is called, cursor is repositioned on
Chris Allegretta88520c92001-05-05 17:45:54 +00001523 the same line as before ^T was pressed.
Chris Allegretta6efda542001-04-28 18:03:52 +00001524 - Moved config.h up in all .c files #include list (Albert Chin).
Chris Allegretta88520c92001-05-05 17:45:54 +00001525 - Added config.guess and config.sub to distribution because,
1526 apparently, newer autoconf/automakes can't live without them.
1527 - Various spelling updates by David Lawrence Ramsey.
Chris Allegretta88b09152001-05-17 11:35:43 +00001528 - Changed all string allocations to charalloc(), new function
1529 designed to take nmalloc argument but call calloc based on
1530 (char *) size.
Chris Allegretta6fe61492001-05-21 12:56:25 +00001531 - New macro DISABLE_WRAPJUSTIFY to easily check for both wrapping
1532 and justify being disabled. This allows us to compile out the
1533 -r flag if neither are set, and will also allow us to comment
1534 out -W when it is written.
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00001535 - Allow fill to take a negative value to signify a "from right side"
Chris Allegretta6fe61492001-05-21 12:56:25 +00001536 value. This allows the value to vary with the screen size yet
1537 still be correct. New static value wrap_at to minimize code
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00001538 impact. Updated man page and info file.
Chris Allegrettacc197ef2001-05-29 04:21:44 +00001539 - Allow file appending. New shortcut list nano_insertfile_list (since
1540 insert and write routines can't share shortcut lists anymore),
1541 new args to do_writeout and write_file called append, and of source
1542 code changes to those functions.
Chris Allegrettae4933a32001-06-13 02:35:44 +00001543 - Allow backwards searching. Drastic rewrite of the search prompt
1544 string by Chris. All other code by Ken Tyler. New globals
1545 nano_reverse_msg, new functions revstrstr and revstrcasestr,
1546 many changes to search functions. Not too big a code size
1547 increase!
Chris Allegretta658399a2001-06-14 02:54:22 +00001548 - Moved extension functions (Case Sensitive, Regexp, and Backwards
1549 Search, Append key in write file function) to Meta keys, as
1550 people are complaining loudly about nano not being control-key
Chris Allegretta6df90f52002-07-19 01:08:59 +00001551 compatible with Pico, which is a Bad Thing (TM). Changes to
Chris Allegretta658399a2001-06-14 02:54:22 +00001552 shortcut_init, toggle_init, new toggles for backwards and regexp
1553 (and you can now toggle all search options including regexp at
1554 the Search: prompt!) Changes to nanogetstr to enable Meta
1555 keys to be grabbed, changes to onekey to print M-style shortcuts.
1556 - New macro TOGGLE which just toggles, no more silly checking
1557 ISSET and then using SET or UNSET when we want a simple toggle
1558 for a flag.
Chris Allegretta2d7893d2001-07-11 02:08:33 +00001559 - Added multiple buffer capability (God help us). New configure
Chris Allegretta355fbe52001-07-14 19:32:47 +00001560 option --enable-multibuffer (-F), changes to do_insertfile(),
Chris Allegretta2d7893d2001-07-11 02:08:33 +00001561 do_insertfile_void(), toggle_init(), do_gotoline(), edit_update(),
1562 and write_file(), new functions add_open_file(),
1563 open_file_change_name(), load_open_file(), open_file_dup_search(),
1564 open_file_dup_fix(), open_prevfile(), open_nextfile(),
1565 close_open_file(), get_full_path(), die_save_file(), etc.
1566 (David Lawrence Ramsey).
Chris Allegretta355fbe52001-07-14 19:32:47 +00001567 - Using --enable-extra automatically defines --enable-multibuffer
1568 changes to version() and configure.in.
Chris Allegretta9a748602001-07-15 16:07:23 +00001569 - Moved to gettext 0.10.38 at the last second, sure to break
1570 something, but at least I can run make distcheck!
Jordi Mallach7fde37f2001-06-22 23:26:19 +00001571- Makefile.am:
1572 - Include ABOUT-NLS and the new THANKS files to the distributed list.
1573- THANKS:
1574 - Initial, incomplete list of people to thank.
Chris Allegretta049149f2001-07-02 01:57:44 +00001575 - Added some more people.
Chris Allegrettaea066c82001-04-13 02:32:06 +00001576- configure.in:
Chris Allegretta88520c92001-05-05 17:45:54 +00001577 - New option, --enable-nanorc, which allows people to have a .nanorc
Chris Allegretta18d70f12001-04-28 15:53:28 +00001578 initialization file and set options normally used on the command
1579 line, and color later on.
Jordi Mallach72549042001-05-02 17:18:17 +00001580 - Added --enable-color option to allow color and syntax highlighting
Chris Allegretta18d70f12001-04-28 15:53:28 +00001581 (stub as of now).
Chris Allegretta4cb991d2001-05-10 22:55:16 +00001582- cut.c:
1583 add_to_cutbuffer()
1584 - Remove useless statements (Rocco).
Chris Allegretta9fe015c2001-05-17 03:41:00 +00001585 cut_marked_segment()
Chris Allegretta53ea9d12001-05-18 19:58:33 +00001586 - Add bizarre copy of bot node, else *BSD goes ballistic (fixes
1587 BUG #60).
Chris Allegrettacc197ef2001-05-29 04:21:44 +00001588 - Added 'destructive' argument. Allows the selected text to be
1589 added to the cutbuffer without changing the contents of the
1590 file. This allows writing selection to separate files.
Chris Allegretta3ba29532001-06-10 20:41:20 +00001591 do_cut_text()
Chris Allegrettaa75bc412001-06-12 23:22:26 +00001592 - If the line is empty when using -k and wasn't already added,
1593 create a dummy line and add it to the cutbuffer (fixes bug #61)
Chris Allegretta40f45c82001-06-21 15:07:40 +00001594 - Reset marked_cut if we blow away the cutbuffer.
Chris Allegretta500b5e32001-06-21 23:58:47 +00001595 - Moved the case of current == mark_beginbuf into cut_marked
1596 segment, so do_writeout could call it when writing selection to
1597 file.
Chris Allegretta40f45c82001-06-21 15:07:40 +00001598 do_uncut_text()
1599 - Reset cutbuffer even if we're uncutting marked or cut to end text!
Jordi Mallach72549042001-05-02 17:18:17 +00001600- faq.html:
1601 - Brought the FAQ up to date, many little changes (Jordi).
Chris Allegretta9a748602001-07-15 16:07:23 +00001602 - Added sections 3.7 and 3.8 for the multibuffer and nanorc support.
Rocco Corsi12f294c2001-04-14 06:50:24 +00001603- files.c:
1604 do_browser()
1605 - Minor fixes to the processing of SELECT function (Rocco)
1606 - Added the "Goto Directory" code (Rocco)
Chris Allegrettad4615622001-05-23 21:54:47 +00001607 - Don't shift the size of the file is it's less than 1K. Fixed
1608 files less than 1K being displayed as 0B (Rocco).
Chris Allegrettaa2c02e92001-07-02 01:31:44 +00001609 - More Picoish keystrokes for the browser, ^P, ^N, etc, for up,
1610 down, etc, and add the consistent ^C to exit (Jim Knoble).
Chris Allegrettacc197ef2001-05-29 04:21:44 +00001611 do_writeout()
1612 - New code to allow writing selected text to a separate file.
David Lawrence Ramsey5db0cdc2002-06-28 22:45:14 +00001613 When this is done, the current state is preserved.
Chris Allegrettaecc3d7f2001-06-05 23:24:55 +00001614 write_file()
1615 - New arg, nonamechange, means whether or not to update the
1616 current filename after writing the file out.
Chris Allegretta1a8b2962001-06-30 18:41:08 +00001617 - Increment lineswritten when the very last line isn't null.
1618 Fixes off by one count when writing selection to file.
Rocco Corsi12f294c2001-04-14 06:50:24 +00001619- global.c:
1620 - Updated some of the lists for the "Goto Directory" code (Rocco)
Chris Allegretta6cb4e882001-04-29 02:26:17 +00001621- move.c:
1622 page_up()
1623 - Rewritten with a loop to make screen updates work when
1624 mark is set (fixes bug #59).
Chris Allegretta1cde3222001-06-11 06:56:10 +00001625 do_home(), do_end()
1626 - Don't keep cutbuffer.
Jordi Mallach3f8db492001-04-30 10:30:43 +00001627- nano.1:
1628 - Added the missing -r flag (Jordi).
Rocco Corsi12f294c2001-04-14 06:50:24 +00001629- nano.c:
Rocco Corsi4dfaf932001-04-20 01:59:55 +00001630 do_alt_speller()
1631 - Reposition cursor on same line as before ^T was called (Rocco)
Chris Allegretta316e4d92001-04-28 16:31:19 +00001632 ABCD(), main()
1633 - Add Alt-whatever-[a-d] support as well as Alt-whatever-[A-D].
Rocco Corsi12f294c2001-04-14 06:50:24 +00001634 main()
1635 - Code to silently process "-g" and "-j" (Rocco)
Chris Allegrettab26ecb52001-07-04 16:27:05 +00001636 - Added Alt-[-7,8 support for home/end keys (Jeff Teunissen).
Chris Allegretta521e00d2001-06-28 16:52:52 +00001637 signal_init()
1638 - Reorder sigaction calls, use sigfillset() to stop SIGTSTP and
1639 SIGCONT from being interrupted, allows suspending nano
1640 to work more reliably, esp. with mutt, etc.
1641 do_suspend()
1642 - Don't try to play with the handler inside the handler. Just
1643 raise a SIGSTOP. We also now write the "use "fg"" message to
1644 stdout instead of stderr.
Chris Allegrettaac899e52001-06-30 04:09:09 +00001645 - Added _POSIX_VDISABLE macro to fully ignore suspend keystroke.
1646 Eliminates the possibility that nano can be suspended when
1647 it's not supposed to be. Many many many thanks to Jordi and
1648 Tom Lear for helping out finding and fixing this bug!
Chris Allegretta521e00d2001-06-28 16:52:52 +00001649 do_cont()
1650 - Now just does a refresh call instead of playing with the SIGTSTP
1651 handler.
Rocco Corsi12f294c2001-04-14 06:50:24 +00001652- nano.h:
1653 - Updated the BROWSER_LIST_LEN for the "Goto Directory" code (Rocco)
1654- proto.h:
1655 - New shortcut list added: gotodir_list (Rocco).
Rocco Corsi4dfaf932001-04-20 01:59:55 +00001656- search.c:
1657 do_gotoline()
1658 - Optimizations, remove "$" goes-to-last-line, less messages (Rocco)
Chris Allegretta5050aa62001-04-22 07:10:21 +00001659 do_replace()
1660 - If we manage to make it in somehow with VIEW_MODE on, abort
1661 nicely (fixes BUG #59).
Chris Allegretta99afb852001-05-16 04:20:57 +00001662- utils.c
1663 strcasestr()
1664 - Replaced by mutt's mutt_stristr function, because the thought
1665 of dynamically allocating memory and copying each line in a file
1666 to do a search or replace was causing me to lose sleep.
Chris Allegretta6efda542001-04-28 18:03:52 +00001667- winio.c:
1668 actual_x()
1669 - Remove inline from function decl (Albert Chin).
Jordi Mallach72549042001-05-02 17:18:17 +00001670- po/POTFILES.in:
1671 - Added utils.c to the list.
1672- po/es.po, po/ca.po:
1673 - Updated (Jordi).
Jordi Mallach96345712001-04-29 10:38:07 +00001674- po/gl.po:
Jordi Mallach64bacd22001-05-14 13:55:30 +00001675 - Galician translation by Jacobo Tarrío.
Jordi Mallach92b3bd22001-05-16 09:10:31 +00001676- po/uk.po, po/ru.po:
1677 - New Ukrainian and Russian translations by Sergey A. Ribalchenko
Jordi Mallach3bf6bf42001-05-14 13:11:56 +00001678 <fisher@obu.ck.ua>, thanks!
Jordi Mallachefd22362001-06-22 16:59:29 +00001679- po/id.po:
1680 - Updated Indonesian translation by Tedi Heriyanto.
Chris Allegretta63ba2d62001-05-16 12:16:28 +00001681- po/it.po
1682 - Updated Italian translation by Marco Colombo.
Jordi Mallachdf7d8b22001-07-05 23:16:05 +00001683- po/no.po:
1684 - New Norwegian translation by Eivind Kjørstad <ekj@vestdata.no>.
1685- po/sv.po:
1686 - New Swedish translation by Christian Rose <menthos@menthos.com>.
Chris Allegrettaac840eb2001-04-07 18:21:47 +00001687
1688nano 1.1 tree forked here 04/07/2001
1689
Chris Allegretta38068cd2001-04-06 20:04:23 +00001690nano 1.0.1 - 04/06/2001
Chris Allegrettacef7fbb2001-04-02 05:36:08 +00001691- General:
1692 - added configure option --disable-wrapping. Does what it says,
1693 no wrapping or checks are done. Separate from --enable-tiny,
Chris Allegretta88520c92001-05-05 17:45:54 +00001694 some may want a bare-bones Pico clone that does wrap text.
Chris Allegrettacef7fbb2001-04-02 05:36:08 +00001695 Affects configure, nano.c:do_char() and check_wrap() obviously,
1696 version(), and do_char().
Chris Allegretta3948bae2001-03-25 00:46:40 +00001697- aclocal.m4:
1698 - Minor patch for intl check (really this time) (Albert Chin)
Chris Allegretta4bf831f2001-03-26 15:35:34 +00001699- faq.html:
1700 - Fixed typo in section 6.1 (discovered by Bob Farmer).
Chris Allegretta49805172001-03-28 02:14:28 +00001701- files.c:
Chris Allegretta90d30742001-04-03 01:02:38 +00001702 - fix two typos in comments, one in ChangeLog (Matthias Andree)
Chris Allegretta49805172001-03-28 02:14:28 +00001703 diralphasort()
Chris Allegretta0876dc92001-03-28 13:04:08 +00001704 - Stop abort on symlinks (Matthias Andree)
Chris Allegretta90d30742001-04-03 01:02:38 +00001705 - use strcasecmp to sort directory if available, pilot does that
1706 as well (Matthias Andree)
1707 filestat(), do_browse()
Chris Allegretta0876dc92001-03-28 13:04:08 +00001708 - Changed lstat calls to stat, which fixes the browser not
1709 following links to directories. We only use lstat() when
1710 printing the details of the file, and if it is a link, then
1711 check via lstat() for link to a directory. If it is
Jordi Mallachb2c4cbe2001-04-02 13:47:17 +00001712 a directory, display (dir), else use the normal "--".
Chris Allegretta90d30742001-04-03 01:02:38 +00001713 do_browser()
1714 - Fix broken size suffix off-by-one errors (Matthias Andree)
1715 cwd_tab_completion(), do_browse_from()
1716 - Use PATH_MAX instead of 0 arg to getcwd (Matthias Andree).
1717 - Changed above to use PATH_MAX only when defined on the
1718 system, as the HURD e.g. does not support it.
Jordi Mallachb2c4cbe2001-04-02 13:47:17 +00001719- intl/Makefile.in:
1720 distclean
1721 - added intl/libintl.h to the rm -f rule, should fix the unresolved
1722 gettext symbols problem (Jordi).
Chris Allegretta20712072001-03-23 03:51:48 +00001723
Chris Allegretta2bfbda02001-03-23 03:50:44 +00001724nano-1.0.0 - 03/22/2001
Chris Allegrettae3167732001-03-18 16:59:34 +00001725- General
1726 - Added void to functions declared as () args, nano.c:do_mark()
1727 and search.c:regexp_cleanup(). (Christian Weisgerber).
1728 - Changed internal variables called "new" to "newnode" to avoid
1729 the "new" C++ reserved word, even though there is likely no way
1730 nano will EVER be compilable with a C++ compiler. (suggested by
1731 Rocco Corsi).
Chris Allegretta7ab3e8f2001-03-22 23:12:22 +00001732- ca.po, es.po:
1733 - Final tweaks for Nano 1.0.
Chris Allegretta10ae4f12001-03-20 15:51:43 +00001734- cs.po:
1735 - Czech translation from Vaclav Haisman.
Chris Allegretta7ab3e8f2001-03-22 23:12:22 +00001736- nano.info:
1737 - Added dir entry (Albert Chin).
Chris Allegretta35dac582001-03-21 15:07:20 +00001738- winio.c:
1739 statusq()
1740 - Added NANO_BACK_KEY and NANO_FORWARD_KEY cases for left and right.
Chris Allegrettae3167732001-03-18 16:59:34 +00001741
17421.0-test prerelease - 03/17/2001
Chris Allegretta94a78b82001-03-14 08:28:48 +00001743- nano.c:
1744 do_wrap()
1745 - Added case for autoindenting text causing new line (Adam).
1746 - Added SAMELINE case to above. Added checks to cases 1b and
1747 2b for placement of cursor.
Chris Allegretta565f7d52001-03-15 02:02:20 +00001748- move.c:
1749 page_down()
Chris Allegretta88520c92001-05-05 17:45:54 +00001750 - Check for totlines < editwinrows in check for superfluous
Chris Allegretta565f7d52001-03-15 02:02:20 +00001751 edit update (fixed BUG #57).
Jordi Mallach5b387d72001-02-20 12:45:47 +00001752- search.c:
Chris Allegretta74bb31b2001-03-14 09:08:14 +00001753 print_replaced()
Jordi Mallach5b387d72001-02-20 12:45:47 +00001754 - s/occurence/occurrence typos (Jordi).
Chris Allegretta74bb31b2001-03-14 09:08:14 +00001755 search_init()
1756 - If using Pico mode and regex and same answer is entered, use
1757 last_search string instead of answer (fixes BUG #56).
Chris Allegretta203ce152001-02-23 03:05:38 +00001758- nano.texi:
1759 - Meta-Z correction and grammar in --enable-tiny desc (Neil Parks).
Chris Allegretta9c9c5da2001-02-20 03:53:31 +00001760
Chris Allegrettaa4a222d2001-02-20 03:52:13 +00001761nano-0.9.99pre3 - 02/19/2001
Chris Allegrettaaf6414a2001-02-11 19:05:05 +00001762- General
Chris Allegretta1bf501c2001-02-12 03:24:46 +00001763 GNU compliance issues:
Jordi Mallacha7b2ed02001-02-20 02:04:43 +00001764 - Reworked shortcut list, put "Get Help" into default list,
Chris Allegretta1bf501c2001-02-12 03:24:46 +00001765 removed "Goto Line", aligned "Read File" with "Write Out" and
1766 "Replace" with "Where is" for consistency.
1767 - Added texinfo manual nano.texi. Added texi options to
Chris Allegrettac46dd812001-02-14 14:28:27 +00001768 Makefile.am.
Chris Allegrettade48b412001-02-01 22:56:44 +00001769- configure.in:
1770 - Autoconf compatibility fixes (Pavel Roskin)
Chris Allegretta618f5d72001-02-16 04:48:30 +00001771 - Added separate check for resizeterm().
Jordi Mallach82b18292001-02-17 01:31:32 +00001772 - ALL_LINGUAS: added hu and ca.
Chris Allegretta09f39cb2001-02-05 13:43:23 +00001773- cut.c:
1774 do_cut_text()
1775 - marked text cut fixes (Rocco) (Fixes bug #54).
Chris Allegretta00ae5df2001-02-05 18:24:33 +00001776- nano.c:
Chris Allegretta4ed13152001-02-10 17:50:50 +00001777 do_delete()
1778 - Added check for current->next == fileptr, as we have a magic
Chris Allegretta88520c92001-05-05 17:45:54 +00001779 line code again, fixes silliness at the end of the last line
Chris Allegretta4ed13152001-02-10 17:50:50 +00001780 before the magic line (reported by J.A. Neitzel).
Chris Allegretta00ae5df2001-02-05 18:24:33 +00001781 do_justify()
1782 - If the keystroke after the justify is not the unjustify key,
Chris Allegretta88520c92001-05-05 17:45:54 +00001783 blank the statusbar (bug reported by Neil Parks).
Chris Allegretta8bc03b62001-02-09 02:57:52 +00001784 main()
1785 - Added ENABLE_NLS check around gettext stuff.
Chris Allegretta4ce8e3b2001-02-16 01:49:31 +00001786- winio.c:
1787 do_yesno()
1788 - Added localized yes, no and all strings to function and rewrote
1789 handler for the new format.
Chris Allegrettab55999e2001-02-09 02:49:46 +00001790- de.po:
Jordi Mallach81197652001-02-16 20:00:03 +00001791 - Translation updates by Florian König.
Chris Allegrettab55999e2001-02-09 02:49:46 +00001792- fi.po:
1793 - Translation updates by Pauli Virtanen.
Chris Allegrettad096f682001-02-05 13:51:31 +00001794- hu.po:
1795 - Hungarian translation by Horvath Szabolcs.
Chris Allegrettab55999e2001-02-09 02:49:46 +00001796- id.po:
1797 - Translation updates by Tedi Heriyanto.
Jordi Mallach81197652001-02-16 20:00:03 +00001798- es.po:
Jordi Mallach6aec0d62001-02-17 01:32:58 +00001799 - Translation updates and grammatical/typo fixes (Jordi).
Jordi Mallach82b18292001-02-17 01:31:32 +00001800- ca.po:
1801 - Catalan translation by Jordi Mallach :)
Jordi Mallacha7b2ed02001-02-20 02:04:43 +00001802 - Miquel Vidal <miquel@sindominio.net> went over it and corrected
1803 many typos and completed bits that remained untranslated by error.
Chris Allegretta7c1fee72001-01-31 23:24:54 +00001804
Chris Allegretta34318ed2001-01-31 23:22:36 +00001805nano-0.9.99pre2 - 01/31/2001
Chris Allegretta17dcb722001-01-20 21:40:07 +00001806General
Chris Allegrettad4ddd012001-01-23 01:17:07 +00001807 - Removed center_x and center_y globals. center_y was
1808 completely unused and center_x was only used a few places,
Chris Allegretta17276e52001-01-23 01:22:32 +00001809 easily replaced with COLS / 2 (oops, not current_x & y (Rob)).
Chris Allegretta17dcb722001-01-20 21:40:07 +00001810 - Deleted free_node, duplicate of delete_node, and changed all
1811 free_node calls to delete_node.
Chris Allegretta08020882001-01-29 23:37:54 +00001812 - Fix for resizing the window in modes other than normal edit mode
1813 Changes to handle_sigwinch(), main(). Fixes bug #52 (Rocco).
Chris Allegretta0fc2b812001-01-18 15:04:20 +00001814- files.c:
1815 write_file()
1816 - Don't free() realname on error, if it needs to be free()d later
1817 it will be (fixes crash on successful write after failed write,
1818 discovered by David Sobon).
Chris Allegretta8d9b11a2001-01-19 04:17:24 +00001819 username_tab_completion()
1820 - Optimization and removal of useless vars (Rocco).
Chris Allegretta2c2c5f22001-01-23 03:27:31 +00001821 - Rewritten using getpwent (suggested by Rocco).
Chris Allegrettaa711f7e2001-01-23 04:16:31 +00001822 - Removed redundant conditional (Rocco).
Chris Allegrettaee733e62001-01-22 22:17:08 +00001823 real_dir_from_tilde()
Chris Allegretta88520c92001-05-05 17:45:54 +00001824 - Rewritten using getpwent (suggested by Adam, much optimized by
1825 Rocco).
Chris Allegrettaf0b26df2001-01-20 22:18:18 +00001826- global.c:
1827 - Don't define toggles global or toggle_init_one if using --tiny.
Chris Allegretta17dcb722001-01-20 21:40:07 +00001828- nano.c:
1829 do_justify()
1830 - Added restoration of totsize after unjustify command.
Chris Allegretta7f7ce562001-01-21 16:35:49 +00001831 usage()
Chris Allegrettae9a2d032001-01-21 16:08:21 +00001832 - Add arg to -T help (Rocco).
Chris Allegretta0a06e072001-01-23 02:35:04 +00001833 global_init(), handle_sigwinch()
1834 - Messy loops replaced with memset calls (Rocco).
Chris Allegretta169ee842001-01-26 01:57:32 +00001835 do_alt_speller()
1836 - Added code to parse multi-word alt_speller strings.
Chris Allegrettae434b452001-01-27 19:25:00 +00001837 - Fix initialization before fork() (Rocco).
Chris Allegretta34318ed2001-01-31 23:22:36 +00001838- proto.h:
1839 - Fix do_credits() proto (oops!)
Chris Allegrettae434b452001-01-27 19:25:00 +00001840- winio.c:
1841 nanogetstr()
1842 - Sanity check for x overrunning the string buffer len.
Chris Allegretta76745fb2001-01-18 04:40:06 +00001843
Chris Allegretta9d6f3f32001-01-21 02:35:03 +00001844nano 0.9.99pre1 - 01/17/2001
Chris Allegrettaa4d6d1d2001-01-10 23:44:10 +00001845General
1846 - Changed #ifdefs to check for both DISABLE_TABCOMP and
1847 NANO_SMALL, makes tiny option leave out tab completion, which
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001848 should be left out in that circumstance. Saves at least 5k.
Rocco Corsi06aca1c2001-01-11 05:30:31 +00001849 - Previous change to #ifdefs DISABLE_TABCOMP and NANO_SMALL rolled
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001850 back. (Rocco)
1851 - Various #ifdef & #ifndef cleanups. (Rocco)
Chris Allegretta201d9bf2001-01-14 03:17:53 +00001852 - Added message for when keypad goes awry. Added code in main and
1853 function print_numlock_warning() to notify user, and added an
Chris Allegretta88520c92001-05-05 17:45:54 +00001854 appropriate section in the faq to refer to this brokenness.
Chris Allegrettae61e8302001-01-14 05:18:27 +00001855 - Added macros in nano.h for magic values that might be unclear in
Chris Allegretta2be96d02001-01-14 05:22:43 +00001856 nano.c:global_init(). (Rocco)
Chris Allegrettabbebec62001-01-09 00:37:32 +00001857- configure.in:
1858 - Fix for _use_keypad check breaking slang support (Christian
1859 Weisgerber).
Chris Allegretta88520c92001-05-05 17:45:54 +00001860 - Changed to automatically define the 5 DISABLE variables when
Chris Allegretta4ee0b412001-01-11 15:11:00 +00001861 NANO_SMALL (enable-tiny) is requested at configure.
Chris Allegretta2c4feca2001-01-09 17:40:56 +00001862- faq.html:
1863 - Added some info on making the binary smaller with the configure
1864 script.
Chris Allegretta201d9bf2001-01-14 03:17:53 +00001865 - Added section on keypad bugginess.
Chris Allegrettabf692612001-01-08 16:59:19 +00001866- files.c:
1867 real_dir_from_tilde()
1868 - Oops, fix case where buf ="~", silly crash (bug discovered by
1869 Neil Parks).
Chris Allegretta8eac3b52001-01-08 21:14:04 +00001870 do_browser()
1871 - Added space and - keys to do page up and down.
Chris Allegrettaa35ec042001-01-15 02:26:12 +00001872 cwd_tab_completion(), input_tab()
1873 - Changed bare malloc/calloc calls to nmalloc (found by Rocco).
Chris Allegretta40587092001-01-16 04:45:38 +00001874 - Added memset() to matchBuf to ensure sanity (Rocco, Adam).
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001875- nano.c:
Chris Allegretta1748cd12001-01-13 17:22:54 +00001876 ABCD()
1877 - New function, figures out what kbinput to return given
1878 input common to several switch statements, allows us to
1879 support the default Konsole key settings.
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001880 main()
1881 - Alternate speller option no longer valid if DISABLE_SPELLER is
1882 active. (Rocco)
Chris Allegrettaae4318d2001-01-16 04:18:26 +00001883 - Removed direct calls to usage() (#else) for -k (cut) or -s (speller)
1884 options when these have been disabled. (Rocco)
Chris Allegretta36939442001-01-15 20:26:38 +00001885 - Initialized kbinput to get around stupid compiler warning.
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001886 nano_small_msg()
1887 - This function has been removed. All references now call
1888 nano_disabled_msg. (Rocco)
1889 version()
1890 - When NANO_SMALL (enable-tiny) is defined, the 5 main DISABLE
1891 variables (SPELLER, HELP, JUSTIFY, BROWSER, TABCOMP) are not
1892 reported as enabled when Nano is called with -V (--version)
Chris Allegretta88520c92001-05-05 17:45:54 +00001893 command line option. (Rocco)
Rocco Corsiaf5c3022001-01-12 07:51:05 +00001894 usage()
1895 - Alternate speller option no longer valid if DISABLE_SPELLER is
1896 active. (Rocco)
Chris Allegrettae61e8302001-01-14 05:18:27 +00001897 window_init(), handle_sigwinch()
1898 - Added check for not having enough LINES to do anything useful,
1899 if so die with an error. (Rocco)
1900 die_too_small()
1901 - Function to print the window too small error message, avoids
1902 repeated string defs and globals.
Robert Siemborskic2eeb4e2001-01-17 03:29:02 +00001903 do_justify()
1904 - Small fix for totsize calculation (Rob)
1905
Chris Allegrettad9742c62001-01-12 15:51:53 +00001906- fi.po:
1907 - Update by Pauli Virtanen.
Chris Allegretta7e080822001-01-08 02:31:03 +00001908
Chris Allegretta16991442001-01-07 22:06:11 +00001909nano 0.9.25 - 01/07/2001
Chris Allegrettaf4b96012001-01-03 07:11:47 +00001910General -
1911 - New file browser code. New functions in files.c:do_browser(),
1912 helper functions browser_init(), tail(), striponedir(),
1913 filestat(). New shortcut list browser_list. Some new
Chris Allegretta150469a2001-01-05 21:13:14 +00001914 strings to translate. Added function do_browse_from().
Chris Allegrettac08f50d2001-01-06 18:12:43 +00001915 - Keypad code has been changed slightly. Now checks for
1916 _use_keypad flag in window to see whether or not to turn
1917 the keypad() back off when finished (taken from aumix). Moved
Chris Allegretta88520c92001-05-05 17:45:54 +00001918 to winio.c where it should probably be anyway. New configure
1919 check for _use_keypad in window struct. This will have to do
Chris Allegrettac08f50d2001-01-06 18:12:43 +00001920 for now.
Chris Allegretta155d6202001-01-08 01:50:37 +00001921 - Moved keypad() calls for PDCURSES from main() to window_init()
1922 so the keypad continues to work after a Meta-X, for example.
1923 Fixed bug #51.
Jordi Mallach56e6d722000-12-19 22:59:55 +00001924- faq.html:
1925 - Fix typos and small mistakes (Jordi).
Chris Allegrettaee289d72000-12-27 16:12:47 +00001926- files.c:
Rocco Corsi8b6cccc2001-01-02 06:21:07 +00001927 username_tab_completion()
1928 - Added the (char *) sizeof when allocating memory for the filename
1929 array (Rocco).
Chris Allegrettaee289d72000-12-27 16:12:47 +00001930 cwd_tab_completion()
1931 - removed skipping . and .. when tabulating matches.
Rocco Corsi8b6cccc2001-01-02 06:21:07 +00001932 - Added the (char *) sizeof when allocating memory for the filename
1933 array (Rocco).
Chris Allegrettae1ebaf32001-01-07 05:50:36 +00001934 do_writeout()
1935 - Now takes an argument so the string typed in can be retained
1936 when calling the browser.
Chris Allegretta816a1652001-01-06 17:43:56 +00001937 do_browser()
1938 - Don't decrement longest by the length of path. Fixes crashes
1939 on entering various dirs (Rocco).
Chris Allegretta88520c92001-05-05 17:45:54 +00001940 - Don't ungetch() the exit key, unneeded, fixes inserting a file
Chris Allegretta816a1652001-01-06 17:43:56 +00001941 causes exit code.
Chris Allegretta155d6202001-01-08 01:50:37 +00001942- move.c:
1943 page_down()
1944 - Don't do an edit_update when there is only one page of text
1945 (fileage == edittop && filebot == editbot). Fixes Bug #50.
Chris Allegrettad55655f2000-12-27 03:36:47 +00001946- nano.c:
1947 main()
1948 - Reorder the getopt options to be more or less alphabetical
1949 (suggested by Sven Guckes).
Chris Allegretta66795ec2000-12-27 04:47:28 +00001950- winio.c:
1951 do_cursorpos()
1952 - Optimizations and cleanups by Rocco Corsi.
Chris Allegretta827b15f2001-01-03 02:09:04 +00001953 do_credits()
1954 - Spell Erik Andersen's name right.
Chris Allegrettaf4b96012001-01-03 07:11:47 +00001955 titlebar()
1956 - Now takes an arg, needed for browser function.
Chris Allegretta70444892001-01-07 23:02:02 +00001957 do_help()
1958 - Changed way of temporarily bringing up shortcuts at the
1959 bottom in the help screen (actually works).
Chris Allegretta150469a2001-01-05 21:13:14 +00001960- utils.c:
1961 mallocstrcpy()
1962 - Takes char pointers now instead of void (makes debugging a
1963 helluva lot easier)
Chris Allegrettae1ebaf32001-01-07 05:50:36 +00001964 - Duh, don't do anything if src == dest!
Jordi Mallach75ef81b2001-01-04 16:48:59 +00001965- es.po:
1966 - Updates for file browser (Jordi).
Chris Allegretta827b15f2001-01-03 02:09:04 +00001967
Chris Allegretta66149e72000-12-19 02:51:06 +00001968nano 0.9.24 - 12/18/2000
Chris Allegretta3bc8c722000-12-10 17:03:25 +00001969General
1970 - Added --disable-help option, affects acconfig.h, configure(.in),
Chris Allegrettab7d00ef2000-12-18 05:36:51 +00001971 winio.c:do_help, nano.c:help_init,help_text_init,version.
Chris Allegretta1a6e9042000-12-14 13:56:28 +00001972 - Changed filename to no longer use PATH_MAX, so it can work on the
1973 HURD. Changes in files.c:write_file(), new function
1974 nano.c:clear_filename(), many changed in main(), a few other
1975 places. Please test this!
Chris Allegretta51b3eec2000-12-18 02:23:50 +00001976 - Added -b, -e, and -f flags, which we ignore as nano provides
1977 their functionality already.
Chris Allegretta5146fec2000-12-10 05:44:02 +00001978- cut.c:
1979 do_uncut_text()
Chris Allegretta51b3eec2000-12-18 02:23:50 +00001980 - Fix renumbering bug when uncutting marked text at filebot.
Chris Allegretta5146fec2000-12-10 05:44:02 +00001981 - Fix screen not being displayed when we are uncutting marked
1982 text at editbot (Bug discovered by Ken Tyler).
Chris Allegrettae51c95f2000-12-10 05:54:27 +00001983 - Fix magic line not getting created when (you guessed it)
1984 uncutting marked text at filebot (Ryan Krebs).
Chris Allegrettaef123112000-12-10 00:04:13 +00001985- files.c:
Chris Allegretta3a7c0be2000-12-18 01:09:07 +00001986 read_file()
1987 - If we encounter an error and insert is not set, run new_file().
1988 (bug discovered by Ben Roberts).
Chris Allegrettaef123112000-12-10 00:04:13 +00001989 write_file()
1990 - Change open call flags, basically copy joe's way of doing it so
1991 a more recent version will actually be included in (un)stable.
Chris Allegretta1cd50662000-12-11 02:47:12 +00001992 - Remove useless fstat call.
Chris Allegretta7960dcf2000-12-13 15:01:29 +00001993 open_file()
1994 - Added check for S_ISBLK and S_ISCHR, don't open device files!
Chris Allegretta5146fec2000-12-10 05:44:02 +00001995- nano.c:
1996 renumber()
Chris Allegretta88520c92001-05-05 17:45:54 +00001997 - Don't stupidly assign the value of prev->lineno if prev == NULL!
Chris Allegretta51b3eec2000-12-18 02:23:50 +00001998 main()
1999 - Added code to check for Alt-Alt (27-27) keystrokes and set the
2000 next keystroke as a control sequence. New variable
2001 modify_control_key. Removed #ifdef _POSIX_VDISABLE check
2002 around Control-S,Q,Z handlers because we need it now for
2003 the Alt-Alt-x code.
Chris Allegretta7492cec2000-12-18 04:55:21 +00002004 - Added --view option to getopt_long()call . Bug discovered
2005 by Rocco Corsi.
Chris Allegretta220ba692000-12-18 03:40:00 +00002006 help_init()
2007 - Fix off by one error that was making ^G help in normal mode and
Chris Allegretta6df90f52002-07-19 01:08:59 +00002008 ^_ in Pico mode not be displayed in the help (bug discovered by
Chris Allegretta92325e72000-12-18 03:44:22 +00002009 Rocco Corsi).
Chris Allegrettaaffeda82000-12-18 04:03:48 +00002010 do_toggle()
2011 - Added fix_editbot() call to fix improper redisplay of edit
2012 window when using nohelp toggle (bug discovered by Rocco Corsi).
Chris Allegretta51b3eec2000-12-18 02:23:50 +00002013- nano.1, nano.1.html:
2014 - Updated man page for -b, -e, -f and expanded explanation for -p.
Chris Allegrettad1627cf2000-12-18 05:03:16 +00002015- winio.c
2016 do_help()
2017 - Force keypad on so F-keys and PageUp/Down will work properly.
2018 Added check for NANO_EXIT_FKEY to loop.
Chris Allegrettae51c95f2000-12-10 05:54:27 +00002019- utils.c:
2020 new_magicline()
Chris Allegretta321590a2000-12-10 06:03:40 +00002021 - Increment totsize!! We decrement it when we've read a file,
2022 everywhere else it should automatically be incremented
Chris Allegrettaef123112000-12-10 00:04:13 +00002023
Chris Allegrettab29550e2000-12-09 03:34:12 +00002024nano 0.9.23 - 12/08/2000
Chris Allegretta7b36c522000-12-06 01:08:10 +00002025General
2026 - Changed --disable-spell to --disable speller. The term is
2027 "speller" for -s, so it should be --disable-speller.
Chris Allegretta59828492000-12-04 03:31:39 +00002028- files.c:
2029 write_file()
Chris Allegretta88520c92001-05-05 17:45:54 +00002030 - Added tmp check to TMP_OPT section (how appropriate).
Chris Allegretta07f9ee02000-12-04 05:15:39 +00002031 - Added new consistency checking code from securityfocus
Chris Allegrettafb2226a2000-12-04 05:25:47 +00002032 article by Oliver Friedrichs, and use O_EXCL if tmp == 1.
Chris Allegretta928a7f52000-12-04 05:31:34 +00002033 - We now run check on result of lstat(), not stat(), to be
2034 safer. New variable anyexists, we use still use realexists
2035 later in the program.
Chris Allegretta71e46402000-12-06 00:40:26 +00002036 - OOPS, line up link/unlink/rename check if conditional with
2037 top if conditional. Option -l has been broken for 9 versions,
2038 no one noticed?!
Chris Allegretta1bd0ce22000-12-06 05:56:08 +00002039 - Added saving perms at end of link so we can apply them to the
2040 new file if --nofollow is used.
Chris Allegretta908805a2000-12-04 04:42:56 +00002041- winio.c:
2042 edit_add()
2043 - Off by one display error (fix by Rocco Corsi).
Chris Allegrettafb62f732000-12-05 11:36:41 +00002044 do_replace_highlight()
Chris Allegretta88520c92001-05-05 17:45:54 +00002045 - New code to handle being past COLS (Rocco Corsi).
Chris Allegrettafb62f732000-12-05 11:36:41 +00002046 - Moved from search.c, as it's definitely a winio function now =)
2047 update_line()
2048 - More '$' display fixes (Rocco Corsi).
Chris Allegretta59828492000-12-04 03:31:39 +00002049
Chris Allegrettafedd7242000-12-03 03:15:38 +00002050nano 0.9.22 - 12/02/2000
Chris Allegrettabe77c612000-11-24 14:00:16 +00002051- General
Chris Allegrettabe77c612000-11-24 14:00:16 +00002052 - Username tab completion code, and cleaned up existing tabcomp
2053 code. New functions real_dir_from_tide(), append_slash_if_dir(),
2054 username_tab_completion is more than a stub now =-).
Chris Allegretta72623582000-11-29 23:43:28 +00002055 - Ignore key sequence 543 & 545, right control and alt keys in
2056 windows. Affects main() and winio.c:nanogetstr().
Chris Allegretta56b24b52000-11-29 23:57:20 +00002057 - Took out help from spell_list and changed SPELL_LIST_LEN to 1.
2058 Is using a spell checker THAT difficult? =-)
Chris Allegrettaff269f82000-12-01 18:46:01 +00002059 - New function nano_disabled_msg(), to alert that certain
Chris Allegretta88520c92001-05-05 17:45:54 +00002060 functions have been disabled, similar to nano_tiny feature.
Chris Allegrettaff269f82000-12-01 18:46:01 +00002061- New configure options:
2062 - Added configure argument --disable-tabcomp. Affects
2063 bottom of files.c and write_file, utils.c:check_wildcard_match()
Chris Allegretta88520c92001-05-05 17:45:54 +00002064 and winio.c:nanogetstr().
Chris Allegrettaff269f82000-12-01 18:46:01 +00002065 - New options --enable-extra. New code in nano.c:version() to
2066 print out various options from ./configure, function do_credits().
2067 - Added --disable-spell option for those who want to just disable
Chris Allegretta88520c92001-05-05 17:45:54 +00002068 the spell check feature. Affects the spelling functions
Chris Allegrettaff269f82000-12-01 18:46:01 +00002069 do_spell, do_int_speller and do_alt_speller.
2070 - Added --disable-justify to get rid of the justify function.
2071 Affects do_justify() (not surprisingly).
Chris Allegretta650e8a42000-11-24 14:15:17 +00002072- files.c:
2073 write_file()
2074 - Unsetting modified on temp files bug fixed (Rocco Corsi).
Chris Allegretta581bc602000-12-03 03:01:12 +00002075 - Okay, if tmp == 1 and the file exists, we abort.
Chris Allegretta25f4e582000-11-25 05:03:20 +00002076 do_insertfile()
Chris Allegretta09a80842000-11-30 02:31:13 +00002077 - Added call to real_name_from tilde, oops. Added check for
2078 DISABLE_TABCOMP.
Chris Allegretta24946bd2000-11-26 21:34:47 +00002079 read_file()
2080 - Added check for fileptr == NULL.
Chris Allegretta07798352000-11-27 22:58:23 +00002081- global.c:
2082 shortcut_init()
2083 - Now takes an argument as to whether to display the unjustify
Chris Allegretta88520c92001-05-05 17:45:54 +00002084 shortcut or the normal uncut text one. Needed to accommodate
2085 the kludgey unjustify code.
Chris Allegretta8be8ce22000-11-28 02:15:30 +00002086- nano.1, nano.1.html:
2087 - Updated date on pages because of -p changes.
Jordi Mallachd7ad75a2000-12-03 02:46:02 +00002088 - Added "NOTES" section, where I explain what nano.save & friends
2089 are.
2090 - Added a copyright notice for the manpage, under the GPL.
2091 - Other minor changes.
Chris Allegretta9149e612000-11-27 00:23:41 +00002092- nano.c:
2093 do_justify()
Chris Allegretta8be8ce22000-11-28 02:15:30 +00002094 - Wrote unjustify code. Borrows cutbuffer and stores the unjustified
2095 text there, then grabs the next keystroke and, if the unjustify
2096 key, gets rid of the justified text and calls do_uncut_text.
2097 Added macro NANO_UNJUSTIFY_KEY.
Chris Allegrettad00e6df2000-11-29 04:33:26 +00002098 do_int_spell*
2099 - Various fixes (Rocco Corsi).
2100 - Changed abort of program to aborting based on value of "edit a
2101 replacement" question, and not caring about the replace loop
2102 return value. That way the user can get out of the replace loop
2103 and continue spell checking (very important to me anyway).
Chris Allegrettaff269f82000-12-01 18:46:01 +00002104 version()
2105 - Took out huge check for the various --disabled macros,
2106 eventually there will be too many to reasonably check for.
Chris Allegretta4eb7aa02000-12-01 18:57:11 +00002107 nano_small_msg(), nano_disabled_msg()
2108 - Added checks for disabled functions to see whether or not to
2109 declare them.
Chris Allegretta9e2934f2000-12-01 23:49:48 +00002110 do_next_word()
2111 - Update the previous line as well as the current one in case we
2112 have moved beyond COLS or back from COLS, patch submitted
2113 by Ryan Krebs.
Chris Allegrettae7a58932000-12-02 02:36:22 +00002114 die()
2115 - Now creates .save file using variable-length strings. Also
2116 calls write_file with tmp == 1, which happens to do exactly what
Chris Allegretta581bc602000-12-03 03:01:12 +00002117 we want (abort on save file exists and use mode 0600).
Chris Allegrettae7a58932000-12-02 02:36:22 +00002118 handle_sighup()
2119 - Now calls die instead of writing on its own and exiting normally.
Chris Allegrettad00e6df2000-11-29 04:33:26 +00002120- search.c:
Jordi Mallach72549042001-05-02 17:18:17 +00002121 do_replace_highlight()
2122 - New function, displays the currently selected word as highlighted
Chris Allegrettad00e6df2000-11-29 04:33:26 +00002123 in the spell check. Called from do_replace_loop (Rocco Corsi).
Jordi Mallach72549042001-05-02 17:18:17 +00002124 - Added calls to curs_set(0) and (1) to disable the cursor when
2125 highlighting, looks much better.
Jordi Mallachd819a4c2000-11-25 04:50:25 +00002126- es.po:
2127 - Traditional Spanish strings updates.
Chris Allegrettabe77c612000-11-24 14:00:16 +00002128
Chris Allegrettaca7a21d2000-11-24 01:35:40 +00002129nano 0.9.21 - 11/23/2000
Chris Allegrettaf26bca72000-11-21 03:04:45 +00002130- AUTHORS
2131 - Added Rocco Corsi.
Chris Allegretta31c76662000-11-21 06:20:20 +00002132- nano.c:
2133 main()
2134 - Changed check for argc == 1 to argv[optind] == NULL to decide
2135 whether or not to display "New File" in the statusbar.
Chris Allegrettaaaabe1f2000-11-19 18:20:07 +00002136- search.c:
2137 findnextstr()
Chris Allegretta88520c92001-05-05 17:45:54 +00002138 - Fix current_x increment bug by using another variable (Rocco Corsi).
Chris Allegrettaef601bb2000-11-19 19:15:03 +00002139 search_init()
2140 - Silly typo in our "one simple call" of statusq. Stopped
2141 previous search string from being displayed.
Chris Allegrettac793c432000-11-21 12:52:55 +00002142 do_replace()
2143 - Copy back the previous value of last_replace into answer if
2144 using PICO_MODE and answer == ""
Chris Allegretta6c5781b2000-11-23 01:19:58 +00002145- winio.c:
2146 do_up()
Chris Allegretta88520c92001-05-05 17:45:54 +00002147 - Deleted first update_line() call, screws up display when marker is
2148 set.
Chris Allegrettad466ab72000-11-19 20:36:41 +00002149- nano.1, nano.1.html
2150 - Updated man page for new -p definition.
Chris Allegrettaac0e63a2000-11-19 02:25:43 +00002151
Chris Allegretta6da149a2000-11-19 02:23:03 +00002152nano 0.9.20 - 11/18/2000
Chris Allegretta67574f42000-11-03 03:35:29 +00002153- General
2154 - Ran source through indent -kr again. Make everything pretty.
2155 - Changed behavior of "search" and "replace" prompts to make all
2156 previous values editable. This change was made so that you can
2157 replace with the null string without needing a special key for it.
2158 changed code in search_init(), do_replace(), nanogetstr (see
2159 below).
2160 - Added some missing gettext calls here and there (Jordi).
Chris Allegretta88520c92001-05-05 17:45:54 +00002161 - Revamped nanogetstr() and calls to it to use variable length
2162 strings.
Chris Allegretta67574f42000-11-03 03:35:29 +00002163 MANY changes in nanogetstr(), many chances in search.c, new
2164 function mallocstrcpy which is sure to be a programmatic
2165 nightmare, changed last_search, last_replace, answer to
2166 pointers. New function not_found_msg in search.c for displaying
Chris Allegretta88520c92001-05-05 17:45:54 +00002167 truncated strings in statusbar when the string is not found
Chris Allegrettacbb0f8b2000-11-15 03:50:02 +00002168 (-pedantic fixes by Rocco Corsi). We disable this feature when
Chris Allegrettabf9a8cc2000-11-17 01:37:39 +00002169 using PICO_MODE (-p).
Chris Allegretta27eb13f2000-11-05 16:52:21 +00002170 - New spelling code by Rocco Corsi. New functions
2171 do_int_speller, do_alt_speller, changes to do_spell in nano.c,
2172 New functions search_init_globals and do_replace_loop, changes
2173 to search_init(), do_replace, findnextstr, moved last_search and
2174 last_replace back to nano.c (*shrug*).
Chris Allegretta04d848e2000-11-05 17:54:41 +00002175 - New tab completion code. Used check_wildcard_match, input_tab,
2176 cwd_tab_completion, username_tab_completion from busybox,
Chris Allegretta7da4e9f2000-11-06 02:57:22 +00002177 hacked them a lot, changes to nanogetstr(). nanogetstr() and
2178 statusq() now take an arg for whether or not to allow tab
2179 completion.
Chris Allegretta5bf51d32000-11-16 06:01:10 +00002180 - Fixed value being input in statusbar during a search or replace
2181 and CASE_SENSITIVE or the other search is called and the
2182 string being typed in is blown away. Reported by Ken Tyler.
Chris Allegrettabf9a8cc2000-11-17 01:37:39 +00002183 - Changed PICO_MSGS flag to PICO_MODE, changed help strings
2184 accordingly.
Chris Allegretta92d2bab2000-11-02 14:53:46 +00002185- files.c:
2186 do_writeout()
2187 - Change strcpy to answer to mallocstrcpy.
Chris Allegrettad7934d42000-10-03 05:39:29 +00002188- global.c
Chris Allegretta105da332000-10-31 05:10:10 +00002189 - New global replace_list_2, for 2nd half of the replace dialog
2190 ("Replace with:"), has fewer options than first half because
Chris Allegretta88520c92001-05-05 17:45:54 +00002191 they were inappropriate.
Chris Allegrettad7934d42000-10-03 05:39:29 +00002192 toggle_init()
2193 - Added #ifdef around toggle_regex_msg to get rid of compiler
2194 warning.
Chris Allegretta1cc0b7f2000-11-03 01:29:04 +00002195
2196- nano.c:
2197 keypad_on()
2198 - New function, toggles turning the keypad on and off in edit and
2199 bottomwin(). Added call to this in finish(), fixes bug #45.
Chris Allegrettaa0e957b2000-10-24 22:25:36 +00002200- search.c
Chris Allegretta88520c92001-05-05 17:45:54 +00002201 findnextstr()
Chris Allegrettaa0e957b2000-10-24 22:25:36 +00002202 - New arg for begin_x variable, basically a rewrite that
2203 makes a little more sense and isn't quite as messy (Rocco Corsi).
2204 - Update the line we're checking if not the whole screen, because
2205 it's quite possible the search team could exist somewhere way
2206 to the right on the same line, for example.
2207 replace_abort()
2208 - Add reset of placewewant, stops cursor from jumping when moving
2209 cursor after a replace.
Chris Allegretta810632d2000-10-27 04:36:01 +00002210 do_replace()
2211 - Added code for Gotoline key after entering the search term.
2212 Fixes bug #46.
Chris Allegretta88520c92001-05-05 17:45:54 +00002213 - Removed redundant code involving processing replacement string.
Chris Allegretta9c371a22000-10-27 05:48:05 +00002214 Converted if statements to switch statements.
2215 - Optimizations by Rocco Corsi.
Chris Allegretta105da332000-10-31 05:10:10 +00002216 - Removed code for deleted shortcuts from in replace_list_2.
Chris Allegretta9c371a22000-10-27 05:48:05 +00002217 do_search()
2218 - Converted if statements to one switch statement.
Chris Allegrettaf9b6c9b2000-10-18 19:35:59 +00002219- winio.c
2220 nanogetstr()
2221 - Added check for 343 in while loop to get rid of getting "locked"
2222 into statusbar" bug in odd $TERMs like iris-ansi.
Chris Allegretta105da332000-10-31 05:10:10 +00002223 - Changed check to return -2 on "enter" from answer == ""
2224 to answer == def.
Chris Allegretta04d848e2000-11-05 17:54:41 +00002225 - Fixed fallthrough code because there was no break. Make much
2226 more sense now.
Chris Allegretta5b1faac2000-11-16 19:55:30 +00002227 - Added check for ASCII 54[124] when using PDCURSES, ignore them
2228 if noticed.
Chris Allegrettaa0e957b2000-10-24 22:25:36 +00002229 nanoget_repaint()
2230 - New function, removes about 30 lines of duplicate code in
2231 nanogetstr().
Chris Allegretta90594e22000-11-02 15:53:40 +00002232 - Black magic code to make $ appear in prompt if we're past
2233 COLS.
Chris Allegretta2c975222000-11-15 01:25:42 +00002234 blank_edit()
2235 - Removed wrefresh() call, much less choppy now. If there's a need
2236 for a wrefresh after a specific call, let me know.
Jordi Mallach0ae0dcd2000-10-28 12:38:02 +00002237- es.po:
Jordi Mallachd25385b2000-11-18 03:31:21 +00002238 - Updated translation for 0.9.20 (Jordi).
Chris Allegrettad7934d42000-10-03 05:39:29 +00002239
Chris Allegretta07e97d62000-10-03 01:52:50 +00002240nano 0.9.19 - 10/02/2000
Chris Allegrettaad1dacc2000-09-21 04:25:45 +00002241- General
2242 - Added PDCurses support under cygwin, which allows building
2243 a nice stand-alone nano.exe for those poor Windows users.
2244 Extra check in configure.in for initscr() in -lcurses (as
2245 PDcurses has no tgetent), some #ifdef PDCURSES statements
2246 in main().
Chris Allegretta66989d62000-09-27 03:16:11 +00002247 - Changed web site and email to new nano-editor.org domain.
Chris Allegretta7c44b682000-09-21 04:27:01 +00002248- nano.c
Chris Allegretta9e7efa32000-10-02 03:42:55 +00002249 - Added (int) casts to remove compile warnings with -Wall.
Chris Allegretta7c44b682000-09-21 04:27:01 +00002250 main()
2251 - Added check for _POSIX_VDISABLE around term variable definition.
Chris Allegrettadf3afdc2000-10-01 17:50:29 +00002252- search.c
2253 - Added initializations for last_search and last_replace (Rocco Corsi)
2254
Chris Allegretta629edad2000-09-19 00:27:19 +00002255nano 0.9.18 - 09/18/2000
Chris Allegretta805c26d2000-09-06 13:39:17 +00002256- General
2257 - Changed _POSIX_VERSION checks in regex code to HAVE_REGEX_H,
2258 added check for regex.h in configure.in.
Chris Allegretta90bd7122000-09-13 18:12:05 +00002259- configure.in:
2260 - Added default case for cross-compiling to get rid of annoying
2261 AC_TRY_RUN warning.
Chris Allegretta429a5512000-09-05 13:09:56 +00002262- cut.c:
2263 do_cut_text()
2264 - Don't immediately abort if we're on filebot and the marker is
Chris Allegrettad746d902000-09-05 13:15:44 +00002265 set (fixes bug #42).
Chris Allegrettaf45c18d2000-09-16 05:25:06 +00002266- files.c:
2267 open_file()
2268 - Fix for bug #44 (Rocco Corsi).
Chris Allegretta16e41682000-09-11 22:33:54 +00002269- global.c:
2270 shortcut_init()
2271 - Added in FKEYs that for some reason were left out. *boggle*
Chris Allegretta9239d742000-09-06 15:19:18 +00002272- nano.c:
Chris Allegretta2a42af12000-09-12 23:02:49 +00002273 main()
Chris Allegretta9239d742000-09-06 15:19:18 +00002274 - Added check for _POSIX_VDISABLE and use raw mode if not
2275 available, allows nano to work with cygwin.
Jordi Mallach2dc0f6b2000-09-07 10:48:00 +00002276 - Added gettext calls to enable/disable strings (Jordi).
Chris Allegretta16e41682000-09-11 22:33:54 +00002277 - Revamped a great deal of the F-key and keypad key handling,
2278 because we not longer use keypad() (see below).
2279 - Removed keypad() call because nano was not working with the
2280 keypad in many terms, which is very bad.
Chris Allegretta9c35eb02000-09-13 14:24:52 +00002281 - Made insert key call do_insertfile().
Chris Allegretta2a42af12000-09-12 23:02:49 +00002282 do_toggle()
Chris Allegretta88520c92001-05-05 17:45:54 +00002283 - Rewrote function to allow NOHELP toggle to work on systems
Chris Allegretta2a42af12000-09-12 23:02:49 +00002284 without a working resizewin(). New function window_init().
Chris Allegretta0b88ce02000-09-15 15:46:32 +00002285 mouse_init()
2286 - Add keypad only if mouse support is on, otherwise mouse doesn't
2287 work. I guess you have to choose between having the mouse and
Chris Allegretta88520c92001-05-05 17:45:54 +00002288 having a working keypad for the time being (thank god for Meta-M).
Chris Allegretta2a42af12000-09-12 23:02:49 +00002289- winio.c:
2290 total_refresh()
2291 - Added titlebar() call.
Chris Allegrettae7034c62000-09-15 03:31:09 +00002292 onekey()
2293 - Off by one error fix fix ;-) (Rocco Corsi).
Chris Allegretta2a42af12000-09-12 23:02:49 +00002294
Chris Allegrettab9bfc9b2000-09-10 05:06:09 +00002295- search.c:
2296 findnextstr()
2297 - Reset starting at current for search instead of begin.
Jordi Mallach2dc0f6b2000-09-07 10:48:00 +00002298- es.po:
2299 - Translated new strings and minor updates (Jordi).
Chris Allegretta834a69d2000-09-18 17:11:33 +00002300- de.po
2301 - Revised translations by floki@bigfoot.com
Chris Allegretta429a5512000-09-05 13:09:56 +00002302
Chris Allegretta423cbfd2000-09-04 16:21:29 +00002303nano-0.9.17 - 09/04/2000
Chris Allegretta756f2202000-09-01 13:32:47 +00002304- General
2305 - New shortcuts to toggle certain options that are normally only
2306 flags via Alt/Meta. See Alt-C,E,I,K,M,P,X,Z. New struct called
2307 toggles in nano.h, toggle_init(), toggle_init_one() in global.c
Chris Allegrettae49f1232000-09-02 07:20:39 +00002308 called from shortcut_init(), and do_toggle in nano.c. Also
2309 moved the signal code into a separate function in nano.c called
Chris Allegretta18f8be02000-09-04 03:20:38 +00002310 signal_init(). Moved "struct sigaction act"into a static in
2311 nano.c.
Chris Allegrettae49f1232000-09-02 07:20:39 +00002312 - Changed from Alt-key symbol (@) which is completely nonstandard
2313 to the *nix "Meta" symbol (M-). Changed help_init to show
Chris Allegretta88520c92001-05-05 17:45:54 +00002314 the M-key usage and the help text to explain keys which generate
Chris Allegrettae49f1232000-09-02 07:20:39 +00002315 Meta. Moved the toggle Meta keystrokes to the first column
2316 instead of the third as they are the primary keystrokes for the
Chris Allegretta9541f2a2000-09-02 07:31:32 +00002317 functions. Thanks Mini editor team :->
Chris Allegretta756f2202000-09-01 13:32:47 +00002318 - Changed last_search and last_replace vars to statically
2319 allocated (hence nulled) and moved to search.c (Matt Kraai).
Chris Allegrettaf0f63a82000-09-02 18:44:21 +00002320- global.c:
2321 toggle_init()
2322 - Changed "No auto wrap" and "No help mode" to "Auto wrap" and
2323 "Help mode". See the change to do_toggle() below.
Chris Allegrettae10debd2000-08-22 01:26:42 +00002324- nano.c:
2325 do_mouse()
2326 - Patch for handling lines w/tabs and mouse better (Ben Roberts).
Chris Allegretta340d6e52000-08-29 03:55:29 +00002327 do_wrap()
2328 - Made wrapping code less ambitious.
Chris Allegrettaf0f63a82000-09-02 18:44:21 +00002329 do_toggle()
2330 - Added checks for no help and no wrap mode, and print opposite
2331 enable/disable message.
Chris Allegretta18f8be02000-09-04 03:20:38 +00002332 do_suspend(), do_cont():
2333 - New functions, handle suspend signal in a Pico-like manner and
2334 work with Meta-Z.
Chris Allegrettaf1d33d32000-08-19 03:53:39 +00002335- winio.c:
2336 total_refresh()
2337 - Added edit_refresh() call to actually update the screen if messy.
2338 edit_refresh_clearok()
2339 - New function, does a total update for edit refresh, needed to fix
2340 lack of reversed text on searching with MARK_ISSET.
Chris Allegrettadabc3cb2000-08-25 01:44:12 +00002341 onekey()
2342 - Off by one error fix (Rocco Corsi).
Chris Allegrettae7034c62000-09-15 03:31:09 +00002343
Chris Allegretta6306a112000-09-02 07:55:41 +00002344 update_line()
2345 - Added check for binary data >= 1 and <= 26, and use ^+letter
2346 to display it. Should fix editing text files with binary
2347 data in them. Placing of the cursor seems to be a bit screwed
2348 though...
Chris Allegrettaf1d33d32000-08-19 03:53:39 +00002349- search.c:
2350 search_abort()
2351 - Now calls edit_refresh_clearok when MARK_ISSET to handle screen
2352 ugliness bug (reported by Ken Tyler).
Chris Allegrettae10debd2000-08-22 01:26:42 +00002353 findnextstr():
2354 - Added reset for placewewant (Ben Roberts).
Chris Allegretta9babaf32000-08-30 13:49:33 +00002355 - Fixed check for string that only occurs on the same line failing
2356 (discovered by Ken Tyler).
Chris Allegrettaf1d33d32000-08-19 03:53:39 +00002357
Chris Allegrettaba96f7a2000-08-09 21:38:28 +00002358nano-0.9.16 - 08/09/2000
Chris Allegretta7dc14e82000-08-05 16:03:19 +00002359- cut.c:
2360 do_cut_text()
2361 - Fixed getting locked into cutbuffer on cutting first line of file.
Chris Allegrettac86f7142000-08-07 14:39:32 +00002362 - Added check_statblank().
2363 - Check for fileptr == filebot, if so return, we shouldn't bother
2364 cutting the magic line.
2365 do_uncut_text()
2366 - Added check_statblank().
Chris Allegretta4dbcc3c2000-08-04 15:44:29 +00002367- nano.c:
2368 main()
2369 - Changed tabsize long arg to actually accept an argument *sigh*.
Chris Allegretta81b1eea2000-08-05 16:09:07 +00002370- po/Makefile.in.in:
2371 - Patch to handle $DESTDIR (orig by Dan Harnett contributed by
2372 Christian Weisgerber)
Chris Allegrettab4dc9e02000-08-05 22:49:30 +00002373- configure.in:
Chris Allegrettaa2efc362000-08-09 03:26:33 +00002374 - New (and severally revised =) slang test code (Albert Chin-A-Young)
Chris Allegretta4dbcc3c2000-08-04 15:44:29 +00002375
Chris Allegretta0bf4e142000-08-04 02:42:04 +00002376nano-0.9.15 - 08/03/2000
Chris Allegretta234a34d2000-07-29 04:33:38 +00002377- Changed edit_update call to take arguments TOP, CENTER or BOTTOM.
2378 Affects many many functions. Removed functions edit_update_top and
2379 edit_update_bot.
Chris Allegretta6d690a32000-08-03 22:51:21 +00002380- Added global variable tabsize, we no longer screw with the curses
2381 library in order to implement -T (suggested by Christian Weisgerber).
Chris Allegretta7a6f0d92000-07-31 13:00:24 +00002382- configure.in:
2383 - Finally fixed check for slang to report "no" if not called
2384 with --with-slang or --without-slang
Chris Allegretta7975ed82000-07-28 00:58:35 +00002385- nano.c:
Chris Allegretta18bd0292000-07-28 01:18:10 +00002386 splice_node()
Chris Allegretta7975ed82000-07-28 00:58:35 +00002387 - New function, abstracts linking in nodes. Fixes bug #36.
Chris Allegretta6925bbd2000-07-28 01:41:29 +00002388 null_at()
2389 - New function, nulls a string at a given index and realigns it.
Chris Allegretta18bd0292000-07-28 01:18:10 +00002390 delete_buffer()
2391 - Removed, same as free_filestruct().
Chris Allegrettada721be2000-07-31 01:26:42 +00002392 do_backspace()
2393 - Now calls page_up_center instead of page_up (as it should?)
2394 do_enter()
2395 - Fixed typo (?) in check for inptr->next. Caused lots of
2396 grief for editing lines at filebot.
Chris Allegretta99bf73f2000-08-04 00:22:08 +00002397 main()
Chris Allegretta88520c92001-05-05 17:45:54 +00002398 - Removed now useless usertabsize variable (Christian Weisgerber).
Chris Allegretta18bd0292000-07-28 01:18:10 +00002399- search.c:
2400 replace_abort()
2401 - redundant, now just calls search abort until it does something
2402 different.
Chris Allegretta95b0b522000-07-28 02:58:06 +00002403- winio.c:
2404 edit_refresh()
2405 - Added check for current line "running" off the screen.
2406 Hopefully this will not cause any recursive lockups.
Chris Allegretta234a34d2000-07-29 04:33:38 +00002407 (Who am I kidding, of course it will!)
Chris Allegrettaed022162000-08-03 16:54:11 +00002408 - Added check to stop infinite loop calling edit_update.
Chris Allegretta234a34d2000-07-29 04:33:38 +00002409 edit_update()
2410 - Rewritten, hopefully this will remove a lot of the
2411 scrolling the cursor back and forth needlessly.
Chris Allegretta1a471392000-07-28 14:08:01 +00002412- move.c:
2413 page_down()
Chris Allegretta234a34d2000-07-29 04:33:38 +00002414 - do an edit_update() at last case. Made function more like
2415 Pico's version, only move down to two lines before editbot.
2416 page_up()
2417 - Made function more like Pico's version, only move down to two
2418 lines after edittop.
Chris Allegretta7975ed82000-07-28 00:58:35 +00002419
Chris Allegrettaa1a55c72000-07-28 00:36:03 +00002420nano-0.9.14 - 07/27/2000
Chris Allegretta05597192000-07-24 21:16:12 +00002421- nano.h:
2422 - Set CUT_TO_END to a different bit than TEMP_OPT. Fixes bug #32.
2423- cut.c:
Chris Allegretta962c3c92000-07-24 21:52:17 +00002424 do_cut_text()
Chris Allegretta05597192000-07-24 21:16:12 +00002425 - Added check for MARK_ISSET when using CUT_TO_END. Fixes bug #31.
Chris Allegretta0e5faca2000-07-27 13:32:46 +00002426 - Simplified check for freeing cutbuffer. Added checks for doing
2427 multiple cuts with -k, now sets marked_cut to 2 for later
2428 processing by do_uncut_text().
2429 do_uncut_text()
2430 - Added handler for uncutting with -k cuts.
Chris Allegretta962c3c92000-07-24 21:52:17 +00002431- files.c:
2432 write_file()
2433 - Removed (redundant) check for writing out files with -t.
2434 do_writeout()
2435 - Changed check for filename to filename[0]. Added some code,
2436 overall fixes bug #30 =-)
Robert Siemborskia417ddc2000-07-24 23:18:48 +00002437- nano.c:
2438 do_justify() & do_wrap():
2439 - totsize-related fixes (Rob)
Chris Allegretta2ece1672000-07-27 15:25:52 +00002440- de.po
2441 - Revised translations by floki@bigfoot.com
Chris Allegretta05597192000-07-24 21:16:12 +00002442
Chris Allegretta1d7110d2000-07-23 16:59:07 +00002443nano-0.9.13 - 07/23/2000
Chris Allegretta627de192000-07-12 02:09:17 +00002444- Implemented Pico's -k mode. New flag CUT_TO_END, option (-k, --cut),
Chris Allegrettad19e9912000-07-12 18:14:51 +00002445 affects do_cut_text in cut.c. Not available with SMALL_NANO because it
2446 depends on the marker code which is not available with that setting.
Chris Allegretta30885552000-07-14 01:20:12 +00002447- Changed static temp_opt to flag TEMP_OPT. Fixed bug #29 (using
2448 -t with an unwritable file causes users to get locked into editor).
Adam Rogoyskied0cb892000-07-12 04:02:45 +00002449- move.c
2450 page_down()
2451 - Don't edit_refresh() if the bottom of the file is in the edit
2452 buffer. (Adam)
Robert Siemborski6967eec2000-07-08 14:23:32 +00002453- nano.c:
2454 main():
2455 - TABSIZE now set before first call to edit_refresh (Bill Soudan)
Chris Allegretta8f6c0692000-07-19 01:16:18 +00002456 - Different ^C kill code (patch by Christian Weisgerber).
Robert Siemborskifcf32bf2000-07-17 03:04:54 +00002457 die():
2458 - More intelligent emergency-save filename selection (Rob)
Chris Allegretta8f6c0692000-07-19 01:16:18 +00002459 do_spell():
Chris Allegretta88520c92001-05-05 17:45:54 +00002460 - Changed exit semantics a bit so that aspell wouldn't get
2461 all screwy (bug discovered by Joshua Jensen.
Chris Allegretta8f6c0692000-07-19 01:16:18 +00002462- files.c:
2463 read_file():
2464 - Added init of buf variable, hopefully this will stop the
2465 "bleeding" of text seen with mutt and using i18n.
Chris Allegrettaacb62342000-07-21 22:42:46 +00002466 write_file():
2467 - Added code to check to see if using -l and the file is not
2468 in fact a link. This should fix the behavior where a file
2469 that does not have write permission but could be removed and
2470 rewritten is saved without error. Please test this feature
2471 and give feedback.
Chris Allegrettaa4d21622000-07-08 23:57:03 +00002472- search.c:
2473 search_init():
2474 - Added " (to replace)" statement to end of search string if
2475 we are doing a replace. Manually converted all the translations
2476 from '%s' to '%s%s' to ensure they still work with the new code.
2477 Also put in the translation for " (replace)" in the .po's. Hope
2478 I didn't step on your toes doing this Jordi. (Chris)
Chris Allegretta635fae32000-07-09 03:26:34 +00002479 do_search(), do_replace():
2480 - Removed call to search_abort()/replace_abort() before call to
2481 the opposite function.
Chris Allegrettafa8f7bf2000-07-12 02:41:13 +00002482 - Fixed bug #28.
Adam Rogoyskied0cb892000-07-12 04:02:45 +00002483 findnextstr()
Chris Allegretta88520c92001-05-05 17:45:54 +00002484 - do not center string found if it is currently visible. (Adam)
Chris Allegretta7539a822000-07-09 23:55:13 +00002485- fr.po:
2486 - French update by Clement Laforet <clem_laf@wanadoo.fr>.
Jordi Mallach8d7ac1b2000-07-13 03:10:01 +00002487- es.po:
2488 - Updated strings to 0.9.13 (Jordi).
Robert Siemborski6967eec2000-07-08 14:23:32 +00002489
Chris Allegrettae955dae2000-07-07 22:24:59 +00002490nano-0.9.12 - 07/07/2000
Robert Siemborski6d0e9cd2000-07-01 21:43:16 +00002491- all:
Chris Allegretta9fc8d432000-07-07 01:49:52 +00002492 - New regexp search feature by Bill Soudan. New flags USE_REGEXP
2493 and REGEXP_COMPILED, new functions regexp_init, regexp_cleanup
2494 replace_line, replace_regexp in search.c, changes to
Chris Allegretta47805612000-07-07 02:35:34 +00002495 search_init() and do_replace() and strstrwrapper().
2496 - Added _POSIX_VERSION check to regexp code. Better than nothing
2497 for non-POSIX systems...
Robert Siemborski6d0e9cd2000-07-01 21:43:16 +00002498 - Made search functions & keys more like Pico. Added goto line from
2499 search and replace function, changed wording to "No Replace" instead
2500 of "To Search", "To Replace" to simply "Replace", and changed to
2501 Pico's keystroke by default, ^R. Affects search_init(),
2502 do_search() in search.c, globals in nano.h and
2503 shortcut_init() in global.c.
Robert Siemborskideca3e72000-07-04 02:40:41 +00002504 - changed 'sprintf' calls to safer 'snprintf' (Rob)
Robert Siemborski23ecb172000-07-04 22:21:40 +00002505- cut.c
2506 - further totsize update corrections
Robert Siemborskideca3e72000-07-04 02:40:41 +00002507- files.c:
2508 - changed do_insertfile to call fix_editbot (Rob)
Robert Siemborski23ecb172000-07-04 22:21:40 +00002509 - Magic Line code in read_file (Rob)
Chris Allegretta8a9fe7e2000-06-21 22:29:38 +00002510- nano.c:
2511 - Removed dual alt_speller variables, oops! (Rocco Corsi)
Chris Allegrettadbc12b22000-07-03 03:10:14 +00002512 - Removed unnecessary do_oldspell function (Rocco Corsi). Added
2513 SMALL_NANO #ifdef around actual spell function.
Chris Allegretta1e57e682000-07-03 04:24:39 +00002514 - Moved page_up() to move.c where is belongs.
Robert Siemborskideca3e72000-07-04 02:40:41 +00002515 - Corrected FIXME in do_enter with explanation. (Rob)
2516 - Fixed FIXME in do_justify, resulted in creation of
2517 fix_editbot [also fixed in do_enter] (winio.c) (Rob)
Robert Siemborskicdff0152000-07-07 01:58:52 +00002518 help_init():
2519 - Moved newline out of if statement (Rocco Corsi)
Chris Allegretta28a0f892000-07-05 22:47:54 +00002520 do_char():
Robert Siemborski23ecb172000-07-04 22:21:40 +00002521 - Magic Line related code in do_char (Rob)
Chris Allegretta28a0f892000-07-05 22:47:54 +00002522 do_backspace(), do_delete():
2523 - Added magic line code here too.
2524
Chris Allegrettaf7eba0b2000-06-24 01:33:27 +00002525- de.po:
Chris Allegretta6e805852000-06-22 01:53:29 +00002526 - Revised translations by floki@bigfoot.com.
Chris Allegrettaf7eba0b2000-06-24 01:33:27 +00002527- fi.po:
2528 - Finnish translation by pauli.virtanen@saunalahti.fi.
Robert Siemborski23ecb172000-07-04 22:21:40 +00002529- utils.c:
2530 - Added new_magicline()
Chris Allegretta8c2b40f2000-06-29 01:30:04 +00002531- winio.c:
Chris Allegrettadba37ae2000-07-07 05:13:09 +00002532 - Added stdlib.h to includes, found by OpenBSD gcc.
Robert Siemborski20d61d52000-07-08 00:43:35 +00002533 - lots of new commenting around display functions
Chris Allegretta5204ea92000-06-22 01:56:23 +00002534 do_yesno(), nanogetstr():
2535 - Removed now unnecessary raw/cbreak combos.
Jordi Mallach0b0fc492000-06-23 01:00:13 +00002536 - Removed gettext calls from "Y(es)", "N(o)", "A(ll)" and "^C", till
2537 we decide if those keybindings should be translated. (Jordi)
Chris Allegretta8c2b40f2000-06-29 01:30:04 +00002538 clear_bottomwin():
2539 - Removed wrefresh(edit) call.
Chris Allegretta48fd2cb2000-07-03 04:31:13 +00002540 edit_update_top():
2541 - Fixed a bug that caused nano to not update when
2542 current->next == NULL (e.g. paging down to the very bottom of
2543 ABOUT NLS wouldn't work).
Robert Siemborskideca3e72000-07-04 02:40:41 +00002544 fix_editbot:
2545 - Added (should rebuild editbot from a valid edittop) (Rob)
Robert Siemborski20d61d52000-07-08 00:43:35 +00002546 edit_add:
2547 - removal of redundant call to mvwaddnstr
Chris Allegretta8a9fe7e2000-06-21 22:29:38 +00002548
Chris Allegretta4da1fc62000-06-21 03:00:43 +00002549nano-0.9.11 - 06/20/2000
Chris Allegretta790198d2000-06-20 00:40:01 +00002550- New flag "-T" or "--tabsize" to specify how to display tab widths.
2551 Affects main() in nano.c, strlenpt(), xpt() and actual_x() (et al) in
Chris Allegretta88520c92001-05-05 17:45:54 +00002552 winio.c, and nano.h. Many hardcoded "8"s have been changed to the
Chris Allegretta4da1fc62000-06-21 03:00:43 +00002553 TABSIZE int. Added changes to nano.1 and nano.1.html.
Chris Allegretta12de8e82000-06-09 02:40:50 +00002554- id.po:
2555 - Indonesian translation by Tedi Heriyanto.
Chris Allegretta4da1fc62000-06-21 03:00:43 +00002556- es.po:
2557 - Updated translation (Jordi Mallach).
Robert Siemborski91413cf2000-06-07 02:20:46 +00002558- winio.c
Chris Allegretta88520c92001-05-05 17:45:54 +00002559 - Rewrite of display functions to correct the display problems
Robert Siemborski91413cf2000-06-07 02:20:46 +00002560 we had been seeing. Affects: add_marked_sameline, edit_add,
2561 and many others. (Rob Siemborski)
Chris Allegrettab0ae3932000-06-15 23:39:14 +00002562 - totsize fixes (Rob Siemborski)
Chris Allegretta97accc62000-06-19 05:45:52 +00002563 total_refresh():
Chris Allegretta88520c92001-05-05 17:45:54 +00002564 - Cut display_main_list call, as this function is only supposed to
2565 refresh what's already on the screen, not go through the process
2566 of adding the text again.
Chris Allegretta12de8e82000-06-09 02:40:50 +00002567- cut.c:
Robert Siemborskib0df9532000-06-09 00:55:16 +00002568 - totsize fixes (Rob Siemborski)
Chris Allegretta12de8e82000-06-09 02:40:50 +00002569- nano.c:
Robert Siemborskib0df9532000-06-09 00:55:16 +00002570 - experimental do_wrap and check_wrap (Adam Rogoyski)
Chris Allegretta97accc62000-06-19 05:45:52 +00002571 - Removed editwineob, as it was redundant for (editwinrows - 1).
2572 Changed all calls to editwinrows - 1 in nano.c and move.c.
2573 - Removed all functions that were split into other files.
2574 Affects LOTS of funcs.
Chris Allegrettab0ae3932000-06-15 23:39:14 +00002575 do_enter():
Chris Allegretta88520c92001-05-05 17:45:54 +00002576 - Added reset of placewewant to end.
Robert Siemborski10eab1d2000-06-18 01:05:00 +00002577 do_insertfile():
2578 - Fix display problem when using ctrl-r to load a file
2579 into the buffer (Rob Siemborski)
Chris Allegretta97accc62000-06-19 05:45:52 +00002580 handle_sigwinch():
Chris Allegretta88520c92001-05-05 17:45:54 +00002581 - Added titlebar(), edit_refresh() and display_main_list() calls
2582 because a resize wasn't picking up on possible different width
2583 correctly.
Chris Allegretta97accc62000-06-19 05:45:52 +00002584- utils.c:
2585 - Moved nmalloc() and nrealloc() here.
2586- move.c:
2587 - New file, contains movement functions (like do_home(), do_up(),
2588 do_down(), page_up(), etc...).
2589- files.c:
2590 - Contains functions for files (read_file, insert_file,
2591 do_writeout(), etc).
2592- search.c:
2593 - Contains all our searching and related functions, (do_search(),
2594 findnextstr(), do_replace(), do_gotoline()).
Robert Siemborski91413cf2000-06-07 02:20:46 +00002595
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002596nano-0.9.10 - 06/04/2000
2597- es.po:
2598 - Translation updates (Jordi).
2599- AUTHORS, nano.1.html, TODO, README:
2600 - Documentation and email address updates (Jordi).
2601- nano.c:
2602 main():
2603 - Moved Adam's termio code down to after getopt() and before initscr()
2604 to stop people losing their SIGINT character when using args that
2605 exit nano before it runs (--version, --help, etc).
2606
2607nano-0.9.9 - 05/31/2000
Chris Allegretta88520c92001-05-05 17:45:54 +00002608- Makefile.am:
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002609 - Added proper lines for defining LOCALEDIR.
2610- configure.in:
2611 - Spelling fixes (Jordi Mallach)
2612 - Removed CFLAGS changes for gcc, reduces portability according to
2613 some, and it certainly doesn't seem to decrease exe size.
2614- es.po:
Chris Allegretta88520c92001-05-05 17:45:54 +00002615 - Spanish translation updates (Jordi Mallach)
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002616- POTFILES.in:
2617 - Added global.c file, was screwing up translations (i.e. they
2618 weren't getting done).
2619- cut.c:
2620 add_to_cutbuffer():
2621 - Added totsize increment.
2622 - Cut fixes and optimizations (Rob Siemborski).
2623 do_uncut_text():
2624 - Added totsize increment in several places.
2625- nano.c:
2626 headers:
2627 - Removed LOCALEDIR define.
2628 do_justify():
2629 - Added edit_refresh() call (bug discovered by Adam).
2630 page_down_center():
2631 - Added call to edit_update(current) for last case. Removed
2632 increment of current_y since it's now just wasteful.
2633 do_enter():
2634 - Added totsize increment.
2635 renumber(), renumber_all():
2636 - Removed totsize-- and totsize init in renumber_all.
2637 do_mouse():
Chris Allegretta88520c92001-05-05 17:45:54 +00002638 - Added edit_refresh() call to show highlight updates. Removed
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002639 unnecessary wrefresh(edit).
2640 main():
2641 - Moved up locale calls so that translated --help messages would
2642 actually get translated.
2643 do_backspace(), do_delete():
2644 - Added decrement of totsize.
2645 init_help_msg():
2646 - New function, initializes help text if NANO_SMALL isn't set (fixes
2647 broken i18n).
2648 read_file():
2649 - malloc call changed to nmalloc (Rob Siemborski).
2650- winio.c:
2651 total_refresh():
Chris Allegretta88520c92001-05-05 17:45:54 +00002652 - Completely rewrote function, not quite so brain-damaged now.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002653
2654nano-0.9.8 - 05/18/2000
2655- nano.c:
2656 main():
2657 - Added awesome code that disables the CINTR and CQUIT
2658 character (Adam Rogoyski). Removed raw()/noraw() calls so that
2659 nano gets input in 'normal' mode, which is the Right Way(tm) to
2660 do it. ^S, ^Z and ^Q now work properly as a result, as well as
Chris Allegretta88520c92001-05-05 17:45:54 +00002661 ^C. New variable term, global variable oldterm to save previous
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002662 term settings, and changes to finish() and die().
2663 - Added extra #ifdefs in getopt code, so that above code and
2664 flag init is run even if GETOPT_LONG is not #defined.
2665 - Added memset line before sigactions. (Adam Rogoyski)
2666 do_suspend():
2667 Removed function, see above for why.
2668- winio.c:
2669 update_line(), center_cursor():
2670 - Removed wrefresh(edit) from bottom of functions. wrefresh
2671 should now only be called once, at the bottom of the main()
2672 loop.
2673- global.c:
2674 shortcut_init():
Chris Allegretta88520c92001-05-05 17:45:54 +00002675 - Removed suspend sc_init call and suspend message because suspend
2676 is no longer needed in the shortcut list to work properly.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002677
2678nano-0.9.7 - 05/14/2000
2679- nano.c:
2680 do_home(), do_end():
2681 - Added calls to update_line for the current line, fixes
2682 lack of update (bug discovered by Alberto García).
2683 main():
2684 - Added SET(FOLLOW_SYMLINKS) before getopt call, fixes not
2685 following symlinks even when -l isn't set, and "no changes"
2686 error when nano is called from crontab -e (Adam Rogoyski).
2687- cut.c:
2688 do_cut_text():
2689 - Added edit_update_top to cut when mark is set, fixes lack of
2690 display update (bug discovered by Ken Tyler).
2691
2692nano-0.9.6 - 05/08/2000
2693- New Italian translation (it.po), by Daniele Medri.
2694- nano.c:
2695 page_up(), page_down():
2696 - Added reset of placewewant to 0, as it should be.
2697 do_up(), do_down():
2698 - Added call to update_line() for line we move from and line we
2699 move to, in order to keep the highlighting correct.
2700 do_wrap():
2701 - Added var chop, new code to wrap lines more like Pico, mostly.
2702 THIS STILL DEFINITELY NEEDS TO BE REWRITTEN!
2703- winio.c:
2704 do_help():
2705 - Added edit_refresh() before exit.
2706 update_cursor():
2707 - Removed cursor updating which really wasn't needed anyway.
2708 edit_update():
2709 - Removed yucky code that didn't work, this function now just
2710 computes edittop and editbot and calls edit_refresh() to do the
Chris Allegretta88520c92001-05-05 17:45:54 +00002711 rest, which removes a lot of duplicate code..
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002712
2713nano-0.9.5 - 05/01/2000
2714- Removed bytes from file struct because it was computationally wasteful.
2715- cut.c:
2716 do_uncut_text():
2717 - Added call to edit_refresh().
2718- nano.c:
2719 do_backspace():
2720 - Added reset of editbot when deleting the last line of the file
2721 (bug discovered by Adam).
2722 do_char():
2723 - Removed call to reset_cursor().
2724 do_delete():
2725 - Added similar check as to do_backspace().
2726 do_enter():
2727 - Added call to edit_refresh().
2728 do_left(), right():
2729 - Added call to update_line(), still redundant but better...
2730 do_up(), do_down():
2731 - Added refresh calls both for current line and line to which
2732 we are moving.
2733 main():
2734 - Removed inefficient call to edit_refresh() after every keystroke.
2735 It is now up each function to leave the screen in a good state.
2736- winio.c:
2737 do_cursorpos()
2738 - Rewritten to not use bytes from filestruct by an incremental sum.
2739 update_line(), reset_cursor():
2740 - Optimized calls to xplustabs() through a single variable.
2741 - update_line() now takes a new arg, an index into the string
2742 for where to update the line from. Needed for new update
2743 code.
2744- configure.in:
2745 - Better checks for slang, allows argument to --with-slang.
2746 (Albert Chin-A-Young)
2747 - Removed -Iintl from CFLAGS in gcc check.
2748- Makefile.am:
2749 - Addition of -Iintl for gettext (Albert Chin-A-Young)
2750
2751nano-0.9.4 - 04/25/2000
2752 - Fixed calls to no_help and changed them to the more consistent
2753 ISSET(NO_HELP). Fixed return val of no_help to be what it should (2,
2754 not 1. Code to temporarily disable NO_HELP when in the
2755 help system. (Adam Rogoyski)
2756- cut.c:
2757 do_marked_cut(), do_cut(), do_uncut():
2758 - Commented out unnecessary bits when NANO_SMALL is being used.
2759- winio.c:
2760 xpt(), strlenpt(), actual_x():
2761 - Added check for value of data[i] & 0x80, if so do not make
2762 character 2 chars wide (orig. by Chris, 0x80 check by Adam).
2763 edit_refresh():
2764 - New check for temp == NULL (bad thing), if so go back to the
2765 previous line. New filestruct var hold points to prev line.
2766 Fixes segfault when paging down to the end of a file.
2767- nano.c:
2768 write_file():
2769 - Added check for if file exists and is not equal to the current
2770 filename, prompt for overwrite (Adam Rogoyski).
2771 do_down():
2772 - Removed check for current->next == NULL, now checks return value
2773 of do_down before setting current_x = 0 (discovered by Adam).
2774 do_justify():
2775 - Fixed segfault when reaching the last line (tried to assign
Chris Allegretta88520c92001-05-05 17:45:54 +00002776 current->next->data when current->next == NULL) (discovered
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002777 by Adam).
2778- utils.c:
2779 - Removed extra macro defs that are now in nano.h.
2780- nano.h:
2781 - Changed macro SET() to use |= instead of ^=. Fixes bug in
2782 cut code when cutting more than one line, and cutbuffer gets
Chris Allegretta88520c92001-05-05 17:45:54 +00002783 blown away when it shouldn't.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002784
2785nano-0.9.3 - 04/29/2000
2786- cut.c:
2787 do_marked_cut():
2788 - Fixed off by one error in cut code for marked text.
2789 do_cut_text():
2790 - Removed check for being on the last line, part of
2791 magic line code.
2792 add_to_cutbuffer():
2793 - Moved tmp->prev = inptr line to part where cutbuffer != NULL.
2794 - Added inptr->prev = NULL for case where cutbuffer == NULL.
2795- nano.c:
2796 do_backspace(), do_char():
2797 - Removed "magic line" code. It was basically causing more bugs
Chris Allegretta88520c92001-05-05 17:45:54 +00002798 than it was helping for the sake of compatibility. This fixes
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002799 at least one known segfault condition.
2800 do_enter():
2801 - Added setting editbot to new node if the new node is the last
2802 node in the file.
2803 write_file():
Chris Allegretta88520c92001-05-05 17:45:54 +00002804 - Changed writing file behavior. Now, if last line of the file
2805 has any data on it, we write a newline on it, else we don't.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002806- winio.c:
2807 add_marked_sameline():
2808 - New code that checks for whether the begin and end of the marker
2809 are on different lines. Missing previously.
2810 edit_add():
Chris Allegretta88520c92001-05-05 17:45:54 +00002811 - added some more checks for text length. Cleaned up some
2812 mvwaddnstrs that could be written more simply as waddnstrs.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002813 edit_refresh():
Chris Allegretta88520c92001-05-05 17:45:54 +00002814 - Removed check for temp == filebot, it is now treated like any other
2815 line. Fixes a bug where selected text on the last line shows
2816 normally.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002817 xpt():
2818 - Removed an extra computation for tabs variable that was incorrect.
2819 xplustabs():
Chris Allegretta88520c92001-05-05 17:45:54 +00002820 - Since xpt now actually works, this func is now just a wrapper for
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002821 xpt(current, current_x)
2822- nano.1, nano.1.html:
2823 - Added -l option to man pages.
2824- configure.in:
2825 - New option --enable-tiny, #defines NANO_SMALL in config.h.
2826 Disables call to gettext in functions and other i18n stuff in
2827 nano.c, the detailed help mode, the resize functions, and the
2828 justify code which no one ever uses.
2829 - New option --with-slang. Enables slang libraries instead of
2830 ncurses, requires slcurses.h for wrapper functions. (Based
2831 on patches for 0.8.7 by Glenn McGrath).
2832
2833nano-0.9.2 - 04/15/2000
2834- This release just fixes the serious segfault problem if nano is
2835 invoked any way other than using the absolute path. The bug was
Chris Allegretta6df90f52002-07-19 01:08:59 +00002836 in the new code for checking whether nano is invoked as 'pico'.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002837
2838nano-0.9.1 - 04/14/2000
Chris Allegretta6df90f52002-07-19 01:08:59 +00002839- Added Pico compatibility for ^T when in search or switch to switch
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002840 to the opposite function. Added one to REPLACE_LIST_LEN and
2841 WHEREIS_LIST_LEN in nano.h, new args to sc_init_one in global.c and
Chris Allegretta88520c92001-05-05 17:45:54 +00002842 new strings that will have to be gettext()ed. New argument 'replacing'
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002843 to search_init(). Handlers in do_replace and do_search().
2844- New write code, now follows symbolic links instead of replacing them
2845 with the new file. New option (-l, --nofollow) to enable the old
2846 (incorrect, but secure) behavior (Adam Rogoyski).
2847- nano.c:
2848 do_wrap():
2849 - Fixed another bug relating to wrapping, and which would cause
2850 a segfault *sigh*.
2851 do_replace():
2852 - Incremented current_x by the length of the replacement
Chris Allegretta88520c92001-05-05 17:45:54 +00002853 text inside the main replace loop. Fixes bug #15.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002854 add_marked_sameline():
2855 - New function, handles marked text when start & end of marker is
2856 on one line, also supports most marked text when cursor > COLS.
2857 main():
2858 - Code to check if nano is invoked as 'pico', and if so
2859 automatically set pico_msgs (Robert Jones).
2860
2861nano-0.9.0 - 04/07/2000
2862- nano.1, nano.1.html: Updated man page with my email address and homepage.
2863- winio.c:
2864 reset_cursor(), update_line():
2865 - Changed update algorithm for x value to (COLS - 7) multiple when x
2866 value > (COLS - 2).
2867- edit_refresh():
2868 - Removed inner loop code, now calls update_line() for each line
2869 in question, MUCH nicer.
2870- xplustabs(), xpt():
Chris Allegretta88520c92001-05-05 17:45:54 +00002871 - Removed redundant increment of tabs when column no % 8 == 0.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002872 - Added check for data[i] < 32, most of such bits are 2 chars wide.
2873- update_line():
2874 - Fixed a stupid call to strlenpt with col when we should have
2875 been using actual_col. Ugh.
2876
2877nano-0.8.9 - 03/22/2000
2878- nano.c:
2879 empty_line(), no_spaces(), justify_format(), do_justify():
2880 Actually added these (screwup applying patch).
2881 do_justify(): Added call to set_modified().
2882
2883nano-0.8.8 - 03/12/2000
2884- Preliminary internationalization support. Many many functions modified
2885 to use gettext (via _() macro). es.po file included. (Jordi Mallach)
2886 New dirs po/ and intl/, changes to configure.in and Automake.am to
2887 support i18n.
2888- nano.c:
Chris Allegretta88520c92001-05-05 17:45:54 +00002889 includes: Added sys/param.h and limits.h. (Adam Rogoyski).
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002890 statics: Changed some things that were not necessarily static
2891 (Adam Rogoyski).
2892 nrealloc(): New function, similar to nmalloc(). Changed calls from
2893 realloc() to nrealloc (Adam Rogoyski).
2894 empty_line(), no_spaces(), justify_format(), do_justify():
2895 New functions for justify function (Adam Rogoyski).
2896- winio.c:
2897 blank_edit(): Added wrefresh call to edit so that screen updates (like
2898 on ^L) actually work.
2899 xplustabs(), xpt(), strlenpt(): Fixed off-by-one buglets (Adam Rogoyski).
2900
2901nano-0.8.7 - 03/01/2000
2902- main.c:
Chris Allegretta88520c92001-05-05 17:45:54 +00002903 do_wrap(): Better fix for segfaults, and fix for lines being wrapped
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002904 to a single character on one line when no good place to
Chris Allegretta88520c92001-05-05 17:45:54 +00002905 break the line exists, and for wrapping lines longer than
2906 COLS.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002907- nano.1.html:
2908 Html version of man page, now included in dist. For
2909 the benefit of nano packages in Linux distributions.
2910
2911nano-0.8.6 - 02/24/2000
Chris Allegretta88520c92001-05-05 17:45:54 +00002912- global.c:
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002913 shortcut_init():
2914 Added shortcuts for goto_line and do_replace when using
2915 pico_msgs. Oops.
2916- nano.c:
2917 statics: Changed fill back to 0 from 71 by default (Adam Rogoyski).
Chris Allegretta88520c92001-05-05 17:45:54 +00002918 do_wrap(): Added check for backing up past tabs, which we shouldn't do.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002919 Removed check for backing up past spaces first.
2920 main(): Added for loop to check for alt keys instead of hard list.
2921 do_enter(): Fix for bug #14, added call to reset_cursor and messed
2922 up do_char quite a bit.
2923 version(): Added time and date stamp for compile on version message.
2924 Added mail and web page info.
2925- README: Updated mailing list info.
2926
2927nano-0.8.5 - 02/18/2000
2928- nano.c:
2929 main(): Finally fixed tilde being input on page up/down keys in
2930 certain terminal types. Fix was input 26->91->5[34] check
2931 for 126, if so make the kbinput PAGE UP/DOWN, else unget
2932 the keystroke and continue. Added #include <ioctl.h> for
2933 ioctl call.
2934 handle_hup():
2935 Handler for hangup signal. Belated include of patch from
2936 Tim Sherwood.
2937- winio.c:
2938 edit_refresh():
2939 Temporary fix for selecting text when temp == current.
Chris Allegretta88520c92001-05-05 17:45:54 +00002940 edit_refresh() is now unmanageably complex, and must be
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002941 revamped.
2942 check_statblank():
2943 Added check for constupdate, makes things less choppy
2944 (Adam Rogoyski)
2945
2946nano-0.8.4 - 02/11/2000
2947- Moved global variables that were only (or mostly) used in one file into
2948 its proper file as a static. Affects cut.c, nano.c, global.c (Andy Kahn).
2949- global.c:
2950 shortcut_init():
2951 Removed redundant NANO_CONTROL_H from backspace shortcut,
2952 added char 127 which should have been there.
2953- nano.c:
2954 main(): Fix for loops looping until MAIN_LEN, added -1 to stop
2955 segfaults (Adam Rogoyski).
2956- Makefile.am: Added all source filenames (Adam Rogoyski).
2957- nano.1: Fixed mail addressed and added mailing list address.
2958- README: Updated my email address and the nano web page.
2959
2960nano-0.8.3 - 02/08/2000
Chris Allegretta6df90f52002-07-19 01:08:59 +00002961- New Pico mode (-p, --pico), toggles (more) compatibility with the
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002962 Pico messages displayed in the shortcut list. Note that there are still
2963 small differences in this mode.
2964- nano.h: New shortcut struct format, for the benefit of i18n and
2965 our help menu. Removed shortcut message macros, they are
2966 now all in shortcut_init in global.c.
2967- nano.c:
2968 do_wrap(): Removed resetting of current_x when we are in fact
2969 wrapping to the next line, fixes a bug in -i mode.
2970 do_enter():
2971 Rewrote the autoindent mode code to be a lot less pretty,
2972 but a lot more magical.
2973 main():
2974 Removed case for ignoring char 126 (~). That's kind of
2975 important, we'll have to fix handling that sequence when
Chris Allegretta88520c92001-05-05 17:45:54 +00002976 paging up/down on a terminal some other way... Revamped
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00002977 main switch loop in much snazzier fashion based on the
2978 shortcut list.
2979- winio.c:
2980 New function display_main_list. Affects all functions
2981 that used to call bottombars() with main_list. Added
2982 because we now only call bottombars with the macro
2983 MAIN_VISIBLE instead of MAIN_LIST_LEN, because of the
2984 changes to the main_list shortcut list (see global.c below).
2985 New function do_help, our preliminary dynamic help system.
2986- Many many funcs:
2987 Changed from int to void to allow one uniform type to call
2988 from the shortcut struct. Also a few functions that do
2989 not simple have void argument have new functions called
2990 funcname_void(void) to be called from the shortcut list.
2991 do_cut_text and do_uncut_text were changed to void
2992 arguments because they were never called with a filestruct
2993 other than *current anyway.
2994- global.c:
2995 Shortcut list main_list was expanded to cover all
2996 shortcuts that could be caught in the main loop.
2997 Consequently there is a new macro MAIN_VISIBLE which tells
2998 how many items in the main list to actually show.
2999
3000nano-0.8.2 - 02/02/2000
3001- Added initial mouse (-m, --mouse) support. New global variable
3002 use_mouse. (Adam Rogoyski)
3003
Chris Allegretta88520c92001-05-05 17:45:54 +00003004- nano.c: Set initial value of fill to COLS - 8 rather than just 72
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003005 regardless. (Adam Rogoyski).
3006 do_delete():
3007 Deleted call to do_backspace() when on the end of a line,
3008 because it won't update the line properly.
3009 do_backspace():
3010 Removed unnecessary pointer manipulation that was being
3011 handled by unlink_node().
3012 open_file():
3013 Added check for trying to open a directory (currently we
3014 segfault on this). Bug pointed out by Chad Ziccardi.
3015
3016nano-0.8.1 - 01/28/2000
3017- Implemented Pico's -r (fill) mode, command line flag -r or --fill. New
3018 global variable fill, affects check_wrap(), do_wrap(), main(), usage(),
3019 global.c and proto.h.
3020- nano.c:
3021write_file(): Added (incredibly) necessary check for EPERM when
3022 link() fails. This allows us to actually save
3023 files via rename() on filesystems that dont
3024 support hard links (AIEEEEEE).
3025do_goto():
3026 Fixed a stupid mistake where we were calling
3027 bottombars() with replace_list instead of goto_list.
3028- nano.h:
3029 New char *help in shortcut structure for help
Chris Allegretta88520c92001-05-05 17:45:54 +00003030 feature. Added NANO_*_MSG and NANO_*_HELP #defines
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003031 for help function and i18n.
3032- global.c:
3033 New functions shortcut_init (called in nano.c) and
3034 sc_init_one() to initialize the shortcuts without
3035 using {}s (for i18n).
3036
3037nano-0.8.0 - 01/25/2000
3038- View flag (-v, --view) implemented. Global variable view_mode, affects
3039 main loop of nano.c and new_file(). (me)
3040- nano.c:
3041 split checks for TERMIOS_H and TERMIO_H up so we
3042 can (theoretically) include them both, which is good.
3043handle_sigwinch():
3044 Added check for ncurses.h. (Andy Kahn)
3045do_spell():
3046 We now only try ispell because we don't as of yet
3047 handle the 'spell' program the right way, now that
3048 I finally know what the right way is =-). Added
3049 call to edit_update(fileage) to stop segfaults.
3050global_init():
3051 Added initialization of edit* filestruct pointers
3052 to stop segfaults on spell check.
3053usage():
3054 Check for getopt_long, and if no leave out the
3055 GNU options everyone seems to love so much (Andy Kahn)
3056main():
3057 Added checks for getopt_long (Andy Kahn)
3058 We ignore character 126 because it gets put into
3059 the buffer when we page up/down on a vt terminal.
3060write_file():
3061 Fixes for umask (Adam Rogoyski). Renamed tmpfile
Chris Allegretta88520c92001-05-05 17:45:54 +00003062 variable to tmp. Documented the tmp option
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003063 better in the function comments. Fixed my
3064 stupidly commented out check for tmp on setting
3065 umask which I really like =>
3066- nano.h:
3067 Made desc variable in shortcut struct a pointer
3068 instead of a fixed-length string.
3069- utils.c:
3070 Fixed check for config.h before nano.h.
3071- configure.in:
3072 New checks for getopt_long, getopt.h, removed
3073 CFLAGS and LDFLAGS changes. Gonna have to run
3074 strip manually now =-) (Andy Kahn)
Chris Allegretta88520c92001-05-05 17:45:54 +00003075 Added check for HAVE_WRESIZE, new file acconfig.h
3076 (me).
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003077
3078nano-0.7.9 - 01/24/2000
3079- New autoindent feature. Command flag 'i' or '--autoindent'. New
3080 function do_char() to clean up character output, global
3081 variable autoindent in global.c. (Graham Mainwaring)
3082- New flag 't' or '--tempfile', like Pico's -t mode, automatically saves
3083 files on exit without prompting. Affects do_writeout(). Also
3084 do_writeout() now takes a parameter for if exiting.
3085 Global variable temp_opt in global.c (Graham Mainwaring)
3086- Preliminary spell program support. Added command flag '-s' or
3087 '--speller' for alternative speller command. Added function do_spell()
3088 and exit_spell() to nano.c. New global variable alt_speller.
3089- nano.c:
3090 main(): We now ignore input of decimal 410 because these get entered
3091 when we resize the screen. Sorted options in getopt()
3092 switch statement.
3093 usage(): Sorted options and changed tabs to make room for -s option.
3094 write_file(): Now takes a second parameter 'tmpfile', uses mask 0600 and
3095 doesn't print the number of lines written on the statusbar.
3096 global_init():
3097 Added more initializations to globals to support do_spell().
3098
3099nano-0.7.8 - 01/23/2000
3100- Stubbed justify function. Affects main() in nano.c and nano.h defines.
Chris Allegretta88520c92001-05-05 17:45:54 +00003101- Added Fkey equivalents for Pico compatibility. Affects nano.h defines
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003102 and main() in nano.c
3103- Removed redundant reset_cursor() calls from the blank() routines.
3104- nano.c:
3105 main(): Fixed typo in main while loop for NANO_ALT_REPLACE_KEY.
3106 Removed check for isprint() characters in main while loop
3107 for people with odd character sets *shrug*. Added some X
3108 window F-key combos.
3109 read_line(): New function, consolidates of most of the special
3110 sections of the file reading code. (Rob Siemborski)
3111 do_replace(): Many scattered fixes. (Rob Siemborski)
3112 write_file(): Added check for empty filename.
3113- winio.c:
3114 nanogetstr(): Fixes for deleting at places other than the end of the
3115 buffer, cut support. (Adam Rogoyski)
3116 blank_edit(): New function, blanks edit buffer. Added call to it in
3117 total_refresh().
3118- configure: Checks for glib if snprintf of vsnprintf aren't available
3119 (Andy Kahn). Changed warning message when no termcap lib
3120 is found.
3121
3122nano-0.7.7 - 01/19/2000
3123- Option '-v' for version moved to '-V', because -v is Pico's "read only"
3124 mode (affects getopt() in main() and usage() function in nano.c
3125- New flag -c, always show cursor position. Affects main() in nano.c and
3126 statusbar() in winio.c
3127- Option '-x' doesn't show help window at the bottom of the editor.
3128 New variable no_help in nano.h and proto.h, affects main(), usage(),
3129 and global_init() in nano.c, blank_bottombars(), clear_bottomwin(),
3130 bottombars(), and do_yesno() in winio.c (I had to apply this patch by
3131 hand =P) (Adam Rogoyski)
3132- nano.c:
3133 handle_sigwinch(): New function (Adam Rogoyski), handles resizing.
3134 page_up(), page_down():
3135 - New functions. We now set the cursor at the top right corner,
3136 not at the center line, and page up and down a full screen
3137 rather than a half screen. Original functions renamed to
3138 page_up_center() and page_down_center().
3139 main():
3140 - Added check for keystroke key sequence 407 or NANO_CONTROL_Z
3141 in main while loop because suspend mode was broken. This should
3142 fix it, at least for now.
3143 - Added long option support (By popular harassment ;-) - Added
3144 #include for getopt.h, changed getopt() to getopt_long().
3145 Options added so far: --version (-V), --nowrap (-w), --suspend
3146 (-z), --help (-h), --nohelp (-x).
3147 - Rewrote signal statements (Adam Rogoyski)
3148
3149nano 0.7.6 - 01/15/2000
3150- New ChangeLog format
3151- nano.c:
3152 main(): Bound CONTROL_H to backspace (oops)
3153 Added more Alt-[-key combinations, for page up & down.
3154 read_bytes(): New function (Adam Rogoyski)
3155 read_file(): Optimizations - malloc()s *buf a little at a time rather
3156 than one huge buffer, and replaced the strcat at the end
3157 with an index variable. Added call to read_bytes().
3158 do_next_word(): New function, binding is control-space (0) (me)
3159
3160- winio.c:
3161 bottombars(): Fixed non-expanding shortcut keys at bottom of screen.
3162 (formula is extra space needed = COLS / 6 - 13).
3163 actual_x() & strlenpt():
3164 Added bug#9 fix - when tabs % 8 == 0, we should only
3165 increment tabs by 1.
3166 titlebar(): Fixed overrun in titlebar on very long filenames.
3167
31680.7.5 Pico 'last line' feature added (Rob Siemborski & me). Eliminated
3169 writing a newline at EOF. do_cursorpos and do_replace are now not
3170 directly bound to signals but picked up as their control sequences
3171 in raw mode. Bug fix in do_backspace. Fixed bug #9 (woohoo!)
31720.7.4 Optimized (obfuscated?) edit_refresh. Malloc() calls checked for
3173 available memory, align bug fixed (Big Gaute).
3174
3175--- As of version 0.7.4 TIP is renamed to nano.
3176
31770.7.3 Fixed a double blank_statusbar() when jumping to first and last
3178 lines. Took out unnecessary updates in load_file. Bug fix in
3179 do_left. Missing updates to totlines, fixed bug #7 (last line not
Chris Allegretta88520c92001-05-05 17:45:54 +00003180 having a newline at the end doesn't get read, bugfix in do_replace
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003181 with replace all, more/better comments (Robert Siemborski)
31820.7.2 Our first patch accepted into the source! configure fixes
3183 and optimizations (Erik Anderson). Added missing stdarg.h to winio.c.
3184 Bug fix in update_line for editing long lines. Fixed arguments
3185 being put into the filename when none is specified. Preliminary
3186 +line command argument function.
31870.7.1 configure tweak for better FreeBSD support. Removed refresh() from
3188 edit_refresh to stop cursor "jumping" during screen updates. This
3189 will probably cause a bug or two. Replace is now Alt-R (@R) and
3190 Goto line is Alt-G (@G), but they have control key aliases of ^\ and
3191 ^_ respectively. Made Control-F,B,N,P work like they do in Pico.
3192 Control-G will become the Help key, but for now is stubbed out.
31930.7.0 Fixed missing stdlib.h from cut.c. Fixed a few message bugs in
3194 findnextstr. Bound Control-D to Delete. Refixed segfault on zero
3195 length file. Added Esc-[-A,B,C,D cursor key sequences.
31960.6.9 Preliminary cursor position function. Split up tip.c more, made
3197 new files cut.c and winio.c. Fixed a bug in cut_marked_segment
3198 that was leaving out a character.
31990.6.8 By request, optchr in main() is now an int. Removed unneeded
3200 globals. Bound functions for next/prev page, and wrote functions
3201 do_home and do_end.
32020.6.7 Bugfix in do_uncut_text for totlines. Broke up open_file and
3203 created read_file. Implemented Insert File. Fixes in tipgetstr
3204 for erroneous keystrokes. Added leave_cursor arg to do_yesno().
32050.6.6 Fixes in do_search(), do_replace(), do_writeout, and do_exit() for
3206 aborted searches and more Pico-compatible messages. statusq() now
3207 returns -2 on a blank entry instead of -1. Bug fix in actual_x().
32080.6.5 More BSD compatibility. Fixed two bugs in do_uncut_text
3209 regarding buffers with filebot in them. Fixins in do_backspace
3210 and do_enter. Removed unused variables. Removed strip_newline.
32110.6.4 Took out the awful newlines from each string buffers. This will
3212 certainly cause more bugs. Fixes in do_exit(). Better empty file
3213 handling (I hope).
32140.6.3 Implemented ^E. Removed now unneeded wrapline from filestruct.
3215 do_enter() rewritten.
32160.6.2 Better default file permissions. Complete rewrite of do_wrap().
3217 Better handling of editing with cursor near COLS - 1.
32180.6.1 Starting to implement wrapping toggle. Fix for unhandled control
3219 codes being entered into the buffer. Bug fix in actual_x; more
3220 > COLS - 1 functionality, especially on lines with TABs. Fixed being
Chris Allegretta88520c92001-05-05 17:45:54 +00003221 locked into cutbuffer when cutting more than one marked screen of
3222 text.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000032230.6.0 We have TABs!!! To do this, placewewant is now set to the actual
3224 width on the screen we want to be, not an index of current->data.
3225 New functions xplustabs and actual_x convert the actual place
3226 the cursor should be on the screen to and from the place in the
3227 string.
32280.5.5 Changed do_right to test do_down before setting current_x to 0,
Chris Allegretta88520c92001-05-05 17:45:54 +00003229 eliminating the "looping" on the last line when holding the right
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003230 arrow. Preliminary support for longer than COLS - 1 lines.
3231 Wrote do_delete.
Chris Allegretta88520c92001-05-05 17:45:54 +000032320.5.4 Fixed a bug in total_update that wasn't repainting the screen
3233 properly. tipgetstr is much more messy but text is now more
3234 editable ;) Fixed crash on entering a new file, hopefully. Awful
3235 stub for tab handling, only in do_right() to save me some sanity.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000032360.5.3 Added check for malloc.h. Implementing uncut from marker slowly.
3237 Fixed a few bugs in do_uncut when not uncutting from marked text.
Chris Allegretta88520c92001-05-05 17:45:54 +00003238 I would not trust your data with the mark code right now, but then
3239 we're not at version 1.0 yet so dont trust anything ;)
32400.5.2 Added reset_cursor() before end of update_line so cursor doesn't
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003241 jump after each keystroke entered. Select text stubbed. Fixed
Chris Allegretta88520c92001-05-05 17:45:54 +00003242 a bug in total_refresh(). Setting a mark will highlight properly,
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003243 but does not actually affect what gets put in the cutbuffer (yet).
32440.5.1 Writing a file out causes modified to be set back to 0. Good.
3245 Set_modified function written. Cut and uncut text now set
3246 modified when called.
32470.5.0 Half way there! Implemented write out, save function seems
Chris Allegretta88520c92001-05-05 17:45:54 +00003248 stable. Changed statusbar blank routing to not refresh, a separate
Chris Allegrettaa2ea1932000-06-06 05:53:49 +00003249 program calls it and then refreshes. Made the program not clear
Chris Allegretta88520c92001-05-05 17:45:54 +00003250 the screen on exit, just the bottom two lines (like Pico).
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000032510.4.2 Implemented replace all in replace function. Crude exit function
3252 (asks yes or no if modified but does not write to file).
32530.4.1 Implementing search & replace. Fixed crash on deleting at top of
3254 edit buffer. Implemented "timeout" of statusbar messages.
3255 Implemented ^A and ^E (beginning and end of line).
32560.4.0 Split code into global.c and proto.h to allow for better multiple
3257 file handling. Added #defines for the majority of the shortcut
Chris Allegretta88520c92001-05-05 17:45:54 +00003258 keys in tip.h for easy modification.
Chris Allegrettaa2ea1932000-06-06 05:53:49 +000032590.3.1 Write edit_refresh which doesn't move the screen around, just
3260 updates what's there already. do_wrap() and do_enter() added.
32610.3.0 Preliminary cutbuffer (cut and uncut) support.
32620.2.7 Check for Modification added. do_search() works.
32630.2.5 Rewrite of file data struct.
32640.2 Read in data to buffer, bound keystrokes to stub functions,
3265 initial cursor movement on screen. Initial autoconf support.
32660.1 Initial program setup w/ncurses
Chris Allegrettac87a4112000-08-07 02:16:24 +00003267
3268$Id$