tweaks: a few last tiny adjustments before release
parent
8875acf912
commit
f26e88bb52
10
ChangeLog
10
ChangeLog
|
@ -1547,10 +1547,10 @@ GNU nano 2.3.99pre2 - 2015.02.06
|
||||||
GNU nano 2.3.99pre1 - 2015.01.06
|
GNU nano 2.3.99pre1 - 2015.01.06
|
||||||
|
|
||||||
2015-01-03 Chris Allegretta <chrisa@asty.org>
|
2015-01-03 Chris Allegretta <chrisa@asty.org>
|
||||||
* New formatter code to support syntaxes like
|
* New formatter code to support syntaxes like Go that have tools to
|
||||||
go which have tools to automatically lint and reformat the text for
|
automatically lint and reformat the text (gofmt), which is lovely.
|
||||||
you (gofmt), which is lovely. rcfile option formatter, function
|
Added rcfile option formatter, a function do_formatter() in text.c
|
||||||
text.c:do_formatter() and some other calls.
|
and some other calls.
|
||||||
|
|
||||||
2014-12-28 Benno Schulenberg <bensberg@justemail.net>
|
2014-12-28 Benno Schulenberg <bensberg@justemail.net>
|
||||||
* src/files.c (do_lockfile): Gettextize the "File being edited"
|
* src/files.c (do_lockfile): Gettextize the "File being edited"
|
||||||
|
@ -2854,7 +2854,7 @@ GNU nano 2.3.3 - 2014.05.29
|
||||||
|
|
||||||
2013-06-13 David Lawrence Ramsey <pooka109@gmail.com>
|
2013-06-13 David Lawrence Ramsey <pooka109@gmail.com>
|
||||||
* src/global.c (first_sc_for): Try to more consistently display keystrokes,
|
* src/global.c (first_sc_for): Try to more consistently display keystrokes,
|
||||||
useful when the user has re-binded a bunch of them.
|
useful when the user has rebound a bunch of them.
|
||||||
|
|
||||||
2013-06-13 Kamil Dudka <kdudka@redhat.com>
|
2013-06-13 Kamil Dudka <kdudka@redhat.com>
|
||||||
* doc/man/nano.1: Actually document the -P (--poslog) option.
|
* doc/man/nano.1: Actually document the -P (--poslog) option.
|
||||||
|
|
5
NEWS
5
NEWS
|
@ -11,6 +11,7 @@
|
||||||
and allows to abort re-searches. Among bunches of other
|
and allows to abort re-searches. Among bunches of other
|
||||||
things. It is worth the trouble to upgrade.
|
things. It is worth the trouble to upgrade.
|
||||||
|
|
||||||
|
|
||||||
2016.02.25 - GNU nano 2.5.3 "Alphys" is released. This release
|
2016.02.25 - GNU nano 2.5.3 "Alphys" is released. This release
|
||||||
contains fixes for bugs like: stray cursor positioning
|
contains fixes for bugs like: stray cursor positioning
|
||||||
errors, many many memory leaks including file reading,
|
errors, many many memory leaks including file reading,
|
||||||
|
@ -26,7 +27,7 @@
|
||||||
size growth, and a long standing issue with using
|
size growth, and a long standing issue with using
|
||||||
nano under sudo creating root-owned files. There are also
|
nano under sudo creating root-owned files. There are also
|
||||||
the usual bevy of documentation and other miscellaneous
|
the usual bevy of documentation and other miscellaneous
|
||||||
fixes and touch ups. Upgrade today while supplies last,
|
fixes and touchups. Upgrade today while supplies last,
|
||||||
operators are standing by!
|
operators are standing by!
|
||||||
|
|
||||||
2016.01.11 - GNU nano 2.5.1 "Salzburg" is released. It includes fixes
|
2016.01.11 - GNU nano 2.5.1 "Salzburg" is released. It includes fixes
|
||||||
|
@ -121,7 +122,7 @@
|
||||||
2014.07.17 - GNU nano 2.3.6 "Columbo" is released. This release
|
2014.07.17 - GNU nano 2.3.6 "Columbo" is released. This release
|
||||||
contains a fix for installing internationalization
|
contains a fix for installing internationalization
|
||||||
files. Also included are scattered documentation
|
files. Also included are scattered documentation
|
||||||
(in particular man page) fixes, and a few touch ups
|
(in particular man page) fixes, and a few touchups
|
||||||
to syntax highlighting definitions. Oh, just one
|
to syntax highlighting definitions. Oh, just one
|
||||||
more thing, thanks for using nano!
|
more thing, thanks for using nano!
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,8 @@ pkgdata_DATA = asm.nanorc \
|
||||||
man.nanorc \
|
man.nanorc \
|
||||||
mgp.nanorc \
|
mgp.nanorc \
|
||||||
mutt.nanorc \
|
mutt.nanorc \
|
||||||
nftables.nanorc \
|
|
||||||
nanorc.nanorc \
|
nanorc.nanorc \
|
||||||
|
nftables.nanorc \
|
||||||
objc.nanorc \
|
objc.nanorc \
|
||||||
ocaml.nanorc \
|
ocaml.nanorc \
|
||||||
patch.nanorc \
|
patch.nanorc \
|
||||||
|
|
|
@ -144,7 +144,7 @@ void set_modified(void)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (openfile->lock_filename == NULL) {
|
if (openfile->lock_filename == NULL) {
|
||||||
/* TRANSLATORS: Keep the next two messages at most 76 characters. */
|
/* TRANSLATORS: Keep the next ten messages at most 76 characters. */
|
||||||
statusline(ALERT, _("Warning: Modifying a file which is not locked,"
|
statusline(ALERT, _("Warning: Modifying a file which is not locked,"
|
||||||
" check directory permission?"));
|
" check directory permission?"));
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue