diff --git a/ChangeLog b/ChangeLog index 720819f4..1ad658d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,51 @@ +Changes between v2.9.5 and v2.9.6: +---------------------------------- + +Benno Schulenberg (39): + build: do not prefix an alternative rcfilename with a dot + build: fix compilation when configured with --disable-help + bump version numbers and add a news item for the 2.9.6 release + command-execution: do not crash when opening the pipe would fail + completion: correctly do a signed comparison, to avoid a segfault + files: prevent a hang when a call to sigaction() would fail + formatting, linting: redetermine the argument list for every run + gnulib: update to its current upstream state + memory: use a reallocation to reduce the amount of leakage + prompt: recognize Yes/No/All in English when the locale gives no match + rcfile: skip color commands where some color name is invalid + scrolling: don't redraw entire edit window when cursor goes offscreen + search: always go forward by default, also when coming from Goto-Line + search: use a better value to mean "nothing was typed" + speller: don't add an extra newline when saving the text to a tempfile + syntax: po: highlight also other escaped characters, not just \n + syntax: sh: colorize options only when they are preceded by whitespace + tweaks: adjust the translator hint about Yes/No/All + tweaks: correct or improve a couple of comments + tweaks: elide a function that is called just once + tweaks: fix a typo, remove a blank line, and improve some comments + tweaks: frob a couple of comments + tweaks: group some more of the empty functions together + tweaks: improve some comments, and exit with nonzero status upon error + tweaks: improve the ordering of a couple of functions + tweaks: invert two conditions and reshuffle, to reduce duplication + tweaks: move a function to its proper location + tweaks: move a function to its proper location + tweaks: rearrange a few if statements more symmetrically + tweaks: remove the group handling for undoing/redoing (un)indents + tweaks: rename a function, to be more distinct from its caller + tweaks: rename a function, to be more fitting and descriptive + tweaks: rename a variable, for clarity + tweaks: rename a variable, to be a bit more fitting + tweaks: rename a variable, to be more clear and to match another + tweaks: rename a variable, to match another and to be more visible + tweaks: reshuffle two declarations + tweaks: set the correct flags just once for each spell-fixing session + tweaks: use meaningful names instead of puzzling values + +Liu Hao (1): + replacing: always clear the backwards flag for ^\, just like for ^W + + Changes between v2.9.4 and v2.9.5: ---------------------------------- diff --git a/NEWS b/NEWS index ad5427ad..29dab706 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +2018.04.27 - GNU nano 2.9.6 "Gomance" fixes a crash in word completion, + makes --enable-altrcname work again, improves the fluidity + of scrolling when using the touchpad, tweaks the syntaxes + for shell scripts and PO files, makes a replacing session + go always forward by default, no longer inserts a newline + after an external spell check of a selected region, always + accepts the English Y and N (and A) at a yes-no prompt in + any locale, and solves a few hypothetical bugs. + 2018.03.29 - GNU nano 2.9.5 "Kiša pada" changes the way the Scroll-Up and Scroll-Down commands work (M-- and M-+): instead of keeping the cursor in the same screen position they now diff --git a/configure.ac b/configure.ac index e74eae16..435756ee 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see http://www.gnu.org/licenses/. -AC_INIT([GNU nano], [2.9.5], [nano-devel@gnu.org], [nano]) +AC_INIT([GNU nano], [2.9.6], [nano-devel@gnu.org], [nano]) AC_CONFIG_SRCDIR([src/nano.c]) AC_CANONICAL_HOST AM_INIT_AUTOMAKE([1.14]) diff --git a/doc/faq.html b/doc/faq.html index 6bbcc9d8..ed5b510f 100644 --- a/doc/faq.html +++ b/doc/faq.html @@ -91,7 +91,7 @@

1.3. Why the name change from TIP?

On January 10, 2000, TIP was officially renamed to nano because of a namespace conflict with another program called 'tip'. The original 'tip' program "establishes a full duplex terminal connection to a remote host", and was included with many older Unix systems (and newer ones like Solaris). The conflict was not noticed at first because there is no 'tip' utility included with most GNU/Linux distributions (where nano was developed).

1.4. What is the current version of nano?

-

The current version of nano should be 2.9.5. Of course, you should always check the nano homepage to see what the latest and greatest version is.

+

The current version of nano should be 2.9.6. Of course, you should always check the nano homepage to see what the latest and greatest version is.

1.5. I want to read the man page without having to download the program!

Jeez, demanding, aren't we? Okay, look here.


diff --git a/doc/nano.1 b/doc/nano.1 index f25a07ef..bf8ff871 100644 --- a/doc/nano.1 +++ b/doc/nano.1 @@ -16,7 +16,7 @@ .\" Documentation License along with this program. If not, see .\" . .\" -.TH NANO 1 "version 2.9.5" "March 2018" +.TH NANO 1 "version 2.9.6" "April 2018" .SH NAME nano \- Nano's ANOther editor, an enhanced free Pico clone diff --git a/doc/nano.texi b/doc/nano.texi index c73cedbb..03c7afb8 100644 --- a/doc/nano.texi +++ b/doc/nano.texi @@ -8,8 +8,8 @@ @smallbook @set EDITION 0.5 -@set VERSION 2.9.5 -@set UPDATED March 2018 +@set VERSION 2.9.6 +@set UPDATED April 2018 @dircategory Editors @direntry @@ -23,7 +23,7 @@ @titlepage @title GNU @command{nano} @subtitle a small and friendly text editor -@subtitle version 2.9.5 +@subtitle version 2.9.6 @author Chris Allegretta @page @@ -63,7 +63,7 @@ e-mail: @email{chrisa@@asty.org}@* @node Top @top -This manual documents the GNU @command{nano} editor, version 2.9.5. +This manual documents the GNU @command{nano} editor, version 2.9.6. @menu * Introduction:: diff --git a/doc/nanorc.5 b/doc/nanorc.5 index 68804b10..6a931f96 100644 --- a/doc/nanorc.5 +++ b/doc/nanorc.5 @@ -16,7 +16,7 @@ .\" Documentation License along with this program. If not, see .\" . .\" -.TH NANORC 5 "version 2.9.5" "March 2018" +.TH NANORC 5 "version 2.9.6" "April 2018" .SH NAME nanorc \- GNU nano's configuration file diff --git a/doc/rnano.1 b/doc/rnano.1 index 0dffb63f..7a09f814 100644 --- a/doc/rnano.1 +++ b/doc/rnano.1 @@ -16,7 +16,7 @@ .\" Documentation License along with this program. If not, see .\" . .\" -.TH RNANO 1 "version 2.9.5" "March 2018" +.TH RNANO 1 "version 2.9.6" "April 2018" .SH NAME rnano \- a restricted nano