mirror of git://git.sv.gnu.org/nano.git
bump version numbers and add a news item for the 4.9.3 release
This commit is contained in:
parent
ca7bc4ae8a
commit
f61df865d0
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
Changes between v4.9.2 and v4.9.3:
|
||||
----------------------------------
|
||||
|
||||
Benno Schulenberg (5):
|
||||
bump version numbers and add a news item for the 4.9.3 release
|
||||
counting: count words correctly also when --wordchars is used
|
||||
display: do not try to draw content when there is no open buffer yet
|
||||
feedback: skip wiping the prompt bar when the shortcut printed a message
|
||||
prompt: at Yes-No, do not treat a screen resize as an invalid keystroke
|
||||
|
||||
|
||||
Changes between v4.9.1 and v4.9.2:
|
||||
----------------------------------
|
||||
|
||||
|
|
4
NEWS
4
NEWS
|
@ -1,3 +1,7 @@
|
|||
2020.05.23 - GNU nano 4.9.3 "Almendras"
|
||||
• One more bug introduced in version 4.9 is fixed: a crash when
|
||||
the terminal screen is resized while at a lock-file prompt.
|
||||
|
||||
2020.04.07 - GNU nano 4.9.2 "Mali Lošinj"
|
||||
• Another bug introduced in version 4.9 is fixed: a likely crash
|
||||
after undoing an <Enter> at the end of leading whitespace.
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
|
||||
AC_INIT([GNU nano], [4.9.2], [nano-devel@gnu.org], [nano])
|
||||
AC_INIT([GNU nano], [4.9.3], [nano-devel@gnu.org], [nano])
|
||||
AC_CONFIG_SRCDIR([src/nano.c])
|
||||
AC_CANONICAL_HOST
|
||||
AM_INIT_AUTOMAKE([1.14])
|
||||
|
|
|
@ -89,7 +89,7 @@
|
|||
<h3><a name="1.3"></a>1.3. Why the name change from TIP?</h3>
|
||||
<blockquote><p>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).</p></blockquote>
|
||||
<h3><a name="1.4"></a>1.4. What is the current version of nano?</h3>
|
||||
<blockquote><p>The current version of nano <i>should</i> be <b>4.9.2</b>. Of course, you should always check the <a href="https://nano-editor.org/">nano homepage</a> to see what the latest and greatest version is.</p></blockquote>
|
||||
<blockquote><p>The current version of nano <i>should</i> be <b>4.9.3</b>. Of course, you should always check the <a href="https://nano-editor.org/">nano homepage</a> to see what the latest and greatest version is.</p></blockquote>
|
||||
<h3><a name="1.5"></a>1.5. I want to read the man page without having to download the program!</h3>
|
||||
<blockquote><p>Jeez, demanding, aren't we? Okay, look <a href="https://nano-editor.org/dist/latest/nano.1.html">here</a>.</p></blockquote>
|
||||
<hr width="100%">
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
.\" Documentation License along with this program. If not, see
|
||||
.\" <https://www.gnu.org/licenses/>.
|
||||
.\"
|
||||
.TH NANO 1 "version 4.9.2" "April 2020"
|
||||
.TH NANO 1 "version 4.9.3" "May 2020"
|
||||
|
||||
.SH NAME
|
||||
nano \- Nano's ANOther editor, inspired by Pico
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
|
||||
@smallbook
|
||||
@set EDITION 0.5
|
||||
@set VERSION 4.9.2
|
||||
@set UPDATED April 2020
|
||||
@set VERSION 4.9.3
|
||||
@set UPDATED May 2020
|
||||
|
||||
@dircategory Editors
|
||||
@direntry
|
||||
|
@ -23,7 +23,7 @@
|
|||
@titlepage
|
||||
@title GNU @command{nano}
|
||||
@subtitle a small and friendly text editor
|
||||
@subtitle version 4.9.2
|
||||
@subtitle version 4.9.3
|
||||
|
||||
@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 4.9.2.
|
||||
This manual documents the GNU @command{nano} editor, version 4.9.3.
|
||||
|
||||
@menu
|
||||
* Introduction::
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
.\" Documentation License along with this program. If not, see
|
||||
.\" <https://www.gnu.org/licenses/>.
|
||||
.\"
|
||||
.TH NANORC 5 "version 4.9.2" "April 2020"
|
||||
.TH NANORC 5 "version 4.9.3" "May 2020"
|
||||
|
||||
.SH NAME
|
||||
nanorc \- GNU nano's configuration file
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
.\" Documentation License along with this program. If not, see
|
||||
.\" <https://www.gnu.org/licenses/>.
|
||||
.\"
|
||||
.TH RNANO 1 "version 4.9.2" "April 2020"
|
||||
.TH RNANO 1 "version 4.9.3" "May 2020"
|
||||
|
||||
.SH NAME
|
||||
rnano \- a restricted nano
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
VERSION="4.9.2"
|
||||
VERSION="4.9.3"
|
||||
|
||||
./configure -C --enable-tiny && make && ./configure -C &&
|
||||
|
||||
|
|
Loading…
Reference in New Issue