March 2020 updates

This commit is contained in:
nhmall
2020-03-06 10:31:51 -05:00
parent 32b69f5c33
commit e20024e42b
5 changed files with 19 additions and 12 deletions
+5 -2
View File
@@ -19,7 +19,10 @@ spoilers:
* invalid status highlight color could be maliciously used to corrupt memory * invalid status highlight color could be maliciously used to corrupt memory
* formatting corpse names used internal buffers differently from formatting * formatting corpse names used internal buffers differently from formatting
* other objects and could potentially clobber memory * other objects and could potentially clobber memory
* avoid divide by 0 crash if 'bogusmon' (file of bogus monster types) is empty
* avoid #wizrumorcheck crash if either 'rumors.tru' or 'rumors.fal' or both
* were empty when makedefs built 'rumors'
- - - - - - - - - - - - - - - - - - - - - -
@@ -167,6 +170,6 @@ In our own patches, we will assume that your code is synchronized with ours.
-- Good luck, and happy Hacking -- -- Good luck, and happy Hacking --
# $NHDT-Date: 1575587888 2019/12/05 23:18:08 $ $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.64 $ # $NHDT-Date: 1583508658 2020/03/06 15:30:58 $ $NHDT-Branch: NetHack-3.6-Mar2020 $:$NHDT-Revision: 1.80 $
# Copyright (c) 2012 by Michael Allison # Copyright (c) 2012 by Michael Allison
# NetHack may be freely redistributed. See license for details. # NetHack may be freely redistributed. See license for details.
+2 -1
View File
@@ -229,7 +229,8 @@ fix and a few bug fixes.
NetHack 3.6.5 was released on January 27, 2020 containing some security fixes NetHack 3.6.5 was released on January 27, 2020 containing some security fixes
and a small number of bug fixes. and a small number of bug fixes.
NetHack 3.6.6 was released in March 2020 containing a security fix. NetHack 3.6.6 was released on March 8, 2020 containing a security fix and
some bug fixes.
The official NetHack web site is maintained by Ken Lorber at The official NetHack web site is maintained by Ken Lorber at
http://www.nethack.org/. http://www.nethack.org/.
+4 -3
View File
@@ -1,4 +1,4 @@
.\" $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.337 $ $NHDT-Date: 1576431522 2019/12/15 17:38:42 $ .\" $NHDT-Branch: NetHack-3.6-Mar2020 $:$NHDT-Revision: 1.347 $ $NHDT-Date: 1583508684 2020/03/06 15:31:24 $
.\" .\"
.\" This is an excerpt from the 'roff' man page from the 'groff' package. .\" This is an excerpt from the 'roff' man page from the 'groff' package.
.\" NetHack's Guidebook.mn currently does *not* adhere to these guidelines. .\" NetHack's Guidebook.mn currently does *not* adhere to these guidelines.
@@ -24,7 +24,7 @@
.ds vr "NetHack 3.6 .ds vr "NetHack 3.6
.ds f0 "\*(vr .ds f0 "\*(vr
.ds f1 .ds f1
.ds f2 "March 4, 2020 .ds f2 "March 8, 2020
. .
.\" A note on some special characters: .\" A note on some special characters:
.\" \(lq = left double quote .\" \(lq = left double quote
@@ -5164,7 +5164,8 @@ and a few bug fixes.
NetHack 3.6.5 was released on January 27, 2020 containing some security fixes NetHack 3.6.5 was released on January 27, 2020 containing some security fixes
and a small number of bug fixes. and a small number of bug fixes.
.pg .pg
NetHack 3.6.6 was released in March 2020 containing a security fix. NetHack 3.6.6 was released on March 8, 2020 containing a security fix and
some bug fixes.
.pg .pg
The official NetHack web site is maintained by \fBKen Lorber\fP The official NetHack web site is maintained by \fBKen Lorber\fP
at at
+3 -2
View File
@@ -45,7 +45,7 @@
%.au %.au
\author{Original version - Eric S. Raymond\\ \author{Original version - Eric S. Raymond\\
(Edited and expanded for 3.6 by Mike Stephenson and others)} (Edited and expanded for 3.6 by Mike Stephenson and others)}
\date{March 4, 2020} \date{March 8, 2020}
\maketitle \maketitle
@@ -5775,7 +5775,8 @@ and a small number of bug fixes.
%.pg %.pg
\medskip \medskip
NetHack 3.6.6 was released in March 2020 containing a security fix. NetHack 3.6.6 was released on March 8, 2020 containing a security fix and
some bug fixes.
%.pg %.pg
\medskip \medskip
+5 -4
View File
@@ -1,4 +1,4 @@
/* NetHack 3.6 patchlevel.h $NHDT-Date: 1583297273 2020/03/04 04:47:53 $ $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.138 $ */ /* NetHack 3.6 patchlevel.h $NHDT-Date: 1583508697 2020/03/06 15:31:37 $ $NHDT-Branch: NetHack-3.6-Mar2020 $:$NHDT-Revision: 1.139 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Michael Allison, 2012. */ /*-Copyright (c) Michael Allison, 2012. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
@@ -36,12 +36,13 @@
/****************************************************************************/ /****************************************************************************/
/* Version 3.6.x */ /* Version 3.6.x */
/* Patch 6, March ??, 2020 /* Patch 6, March 8, 2020
* invalid status highlight color could be maliciously used to corrupt memory
*
* invalid status highlight color could be maliciously used to corrupt memory * invalid status highlight color could be maliciously used to corrupt memory
* formatting corpse names used internal buffers differently from formatting * formatting corpse names used internal buffers differently from formatting
* other objects and could potentially clobber memory * other objects and could potentially clobber memory
* avoid divide by 0 crash if 'bogusmon' (file of bogus monster types) is empty
* avoid #wizrumorcheck crash if either 'rumors.tru' or 'rumors.fal' or both
* were empty when makedefs built 'rumors'
*/ */
/* Patch 5, January 27, 2020 /* Patch 5, January 27, 2020