mirror of
git://git.sv.gnu.org/nano.git
synced 2025-03-05 00:01:38 +03:00
bump version numbers and add a news item for the 6.2 release
This commit is contained in:
parent
756cd4a4b8
commit
a1ba7ee786
20
ChangeLog
20
ChangeLog
@ -1,3 +1,23 @@
|
|||||||
|
Changes between v6.1 and v6.2:
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
Benno Schulenberg (14):
|
||||||
|
bump version numbers and add a news item for the 6.2 release
|
||||||
|
display: suppress the bottom-bar wiping only when the user is editing
|
||||||
|
linter: adjust the parsing to accommodate for a modern 'pyflakes'
|
||||||
|
syntaxes: fold a couple of regexes together, and improve a few comments
|
||||||
|
tweaks: change the type of a variable, to avoid a compiler warning
|
||||||
|
tweaks: consistently backslash-escape the dash in M-letter keystrokes
|
||||||
|
tweaks: rename a misnamed variable
|
||||||
|
tweaks: rename a variable, reshuffle five lines, and snip two comments
|
||||||
|
tweaks: rename a variable, to be more correct, and adjust two comments
|
||||||
|
tweaks: rename a variable, to be more fitting
|
||||||
|
tweaks: rename two more variables, and drop unneeded initializations
|
||||||
|
tweaks: rename two variables (to get rid of a prefix), and elide a third
|
||||||
|
tweaks: store a result, to avoid calling a function twice
|
||||||
|
tweaks: use an intermediate variable, to avoid using one for two purposes
|
||||||
|
|
||||||
|
|
||||||
Changes between v6.0 and v6.1:
|
Changes between v6.0 and v6.1:
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
4
NEWS
4
NEWS
@ -1,3 +1,7 @@
|
|||||||
|
2022.02.18 - GNU nano 6.2 "Kamperfoelie"
|
||||||
|
• The file browser clears the prompt bar also when using --minibar.
|
||||||
|
• Linting now works also with a newer 'pyflakes'.
|
||||||
|
|
||||||
2022.02.09 - GNU nano 6.1 "Rețelele de socializare sunt ca un frigider"
|
2022.02.09 - GNU nano 6.1 "Rețelele de socializare sunt ca un frigider"
|
||||||
• The behavior of ^K at a prompt has been enhanced: when there is some
|
• The behavior of ^K at a prompt has been enhanced: when there is some
|
||||||
text after the cursor, just this text is erased. In the most common
|
text after the cursor, just this text is erased. In the most common
|
||||||
|
2
README
2
README
@ -15,7 +15,7 @@ Appearance
|
|||||||
In rough ASCII graphics, this is what nano's screen looks like:
|
In rough ASCII graphics, this is what nano's screen looks like:
|
||||||
|
|
||||||
____________________________________________________________________
|
____________________________________________________________________
|
||||||
| GNU nano 6.1 filename Modified |
|
| GNU nano 6.2 filename Modified |
|
||||||
--------------------------------------------------------------------
|
--------------------------------------------------------------------
|
||||||
| This is the text window, displaying the contents of a 'buffer', |
|
| This is the text window, displaying the contents of a 'buffer', |
|
||||||
| the contents of the file you are editing. |
|
| the contents of the file you are editing. |
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see https://www.gnu.org/licenses/.
|
# along with this program. If not, see https://www.gnu.org/licenses/.
|
||||||
|
|
||||||
AC_INIT([GNU nano], [6.1], [nano-devel@gnu.org], [nano])
|
AC_INIT([GNU nano], [6.2], [nano-devel@gnu.org], [nano])
|
||||||
AC_CONFIG_SRCDIR([src/nano.c])
|
AC_CONFIG_SRCDIR([src/nano.c])
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
AM_INIT_AUTOMAKE([1.14])
|
AM_INIT_AUTOMAKE([1.14])
|
||||||
|
@ -92,7 +92,7 @@
|
|||||||
<h3><a name="1.3"></a>1.3. Why the name change from TIP?</h3>
|
<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>
|
<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>
|
<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>6.1</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>6.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>
|
||||||
<h3><a name="1.5"></a>1.5. I want to read the man page without having to download the program!</h3>
|
<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>
|
<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%">
|
<hr width="100%">
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
.\" Documentation License along with this program. If not, see
|
.\" Documentation License along with this program. If not, see
|
||||||
.\" <https://www.gnu.org/licenses/>.
|
.\" <https://www.gnu.org/licenses/>.
|
||||||
.\"
|
.\"
|
||||||
.TH NANO 1 "version 6.1" "February 2022"
|
.TH NANO 1 "version 6.2" "February 2022"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
nano \- Nano's ANOther editor, inspired by Pico
|
nano \- Nano's ANOther editor, inspired by Pico
|
||||||
|
@ -13,7 +13,7 @@ The complete manual for the GNU nano text editor.
|
|||||||
|
|
||||||
@smallbook
|
@smallbook
|
||||||
@set EDITION 0.6
|
@set EDITION 0.6
|
||||||
@set VERSION 6.1
|
@set VERSION 6.2
|
||||||
@set UPDATED February 2022
|
@set UPDATED February 2022
|
||||||
|
|
||||||
@dircategory Editors
|
@dircategory Editors
|
||||||
@ -29,7 +29,7 @@ The complete manual for the GNU nano text editor.
|
|||||||
|
|
||||||
@title GNU @command{nano}
|
@title GNU @command{nano}
|
||||||
@subtitle a small and friendly text editor
|
@subtitle a small and friendly text editor
|
||||||
@subtitle version 6.1
|
@subtitle version 6.2
|
||||||
|
|
||||||
@author Chris Allegretta
|
@author Chris Allegretta
|
||||||
|
|
||||||
@ -76,7 +76,7 @@ For suggesting improvements: @email{nano-devel@@gnu.org}
|
|||||||
@node Top
|
@node Top
|
||||||
@top
|
@top
|
||||||
|
|
||||||
This manual documents GNU @command{nano}, version 6.1.
|
This manual documents GNU @command{nano}, version 6.2.
|
||||||
|
|
||||||
@menu
|
@menu
|
||||||
* Introduction::
|
* Introduction::
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
.\" Documentation License along with this program. If not, see
|
.\" Documentation License along with this program. If not, see
|
||||||
.\" <https://www.gnu.org/licenses/>.
|
.\" <https://www.gnu.org/licenses/>.
|
||||||
.\"
|
.\"
|
||||||
.TH NANORC 5 "version 6.1" "February 2022"
|
.TH NANORC 5 "version 6.2" "February 2022"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
nanorc \- GNU nano's configuration file
|
nanorc \- GNU nano's configuration file
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
.\" Documentation License along with this program. If not, see
|
.\" Documentation License along with this program. If not, see
|
||||||
.\" <https://www.gnu.org/licenses/>.
|
.\" <https://www.gnu.org/licenses/>.
|
||||||
.\"
|
.\"
|
||||||
.TH RNANO 1 "version 6.1" "February 2022"
|
.TH RNANO 1 "version 6.2" "February 2022"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
rnano \- a restricted nano
|
rnano \- a restricted nano
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION="6.1"
|
VERSION="6.2"
|
||||||
|
|
||||||
./configure -C --enable-tiny && make && ./configure -C &&
|
./configure -C --enable-tiny && make && ./configure -C &&
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user