mirror of
https://https.git.savannah.gnu.org/git/nano.git
synced 2026-01-26 08:07:52 +00:00
bump version numbers and add a news item for the 8.7 release
This commit is contained in:
parent
88aa9157d1
commit
9735af4d78
23
ChangeLog
23
ChangeLog
@ -1,3 +1,26 @@
|
||||
Changes between v8.6 and v8.7:
|
||||
------------------------------
|
||||
|
||||
Benno Schulenberg (17):
|
||||
build: avoid a warning when configured with --disable-multibuffer
|
||||
bump version numbers and add a news item for the 8.7 release
|
||||
display: regenerate the screen after a resize during a spell check
|
||||
display: regenerate the screen only before and after waiting for input
|
||||
display: upon resize, redraw the subwindows only when fully initialized
|
||||
docs: add example of copy-to-clipboard-with-OSC52 to the sample nanorc
|
||||
docs: mention that `execute` can pipe buffer or region to the command
|
||||
gnulib: update to its current upstream state
|
||||
moving: prevent a negative relative jump from going beyond top of buffer
|
||||
new feature: execute a command without capturing the output
|
||||
startup: register the handler for SIGWINCH much earlier
|
||||
text: when blanking a line due to --autoindent, keep the mark in sync
|
||||
tweaks: improve a few comments, drop one, and unwrap some lines
|
||||
tweaks: improve the punctuation of one item in the sample nanorc
|
||||
tweaks: replace a remaining double dash with a true emdash
|
||||
tweaks: reshuffle some #ifdefs, and rename a function
|
||||
tweaks: unwrap three lines, for esthetics
|
||||
|
||||
|
||||
Changes between v8.5 and v8.6:
|
||||
------------------------------
|
||||
|
||||
|
||||
5
NEWS
5
NEWS
@ -1,3 +1,8 @@
|
||||
2025.11.12 - GNU nano 8.7 "Blue Highways"
|
||||
• At the Execute prompt, preceding the command with two pipe symbols
|
||||
allows implementing a copy-to-clipboard feature in your nanorc (on
|
||||
terminals that support OSC 52). See the doc/sample.nanorc file.
|
||||
|
||||
2025.08.21 - GNU nano 8.6 "reason alone was a defective compass"
|
||||
• The GotoLine menu accepts the prefixes ++ and -- for jumping
|
||||
a number of lines forward or backward.
|
||||
|
||||
2
README
2
README
@ -15,7 +15,7 @@ Appearance
|
||||
In rough ASCII graphics, this is what nano's screen looks like:
|
||||
|
||||
____________________________________________________________________
|
||||
| GNU nano 8.6 filename Modified |
|
||||
| GNU nano 8.7 filename Modified |
|
||||
--------------------------------------------------------------------
|
||||
| This is the text window, displaying the contents of a 'buffer', |
|
||||
| the contents of the file you are editing. |
|
||||
|
||||
@ -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], [8.6], [nano-devel@gnu.org], [nano])
|
||||
AC_INIT([GNU nano], [8.7], [nano-devel@gnu.org], [nano])
|
||||
AC_CONFIG_SRCDIR([src/nano.c])
|
||||
AC_CANONICAL_HOST
|
||||
AM_INIT_AUTOMAKE([1.14])
|
||||
|
||||
@ -92,7 +92,7 @@
|
||||
<h3 id="1.3">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 id="1.4">1.4. What is the current version of nano?</h3>
|
||||
<blockquote><p>The current version of nano <i>should</i> be <b>8.6</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>8.7</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 id="1.5">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 8.6" "August 2025"
|
||||
.TH NANO 1 "version 8.7" "November 2025"
|
||||
|
||||
.SH NAME
|
||||
nano \- Nano's ANOther text editor, inspired by Pico
|
||||
|
||||
@ -13,8 +13,8 @@ The complete manual for the GNU nano text editor.
|
||||
|
||||
@smallbook
|
||||
@set EDITION 0.8
|
||||
@set VERSION 8.6
|
||||
@set UPDATED August 2025
|
||||
@set VERSION 8.7
|
||||
@set UPDATED November 2025
|
||||
|
||||
@dircategory Editors
|
||||
@direntry
|
||||
@ -29,7 +29,7 @@ The complete manual for the GNU nano text editor.
|
||||
|
||||
@title GNU @command{nano}
|
||||
@subtitle a small and friendly text editor
|
||||
@subtitle version 8.6
|
||||
@subtitle version 8.7
|
||||
|
||||
@author Chris Allegretta
|
||||
|
||||
@ -79,7 +79,7 @@ For suggesting improvements: @email{nano-devel@@gnu.org}
|
||||
@node Top
|
||||
@top
|
||||
|
||||
This manual documents GNU @command{nano}, version 8.6.
|
||||
This manual documents GNU @command{nano}, version 8.7.
|
||||
|
||||
@menu
|
||||
* Introduction::
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
.\" Documentation License along with this program. If not, see
|
||||
.\" <https://www.gnu.org/licenses/>.
|
||||
.\"
|
||||
.TH NANORC 5 "version 8.6" "August 2025"
|
||||
.TH NANORC 5 "version 8.7" "November 2025"
|
||||
|
||||
.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 8.6" "August 2025"
|
||||
.TH RNANO 1 "version 8.7" "November 2025"
|
||||
|
||||
.SH NAME
|
||||
rnano \- a restricted nano
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
VERSION="8.6"
|
||||
VERSION="8.7"
|
||||
|
||||
./configure -C --enable-tiny && make && ./configure -C &&
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user