diff --git a/.gitattributes b/.gitattributes index e23bd577d..d2c180284 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,9 +1,15 @@ *.[ch] NHSUBST +*.cpp NHSUBST *.sh NHSUBST +*.pl NHSUBST +Porting NHSUBST +README NHSUBST * text=auto *.hqx -text *.sln -text *.vcxproj -text *.doc !diff *.DOC !diff - +*.uu NH_header=no +*.xpm NH_header=no +.git* NH_header=no diff --git a/DEVEL/.gitattributes b/DEVEL/.gitattributes index 914704e1c..2e9843c2f 100644 --- a/DEVEL/.gitattributes +++ b/DEVEL/.gitattributes @@ -2,3 +2,5 @@ nhgitset.pl NHSUBST hooksdir/* NHSUBST * text=auto +DOTGIT/TARGET NH_header=no +hooksdir/TARGET NH_header=no diff --git a/DEVEL/Developer.txt b/DEVEL/Developer.txt index c1c46209e..054df995b 100644 --- a/DEVEL/Developer.txt +++ b/DEVEL/Developer.txt @@ -4,7 +4,9 @@ |___/\___|\_/\___|_\___/ .__/\___|_| |_| -$NHDT-Date: 1519228647 2018/02/21 15:57:27 $ +# NetHack 3.6 Developer.txt $NHDT-Date: 1524689668 2018/04/25 20:54:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.13 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. Welcome to the NetHack Infrastructure Developer's Guide. diff --git a/DEVEL/code_features.txt b/DEVEL/code_features.txt index f8bb504eb..1c60e024e 100644 --- a/DEVEL/code_features.txt +++ b/DEVEL/code_features.txt @@ -1,5 +1,6 @@ -$NHDT-Date: 1432473678 2015/05/24 13:21:18 $ $NHDT-Branch: master $:$NHDT-Revision: 1.2 $ -code_features.txt +# NetHack 3.6 code_features.txt $NHDT-Date: 1524689669 2018/04/25 20:54:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.3 $ +# Copyright (c) 2015 by Michael Allison +# NetHack may be freely redistributed. See license for details. Developer-useful info about code features, assumptions, purpose, rationale, etc. diff --git a/DEVEL/code_style.txt b/DEVEL/code_style.txt index e76a4ad36..4f16a8995 100644 --- a/DEVEL/code_style.txt +++ b/DEVEL/code_style.txt @@ -1,3 +1,7 @@ +# NetHack 3.6 code_style.txt $NHDT-Date: 1524689669 2018/04/25 20:54:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ +# Copyright (c) 2015 by Derek S. Ray +# NetHack may be freely redistributed. See license for details. + NetHack DevTeam Coding Style ============================ diff --git a/DEVEL/git_recipes.txt b/DEVEL/git_recipes.txt index 945eae57b..09f2344e3 100644 --- a/DEVEL/git_recipes.txt +++ b/DEVEL/git_recipes.txt @@ -1,7 +1,10 @@ +# NetHack 3.6 git_recipes.txt $NHDT-Date: 1524689669 2018/04/25 20:54:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.9 $ +# Copyright (c) 2015 by Derek S. Ray +# NetHack may be freely redistributed. See license for details. + Git has a messy learning curve. This file is an attempt to serve as a quick reference for basic tasks while you get up to speed. -$NHDT-Date: 1449695691 2015/12/09 21:14:51 $ ------------------------ [*] git checkout [-f] (branch) diff --git a/DEVEL/gitinfo.pl b/DEVEL/gitinfo.pl index d62f1a588..91f71e65e 100644 --- a/DEVEL/gitinfo.pl +++ b/DEVEL/gitinfo.pl @@ -1,4 +1,7 @@ #!/usr/bin/perl +# NetHack 3.6 getinfo.pl $NHDT-Date: 1524689669 2018/04/25 20:54:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ +# Copyright (c) 2018 by Michael Allison +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/NHadd b/DEVEL/hooksdir/NHadd index 55138e738..3e4b24b85 100644 --- a/DEVEL/hooksdir/NHadd +++ b/DEVEL/hooksdir/NHadd @@ -1,6 +1,9 @@ #!/usr/bin/perl +# NetHack 3.6 NHadd $NHDT-Date: 1524689631 2018/04/25 20:53:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. + # wrapper for nhadd and nhcommit aliases -# $NHDT-Date: 1427408239 2015/03/26 22:17:19 $ %ok = map { $_ => 1 } ('add', 'commit'); diff --git a/DEVEL/hooksdir/NHgithook.pm b/DEVEL/hooksdir/NHgithook.pm index 435fe6c8d..0c64ab12f 100644 --- a/DEVEL/hooksdir/NHgithook.pm +++ b/DEVEL/hooksdir/NHgithook.pm @@ -1,7 +1,9 @@ # -# NHgithook.pm +# NetHack 3.6 NHgithook.pm $NHDT-Date: 1524689631 2018/04/25 20:53:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.6 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. + # NetHack Git Hook Module -# $NHDT-Date: 1519164205 2018/02/20 22:03:25 $ package NHgithook; use Cwd; diff --git a/DEVEL/hooksdir/NHsubst b/DEVEL/hooksdir/NHsubst index 1e19f6eb3..45e8297e1 100755 --- a/DEVEL/hooksdir/NHsubst +++ b/DEVEL/hooksdir/NHsubst @@ -1,7 +1,8 @@ #!/usr/bin/perl -# -# NHsubst -# $NHDT-Date$ +# NetHack 3.6 NHsubst $NHDT-Date: 1524689631 2018/04/25 20:53:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.4 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. + # git merge driver for substitutions (like RCS/CVS) # driver line: .... %O %A %B %L use strict; diff --git a/DEVEL/hooksdir/NHtext b/DEVEL/hooksdir/NHtext index 0cc065db3..44a70db42 100755 --- a/DEVEL/hooksdir/NHtext +++ b/DEVEL/hooksdir/NHtext @@ -1,7 +1,8 @@ #!/usr/bin/perl -# -# NHtext -# $NHDT-Date$ +# NetHack 3.6 NHtext $NHDT-Date: 1524689631 2018/04/25 20:53:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.8 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. + # clean/smudge filter for handling substitutions use strict; diff --git a/DEVEL/hooksdir/applypatch-msg b/DEVEL/hooksdir/applypatch-msg index b5bf990fe..4432174ab 100755 --- a/DEVEL/hooksdir/applypatch-msg +++ b/DEVEL/hooksdir/applypatch-msg @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 applypatch-msg $NHDT-Date: 1524689646 2018/04/25 20:54:06 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/commit-msg b/DEVEL/hooksdir/commit-msg index b5bf990fe..1f2ad49a2 100755 --- a/DEVEL/hooksdir/commit-msg +++ b/DEVEL/hooksdir/commit-msg @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 commit-msg $NHDT-Date: 1524689646 2018/04/25 20:54:06 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/nhsub b/DEVEL/hooksdir/nhsub index 3f4adc392..7e5fdbd2f 100644 --- a/DEVEL/hooksdir/nhsub +++ b/DEVEL/hooksdir/nhsub @@ -1,6 +1,7 @@ #!/usr/bin/perl -# nhsub -# $NHDT-Date: 1518800857 2018/02/16 17:07:37 $ +# $NHDT-Date: 1524689646 2018/04/25 20:54:06 $ Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.7 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. # Note: was originally called nhdate; the rename is not reflected in the code. diff --git a/DEVEL/hooksdir/post-applypatch b/DEVEL/hooksdir/post-applypatch index b5bf990fe..ec6af70be 100755 --- a/DEVEL/hooksdir/post-applypatch +++ b/DEVEL/hooksdir/post-applypatch @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# $NHDT-Date: 1524689631 2018/04/25 20:53:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/post-checkout b/DEVEL/hooksdir/post-checkout index 2df107a2f..c7fde4f18 100755 --- a/DEVEL/hooksdir/post-checkout +++ b/DEVEL/hooksdir/post-checkout @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 post-checkout $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/post-commit b/DEVEL/hooksdir/post-commit index 2df107a2f..309eec4ce 100755 --- a/DEVEL/hooksdir/post-commit +++ b/DEVEL/hooksdir/post-commit @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 post-commit $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/post-merge b/DEVEL/hooksdir/post-merge index 2dc7f3628..6ca8dc532 100755 --- a/DEVEL/hooksdir/post-merge +++ b/DEVEL/hooksdir/post-merge @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 post-merge $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/post-rewrite b/DEVEL/hooksdir/post-rewrite index e1b2524f3..317eddea0 100755 --- a/DEVEL/hooksdir/post-rewrite +++ b/DEVEL/hooksdir/post-rewrite @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 post-rewrite $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/pre-applypatch b/DEVEL/hooksdir/pre-applypatch index b5bf990fe..f71d1fda3 100755 --- a/DEVEL/hooksdir/pre-applypatch +++ b/DEVEL/hooksdir/pre-applypatch @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 pre-applypatch $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/pre-auto-gc b/DEVEL/hooksdir/pre-auto-gc index b5bf990fe..e1c39bebd 100755 --- a/DEVEL/hooksdir/pre-auto-gc +++ b/DEVEL/hooksdir/pre-auto-gc @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 pre-auto-gc $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/pre-commit b/DEVEL/hooksdir/pre-commit index b5bf990fe..83dacdd41 100755 --- a/DEVEL/hooksdir/pre-commit +++ b/DEVEL/hooksdir/pre-commit @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 pre-commit $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/pre-push b/DEVEL/hooksdir/pre-push index e1b2524f3..d65dcbecb 100755 --- a/DEVEL/hooksdir/pre-push +++ b/DEVEL/hooksdir/pre-push @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 pre-push $NHDT-Date: 1524689632 2018/04/25 20:53:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/pre-rebase b/DEVEL/hooksdir/pre-rebase index b5bf990fe..e25f41cac 100755 --- a/DEVEL/hooksdir/pre-rebase +++ b/DEVEL/hooksdir/pre-rebase @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# NetHack 3.6 pre-rebase $NHDT-Date: 1524689633 2018/04/25 20:53:53 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/hooksdir/prepare-commit-msg b/DEVEL/hooksdir/prepare-commit-msg index b5bf990fe..b6813851a 100755 --- a/DEVEL/hooksdir/prepare-commit-msg +++ b/DEVEL/hooksdir/prepare-commit-msg @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# $NHDT-Date: 1524689633 2018/04/25 20:53:53 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. #STARTUP-START BEGIN { diff --git a/DEVEL/nhgitset.pl b/DEVEL/nhgitset.pl index 08068484a..86ddfe3dc 100755 --- a/DEVEL/nhgitset.pl +++ b/DEVEL/nhgitset.pl @@ -1,5 +1,7 @@ #!/usr/bin/perl -# $NHDT-Date$ +# $NHDT-Date: 1524689669 2018/04/25 20:54:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. # value of nethack.setupversion we will end up with when this is done # version 1 is reserved for repos checked out before versioning was added diff --git a/Porting b/Porting index d8cd026f7..baccb37d5 100644 --- a/Porting +++ b/Porting @@ -171,3 +171,7 @@ creation. An object of the NetHack development project is to get the game working on as many different types of hardware and under as many different operating systems as is practical. Any assistance will be appreciated. + +# NetHack 3.6 Porting $NHDT-Date: 1524689603 2018/04/25 20:53:23 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $ +# Copyright (c) 2005 by Michael Allison +# NetHack may be freely redistributed. See license for details. diff --git a/README b/README index 1fe8f8146..f1284da2b 100644 --- a/README +++ b/README @@ -181,3 +181,7 @@ be able to provide support or receive bug reports for it. In our own patches, we will assume that your code is synchronized with ours. -- Good luck, and happy Hacking -- + +# $NHDT-Date: 1524689604 2018/04/25 20:53:24 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.42 $ +# Copyright (c) 2012 by Michael Allison +# NetHack may be freely redistributed. See license for details. diff --git a/dat/.gitattributes b/dat/.gitattributes index b59108e49..ea45e32a3 100644 --- a/dat/.gitattributes +++ b/dat/.gitattributes @@ -1,3 +1,6 @@ *.def NHSUBST *.des NHSUBST *.txt NHSUBST +data.base NHSUBST +symbols NHSUBST +tribute NHSUBST diff --git a/dat/bogusmon.txt b/dat/bogusmon.txt index 322b31123..8f88d3f60 100644 --- a/dat/bogusmon.txt +++ b/dat/bogusmon.txt @@ -1,3 +1,7 @@ +# NetHack 3.6 bogusmon.txt $NHDT-Date: 1524689579 2018/04/25 20:52:59 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.7 $ +# Copyright (c) 2016 by Pasi Kallinen +# NetHack may be freely redistributed. See license for details. +# # Hallucinatory monsters # # diff --git a/dat/data.base b/dat/data.base index e07ab954e..6dd001450 100644 --- a/dat/data.base +++ b/dat/data.base @@ -1,4 +1,5 @@ -# NetHack 3.6 data.base $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# NetHack 3.6 data.base +# $NHDT-Date: 1524683801 2018/04/25 19:16:41 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.84 $ # Copyright (c) 1994, 1995, 1996 by the NetHack Development Team # Copyright (c) 1994 by Boudewijn Wayers # NetHack may be freely redistributed. See license for details. diff --git a/dat/engrave.txt b/dat/engrave.txt index 34d5a8207..b650e35d4 100644 --- a/dat/engrave.txt +++ b/dat/engrave.txt @@ -1,3 +1,6 @@ +# NetHack 3.6 engrave.txt $NHDT-Date: 1524689579 2018/04/25 20:52:59 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ +# Copyright (c) 2015 by Pasi Kallinen +# NetHack may be freely redistributed. See license for details. # Random engravings on the floor # Elbereth diff --git a/dat/epitaph.txt b/dat/epitaph.txt index a22b73c21..d35ba5441 100644 --- a/dat/epitaph.txt +++ b/dat/epitaph.txt @@ -1,3 +1,6 @@ +# NetHack 3.6 epitaph.txt $NHDT-Date: 1524689580 2018/04/25 20:53:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.3 $ +# Copyright (c) 2015 by Pasi Kallinen +# NetHack may be freely redistributed. See license for details. # Epitaphs for random headstones # # diff --git a/dat/history b/dat/history index ec0d115a2..c6ff13b31 100644 --- a/dat/history +++ b/dat/history @@ -186,12 +186,12 @@ Terry Pratchett, passed away. NetHack 3.6.0 introduced a tribute to him. team since the release of 3.4.3 with some of the beloved community patches. Many bugs were fixed and some code was restructured. -In 2018, several hundred bug fixes for 3.6.0 and some new features -were assembled and released as NetHack 3.6.1. The development team at -the time of release of 3.6.1 consisted of Warwick Allison, -Michael Allison, Ken Arromdee, David Cohrs, Jessie Collet, Pasi Kallinen, -Ken Lorber, Dean Luick, Patric Mueller, Pat Rankin, Derek S. Ray, -Alex Smith, Mike Stephenson, Janet Walz and Paul Winner. +In late April 2018, several hundred bug fixes for 3.6.0 and some new +features were assembled and released as NetHack 3.6.1. +The development team at the time of release of 3.6.1 consisted of +Warwick Allison, Michael Allison, Ken Arromdee, David Cohrs, Jessie Collet, +Pasi Kallinen, Ken Lorber, Dean Luick, Patric Mueller, Pat Rankin, +Derek S. Ray, Alex Smith, Mike Stephenson, Janet Walz and Paul Winner. The development team, as well as Steve VanDevender and Kevin Smolkowski ensured that NetHack 3.6.1 continued to operate on various Unix flavors diff --git a/dat/oracle.des b/dat/oracle.des index bf861fa8b..64603a935 100644 --- a/dat/oracle.des +++ b/dat/oracle.des @@ -1,4 +1,5 @@ -# NetHack 3.6 oracle.des $NHDT-Date: 1432512784 2015/05/25 00:13:04 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ +# NetHack 3.6 oracle.des $NHDT-Date: 1524689580 2018/04/25 20:53:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ +# Copyright (c) 2015 by Pasi Kallinen # NetHack may be freely redistributed. See license for details. # # Oracle level diff --git a/dat/symbols b/dat/symbols index c6afc4c5e..d9e1ecef6 100644 --- a/dat/symbols +++ b/dat/symbols @@ -1,3 +1,7 @@ +# NetHack 3.6 symbols $NHDT-Date: 1524689580 2018/04/25 20:53:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.16 $ +# Copyright (c) 2006 by Michael Allison +# NetHack may be freely redistributed. See license for details. +# # Symbol sets for use in NetHack's text-based display. # # IBMgraphics works by specifying special characters which reside diff --git a/dat/tribute b/dat/tribute index 7d809d321..46777f253 100644 --- a/dat/tribute +++ b/dat/tribute @@ -1,3 +1,6 @@ +# NetHack 3.6 tribute $NHDT-Date: 1524689580 2018/04/25 20:53:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.82 $ +# Copyright (c) 2017 by Robert Patrick Rankin +# NetHack may be freely redistributed. See license for details. # A tribute introduced in NetHack 3.6.0 to: # # Sir Terence David John "Terry" Pratchett diff --git a/doc/.gitattributes b/doc/.gitattributes index a9a06f4c8..41a7f6ff5 100644 --- a/doc/.gitattributes +++ b/doc/.gitattributes @@ -1,5 +1,9 @@ *.mn NHSUBST *.6 NHSUBST -fixes.* NHSUBST +fixes* NHSUBST window.doc NHSUBST - +config.nh NHSUBST +Guidebook.txt NH_header=no +tmac.n NH_header=no +fixes* NH_header=no +*.txt NH_header=no diff --git a/doc/Guidebook.mn b/doc/Guidebook.mn index d5c9e44d2..9b21196d7 100644 --- a/doc/Guidebook.mn +++ b/doc/Guidebook.mn @@ -1,4 +1,4 @@ -.\" $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.262 $ $NHDT-Date: 1524524932 2018/04/23 23:08:52 $ +.\" $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.264 $ $NHDT-Date: 1524690677 2018/04/25 21:11:17 $ .\" .\" This is an excerpt from the 'roff' man page from the 'groff' package. .\" NetHack's Guidebook.mn currently does *not* adhere to these guidelines. @@ -21,7 +21,7 @@ .ds vr "NetHack 3.6 .ds f0 "\*(vr .ds f1 -.ds f2 "April 23, 2018 +.ds f2 "April 27, 2018 . .\" labeled paragraph start (should be part of tmac.n, but I don't want to .\" make changes to that file) @@ -4485,10 +4485,10 @@ passed away. NetHack 3.6.0 introduced a tribute to him. team since the release of 3.4.3 with some of the beloved community patches. Many bugs were fixed and some code was restructured. .pg -In 2018, several hundred bug fixes for 3.6.0 and some new features -were assembled and released as NetHack 3.6.1. The development team at -the time of release of 3.6.1 consisted of -\fBWarwick Allison\fP,\fBMichael Allison\fP, \fBKen Arromdee\fP, +In late April 2018, several hundred bug fixes for 3.6.0 and +some new features were assembled and released as NetHack 3.6.1. +The development team at the time of release of 3.6.1 consisted of +\fBWarwick Allison\fP, \fBMichael Allison\fP, \fBKen Arromdee\fP, \fBDavid Cohrs\fP, \fBJessie Collet\fP, \fBPasi Kallinen\fP, \fBKen Lorber\fP, \fBDean Luick\fP, \fBPatric Mueller\fP, \fBPat Rankin\fP, \fBDerek S. Ray\fP, \fBAlex Smith\fP, diff --git a/doc/Guidebook.tex b/doc/Guidebook.tex index b278aa489..2cbc606bb 100644 --- a/doc/Guidebook.tex +++ b/doc/Guidebook.tex @@ -45,7 +45,7 @@ %.au \author{Original version - Eric S. Raymond\\ (Edited and expanded for 3.6 by Mike Stephenson and others)} -\date{April 23, 2018} +\date{April 27, 2018} \maketitle @@ -5243,9 +5243,9 @@ patches. Many bugs were fixed and some code was restructured. %.pg \medskip -In 2018, several hundred bug fixes for 3.6.0 and some new features -were assembled and released as NetHack 3.6.1. The development team at -the time of release of 3.6.1 consisted of +In late April 2018, several hundred bug fixes for 3.6.0 and some new features +were assembled and released as NetHack 3.6.1. The development team at the +time of release of 3.6.1 consisted of {\it Warwick Allison}, {\it Michael Allison}, {\it Ken Arromdee}, {\it David Cohrs}, {\it Jessie Collet}, {\it Pasi Kallinen}, {\it Ken Lorber}, {\it Dean Luick}, @@ -5260,6 +5260,7 @@ The development team, as well as {\it Steve VanDevender} and operate on various Unix flavors and maintained the X11 interface. %.pg +\medskip {\it Ken Lorber}, {\it Haoyang Wang}, {\it Pat Rankin}, and {\it Dean Luick} maintained the port of {\it NetHack\/} 3.6 for Mac OSX. diff --git a/doc/config.nh b/doc/config.nh index b8b5f6ccd..4ceeca6a0 100644 --- a/doc/config.nh +++ b/doc/config.nh @@ -1,3 +1,6 @@ +# NetHack 3.6 config.nh $NHDT-Date: 1524689547 2018/04/25 20:52:27 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# Copyright (c) 2016 by Pasi Kallinen +# NetHack may be freely redistributed. See license for details. # Sample config file for NetHack 3.6 # # A '#' at the beginning of a line means the rest of the line is a comment. diff --git a/doc/dgn_comp.6 b/doc/dgn_comp.6 index f9ab66f22..7b311831c 100644 --- a/doc/dgn_comp.6 +++ b/doc/dgn_comp.6 @@ -1,6 +1,18 @@ -.TH DGN_COMP 6 "12 Dec 1995" -.\" NetHack 3.6 dgn_comp.6 $NHDT-Date: 1432512786 2015/05/25 00:13:06 $ $NHDT-Branch: master $:$NHDT-Revision: 1.5 $ -.UC 4 +.TH DGN_COMP 6 "25 May 2015" NETHACK +.de ND +.ds Nd \\$3 +.. +.de NB +.ds Nb \\$2 +.. +.de NR +.ds Nr \\$2 +.. +.ND $NHDT-Date: 1524689548 2018/04/25 20:52:28 $ +.NB $NHDT-Branch: NetHack-3.6.0 $ +.NR $NHDT-Revision: 1.6 $ +.ds Na Kenneth Lorber + .SH NAME dgn_comp \- NetHack dungeon compiler .SH SYNOPSIS @@ -401,3 +413,7 @@ lev_comp(6), nethack(6) .SH BUGS .PP Probably infinite. +.SH COPYRIGHT +This file is Copyright (C) \*(Na and was last modified \*(Nd (version +\*(Nb:\*(Nr). +NetHack may be freely redistributed. See license for details. diff --git a/doc/dlb.6 b/doc/dlb.6 index e014d7343..23e98c2f7 100644 --- a/doc/dlb.6 +++ b/doc/dlb.6 @@ -1,6 +1,17 @@ -.TH DLB 6 "28 Oct 1993" -.\" NetHack 3.6 dlb.6 $NHDT-Date: 1432512786 2015/05/25 00:13:06 $ $NHDT-Branch: master $:$NHDT-Revision: 1.6 $ -.UC 4 +.TH DLB 6 "25 May 2015" NETHACK +.de ND +.ds Nd \\$3 +.. +.de NB +.ds Nb \\$2 +.. +.de NR +.ds Nr \\$2 +.. +.ND $NHDT-Date: 1524689548 2018/04/25 20:52:28 $ +.NB $NHDT-Branch: NetHack-3.6.0 $ +.NR $NHDT-Revision: 1.7 $ +.ds Na Kenneth Lorber .SH NAME dlb \- NetHack data librarian .SH SYNOPSIS @@ -92,3 +103,7 @@ Not a good tar emulation; - does not mean stdin or stdout. Should include an optional compression facility. Not all read-only files for NetHack can be read out of an archive; examining the source is the only way to know which files can be. +.SH COPYRIGHT +This file is Copyright (C) \*(Na and was last modified \*(Nd (version +\*(Nb:\*(Nr). +NetHack may be freely redistributed. See license for details. diff --git a/doc/fixes30.0 b/doc/fixes30.0 index a01717887..5b5c783e5 100644 --- a/doc/fixes30.0 +++ b/doc/fixes30.0 @@ -1,4 +1,4 @@ -$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ +$NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $ $NHDT-Date: 1524689548 2018/04/25 20:52:28 $ [This is a partial list supplied by Ken Arromdee long after the fact] diff --git a/doc/fixes34.1 b/doc/fixes34.1 index 72ad612b2..91b8507fa 100644 --- a/doc/fixes34.1 +++ b/doc/fixes34.1 @@ -1,4 +1,4 @@ -$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ +$NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.334 $ $NHDT-Date: 1524689548 2018/04/25 20:52:28 $ General Fixes and Modified Features ----------------------------------- diff --git a/doc/fixes34.2 b/doc/fixes34.2 index a618d4b59..8c6fb9ccf 100644 --- a/doc/fixes34.2 +++ b/doc/fixes34.2 @@ -1,4 +1,4 @@ -$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ +$NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.135 $ $NHDT-Date: 1524689548 2018/04/25 20:52:28 $ General Fixes and Modified Features ----------------------------------- diff --git a/doc/fixes34.3 b/doc/fixes34.3 index 1c9edf830..61b9a9aff 100644 --- a/doc/fixes34.3 +++ b/doc/fixes34.3 @@ -1,4 +1,4 @@ -$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ +$NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.106 $ $NHDT-Date: 1524689549 2018/04/25 20:52:29 $ General Fixes and Modified Features ----------------------------------- diff --git a/doc/fixes35.0 b/doc/fixes35.0 index 30119b13e..c429b9a18 100644 --- a/doc/fixes35.0 +++ b/doc/fixes35.0 @@ -1,3 +1,3 @@ -$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ +$NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.543 $ $NHDT-Date: 1524689549 2018/04/25 20:52:29 $ There was no NetHack 3.5.x release diff --git a/doc/fixes36.0 b/doc/fixes36.0 index 036bc4441..7321c5446 100644 --- a/doc/fixes36.0 +++ b/doc/fixes36.0 @@ -1,4 +1,4 @@ -$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ +$NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.562 $ $NHDT-Date: 1524689549 2018/04/25 20:52:29 $ General Fixes and Modified Features ----------------------------------- diff --git a/doc/fixes36.1 b/doc/fixes36.1 index fc07fd7e1..7c89019d0 100644 --- a/doc/fixes36.1 +++ b/doc/fixes36.1 @@ -1,4 +1,4 @@ -$NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ +$NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.446 $ $NHDT-Date: 1524689549 2018/04/25 20:52:29 $ General Fixes and Modified Features ----------------------------------- @@ -39,7 +39,7 @@ make a previously-discovered scroll written with marker while blind have its #name or C for discoveries list that spanned multiple pages would exit on space instead of advancing to next page (workaround: use '>' instead) don't show the old level when you die going down the stairs because of an - iron ball + iron ball new high score with ", while helpless" attribute appended would erroneously result in ", while helpless" being appended to all following entries allow bright aliases for colors in menucolors @@ -177,7 +177,7 @@ a few types of monster (barrow wight, Nazgul, erinys) have weapon attacks that don't deal physical damage, so special damage like stoning via wielded cockatrice corpse wouldn't be inflicted non-item-using monsters who happened to be carrying scroll or wand of fire or - a fire horn could use it to cure themselves of being turned into slime + a fire horn could use it to cure themselves of being turned into slime when looting multiple containers, add 'n' for "loot next container", change 'q' and ESC from "done with this container" to "done looting" change looting to choose ":iobrs nq" action from a menu for menustyle:Partial diff --git a/doc/lev_comp.6 b/doc/lev_comp.6 index 757cbe580..fdb1945a7 100644 --- a/doc/lev_comp.6 +++ b/doc/lev_comp.6 @@ -1,6 +1,17 @@ -.TH LEV_COMP 6 "16 May 1996" -.\" NetHack 3.6 lev_comp.6 $NHDT-Date: 1432512786 2015/05/25 00:13:06 $ $NHDT-Branch: master $:$NHDT-Revision: 1.5 $ -.UC 4 +.TH LEV_COMP 6 "25 May 2015" NETHACK +.de ND +.ds Nd \\$3 +.. +.de NB +.ds Nb \\$2 +.. +.de NR +.ds Nr \\$2 +.. +.ND $NHDT-Date: 1524689549 2018/04/25 20:52:29 $ +.NB $NHDT-Branch: NetHack-3.6.0 $ +.NR $NHDT-Revision: 1.7 $ +.ds Na Kenneth Lorber .SH NAME lev_comp \- NetHack special levels compiler .SH SYNOPSIS @@ -571,3 +582,7 @@ dgn_comp(6), nethack(6) .PP Probably infinite. Most importantly, still needs additional bounds checking. +.SH COPYRIGHT +This file is Copyright (C) \*(Na and was last modified \*(Nd (version +\*(Nb:\*(Nr). +NetHack may be freely redistributed. See license for details. diff --git a/doc/makedefs.6 b/doc/makedefs.6 index 98ed9d4fe..044b91690 100644 --- a/doc/makedefs.6 +++ b/doc/makedefs.6 @@ -1,6 +1,17 @@ -.TH MAKEDEFS 6 "29 Apr 2010" -.\" NetHack 3.6 makedefs.6 $NHDT-Date: 1432512786 2015/05/25 00:13:06 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ -.UC 4 +.TH MAKEDEFS 6 "25 May 2015" NETHACK +.de ND +.ds Nd \\$3 +.. +.de NB +.ds Nb \\$2 +.. +.de NR +.ds Nr \\$2 +.. +.ND $NHDT-Date: 1524689549 2018/04/25 20:52:29 $ +.NB $NHDT-Branch: NetHack-3.6.0 $ +.NR $NHDT-Revision: 1.10 $ +.ds Na Kenneth Lorber .SH NAME makedefs \- NetHack miscellaneous build-time functions .SH SYNOPSIS @@ -265,3 +276,7 @@ The NetHack Development Team .SH "SEE ALSO" .PP .BR dgn_comp (6) +.SH COPYRIGHT +This file is Copyright (C) \*(Na and was last modified \*(Nd (version +\*(Nb:\*(Nr). +NetHack may be freely redistributed. See license for details. diff --git a/doc/nethack.6 b/doc/nethack.6 index f2ef799f1..1bf53a63f 100644 --- a/doc/nethack.6 +++ b/doc/nethack.6 @@ -1,5 +1,17 @@ -.TH NETHACK 6 "7 December 2015" -.\" NetHack 3.6 nethack.6 $NHDT-Date: 1519228609 2018/02/21 15:56:49 $ $NHDT-Branch: githash $:$NHDT-Revision: 1.13 $ +.TH NETHACK 6 "2 February 2018" NETHACK +.de ND +.ds Nd \\$3 +.. +.de NB +.ds Nb \\$2 +.. +.de NR +.ds Nr \\$2 +.. +.ND $NHDT-Date: 1524689549 2018/04/25 20:52:29 $ +.NB $NHDT-Branch: NetHack-3.6.0 $ +.NR $NHDT-Revision: 1.14 $ +.ds Na Robert Patrick Rankin .SH NAME nethack \- Exploring The Mazes of Menace .SH SYNOPSIS @@ -378,7 +390,9 @@ dgn_comp(6), lev_comp(6), recover(6) .SH BUGS .PP Probably infinite. - - +.SH COPYRIGHT +This file is Copyright (C) \*(Na and was last modified \*(Nd (version +\*(Nb:\*(Nr). +NetHack may be freely redistributed. See license for details. .PP Dungeons & Dragons is a Trademark of Wizards of the Coast, Inc. diff --git a/doc/recover.6 b/doc/recover.6 index 4d6bcb364..1209d31d3 100644 --- a/doc/recover.6 +++ b/doc/recover.6 @@ -1,6 +1,17 @@ -.TH RECOVER 6 "9 January 1993" -.\" NetHack 3.6 recover.6 $NHDT-Date: 1450129883 2015/12/14 21:51:23 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.8 $ -.UC 4 +.TH RECOVER 6 "14 December 2015" NETHACK +.de ND +.ds Nd \\$3 +.. +.de NB +.ds Nb \\$2 +.. +.de NR +.ds Nr \\$2 +.. +.ND $NHDT-Date: 1524689550 2018/04/25 20:52:30 $ +.NB $NHDT-Branch: NetHack-3.6.0 $ +.NR $NHDT-Revision: 1.9 $ +.ds Na Kenneth Lorber .SH NAME recover \- recover a NetHack game interrupted by disaster .SH SYNOPSIS @@ -130,3 +141,7 @@ determine. .I recover should be taught to use the nethack playground locking mechanism to avoid conflicts. +.SH COPYRIGHT +This file is Copyright (C) \*(Na and was last modified \*(Nd (version +\*(Nb:\*(Nr). +NetHack may be freely redistributed. See license for details. diff --git a/include/artifact.h b/include/artifact.h index 32261fdfd..4e5193f55 100644 --- a/include/artifact.h +++ b/include/artifact.h @@ -1,5 +1,6 @@ /* NetHack 3.6 artifact.h $NHDT-Date: 1433050871 2015/05/31 05:41:11 $ $NHDT-Branch: master $:$NHDT-Revision: 1.11 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef ARTIFACT_H diff --git a/include/artilist.h b/include/artilist.h index d5992bcef..8948e521a 100644 --- a/include/artilist.h +++ b/include/artilist.h @@ -1,5 +1,6 @@ /* NetHack 3.6 artilist.h $NHDT-Date: 1433050874 2015/05/31 05:41:14 $ $NHDT-Branch: master $:$NHDT-Revision: 1.16 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2017. */ /* NetHack may be freely redistributed. See license for details. */ #ifdef MAKEDEFS_C diff --git a/include/config.h b/include/config.h index e7c471928..f2428075a 100644 --- a/include/config.h +++ b/include/config.h @@ -1,5 +1,6 @@ /* NetHack 3.6 config.h $NHDT-Date: 1478740241 2016/11/10 01:10:41 $ $NHDT-Branch: master $:$NHDT-Revision: 1.100 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2016. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef CONFIG_H /* make sure the compiler does not see the typedefs twice */ diff --git a/include/config1.h b/include/config1.h index e5339735f..738fd96fa 100644 --- a/include/config1.h +++ b/include/config1.h @@ -1,5 +1,6 @@ /* NetHack 3.6 config1.h $NHDT-Date: 1432512781 2015/05/25 00:13:01 $ $NHDT-Branch: master $:$NHDT-Revision: 1.17 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef CONFIG1_H diff --git a/include/context.h b/include/context.h index fc0c28dca..c24da8d56 100644 --- a/include/context.h +++ b/include/context.h @@ -1,5 +1,6 @@ /* NetHack 3.6 context.h $NHDT-Date: 1455907260 2016/02/19 18:41:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.30 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ /* If you change the context structure make sure you increment EDITLEVEL in */ diff --git a/include/coord.h b/include/coord.h index a31a0bf37..e800fb876 100644 --- a/include/coord.h +++ b/include/coord.h @@ -1,5 +1,6 @@ /* NetHack 3.6 coord.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef COORD_H diff --git a/include/decl.h b/include/decl.h index 736068427..7284f623b 100644 --- a/include/decl.h +++ b/include/decl.h @@ -1,5 +1,6 @@ /* NetHack 3.6 decl.h $NHDT-Date: 1496531104 2017/06/03 23:05:04 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.82 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2007. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef DECL_H diff --git a/include/dungeon.h b/include/dungeon.h index 43452d908..f7b16cf2a 100644 --- a/include/dungeon.h +++ b/include/dungeon.h @@ -1,5 +1,6 @@ /* NetHack 3.6 dungeon.h $NHDT-Date: 1447755969 2015/11/17 10:26:09 $ $NHDT-Branch: master $:$NHDT-Revision: 1.24 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef DUNGEON_H diff --git a/include/engrave.h b/include/engrave.h index fa4f15217..86f6fcdb8 100644 --- a/include/engrave.h +++ b/include/engrave.h @@ -1,5 +1,6 @@ /* NetHack 3.6 engrave.h $NHDT-Date: 1432512777 2015/05/25 00:12:57 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef ENGRAVE_H diff --git a/include/flag.h b/include/flag.h index d3938adca..5dd13b2ec 100644 --- a/include/flag.h +++ b/include/flag.h @@ -1,5 +1,6 @@ /* NetHack 3.6 flag.h $NHDT-Date: 1514071158 2017/12/23 23:19:18 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.132 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ /* If you change the flag structure make sure you increment EDITLEVEL in */ diff --git a/include/func_tab.h b/include/func_tab.h index c0570d968..14460c926 100644 --- a/include/func_tab.h +++ b/include/func_tab.h @@ -1,5 +1,6 @@ /* NetHack 3.6 func_tab.h $NHDT-Date: 1432512775 2015/05/25 00:12:55 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2016. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef FUNC_TAB_H diff --git a/include/global.h b/include/global.h index 4b65cad7c..1fc57f882 100644 --- a/include/global.h +++ b/include/global.h @@ -1,5 +1,6 @@ -/* NetHack 3.6 global.h $NHDT-Date: 1465114189 2016/06/05 08:09:49 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.49 $ */ +/* NetHack 3.6 global.h $NHDT-Date: 1524690661 2018/04/25 21:11:01 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.51 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef GLOBAL_H @@ -7,7 +8,7 @@ #include -#define BETA /* development or beta testing [MRS] */ +/* #define BETA */ /* development or beta testing [MRS] */ #define DEBUG diff --git a/include/hack.h b/include/hack.h index 9bc2fc403..af35c2c00 100644 --- a/include/hack.h +++ b/include/hack.h @@ -1,5 +1,6 @@ /* NetHack 3.6 hack.h $NHDT-Date: 1490908464 2017/03/30 21:14:24 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.76 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2017. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef HACK_H diff --git a/include/integer.h b/include/integer.h index 3f77aec8d..044da028d 100644 --- a/include/integer.h +++ b/include/integer.h @@ -1,4 +1,5 @@ -/* NetHack 3.6 integer.h $NHDT-Date: 1457210314 2016/03/05 20:38:34 $ $NHDT-Branch: chasonr $:$NHDT-Revision: 1.0 $ */ +/* NetHack 3.6 integer.h $NHDT-Date: 1524689514 2018/04/25 20:51:54 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.0 $ */ +/* Copyright (c) 2016 by Michael Allison */ /* NetHack may be freely redistributed. See license for details. */ /* integer.h -- provide sized integer types */ diff --git a/include/lev.h b/include/lev.h index d55f63375..17fd8dddd 100644 --- a/include/lev.h +++ b/include/lev.h @@ -1,5 +1,6 @@ /* NetHack 3.6 lev.h $NHDT-Date: 1432512781 2015/05/25 00:13:01 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ /* Common include file for save and restore routines */ diff --git a/include/lint.h b/include/lint.h index b180478a1..93a33776b 100644 --- a/include/lint.h +++ b/include/lint.h @@ -1,4 +1,5 @@ -/* NetHack 3.6 lint.h $NHDT-Date: 1454571508 2016/02/04 07:38:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.4 $ */ +/* NetHack 3.6 lint.h $NHDT-Date: 1524689514 2018/04/25 20:51:54 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $ */ +/* Copyright (c) 2016 by Robert Patrick Rankin */ /* NetHack may be freely redistributed. See license for details. */ /* diff --git a/include/mac-carbon.h b/include/mac-carbon.h index 078c796b0..da53c622a 100644 --- a/include/mac-carbon.h +++ b/include/mac-carbon.h @@ -1,5 +1,6 @@ /* NetHack 3.6 mac-carbon.h $NHDT-Date: 1432512777 2015/05/25 00:12:57 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 2003. */ +/*-Copyright (c) Kevin Hugo, 2003. */ /* NetHack may be freely redistributed. See license for details. */ /* Compiler prefix file for the Macintosh Carbon port. diff --git a/include/mac-qt.h b/include/mac-qt.h index 39dbc2268..96e406b4d 100644 --- a/include/mac-qt.h +++ b/include/mac-qt.h @@ -1,5 +1,6 @@ /* NetHack 3.6 mac-qt.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 2003. */ +/*-Copyright (c) Kevin Hugo, 2003. */ /* NetHack may be freely redistributed. See license for details. */ /* Compiler prefix file for the Macintosh Qt port. diff --git a/include/mac-term.h b/include/mac-term.h index 93a9e4383..9f4ba462f 100644 --- a/include/mac-term.h +++ b/include/mac-term.h @@ -1,5 +1,6 @@ /* NetHack 3.6 mac-term.h $NHDT-Date: 1432512775 2015/05/25 00:12:55 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 2003. */ +/*-Copyright (c) Kevin Hugo, 2003. */ /* NetHack may be freely redistributed. See license for details. */ /* Compiler prefix file for the MacOS X Terminal.app port. diff --git a/include/macconf.h b/include/macconf.h index facd935a8..fbcd3aded 100644 --- a/include/macconf.h +++ b/include/macconf.h @@ -1,5 +1,6 @@ /* NetHack 3.6 macconf.h $NHDT-Date: 1432512782 2015/05/25 00:13:02 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kevin Hugo, 2004. */ /* NetHack may be freely redistributed. See license for details. */ #ifdef MAC diff --git a/include/macwin.h b/include/macwin.h index a8a3cd85b..b9b6ede14 100644 --- a/include/macwin.h +++ b/include/macwin.h @@ -1,5 +1,6 @@ /* NetHack 3.6 macwin.h $NHDT-Date: 1447755970 2015/11/17 10:26:10 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kevin Hugo, 2003. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef MACWIN_H diff --git a/include/mail.h b/include/mail.h index b8e8923c0..3b7772b8c 100644 --- a/include/mail.h +++ b/include/mail.h @@ -1,4 +1,5 @@ -/* NetHack 3.6 mail.h $NHDT-Date: 1432512777 2015/05/25 00:12:57 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */ +/* NetHack 3.6 mail.h $NHDT-Date: 1524689515 2018/04/25 20:51:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.9 $ */ +/* Copyright (c) 2015 by Kenneth Lorber */ /* NetHack may be freely redistributed. See license for details. */ /* used by ckmailstatus() to pass information to the mail-daemon in newmail() diff --git a/include/mextra.h b/include/mextra.h index c92a79f4d..b4c1aa989 100644 --- a/include/mextra.h +++ b/include/mextra.h @@ -1,5 +1,6 @@ /* NetHack 3.6 mextra.h $NHDT-Date: 1451836000 2016/01/03 15:46:40 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.18 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef MEXTRA_H diff --git a/include/mfndpos.h b/include/mfndpos.h index 74ccaeb91..18259c70c 100644 --- a/include/mfndpos.h +++ b/include/mfndpos.h @@ -1,5 +1,6 @@ /* NetHack 3.6 mfndpos.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2005. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef MFNDPOS_H diff --git a/include/micro.h b/include/micro.h index a0173db94..ea8249f24 100644 --- a/include/micro.h +++ b/include/micro.h @@ -1,7 +1,9 @@ -/* NetHack 3.6 micro.h $NHDT-Date: 1432512781 2015/05/25 00:13:01 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ -/* micro.h - function declarations for various microcomputers */ +/* NetHack 3.6 micro.h $NHDT-Date: 1524689515 2018/04/25 20:51:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ */ +/* Copyright (c) 2015 by Kenneth Lorber */ /* NetHack may be freely redistributed. See license for details. */ +/* micro.h - function declarations for various microcomputers */ + #ifndef MICRO_H #define MICRO_H diff --git a/include/mkroom.h b/include/mkroom.h index ef20a1d5d..9d724552d 100644 --- a/include/mkroom.h +++ b/include/mkroom.h @@ -1,5 +1,6 @@ /* NetHack 3.6 mkroom.h $NHDT-Date: 1432512780 2015/05/25 00:13:00 $ $NHDT-Branch: master $:$NHDT-Revision: 1.13 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2016. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef MKROOM_H diff --git a/include/monst.h b/include/monst.h index e323f80cc..cc655c9ba 100644 --- a/include/monst.h +++ b/include/monst.h @@ -1,5 +1,6 @@ /* NetHack 3.6 monst.h $NHDT-Date: 1461028522 2016/04/19 01:15:22 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.24 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2016. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef MONST_H diff --git a/include/monsym.h b/include/monsym.h index 4aec7c2a2..e4b68a05a 100644 --- a/include/monsym.h +++ b/include/monsym.h @@ -1,6 +1,7 @@ -/* NetHack 3.6 monsym.h $NHDT-Date: 1432512780 2015/05/25 00:13:00 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ -/* Monster symbols and creation information rev 1.0 */ +/* NetHack 3.6 monsym.h $NHDT-Date: 1524689515 2018/04/25 20:51:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.11 $ */ +/* Copyright (c) 2016 by Pasi Kallinen */ /* NetHack may be freely redistributed. See license for details. */ +/* Monster symbols and creation information rev 1.0 */ #ifndef MONSYM_H #define MONSYM_H diff --git a/include/obj.h b/include/obj.h index f87caaa02..62e20b7e4 100644 --- a/include/obj.h +++ b/include/obj.h @@ -1,5 +1,6 @@ /* NetHack 3.6 obj.h $NHDT-Date: 1508827590 2017/10/24 06:46:30 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.60 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef OBJ_H diff --git a/include/objclass.h b/include/objclass.h index caa65adf5..22fd02894 100644 --- a/include/objclass.h +++ b/include/objclass.h @@ -1,5 +1,6 @@ /* NetHack 3.6 objclass.h $NHDT-Date: 1462067744 2016/05/01 01:55:44 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.16 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2018. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef OBJCLASS_H diff --git a/include/os2conf.h b/include/os2conf.h index cda53ca6c..f033ef584 100644 --- a/include/os2conf.h +++ b/include/os2conf.h @@ -1,5 +1,6 @@ /* NetHack 3.6 os2conf.h $NHDT-Date: 1432512775 2015/05/25 00:12:55 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* Copyright (c) Timo Hakulinen, 1990, 1991, 1992, 1993, 1996. */ /* NetHack may be freely redistributed. See license for details. */ diff --git a/include/patchlevel.h b/include/patchlevel.h index daa0234e0..97013eb3f 100644 --- a/include/patchlevel.h +++ b/include/patchlevel.h @@ -1,5 +1,6 @@ -/* NetHack 3.6 patchlevel.h $NHDT-Date: 1451600769 2015/12/31 22:26:09 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.116 $ */ +/* NetHack 3.6 patchlevel.h $NHDT-Date: 1524690061 2018/04/25 21:01:01 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.119 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2012. */ /* NetHack may be freely redistributed. See license for details. */ /* NetHack 3.6.1 */ @@ -35,9 +36,9 @@ /****************************************************************************/ /* Version 3.6.x */ -/* Patch 1, [insert date here] - * A couple of dozen bug fixes. - * +/* Patch 1, April 27, 2018 + * Over five hundred bug fixes. + * Some improvements. */ /* diff --git a/include/pcconf.h b/include/pcconf.h index 01ae261b6..c5b46bea9 100644 --- a/include/pcconf.h +++ b/include/pcconf.h @@ -1,5 +1,6 @@ /* NetHack 3.6 pcconf.h $NHDT-Date: 1457207019 2016/03/05 19:43:39 $ $NHDT-Branch: chasonr $:$NHDT-Revision: 1.19 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef PCCONF_H diff --git a/include/permonst.h b/include/permonst.h index f70db03f0..cd1c73fff 100644 --- a/include/permonst.h +++ b/include/permonst.h @@ -1,5 +1,6 @@ /* NetHack 3.6 permonst.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef PERMONST_H diff --git a/include/qttableview.h b/include/qttableview.h index 56b0f09d9..3fc9ce56f 100644 --- a/include/qttableview.h +++ b/include/qttableview.h @@ -1,5 +1,5 @@ /********************************************************************** -** $NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ +** $NHDT-Date: 1524683840 2018/04/25 19:17:20 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $ ** $Id: qttableview.h,v 1.2 2002/03/09 03:13:13 jwalz Exp $ ** ** Definition of QtTableView class diff --git a/include/rm.h b/include/rm.h index b83686d8f..bef66488c 100644 --- a/include/rm.h +++ b/include/rm.h @@ -1,5 +1,6 @@ /* NetHack 3.6 rm.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.41 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2017. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef RM_H diff --git a/include/skills.h b/include/skills.h index e1807d9d5..a4a312a0d 100644 --- a/include/skills.h +++ b/include/skills.h @@ -1,5 +1,6 @@ /* NetHack 3.6 skills.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.11 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985-1999. */ +/*-Copyright (c) Pasi Kallinen, 2017. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef SKILLS_H diff --git a/include/system.h b/include/system.h index f7a3d2606..a3eb984cb 100644 --- a/include/system.h +++ b/include/system.h @@ -1,5 +1,6 @@ /* NetHack 3.6 system.h $NHDT-Date: 1501723401 2017/08/03 01:23:21 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.13 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2017. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef SYSTEM_H diff --git a/include/tcap.h b/include/tcap.h index c54cef277..f3f28a95e 100644 --- a/include/tcap.h +++ b/include/tcap.h @@ -1,5 +1,6 @@ /* NetHack 3.6 tcap.h $NHDT-Date: 1432512774 2015/05/25 00:12:54 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1989. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ /* not named termcap.h because it may conflict with a system header */ diff --git a/include/tile2x11.h b/include/tile2x11.h index 148135448..802cbd853 100644 --- a/include/tile2x11.h +++ b/include/tile2x11.h @@ -1,4 +1,5 @@ -/* NetHack 3.6 tile2x11.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ +/* NetHack 3.6 tile2x11.h $NHDT-Date: 1524689515 2018/04/25 20:51:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ */ +/* Copyright (c) 2002 by David Cohrs */ /* NetHack may be freely redistributed. See license for details. */ #ifndef TILE2X11_H diff --git a/include/tosconf.h b/include/tosconf.h index 1ccf132bd..3f5ca4c5f 100644 --- a/include/tosconf.h +++ b/include/tosconf.h @@ -1,5 +1,6 @@ /* NetHack 3.6 tosconf.h $NHDT-Date: 1432512782 2015/05/25 00:13:02 $ $NHDT-Branch: master $:$NHDT-Revision: 1.7 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #ifdef TOS diff --git a/include/tradstdc.h b/include/tradstdc.h index 8ab152b52..1caf7a667 100644 --- a/include/tradstdc.h +++ b/include/tradstdc.h @@ -1,5 +1,6 @@ /* NetHack 3.6 tradstdc.h $NHDT-Date: 1501803107 2017/08/03 23:31:47 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.29 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2006. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef TRADSTDC_H diff --git a/include/trap.h b/include/trap.h index ce4f4696d..16d096812 100644 --- a/include/trap.h +++ b/include/trap.h @@ -1,5 +1,6 @@ /* NetHack 3.6 trap.h $NHDT-Date: 1432512776 2015/05/25 00:12:56 $ $NHDT-Branch: master $:$NHDT-Revision: 1.12 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2016. */ /* NetHack may be freely redistributed. See license for details. */ /* note for 3.1.0 and later: no longer manipulated by 'makedefs' */ diff --git a/include/unixconf.h b/include/unixconf.h index cec8c709a..d5b6a72b6 100644 --- a/include/unixconf.h +++ b/include/unixconf.h @@ -1,5 +1,6 @@ /* NetHack 3.6 unixconf.h $NHDT-Date: 1520099325 2018/03/03 17:48:45 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.30 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2018. */ /* NetHack may be freely redistributed. See license for details. */ #ifdef UNIX @@ -235,7 +236,9 @@ /* #define COMPRESS_OPTIONS "-q" */ #endif +#ifndef FCMASK #define FCMASK 0660 /* file creation mask */ +#endif /* fcntl(2) is a POSIX-portable call for manipulating file descriptors. * Comment out the USE_FCNTL if for some reason you have a strange diff --git a/include/vmsconf.h b/include/vmsconf.h index 75e732a2d..7674e8558 100644 --- a/include/vmsconf.h +++ b/include/vmsconf.h @@ -1,5 +1,6 @@ /* NetHack 3.6 vmsconf.h $NHDT-Date: 1432512780 2015/05/25 00:13:00 $ $NHDT-Branch: master $:$NHDT-Revision: 1.22 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #ifdef VMS diff --git a/include/you.h b/include/you.h index d2390d2e2..df13fcf81 100644 --- a/include/you.h +++ b/include/you.h @@ -1,5 +1,6 @@ /* NetHack 3.6 you.h $NHDT-Date: 1450231172 2015/12/16 01:59:32 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.30 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2016. */ /* NetHack may be freely redistributed. See license for details. */ #ifndef YOU_H diff --git a/src/allmain.c b/src/allmain.c index d856443d0..60a6d3bbc 100644 --- a/src/allmain.c +++ b/src/allmain.c @@ -1,5 +1,6 @@ /* NetHack 3.6 allmain.c $NHDT-Date: 1518193644 2018/02/09 16:27:24 $ $NHDT-Branch: githash $:$NHDT-Revision: 1.86 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ /* various code that was replicated in *main.c */ diff --git a/src/alloc.c b/src/alloc.c index 18a4d533a..c6944aba4 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1,5 +1,6 @@ /* NetHack 3.6 alloc.c $NHDT-Date: 1454376505 2016/02/02 01:28:25 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.16 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ /* to get the malloc() prototype from system.h */ diff --git a/src/apply.c b/src/apply.c index 45223a487..c40d1ac62 100644 --- a/src/apply.c +++ b/src/apply.c @@ -1,5 +1,6 @@ /* NetHack 3.6 apply.c $NHDT-Date: 1519598527 2018/02/25 22:42:07 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.243 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/artifact.c b/src/artifact.c index 377a533b4..2ef7dfa7c 100644 --- a/src/artifact.c +++ b/src/artifact.c @@ -1,5 +1,6 @@ /* NetHack 3.6 artifact.c $NHDT-Date: 1509836679 2017/11/04 23:04:39 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.106 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2013. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/ball.c b/src/ball.c index b9b63815d..be5b7815f 100644 --- a/src/ball.c +++ b/src/ball.c @@ -1,5 +1,6 @@ /* NetHack 3.6 ball.c $NHDT-Date: 1450402033 2015/12/18 01:27:13 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.29 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) David Cohrs, 2006. */ /* NetHack may be freely redistributed. See license for details. */ /* Ball & Chain diff --git a/src/bones.c b/src/bones.c index 8fcb98cfc..cd0a7de7f 100644 --- a/src/bones.c +++ b/src/bones.c @@ -1,5 +1,6 @@ /* NetHack 3.6 bones.c $NHDT-Date: 1508827591 2017/10/24 06:46:31 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.71 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985,1993. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/botl.c b/src/botl.c index 9186715ff..f58c45947 100644 --- a/src/botl.c +++ b/src/botl.c @@ -1,5 +1,6 @@ /* NetHack 3.6 botl.c $NHDT-Date: 1506903619 2017/10/02 00:20:19 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.81 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/cmd.c b/src/cmd.c index 4e4dff209..9c4739a42 100644 --- a/src/cmd.c +++ b/src/cmd.c @@ -1,5 +1,6 @@ /* NetHack 3.6 cmd.c $NHDT-Date: 1523306904 2018/04/09 20:48:24 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.281 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2013. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/decl.c b/src/decl.c index fc9dc96e6..7776494be 100644 --- a/src/decl.c +++ b/src/decl.c @@ -1,5 +1,6 @@ /* NetHack 3.6 decl.c $NHDT-Date: 1446975463 2015/11/08 09:37:43 $ $NHDT-Branch: master $:$NHDT-Revision: 1.62 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2009. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/detect.c b/src/detect.c index 7a6b6eb47..945207c88 100644 --- a/src/detect.c +++ b/src/detect.c @@ -1,5 +1,6 @@ /* NetHack 3.6 detect.c $NHDT-Date: 1522891623 2018/04/05 01:27:03 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.81 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2018. */ /* NetHack may be freely redistributed. See license for details. */ /* diff --git a/src/dig.c b/src/dig.c index 6575563b2..488673b22 100644 --- a/src/dig.c +++ b/src/dig.c @@ -1,5 +1,6 @@ /* NetHack 3.6 dig.c $NHDT-Date: 1517913682 2018/02/06 10:41:22 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.108 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/do.c b/src/do.c index 726aa8c16..d2498465c 100644 --- a/src/do.c +++ b/src/do.c @@ -1,5 +1,6 @@ /* NetHack 3.6 do.c $NHDT-Date: 1472809073 2016/09/02 09:37:53 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.158 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Derek S. Ray, 2015. */ /* NetHack may be freely redistributed. See license for details. */ /* Contains code for 'd', 'D' (drop), '>', '<' (up, down) */ diff --git a/src/do_name.c b/src/do_name.c index ea25eb3e7..e4a874126 100644 --- a/src/do_name.c +++ b/src/do_name.c @@ -1,5 +1,6 @@ /* NetHack 3.6 do_name.c $NHDT-Date: 1519420054 2018/02/23 21:07:34 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.128 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2018. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/do_wear.c b/src/do_wear.c index f8f94e342..269370e81 100644 --- a/src/do_wear.c +++ b/src/do_wear.c @@ -1,5 +1,6 @@ /* NetHack 3.6 do_wear.c $NHDT-Date: 1514072526 2017/12/23 23:42:06 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.100 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/dog.c b/src/dog.c index 41a5e4f05..4bcdd7722 100644 --- a/src/dog.c +++ b/src/dog.c @@ -1,5 +1,6 @@ /* NetHack 3.6 dog.c $NHDT-Date: 1502753406 2017/08/14 23:30:06 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.60 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/dogmove.c b/src/dogmove.c index 200779ea3..614eef794 100644 --- a/src/dogmove.c +++ b/src/dogmove.c @@ -1,5 +1,6 @@ /* NetHack 3.6 dogmove.c $NHDT-Date: 1502753407 2017/08/14 23:30:07 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.63 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/dothrow.c b/src/dothrow.c index b1fd07350..246a0d51b 100644 --- a/src/dothrow.c +++ b/src/dothrow.c @@ -1,5 +1,6 @@ /* NetHack 3.6 dothrow.c $NHDT-Date: 1522967321 2018/04/05 22:28:41 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.135 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2013. */ /* NetHack may be freely redistributed. See license for details. */ /* Contains code for 't' (throw) */ diff --git a/src/dungeon.c b/src/dungeon.c index 36d4f93e0..8dbccd974 100644 --- a/src/dungeon.c +++ b/src/dungeon.c @@ -1,5 +1,6 @@ /* NetHack 3.6 dungeon.c $NHDT-Date: 1523308357 2018/04/09 21:12:37 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.87 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/eat.c b/src/eat.c index 6fc3d3402..79fd56df0 100644 --- a/src/eat.c +++ b/src/eat.c @@ -1,5 +1,6 @@ /* NetHack 3.6 eat.c $NHDT-Date: 1502754159 2017/08/14 23:42:39 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.179 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/end.c b/src/end.c index 5b929e61f..d0b51df53 100644 --- a/src/end.c +++ b/src/end.c @@ -1,5 +1,6 @@ /* NetHack 3.6 end.c $NHDT-Date: 1512803167 2017/12/09 07:06:07 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.137 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #define NEED_VARARGS /* comment line for pre-compiled headers */ diff --git a/src/engrave.c b/src/engrave.c index 1c38ac5e6..48dc2bd40 100644 --- a/src/engrave.c +++ b/src/engrave.c @@ -1,5 +1,6 @@ /* NetHack 3.6 engrave.c $NHDT-Date: 1456304550 2016/02/24 09:02:30 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.61 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/exper.c b/src/exper.c index 675375ebe..a9b3eed77 100644 --- a/src/exper.c +++ b/src/exper.c @@ -1,5 +1,6 @@ /* NetHack 3.6 exper.c $NHDT-Date: 1446975467 2015/11/08 09:37:47 $ $NHDT-Branch: master $:$NHDT-Revision: 1.26 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2007. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/files.c b/src/files.c index 95acf7bff..c79ba7803 100644 --- a/src/files.c +++ b/src/files.c @@ -1,5 +1,6 @@ /* NetHack 3.6 files.c $NHDT-Date: 1524413723 2018/04/22 16:15:23 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.235 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Derek S. Ray, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #define NEED_VARARGS diff --git a/src/hack.c b/src/hack.c index 55fcfec9c..0687c0ef6 100644 --- a/src/hack.c +++ b/src/hack.c @@ -1,5 +1,6 @@ /* NetHack 3.6 hack.c $NHDT-Date: 1518861490 2018/02/17 09:58:10 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.182 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Derek S. Ray, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/hacklib.c b/src/hacklib.c index 382551822..d0c6915f0 100644 --- a/src/hacklib.c +++ b/src/hacklib.c @@ -1,5 +1,6 @@ /* NetHack 3.6 hacklib.c $NHDT-Date: 1518922474 2018/02/18 02:54:34 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.54 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2007. */ /* Copyright (c) Robert Patrick Rankin, 1991 */ /* NetHack may be freely redistributed. See license for details. */ diff --git a/src/invent.c b/src/invent.c index 0831f9881..13951f104 100644 --- a/src/invent.c +++ b/src/invent.c @@ -1,5 +1,6 @@ /* NetHack 3.6 invent.c $NHDT-Date: 1519672703 2018/02/26 19:18:23 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.225 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Derek S. Ray, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/lock.c b/src/lock.c index 9de1e29c5..067eb6c99 100644 --- a/src/lock.c +++ b/src/lock.c @@ -1,5 +1,6 @@ /* NetHack 3.6 lock.c $NHDT-Date: 1521499715 2018/03/19 22:48:35 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.80 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/mail.c b/src/mail.c index 8fae06005..067dab09f 100644 --- a/src/mail.c +++ b/src/mail.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mail.c $NHDT-Date: 1519070343 2018/02/19 19:59:03 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.31 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2018. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/makemon.c b/src/makemon.c index c7302b9a0..a0a626e2c 100644 --- a/src/makemon.c +++ b/src/makemon.c @@ -1,5 +1,6 @@ /* NetHack 3.6 makemon.c $NHDT-Date: 1495237801 2017/05/19 23:50:01 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.116 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/mcastu.c b/src/mcastu.c index ff026eab3..7da15e77e 100644 --- a/src/mcastu.c +++ b/src/mcastu.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mcastu.c $NHDT-Date: 1436753517 2015/07/13 02:11:57 $ $NHDT-Branch: master $:$NHDT-Revision: 1.44 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/mhitm.c b/src/mhitm.c index d569623ac..72e10b5e8 100644 --- a/src/mhitm.c +++ b/src/mhitm.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mhitm.c $NHDT-Date: 1513297346 2017/12/15 00:22:26 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.99 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/mhitu.c b/src/mhitu.c index 68bf643eb..e8ff0b4d3 100644 --- a/src/mhitu.c +++ b/src/mhitu.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mhitu.c $NHDT-Date: 1513297347 2017/12/15 00:22:27 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.149 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/minion.c b/src/minion.c index f15bef3d7..1a2b22d56 100644 --- a/src/minion.c +++ b/src/minion.c @@ -1,5 +1,6 @@ /* NetHack 3.6 minion.c $NHDT-Date: 1432512773 2015/05/25 00:12:53 $ $NHDT-Branch: master $:$NHDT-Revision: 1.33 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2008. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/mklev.c b/src/mklev.c index 07af21831..46d19ec66 100644 --- a/src/mklev.c +++ b/src/mklev.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mklev.c $NHDT-Date: 1511681724 2017/11/26 07:35:24 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.47 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Alex Smith, 2017. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/mkmaze.c b/src/mkmaze.c index e053a6ffc..7812b8f41 100644 --- a/src/mkmaze.c +++ b/src/mkmaze.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mkmaze.c $NHDT-Date: 1518718417 2018/02/15 18:13:37 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.55 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2018. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/mkobj.c b/src/mkobj.c index 672b7d586..1724cded5 100644 --- a/src/mkobj.c +++ b/src/mkobj.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mkobj.c $NHDT-Date: 1518053380 2018/02/08 01:29:40 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.130 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Derek S. Ray, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/mkroom.c b/src/mkroom.c index ff074cd5c..15cffdc7f 100644 --- a/src/mkroom.c +++ b/src/mkroom.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mkroom.c $NHDT-Date: 1446887530 2015/11/07 09:12:10 $ $NHDT-Branch: master $:$NHDT-Revision: 1.24 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ /* diff --git a/src/mon.c b/src/mon.c index ae1493989..b088460ec 100644 --- a/src/mon.c +++ b/src/mon.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mon.c $NHDT-Date: 1522540516 2018/03/31 23:55:16 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.250 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Derek S. Ray, 2015. */ /* NetHack may be freely redistributed. See license for details. */ /* If you're using precompiled headers, you don't want this either */ diff --git a/src/mondata.c b/src/mondata.c index d849658f9..2a6134863 100644 --- a/src/mondata.c +++ b/src/mondata.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mondata.c $NHDT-Date: 1508479720 2017/10/20 06:08:40 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.63 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/monmove.c b/src/monmove.c index 64f878246..cdef76f89 100644 --- a/src/monmove.c +++ b/src/monmove.c @@ -1,5 +1,6 @@ /* NetHack 3.6 monmove.c $NHDT-Date: 1517877380 2018/02/06 00:36:20 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.96 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/monst.c b/src/monst.c index 5efce983d..1ce52c97d 100644 --- a/src/monst.c +++ b/src/monst.c @@ -1,5 +1,6 @@ /* NetHack 3.6 monst.c $NHDT-Date: 1510531569 2017/11/13 00:06:09 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.59 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ #include "config.h" diff --git a/src/mthrowu.c b/src/mthrowu.c index 6806feef4..ed5dec975 100644 --- a/src/mthrowu.c +++ b/src/mthrowu.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mthrowu.c $NHDT-Date: 1514152830 2017/12/24 22:00:30 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.73 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2016. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/o_init.c b/src/o_init.c index ec1f56f5a..3edadd811 100644 --- a/src/o_init.c +++ b/src/o_init.c @@ -1,5 +1,6 @@ /* NetHack 3.6 o_init.c $NHDT-Date: 1450318588 2015/12/17 02:16:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.22 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/objnam.c b/src/objnam.c index 6d2b30a1a..12bba3c61 100644 --- a/src/objnam.c +++ b/src/objnam.c @@ -1,5 +1,6 @@ /* NetHack 3.6 objnam.c $NHDT-Date: 1521507553 2018/03/20 00:59:13 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.199 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/options.c b/src/options.c index ca8888e55..b0c125051 100644 --- a/src/options.c +++ b/src/options.c @@ -1,5 +1,6 @@ /* NetHack 3.6 options.c $NHDT-Date: 1510963525 2017/11/18 00:05:25 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.319 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2008. */ /* NetHack may be freely redistributed. See license for details. */ #ifdef OPTION_LISTS_ONLY /* (AMIGA) external program for opt lists */ diff --git a/src/pager.c b/src/pager.c index 9b6192a04..308c84279 100644 --- a/src/pager.c +++ b/src/pager.c @@ -1,5 +1,6 @@ /* NetHack 3.6 pager.c $NHDT-Date: 1523142395 2018/04/07 23:06:35 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.123 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2018. */ /* NetHack may be freely redistributed. See license for details. */ /* This file contains the command routines dowhatis() and dohelp() and */ diff --git a/src/pickup.c b/src/pickup.c index 2df6a719b..78206230d 100644 --- a/src/pickup.c +++ b/src/pickup.c @@ -1,5 +1,6 @@ /* NetHack 3.6 pickup.c $NHDT-Date: 1516581051 2018/01/22 00:30:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.194 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ /* diff --git a/src/pline.c b/src/pline.c index 745bd7d22..1f604e206 100644 --- a/src/pline.c +++ b/src/pline.c @@ -1,5 +1,6 @@ /* NetHack 3.6 pline.c $NHDT-Date: 1520964541 2018/03/13 18:09:01 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.66 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2018. */ /* NetHack may be freely redistributed. See license for details. */ #define NEED_VARARGS /* Uses ... */ /* comment line for pre-compiled headers \ diff --git a/src/potion.c b/src/potion.c index fc9de1d76..28a73aaf8 100644 --- a/src/potion.c +++ b/src/potion.c @@ -1,5 +1,6 @@ /* NetHack 3.6 potion.c $NHDT-Date: 1520797133 2018/03/11 19:38:53 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.144 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2013. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/read.c b/src/read.c index 753b6e6be..02cb79b91 100644 --- a/src/read.c +++ b/src/read.c @@ -1,5 +1,6 @@ /* NetHack 3.6 read.c $NHDT-Date: 1515802375 2018/01/13 00:12:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.150 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/restore.c b/src/restore.c index 7d83575dc..b967e1464 100644 --- a/src/restore.c +++ b/src/restore.c @@ -1,5 +1,6 @@ /* NetHack 3.6 restore.c $NHDT-Date: 1451082255 2015/12/25 22:24:15 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.103 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2009. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/rip.c b/src/rip.c index ce3c8d6e7..ee2a51642 100644 --- a/src/rip.c +++ b/src/rip.c @@ -1,5 +1,6 @@ /* NetHack 3.6 rip.c $NHDT-Date: 1488788514 2017/03/06 08:21:54 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.23 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2017. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/rnd.c b/src/rnd.c index 8c15f22d4..c3627e854 100644 --- a/src/rnd.c +++ b/src/rnd.c @@ -1,4 +1,5 @@ -/* NetHack 3.6 rnd.c $NHDT-Date: 1446883921 2015/11/07 08:12:01 $ $NHDT-Branch: master $:$NHDT-Revision: 1.16 $ */ +/* NetHack 3.6 rnd.c $NHDT-Date: 1524689470 2018/04/25 20:51:10 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.18 $ */ +/* Copyright (c) 2004 by Robert Patrick Rankin */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/role.c b/src/role.c index fd23f3adb..f13ff5ede 100644 --- a/src/role.c +++ b/src/role.c @@ -1,5 +1,6 @@ /* NetHack 3.6 role.c $NHDT-Date: 1463561393 2016/05/18 08:49:53 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.38 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985-1999. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/rumors.c b/src/rumors.c index 18656e5e7..5e9af00a0 100644 --- a/src/rumors.c +++ b/src/rumors.c @@ -1,5 +1,6 @@ /* NetHack 3.6 rumors.c $NHDT-Date: 1446713640 2015/11/05 08:54:00 $ $NHDT-Branch: master $:$NHDT-Revision: 1.27 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/save.c b/src/save.c index 8426a2cee..927798cd9 100644 --- a/src/save.c +++ b/src/save.c @@ -1,5 +1,6 @@ /* NetHack 3.6 save.c $NHDT-Date: 1489192905 2017/03/11 00:41:45 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.101 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2009. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/shk.c b/src/shk.c index a835fa345..1b42f278c 100644 --- a/src/shk.c +++ b/src/shk.c @@ -1,5 +1,6 @@ /* NetHack 3.6 shk.c $NHDT-Date: 1515144230 2018/01/05 09:23:50 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.136 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/shknam.c b/src/shknam.c index b56397c17..43ab8651e 100644 --- a/src/shknam.c +++ b/src/shknam.c @@ -1,5 +1,6 @@ /* NetHack 3.6 shknam.c $NHDT-Date: 1454485432 2016/02/03 07:43:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.41 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ /* shknam.c -- initialize a shop */ diff --git a/src/sit.c b/src/sit.c index fa36d0ff7..0f8bedbb4 100644 --- a/src/sit.c +++ b/src/sit.c @@ -1,5 +1,6 @@ /* NetHack 3.6 sit.c $NHDT-Date: 1458341129 2016/03/18 22:45:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.53 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/steal.c b/src/steal.c index 203bf331a..1c30b7733 100644 --- a/src/steal.c +++ b/src/steal.c @@ -1,5 +1,6 @@ /* NetHack 3.6 steal.c $NHDT-Date: 1496614914 2017/06/04 22:21:54 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.69 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/teleport.c b/src/teleport.c index 53516977f..fafadc8d1 100644 --- a/src/teleport.c +++ b/src/teleport.c @@ -1,5 +1,6 @@ /* NetHack 3.6 teleport.c $NHDT-Date: 1523306912 2018/04/09 20:48:32 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.73 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/timeout.c b/src/timeout.c index 86e01ae5f..a469eb116 100644 --- a/src/timeout.c +++ b/src/timeout.c @@ -1,5 +1,6 @@ /* NetHack 3.6 timeout.c $NHDT-Date: 1505214876 2017/09/12 11:14:36 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.75 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2018. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/topten.c b/src/topten.c index ec689abc4..fbe6573cb 100644 --- a/src/topten.c +++ b/src/topten.c @@ -1,5 +1,6 @@ /* NetHack 3.6 topten.c $NHDT-Date: 1450451497 2015/12/18 15:11:37 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.44 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/track.c b/src/track.c index 0ba143044..67b46467c 100644 --- a/src/track.c +++ b/src/track.c @@ -1,5 +1,6 @@ /* NetHack 3.6 track.c $NHDT-Date: 1432512769 2015/05/25 00:12:49 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ /* track.c - version 1.0.2 */ diff --git a/src/trap.c b/src/trap.c index e02a2d98e..8f62dcc63 100644 --- a/src/trap.c +++ b/src/trap.c @@ -1,5 +1,6 @@ /* NetHack 3.6 trap.c $NHDT-Date: 1524312044 2018/04/21 12:00:44 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.290 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2013. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/u_init.c b/src/u_init.c index 447d16d16..3087f70d3 100644 --- a/src/u_init.c +++ b/src/u_init.c @@ -1,5 +1,6 @@ /* NetHack 3.6 u_init.c $NHDT-Date: 1503960969 2017/08/28 22:56:09 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.40 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2017. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/uhitm.c b/src/uhitm.c index 565260f37..6b41f6204 100644 --- a/src/uhitm.c +++ b/src/uhitm.c @@ -1,5 +1,6 @@ /* NetHack 3.6 uhitm.c $NHDT-Date: 1521684760 2018/03/22 02:12:40 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.176 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/vault.c b/src/vault.c index 90a20a0bf..e3bfb4ef0 100644 --- a/src/vault.c +++ b/src/vault.c @@ -1,5 +1,6 @@ /* NetHack 3.6 vault.c $NHDT-Date: 1452132199 2016/01/07 02:03:19 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.42 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/version.c b/src/version.c index 30e4ce75f..5055e8df6 100644 --- a/src/version.c +++ b/src/version.c @@ -1,5 +1,6 @@ -/* NetHack 3.6 version.c $NHDT-Date: 1519155525 2018/02/20 19:38:45 $ $NHDT-Branch: githash $:$NHDT-Revision: 1.47 $ */ +/* NetHack 3.6 version.c $NHDT-Date: 1524693365 2018/04/25 21:56:05 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.49 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2018. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" @@ -65,8 +66,10 @@ char *buf; Sprintf(eos(buf), "%s%s", c++ ? "," : "", NetHack_git_sha); #endif #if defined(NETHACK_GIT_BRANCH) +#if defined(BETA) if (NetHack_git_branch) - Sprintf(eos(buf), "%s%s", c++ ? "," : "", NetHack_git_branch); + Sprintf(eos(buf), "%sbranch:%s", c++ ? "," : "", NetHack_git_branch); +#endif #endif Sprintf(eos(buf), ")"); } diff --git a/src/weapon.c b/src/weapon.c index 4a6ebbea3..2b7b3bf0a 100644 --- a/src/weapon.c +++ b/src/weapon.c @@ -1,5 +1,6 @@ /* NetHack 3.6 weapon.c $NHDT-Date: 1454660575 2016/02/05 08:22:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.57 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ /* diff --git a/src/were.c b/src/were.c index b61d16402..2c73877f6 100644 --- a/src/were.c +++ b/src/were.c @@ -1,5 +1,6 @@ /* NetHack 3.6 were.c $NHDT-Date: 1505214877 2017/09/12 11:14:37 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.21 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/wield.c b/src/wield.c index bd176a812..96ec1d40b 100644 --- a/src/wield.c +++ b/src/wield.c @@ -1,5 +1,6 @@ /* NetHack 3.6 wield.c $NHDT-Date: 1496959480 2017/06/08 22:04:40 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.54 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2009. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/wizard.c b/src/wizard.c index 6821ea912..87e229ebc 100644 --- a/src/wizard.c +++ b/src/wizard.c @@ -1,5 +1,6 @@ /* NetHack 3.6 wizard.c $NHDT-Date: 1456618999 2016/02/28 00:23:19 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.48 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2016. */ /* NetHack may be freely redistributed. See license for details. */ /* wizard code - inspired by rogue code from Merlyn Leroy (digi-g!brian) */ diff --git a/src/worm.c b/src/worm.c index 4e5d12dd8..c99787461 100644 --- a/src/worm.c +++ b/src/worm.c @@ -1,5 +1,6 @@ /* NetHack 3.6 worm.c $NHDT-Date: 1456528599 2016/02/26 23:16:39 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.20 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2009. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/worn.c b/src/worn.c index abc1d4c3e..612f71bac 100644 --- a/src/worn.c +++ b/src/worn.c @@ -1,5 +1,6 @@ /* NetHack 3.6 worn.c $NHDT-Date: 1496959481 2017/06/08 22:04:41 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.49 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2013. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/src/zap.c b/src/zap.c index 1dc436880..5750b276e 100644 --- a/src/zap.c +++ b/src/zap.c @@ -1,5 +1,6 @@ /* NetHack 3.6 zap.c $NHDT-Date: 1524470244 2018/04/23 07:57:24 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.275 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2013. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/sys/mac/macmain.c b/sys/mac/macmain.c index 8d9756029..6d76e8be1 100644 --- a/sys/mac/macmain.c +++ b/sys/mac/macmain.c @@ -1,5 +1,6 @@ /* NetHack 3.6 macmain.c $NHDT-Date: 1432512796 2015/05/25 00:13:16 $ $NHDT-Branch: master $:$NHDT-Revision: 1.21 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2009. */ /* NetHack may be freely redistributed. See license for details. */ /* main.c - Mac NetHack */ diff --git a/sys/mac/mactopl.c b/sys/mac/mactopl.c index 2d43d9c6a..0c087fc8b 100644 --- a/sys/mac/mactopl.c +++ b/sys/mac/mactopl.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mactopl.c $NHDT-Date: 1432512797 2015/05/25 00:13:17 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/sys/mac/macunix.c b/sys/mac/macunix.c index 17663d0ba..3c08bf3a7 100644 --- a/sys/mac/macunix.c +++ b/sys/mac/macunix.c @@ -1,5 +1,6 @@ /* NetHack 3.6 macunix.c $NHDT-Date: 1432512797 2015/05/25 00:13:17 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ /* This file collects some Unix dependencies */ diff --git a/sys/mac/mgetline.c b/sys/mac/mgetline.c index 308daa97b..7b3e91ba7 100644 --- a/sys/mac/mgetline.c +++ b/sys/mac/mgetline.c @@ -1,5 +1,6 @@ /* NetHack 3.6 mgetline.c $NHDT-Date: 1432512797 2015/05/25 00:13:17 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/sys/msdos/.gitattributes b/sys/msdos/.gitattributes index 7e8941f2d..304a2432d 100644 --- a/sys/msdos/.gitattributes +++ b/sys/msdos/.gitattributes @@ -2,3 +2,5 @@ *.bat NHSUBST Makefile.* NHSUBST Install.* NHSUBST +moveinit.pat NH_header=no +vesa.h NH_header=no diff --git a/sys/share/.gitattributes b/sys/share/.gitattributes index 31e18fe84..4eede48ab 100644 --- a/sys/share/.gitattributes +++ b/sys/share/.gitattributes @@ -1 +1,6 @@ Makefile.* NHSUBST +NetHack.cnf NHSUBST +termcap NH_header=no +dgn_comp.h NH_header=no +lev_comp.h NH_header=no +Makefile.lib NH_header=no diff --git a/sys/share/NetHack.cnf b/sys/share/NetHack.cnf index 4cb9b468a..b2cf0e697 100644 --- a/sys/share/NetHack.cnf +++ b/sys/share/NetHack.cnf @@ -1,7 +1,7 @@ # NetHack Copyright (c) NetHack PC Development Team 1993 - 2006 # NetHack may be freely redistributed. See license for details. # -# $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# $NHDT-Date: 1524684112 2018/04/25 19:21:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.12 $ # # A '#' at the beginning of a line means the rest of the line is a comment. # diff --git a/sys/share/cppregex.cpp b/sys/share/cppregex.cpp index 9d3e88eff..cba44b88a 100644 --- a/sys/share/cppregex.cpp +++ b/sys/share/cppregex.cpp @@ -1,4 +1,5 @@ -/* NetHack 3.6 cppregex.cpp $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ */ +/* NetHack 3.6 cppregex.cpp */ +/* $NHDT-Date: 1524684157 2018/04/25 19:22:37 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.8 $ */ /* Copyright (c) Sean Hunt 2015. */ /* NetHack may be freely redistributed. See license for details. */ diff --git a/sys/share/ioctl.c b/sys/share/ioctl.c index 138d02b5c..8b2c91712 100644 --- a/sys/share/ioctl.c +++ b/sys/share/ioctl.c @@ -1,5 +1,6 @@ /* NetHack 3.6 ioctl.c $NHDT-Date: 1520099308 2018/03/03 17:48:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.13 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ /* This cannot be part of hack.tty.c (as it was earlier) since on some diff --git a/sys/share/pcmain.c b/sys/share/pcmain.c index 146d19930..eea29f8de 100644 --- a/sys/share/pcmain.c +++ b/sys/share/pcmain.c @@ -1,5 +1,6 @@ /* NetHack 3.6 pcmain.c $NHDT-Date: 1524413707 2018/04/22 16:15:07 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.74 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Derek S. Ray, 2015. */ /* NetHack may be freely redistributed. See license for details. */ /* main.c - MSDOS, OS/2, ST, Amiga, and Windows NetHack */ diff --git a/sys/share/pcsys.c b/sys/share/pcsys.c index 5746b778c..71b62c6e0 100644 --- a/sys/share/pcsys.c +++ b/sys/share/pcsys.c @@ -1,4 +1,5 @@ -/* NetHack 3.6 pcsys.c $NHDT-Date: 1432512787 2015/05/25 00:13:07 $ $NHDT-Branch: master $:$NHDT-Revision: 1.28 $ */ +/* NetHack 3.6 pcsys.c $NHDT-Date: 1524689500 2018/04/25 20:51:40 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.31 $ */ +/* Copyright (c) 2012 by Michael Allison */ /* NetHack may be freely redistributed. See license for details. */ /* diff --git a/sys/share/pctty.c b/sys/share/pctty.c index 567ac0368..cd7d65588 100644 --- a/sys/share/pctty.c +++ b/sys/share/pctty.c @@ -1,5 +1,6 @@ /* NetHack 3.6 pctty.c $NHDT-Date: 1432512787 2015/05/25 00:13:07 $ $NHDT-Branch: master $:$NHDT-Revision: 1.11 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2005. */ /* NetHack may be freely redistributed. See license for details. */ /* tty.c - (PC) version */ diff --git a/sys/share/pcunix.c b/sys/share/pcunix.c index 5fcc3210b..72daafe10 100644 --- a/sys/share/pcunix.c +++ b/sys/share/pcunix.c @@ -1,5 +1,6 @@ /* NetHack 3.6 pcunix.c $NHDT-Date: 1432512787 2015/05/25 00:13:07 $ $NHDT-Branch: master $:$NHDT-Revision: 1.34 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ /* This file collects some Unix dependencies; pager.c contains some more */ diff --git a/sys/share/unixtty.c b/sys/share/unixtty.c index 94ffd766d..00d473204 100644 --- a/sys/share/unixtty.c +++ b/sys/share/unixtty.c @@ -1,5 +1,6 @@ /* NetHack 3.6 unixtty.c $NHDT-Date: 1450916700 2015/12/24 00:25:00 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.21 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ /* tty.c - (Unix) version */ diff --git a/sys/unix/.gitattributes b/sys/unix/.gitattributes index 31e18fe84..277998292 100644 --- a/sys/unix/.gitattributes +++ b/sys/unix/.gitattributes @@ -1 +1,7 @@ Makefile.* NHSUBST +Install.unx NHSUBST +NewInstall.unx NHSUBST +README.linux NHSUBST +depend.awk NHSUBST +sysconf NHSUBST +*shr NH_header=no diff --git a/sys/unix/Install.unx b/sys/unix/Install.unx index 7870f3fa7..6e9285100 100644 --- a/sys/unix/Install.unx +++ b/sys/unix/Install.unx @@ -290,3 +290,7 @@ Notes: packaging on the host. For recover, you just want the target binary to install on the target. + +# NetHack 3.6 Install.unx $NHDT-Date: 1524689449 2018/04/25 20:50:49 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.11 $ +# Copyright (c) 2012 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. diff --git a/sys/unix/Makefile.dat b/sys/unix/Makefile.dat index 98a2b6ddb..9e1c84969 100644 --- a/sys/unix/Makefile.dat +++ b/sys/unix/Makefile.dat @@ -1,5 +1,7 @@ -# NetHack Makefile. -# NetHack 3.6 Makefile.dat $NHDT-Date: 1447844574 2015/11/18 11:02:54 $ $NHDT-Branch: master $:$NHDT-Revision: 1.18 $ +# NetHack Datafiles Makefile. +HDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.22 $ +# Copyright (c) 2018 by Pasi Kallinen +# NetHack may be freely redistributed. See license for details. # Root of source tree: NHSROOT=.. diff --git a/sys/unix/Makefile.doc b/sys/unix/Makefile.doc index 88ec632b1..dd3703b01 100644 --- a/sys/unix/Makefile.doc +++ b/sys/unix/Makefile.doc @@ -1,5 +1,7 @@ -# NetHack Makefile. -# NetHack 3.6 Makefile.doc $NHDT-Date: 1432512789 2015/05/25 00:13:09 $ $NHDT-Branch: master $:$NHDT-Revision: 1.14 $ +# NetHack Documentation Makefile. +# NetHack 3.6 Makefile.doc $NHDT-Date: 1524689449 2018/04/25 20:50:49 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.16 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. # Root of source tree: NHSROOT=.. diff --git a/sys/unix/Makefile.src b/sys/unix/Makefile.src index 56fef8b86..47af438b4 100644 --- a/sys/unix/Makefile.src +++ b/sys/unix/Makefile.src @@ -1,5 +1,7 @@ # NetHack Makefile. -# NetHack 3.6 Makefile.src $NHDT-Date: 1520201829 2018/03/04 22:17:09 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.52 $ +# NetHack 3.6 Makefile.src $NHDT-Date: 1524689449 2018/04/25 20:50:49 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.54 $ +# Copyright (c) 2018 by Pasi Kallinen +# NetHack may be freely redistributed. See license for details. # Root of source tree: NHSROOT=.. diff --git a/sys/unix/Makefile.top b/sys/unix/Makefile.top index 88dc3b878..90b1df955 100644 --- a/sys/unix/Makefile.top +++ b/sys/unix/Makefile.top @@ -1,5 +1,7 @@ -# NetHack Makefile. -# NetHack 3.6 Makefile.top $NHDT-Date: 1465114189 2016/06/05 08:09:49 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.35 $ +# NetHack Top-level Makefile. +# NetHack 3.6 Makefile.top $NHDT-Date: 1524689449 2018/04/25 20:50:49 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.36 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. # Root of source tree: NHSROOT=. diff --git a/sys/unix/Makefile.utl b/sys/unix/Makefile.utl index 6dba4e97c..9119cef82 100644 --- a/sys/unix/Makefile.utl +++ b/sys/unix/Makefile.utl @@ -1,5 +1,7 @@ # Makefile for NetHack's utility programs. -# NetHack 3.6 Makefile.utl $NHDT-Date: 1522193681 2018/03/27 23:34:41 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.34 $ +# NetHack 3.6 Makefile.utl $NHDT-Date: 1524689449 2018/04/25 20:50:49 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.35 $ +# Copyright (c) 2018 by Robert Patrick Rankin +# NetHack may be freely redistributed. See license for details. # Root of source tree: NHSROOT=.. diff --git a/sys/unix/NewInstall.unx b/sys/unix/NewInstall.unx index 6fa78a83b..b9daf361d 100644 --- a/sys/unix/NewInstall.unx +++ b/sys/unix/NewInstall.unx @@ -39,3 +39,7 @@ If you are using the traditional configuration system, see Install.unx. 5. If it all worked, you're done. If something went wrong, see Install.unx for information about the settings the hints file tried to automate. + +# NetHack 3.6 NewInstall.unx $NHDT-Date: 1524689458 2018/04/25 20:50:58 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ +# Copyright (c) 2009 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. diff --git a/sys/unix/README.linux b/sys/unix/README.linux index 3c88252a0..01b79265d 100644 --- a/sys/unix/README.linux +++ b/sys/unix/README.linux @@ -1,6 +1,6 @@ NetHack 3.6.0 Linux Elf -$NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +$NHDT-Date: 1524684188 2018/04/25 19:23:08 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.22 $ This README provides the instructions for using the official Linux binary, system platform requirements, as well as steps used to create that binary. diff --git a/sys/unix/depend.awk b/sys/unix/depend.awk index 2220754c1..8361bec30 100644 --- a/sys/unix/depend.awk +++ b/sys/unix/depend.awk @@ -1,6 +1,6 @@ # depend.awk -- awk script used to construct makefile dependencies # for nethack's source files (`make depend' support for Makefile.src). -# $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# $NHDT-Date: 1524684206 2018/04/25 19:23:26 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.6 $ # # usage: # cd src ; nawk -f depend.awk ../include/*.h list-of-.c/.cpp-files diff --git a/sys/unix/gitinfo.sh b/sys/unix/gitinfo.sh index 770943e25..9ab309f84 100755 --- a/sys/unix/gitinfo.sh +++ b/sys/unix/gitinfo.sh @@ -1,5 +1,7 @@ #!/bin/sh -# NetHack 3.6 gitinfo.sh $NHDT-Date: 1521185933 2018/03/16 07:38:53 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ +# NetHack 3.6 gitinfo.sh $NHDT-Date: 1524689450 2018/04/25 20:50:50 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ +# Copyright (c) 2018 by Robert Patrick Rankin +# NetHack may be freely redistributed. See license for details. # bring dat/gitinfo.txt up to date; called from Makefile.src diff --git a/sys/unix/hints/linux-chroot b/sys/unix/hints/linux-chroot index 404f4db98..eb4fc2733 100644 --- a/sys/unix/hints/linux-chroot +++ b/sys/unix/hints/linux-chroot @@ -1,5 +1,5 @@ # -# NetHack 3.5 linux $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# NetHack 3.5 linux $NHDT-Date: 1524684267 2018/04/25 19:24:27 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.1 $ # NetHack 3.5 linux $Date: 2010/01/15 19:54:37 $ $Revision: 1.8 $ # Copyright (c) Kenneth Lorber, Kensington, Maryland, 2007. # NetHack may be freely redistributed. See license for details. diff --git a/sys/unix/nethack.sh b/sys/unix/nethack.sh index eec1991d6..7ca74865d 100755 --- a/sys/unix/nethack.sh +++ b/sys/unix/nethack.sh @@ -1,5 +1,7 @@ #!/bin/sh -# NetHack 3.6 nethack.sh $NHDT-Date: 1432512789 2015/05/25 00:13:09 $ $NHDT-Branch: master $:$NHDT-Revision: 1.17 $ +# NetHack 3.6 nethack.sh $NHDT-Date: 1524689450 2018/04/25 20:50:50 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.19 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. HACKDIR=/usr/games/lib/nethackdir export HACKDIR diff --git a/sys/unix/sysconf b/sys/unix/sysconf index eacca35ed..610653837 100644 --- a/sys/unix/sysconf +++ b/sys/unix/sysconf @@ -1,4 +1,6 @@ -# NetHack 3.6 sysconf $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# NetHack 3.6 sysconf $NHDT-Date: 1524689450 2018/04/25 20:50:50 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.27 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. # # Sample sysconf file. # The sysconf file is only used if NetHack is compiled with SYSCF defined. diff --git a/sys/unix/unixmain.c b/sys/unix/unixmain.c index 95e48cc14..c856e758b 100644 --- a/sys/unix/unixmain.c +++ b/sys/unix/unixmain.c @@ -1,5 +1,6 @@ /* NetHack 3.6 unixmain.c $NHDT-Date: 1432512788 2015/05/25 00:13:08 $ $NHDT-Branch: master $:$NHDT-Revision: 1.52 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ /* main.c - Unix NetHack */ diff --git a/sys/unix/unixunix.c b/sys/unix/unixunix.c index 9c4f312b3..05fe285f2 100644 --- a/sys/unix/unixunix.c +++ b/sys/unix/unixunix.c @@ -1,5 +1,6 @@ /* NetHack 3.6 unixunix.c $NHDT-Date: 1432512788 2015/05/25 00:13:08 $ $NHDT-Branch: master $:$NHDT-Revision: 1.22 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* NetHack may be freely redistributed. See license for details. */ /* This file collects some Unix dependencies */ diff --git a/sys/vms/.gitattributes b/sys/vms/.gitattributes index 21561faf1..fe31b9c25 100644 --- a/sys/vms/.gitattributes +++ b/sys/vms/.gitattributes @@ -1,2 +1,4 @@ Makefile.* NHSUBST *.com NHSUBST +Install.vms NHSUBST +sysconf NHSUBST diff --git a/sys/vms/Install.vms b/sys/vms/Install.vms index 1c7bbe236..e917aefdf 100644 --- a/sys/vms/Install.vms +++ b/sys/vms/Install.vms @@ -480,3 +480,7 @@ Notes: 20-OCT-2003 minimally updated 9-NOV-2015... + +# NetHack 3.6 Install.vms $NHDT-Date: 1524689427 2018/04/25 20:50:27 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.12 $ +# Copyright (c) 2003 by Robert Patrick Rankin +# NetHack may be freely redistributed. See license for details. diff --git a/sys/vms/Makefile.dat b/sys/vms/Makefile.dat index e8932f186..755099c6d 100644 --- a/sys/vms/Makefile.dat +++ b/sys/vms/Makefile.dat @@ -1,5 +1,7 @@ # NetHack Makefile (VMS) - data files: special levels and other data. -# NetHack 3.6 Makefile.dat $NHDT-Date: 1432512789 2015/05/25 00:13:09 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ +# NetHack 3.6 Makefile.dat $NHDT-Date: 1524689428 2018/04/25 20:50:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.9 $ +# Copyright (c) 2015 by Mike Stephenson +# NetHack may be freely redistributed. See license for details. # Copy this file to [.dat]Makefile.; no editing needed. diff --git a/sys/vms/Makefile.doc b/sys/vms/Makefile.doc index 352626a5e..624f5ea0a 100644 --- a/sys/vms/Makefile.doc +++ b/sys/vms/Makefile.doc @@ -1,5 +1,7 @@ # NetHack Makefile (VMS) - for the [Unix] documentation. -# NetHack 3.6 Makefile.doc $NHDT-Date: 1432512790 2015/05/25 00:13:10 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ +# NetHack 3.6 Makefile.doc $NHDT-Date: 1524689428 2018/04/25 20:50:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.9 $ +# Copyright (c) 2011 by Robert Patrick Rankin +# NetHack may be freely redistributed. See license for details. # Copy this file to [.doc]Makefile. and edit it if needed. diff --git a/sys/vms/Makefile.src b/sys/vms/Makefile.src index 18772beb2..1fee34ae7 100644 --- a/sys/vms/Makefile.src +++ b/sys/vms/Makefile.src @@ -1,5 +1,7 @@ # NetHack Makefile (VMS) - for building nethack itself. -# NetHack 3.6 Makefile.src $NHDT-Date: 1465133388 2016/06/05 13:29:48 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.28 $ +# NetHack 3.6 Makefile.src $NHDT-Date: 1524689428 2018/04/25 20:50:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.29 $ +# Copyright (c) 2011 by Robert Patrick Rankin +# NetHack may be freely redistributed. See license for details. # Copy this file to [.src]Makefile. and then edit it as needed. # The default configuration is for building with DEC C (aka Compaq C). diff --git a/sys/vms/Makefile.top b/sys/vms/Makefile.top index cfc793306..2bdb2c951 100644 --- a/sys/vms/Makefile.top +++ b/sys/vms/Makefile.top @@ -1,5 +1,7 @@ # NetHack Makefile (VMS) - top level for making & installing everything. -# NetHack 3.6 Makefile.top $NHDT-Date: 1432512790 2015/05/25 00:13:10 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ +# NetHack 3.6 Makefile.top $NHDT-Date: 1524689428 2018/04/25 20:50:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ +# Copyright (c) 2011 by Robert Patrick Rankin +# NetHack may be freely redistributed. See license for details. # Copy this file to Makefile.; edit the appropriate values for # GAMEDIR ("playground" location) and GAMEOWNER (UIC or identifier diff --git a/sys/vms/Makefile.utl b/sys/vms/Makefile.utl index c515205e3..a581e9e40 100644 --- a/sys/vms/Makefile.utl +++ b/sys/vms/Makefile.utl @@ -1,5 +1,7 @@ # NetHack Makefile (VMS) - for utility programs. -# NetHack 3.6 Makefile.utl $NHDT-Date: 1454712071 2016/02/05 22:41:11 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.14 $ +# NetHack 3.6 Makefile.utl $NHDT-Date: 1524689428 2018/04/25 20:50:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.15 $ +# Copyright (c) 2011 by Robert Patrick Rankin +# NetHack may be freely redistributed. See license for details. # Copy this file to [.util]Makefile. and then edit it as needed. # The default configuration is for building with DEC C (aka Compaq C). diff --git a/sys/vms/install.com b/sys/vms/install.com index ac2f4e1db..cb8ae3276 100755 --- a/sys/vms/install.com +++ b/sys/vms/install.com @@ -1,6 +1,9 @@ $ ! vms/install.com -- set up nethack 'playground' +$! $NHDT-Date: 1524689428 2018/04/25 20:50:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ +$! Copyright (c) 2016 by Robert Patrick Rankin +$! NetHack may be freely redistributed. See license for details. $ ! -$ ! $NHDT-Date: 1465133391 2016/06/05 13:29:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.9 $ +$ ! $NHDT-Date: 1524689428 2018/04/25 20:50:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ $ ! $ ! Use vmsbuild.com to create nethack.exe, makedefs, and lev_comp *first*. $ ! diff --git a/sys/vms/nethack.com b/sys/vms/nethack.com index 7afcf5d0b..6cae5b92f 100755 --- a/sys/vms/nethack.com +++ b/sys/vms/nethack.com @@ -1,7 +1,9 @@ $! NetHack.Com -- sample command procedure for invoking NetHack 9-JAN-1993 $ v = 'f$verify(0)' $! -$! $NHDT-Date: 1465133392 2016/06/05 13:29:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.4 $ +$! $NHDT-Date: 1524689428 2018/04/25 20:50:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $ +$! Copyright (c) 2016 by Robert Patrick Rankin +$! NetHack may be freely redistributed. See license for details. $! $! Possible command line arguments include $! "-uConan-B" !play a barbarian named Conan diff --git a/sys/vms/spec_lev.com b/sys/vms/spec_lev.com index f12e2f8d6..fb16f4914 100755 --- a/sys/vms/spec_lev.com +++ b/sys/vms/spec_lev.com @@ -1,6 +1,8 @@ $ ! sys/vms/spec_lev.com -- preprocess nethack's special level compiler code $ ! -$ ! $NHDT-Date: 1465133393 2016/06/05 13:29:53 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.4 $ +$ ! $NHDT-Date: 1524689429 2018/04/25 20:50:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $ +$! Copyright (c) 2016 by Robert Patrick Rankin +$! NetHack may be freely redistributed. See license for details. $ ! $ ! This operation needs to be performed prior to executing vmsbuild.com. $ ! Process the scanning and parsing code for NetHack's special level diff --git a/sys/vms/sysconf b/sys/vms/sysconf index 0d46cd4f6..21aa347e7 100644 --- a/sys/vms/sysconf +++ b/sys/vms/sysconf @@ -1,4 +1,6 @@ -# NetHack 3.6 sysconf $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# NetHack 3.6 sysconf $NHDT-Date: 1524689429 2018/04/25 20:50:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ +# Copyright (c) 2015 by Robert Patrick Rankin +# NetHack may be freely redistributed. See license for details. # # Sample sysconf file for VMS. # The sysconf file is only used if NetHack is compiled with SYSCF defined. diff --git a/sys/vms/vmsbuild.com b/sys/vms/vmsbuild.com index c49329dd8..2bc8176db 100755 --- a/sys/vms/vmsbuild.com +++ b/sys/vms/vmsbuild.com @@ -1,6 +1,8 @@ $ ! vms/vmsbuild.com -- compile and link NetHack 3.6.* [pr] $ version_number = "3.6.1" -$ ! $NHDT-Date: 1518661015 2018/02/15 02:16:55 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.16 $ +$ ! $NHDT-Date: 1524689429 2018/04/25 20:50:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.17 $ +# Copyright (c) 2018 by Robert Patrick Rankin +# NetHack may be freely redistributed. See license for details. $ ! $ ! usage: $ ! $ set default [.src] !or [-.-.src] if starting from [.sys.vms] diff --git a/sys/vms/vmsfiles.c b/sys/vms/vmsfiles.c index dfad46e23..89e6aff4a 100644 --- a/sys/vms/vmsfiles.c +++ b/sys/vms/vmsfiles.c @@ -1,5 +1,6 @@ /* NetHack 3.6 vmsfiles.c $NHDT-Date: 1449801740 2015/12/11 02:42:20 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2007. */ /* NetHack may be freely redistributed. See license for details. */ /* diff --git a/sys/vms/vmsmain.c b/sys/vms/vmsmain.c index 0189f1ced..75f321cb0 100644 --- a/sys/vms/vmsmain.c +++ b/sys/vms/vmsmain.c @@ -1,5 +1,6 @@ /* NetHack 3.6 vmsmain.c $NHDT-Date: 1449801742 2015/12/11 02:42:22 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.32 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ /* main.c - VMS NetHack */ diff --git a/sys/vms/vmsmisc.c b/sys/vms/vmsmisc.c index 02c7fe700..8cb266cc7 100644 --- a/sys/vms/vmsmisc.c +++ b/sys/vms/vmsmisc.c @@ -1,4 +1,5 @@ -/* NetHack 3.6 vmsmisc.c $NHDT-Date: 1432512789 2015/05/25 00:13:09 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $ */ +/* NetHack 3.6 vmsmisc.c $NHDT-Date: 1524689429 2018/04/25 20:50:29 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.11 $ */ +/* Copyright (c) 2011 by Robert Patrick Rankin */ /* NetHack may be freely redistributed. See license for details. */ #include "config.h" diff --git a/sys/vms/vmstty.c b/sys/vms/vmstty.c index 669c1cb39..44bd02711 100644 --- a/sys/vms/vmstty.c +++ b/sys/vms/vmstty.c @@ -1,5 +1,6 @@ /* NetHack 3.6 vmstty.c $NHDT-Date: 1449801743 2015/12/11 02:42:23 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.17 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ /* tty.c - (VMS) version */ diff --git a/sys/vms/vmsunix.c b/sys/vms/vmsunix.c index 6f57c99da..1b75a86b0 100644 --- a/sys/vms/vmsunix.c +++ b/sys/vms/vmsunix.c @@ -1,5 +1,6 @@ /* NetHack 3.6 vmsunix.c $NHDT-Date: 1449801743 2015/12/11 02:42:23 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.15 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2011. */ /* NetHack may be freely redistributed. See license for details. */ /* This file implements things from unixunix.c, plus related stuff */ diff --git a/sys/wince/defaults.nh b/sys/wince/defaults.nh index 1896d45e5..b3c068939 100644 --- a/sys/wince/defaults.nh +++ b/sys/wince/defaults.nh @@ -1,3 +1,7 @@ +# $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# Copyright (c) 2007 by Michael Allison +# NetHack may be freely redistributed. See license for details. +# # Sample config file for win32 NetHack # A '#' at the beginning of a line means the rest of the line is a comment. # diff --git a/sys/wince/mhcmd.c b/sys/wince/mhcmd.c index 812da4768..98730dbce 100644 --- a/sys/wince/mhcmd.c +++ b/sys/wince/mhcmd.c @@ -1,4 +1,5 @@ -/* NetHack 3.6 mhcmd.c $NHDT-Date: 1432512800 2015/05/25 00:13:20 $ $NHDT-Branch: master $:$NHDT-Revision: 1.14 $ */ +/* NetHack 3.6 mhcmd.c $NHDT-Date: 1524689383 2018/04/25 20:49:43 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.15 $ */ +/* Copyright (c) 2009 by Michael Allison */ /* NetHack may be freely redistributed. See license for details. */ #include "winMS.h" diff --git a/sys/wince/mhcmd.h b/sys/wince/mhcmd.h index feaf605ce..9a5fada66 100644 --- a/sys/wince/mhcmd.h +++ b/sys/wince/mhcmd.h @@ -1,3 +1,5 @@ +/* NetHack 3.6 mhcmd.h $NHDT-Date: 1524689383 2018/04/25 20:49:43 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.2 $ */ +/* Copyright (c) 2002 by Michael Allison */ /* NetHack may be freely redistributed. See license for details. */ #ifndef MSWINCMDWindow_h diff --git a/sys/wince/mhmenu.c b/sys/wince/mhmenu.c index 4637b3e11..4aa5f19f4 100644 --- a/sys/wince/mhmenu.c +++ b/sys/wince/mhmenu.c @@ -1,3 +1,5 @@ +/* NetHack 3.6 mhmenu.c $NHDT-Date: 1524689398 2018/04/25 20:49:58 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.28 $ */ +/* Copyright (c) 2009 by Michael Allison */ /* NetHack may be freely redistributed. See license for details. */ #include "winMS.h" diff --git a/sys/wince/newres.h b/sys/wince/newres.h index 420dfec2d..917fa39a5 100644 --- a/sys/wince/newres.h +++ b/sys/wince/newres.h @@ -1,3 +1,7 @@ +/* NetHack 3.6 newres.h $NHDT-Date: 1524689383 2018/04/25 20:49:43 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.3 $ */ +/* Copyright (c) 2003 by Michael Allison */ +/* NetHack may be freely redistributed. See license for details. */ + #ifndef __NEWRES_H__ #define __NEWRES_H__ diff --git a/sys/winnt/.gitattributes b/sys/winnt/.gitattributes index 88f970c96..a13efc66c 100644 --- a/sys/winnt/.gitattributes +++ b/sys/winnt/.gitattributes @@ -1,4 +1,7 @@ Install.nt NHSUBST Makefile.* NHSUBST +defaults.nh NHSUBST +sysconf NHSUBST *.rc NHSUBST *.bat NHSUBST +*.def NH_header=no diff --git a/sys/winnt/Install.nt b/sys/winnt/Install.nt index 51421fb8d..e3190df4c 100644 --- a/sys/winnt/Install.nt +++ b/sys/winnt/Install.nt @@ -71,7 +71,7 @@ Change to the appropriate directory (i.e. win\win32\vs2015 for VS2015 builds, win\win32\vs2017 for VS2017 builds) and run "build.bat". ----------------------------------- -Note about the WINDOWS SDK Version: +Note about the Windows SDK Version: ----------------------------------- The Visual Studio project files distributed for NetHack 3.6.1 are configured for the Windows SDK version 10.0.15063.0. At the time of writing, the Windows SDK version that diff --git a/sys/winnt/Makefile.gcc b/sys/winnt/Makefile.gcc index e28a3af97..5be03e2ed 100644 --- a/sys/winnt/Makefile.gcc +++ b/sys/winnt/Makefile.gcc @@ -1,4 +1,6 @@ -# NetHack 3.6 Makefile.gcc $NHDT-Date: 1434804544 2015/06/20 12:49:04 $ $NHDT-Branch: win32-x64-working $:$NHDT-Revision: 1.53 $ +# NetHack 3.6 Makefile.gcc $NHDT-Date: 1524689356 2018/04/25 20:49:16 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.54 $ +# Copyright (c) 2010 by Michael Allison +# NetHack may be freely redistributed. See license for details. # #============================================================================== # diff --git a/sys/winnt/defaults.nh b/sys/winnt/defaults.nh index 079ef0400..727086551 100644 --- a/sys/winnt/defaults.nh +++ b/sys/winnt/defaults.nh @@ -1,3 +1,7 @@ +# NetHack 3.6 defaults.nh $NHDT-Date: 1524689357 2018/04/25 20:49:17 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.32 $ +# Copyright (c) 2006 by Michael Allison +# NetHack may be freely redistributed. See license for details. + # Sample config file for win32 NetHack # A '#' at the beginning of a line means the rest of the line is a comment. # @@ -7,7 +11,7 @@ # To change the configuration, comment out the unwanted lines, and # uncomment the configuration you want. # -# $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# $NHDT-Date: 1524689357 2018/04/25 20:49:17 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.32 $ # *** OPTIONS *** # diff --git a/sys/winnt/stubs.c b/sys/winnt/stubs.c index cf88bd9a3..712164dc1 100644 --- a/sys/winnt/stubs.c +++ b/sys/winnt/stubs.c @@ -1,3 +1,7 @@ +/* NetHack 3.6 stubs.c $NHDT-Date: 1524689357 2018/04/25 20:49:17 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.3 $ */ +/* Copyright (c) 2015 by Michael Allison */ +/* NetHack may be freely redistributed. See license for details. */ + #include "hack.h" #ifdef GUISTUB diff --git a/sys/winnt/sysconf b/sys/winnt/sysconf index 7e4d9da0a..407aba29f 100644 --- a/sys/winnt/sysconf +++ b/sys/winnt/sysconf @@ -1,5 +1,7 @@ # -# NetHack 3.6 sysconf $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# NetHack 3.6 sysconf $NHDT-Date: 1524689357 2018/04/25 20:49:17 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.22 $ +# Copyright (c) 2015 by Michael Allison +# NetHack may be freely redistributed. See license for details. # # Sample sysconf file. # The sysconf file is only used if NetHack is compiled with SYSCF defined. diff --git a/util/makedefs.c b/util/makedefs.c index 1c8e5fcba..211589829 100644 --- a/util/makedefs.c +++ b/util/makedefs.c @@ -1,5 +1,6 @@ /* NetHack 3.6 makedefs.c $NHDT-Date: 1520022901 2018/03/02 20:35:01 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.121 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015. */ /* Copyright (c) M. Stephenson, 1990, 1991. */ /* Copyright (c) Dean Luick, 1990. */ /* NetHack may be freely redistributed. See license for details. */ diff --git a/util/mdgrep.pl b/util/mdgrep.pl index c23cb0adb..a9296b29a 100644 --- a/util/mdgrep.pl +++ b/util/mdgrep.pl @@ -1,5 +1,5 @@ #!perl -# NetHack 3.6 mdgrep.pl $NHDT-Date: 1423877528 2015/02/14 01:32:08 $ $NHDT-Branch$:$NHDT-Revision: 1.7 $ +# NetHack 3.6 mdgrep.pl $NHDT-Date: 1524684408 2018/04/25 19:26:48 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.16 $ # Copyright (c) Kenneth Lorber, Kensington, Maryland # NetHack may be freely redistributed. See license for details. @@ -62,10 +62,10 @@ $outfile = "mdgrep.h"; sub start_file { - ($rev) = ('$NHDT-Revision: 1.7 $') =~ m/: (.*) .$/; - my $date = '$NHDT-Date: 1423877529 2015/02/14 01:32:09 $'; - my $branch = '$NHDT-Branch$'; - my $revision = '$NHDT-Revision: 1.7 $'; + ($rev) = ('$NHDT-Revision: 1.16 $') =~ m/: (.*) .$/; + my $date = '$NHDT-Date: 1524684408 2018/04/25 19:26:48 $'; + my $branch = '$NHDT-Branch: NetHack-3.6.0 $'; + my $revision = '$NHDT-Revision: 1.16 $'; open(OUT, ">$outfile") || die "open $outfile: $!"; # NB: Date and Revision below will be modified when mdgrep.h is written to # git - this is correct (but it means you must commit changes to mdgrep.pl diff --git a/util/panic.c b/util/panic.c index f5a0837d0..36bd4596c 100644 --- a/util/panic.c +++ b/util/panic.c @@ -1,5 +1,6 @@ /* NetHack 3.6 panic.c $NHDT-Date: 1448210012 2015/11/22 16:33:32 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Robert Patrick Rankin, 2015. */ /* NetHack may be freely redistributed. See license for details. */ /* diff --git a/win/Qt/.gitattributes b/win/Qt/.gitattributes new file mode 100644 index 000000000..2d4096a92 --- /dev/null +++ b/win/Qt/.gitattributes @@ -0,0 +1,3 @@ +Install.Qt NHSUBST +qpe-nethack.control NH_header=no +knethack.lnk NH_header=no diff --git a/win/Qt/Install.Qt b/win/Qt/Install.Qt index b8a81a878..6a3de9c3e 100644 --- a/win/Qt/Install.Qt +++ b/win/Qt/Install.Qt @@ -1,6 +1,8 @@ Installing NetHack with a Qt or KDE interface --------------------------------------------- -$NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +$NHDT-Date: 1524689332 2018/04/25 20:48:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.11 $ +# Copyright (c) 2004 by Warwick Allison +# NetHack may be freely redistributed. See license for details. This document describes the installation of NetHack with a Qt interface on UNIX/X11 or Mac OS X. This code should also work with Qt/Windows, but diff --git a/win/Qt/qt_clust.cpp b/win/Qt/qt_clust.cpp index 193c52bae..c5063a6a3 100644 --- a/win/Qt/qt_clust.cpp +++ b/win/Qt/qt_clust.cpp @@ -1,4 +1,4 @@ -/* NetHack 3.6 qt_clust.cpp $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ */ +/* NetHack 3.6 qt_clust.cpp $NHDT-Date: 1524684507 2018/04/25 19:28:27 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.8 $ */ /* Copyright (c) Warwick Allison, 1999. */ /* NetHack may be freely redistributed. See license for details. */ #include "qt_clust.h" diff --git a/win/Qt/qt_win.cpp b/win/Qt/qt_win.cpp index 84ac6a82c..c809c48e5 100644 --- a/win/Qt/qt_win.cpp +++ b/win/Qt/qt_win.cpp @@ -1,4 +1,4 @@ -// NetHack 3.6 qt_win.cpp $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +// NetHack 3.6 qt_win.cpp $NHDT-Date: 1524684508 2018/04/25 19:28:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.77 $ // Copyright (c) Warwick Allison, 1999. // NetHack may be freely redistributed. See license for details. diff --git a/win/Qt/qttableview.cpp b/win/Qt/qttableview.cpp index 0386acd49..b53e8a415 100644 --- a/win/Qt/qttableview.cpp +++ b/win/Qt/qttableview.cpp @@ -1,5 +1,5 @@ /********************************************************************** -** $NHDT-Branch$:$NHDT-Revision$ $NHDT-Date$ +** $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.4 $ $NHDT-Date: 1524684508 2018/04/25 19:28:28 $ ** $Id: qttableview.cpp,v 1.2 2002/03/09 03:13:15 jwalz Exp $ ** ** Implementation of QtTableView class diff --git a/win/Qt/tileedit.cpp b/win/Qt/tileedit.cpp index 1259af3dc..cbde51867 100644 --- a/win/Qt/tileedit.cpp +++ b/win/Qt/tileedit.cpp @@ -1,4 +1,4 @@ -/* NetHack 3.6 tileedit.cpp $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ */ +/* NetHack 3.6 tileedit.cpp $NHDT-Date: 1524684508 2018/04/25 19:28:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.10 $ */ /* Copyright (c) Warwick Allison, 1999. */ /* NetHack may be freely redistributed. See license for details. */ /* diff --git a/win/X11/.gitattributes b/win/X11/.gitattributes index b1b09e81a..eabdbfd44 100644 --- a/win/X11/.gitattributes +++ b/win/X11/.gitattributes @@ -1,2 +1,6 @@ nh??icon NHSUBST *.ad NHSUBST +Install.X11 NHSUBST +nethack.rc NHSUBST +*.bdf NH_header=no +*.xbm NH_header=no diff --git a/win/X11/Install.X11 b/win/X11/Install.X11 index dff03f84b..a3fe45831 100644 --- a/win/X11/Install.X11 +++ b/win/X11/Install.X11 @@ -1,4 +1,6 @@ -$NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +$NHDT-Date: 1524689294 2018/04/25 20:48:14 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.11 $ +# Copyright (c) 2003 by David Cohrs +# NetHack may be freely redistributed. See license for details. This document describes the installation of NetHack with an X11 interface. diff --git a/win/X11/NetHack.ad b/win/X11/NetHack.ad index 25568da7b..f7ec10613 100644 --- a/win/X11/NetHack.ad +++ b/win/X11/NetHack.ad @@ -1,4 +1,6 @@ -! $NHDT-Date: 1457079198 2016/03/04 08:13:18 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.11 $ +! $NHDT-Date: 1524689294 2018/04/25 20:48:14 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.15 $ +! Copyright (c) 2017 by Pasi Kallinen +! NetHack may be freely redistributed. See license for details. #define NETHACK_FONT -*-fixed-medium-*-*-*-15-*-*-*-*-*-*-* #define NETHACK_CLR_FG grey diff --git a/win/X11/nethack.rc b/win/X11/nethack.rc index f4c1269bf..cc6a88277 100644 --- a/win/X11/nethack.rc +++ b/win/X11/nethack.rc @@ -1,6 +1,9 @@ # # Nethack configuration file. -# $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# $NHDT-Date: 1524689294 2018/04/25 20:48:14 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.7 $ +# Copyright (c) 2015 by Kenneth Lorber, Kensington, Maryland +# NetHack may be freely redistributed. See license for details. + # # Naming this file $(HOME)/.nethackrc (for UNIX) or setting the environment # variable NETHACKOPTIONS to point to its full path name elsewhere tells diff --git a/win/X11/tile2x11.c b/win/X11/tile2x11.c index cf2d1ffe3..750f12ae4 100644 --- a/win/X11/tile2x11.c +++ b/win/X11/tile2x11.c @@ -1,4 +1,6 @@ -/* $NHDT-Date: 1432512808 2015/05/25 00:13:28 $ $NHDT-Branch: master $:$NHDT-Revision: 1.6 $ */ +/* $NHDT-Date: 1524689304 2018/04/25 20:48:24 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.11 $ */ +/* Copyright (c) 2017 by Pasi Kallinen */ +/* NetHack may be freely redistributed. See license for details. */ /* * Convert the given input files into an output file that is expected diff --git a/win/macosx/.gitattributes b/win/macosx/.gitattributes new file mode 100644 index 000000000..a4bf76e47 --- /dev/null +++ b/win/macosx/.gitattributes @@ -0,0 +1 @@ +*.applescript NHSUBST diff --git a/win/macosx/NetHackGuidebook.applescript b/win/macosx/NetHackGuidebook.applescript index d6eae4db4..28879c010 100644 --- a/win/macosx/NetHackGuidebook.applescript +++ b/win/macosx/NetHackGuidebook.applescript @@ -1,5 +1,5 @@ #!/usr/bin/osascript -# NetHack 3.6.1 NetHackGuidebook.applescript $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# NetHack 3.6.1 NetHackGuidebook.applescript $NHDT-Date: 1524684596 2018/04/25 19:29:56 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.8 $ # Copyright (c) Kenneth Lorber, Kensington, Maryland, 2011 # NetHack may be freely redistributed. See license for details. diff --git a/win/macosx/NetHackRecover.applescript b/win/macosx/NetHackRecover.applescript index 31c518eb3..c1db10171 100644 --- a/win/macosx/NetHackRecover.applescript +++ b/win/macosx/NetHackRecover.applescript @@ -1,5 +1,5 @@ #!/usr/bin/osascript -# NetHack 3.6 NetHackRecover.applescript $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# NetHack 3.6 NetHackRecover.applescript $NHDT-Date: 1524684596 2018/04/25 19:29:56 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.9 $ # Copyright (c) Kenneth Lorber, Kensington, Maryland, 2009 # NetHack may be freely redistributed. See license for details. diff --git a/win/macosx/NetHackTerm.applescript b/win/macosx/NetHackTerm.applescript index 39c03bb66..f1d1eb122 100644 --- a/win/macosx/NetHackTerm.applescript +++ b/win/macosx/NetHackTerm.applescript @@ -1,5 +1,5 @@ #!/usr/bin/osascript -# NetHack 3.6.1 NetHackTerm.applescript $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# NetHack 3.6.1 NetHackTerm.applescript $NHDT-Date: 1524684597 2018/04/25 19:29:57 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.8 $ # Copyright (c) Kenneth Lorber, Kensington, Maryland, 2011 # NetHack may be freely redistributed. See license for details. diff --git a/win/macosx/recover.pl b/win/macosx/recover.pl index e14aafb14..bb66c8d89 100755 --- a/win/macosx/recover.pl +++ b/win/macosx/recover.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -# NetHack 3.6 recover.pl $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# NetHack 3.6 recover.pl $NHDT-Date: 1524684612 2018/04/25 19:30:12 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.12 $ # Copyright (c) Kenneth Lorber, Kensington, Maryland, 2009 # NetHack may be freely redistributed. See license for details. diff --git a/win/share/.gitattributes b/win/share/.gitattributes new file mode 100644 index 000000000..09f9406f6 --- /dev/null +++ b/win/share/.gitattributes @@ -0,0 +1 @@ +tile.doc NHSUBST diff --git a/win/share/renumtiles.pl b/win/share/renumtiles.pl index 1e7fa4687..766e721f1 100644 --- a/win/share/renumtiles.pl +++ b/win/share/renumtiles.pl @@ -1,6 +1,8 @@ #!/bin/perl # -# $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# $NHDT-Date: 1524689313 2018/04/25 20:48:33 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.5 $ +# Copyright (c) 2015 by Derek S. Ray +# NetHack may be freely redistributed. See license for details. # sub bail($); diff --git a/win/share/tile.doc b/win/share/tile.doc index 1817982a7..baa7bd266 100644 --- a/win/share/tile.doc +++ b/win/share/tile.doc @@ -1,4 +1,4 @@ -NetHack 3.6 tile.doc $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +NetHack 3.6 tile.doc $NHDT-Date: 1524684654 2018/04/25 19:30:54 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.7 $ Window ports can optionally make use of the tiles (pictures for NetHack symbols) found in this directory. They are distributed in a text format diff --git a/win/share/tile.h b/win/share/tile.h index 7c01fb067..0313ac07c 100644 --- a/win/share/tile.h +++ b/win/share/tile.h @@ -1,4 +1,7 @@ -/* NetHack 3.6 tile.h $NHDT-Date: 1466687973 2016/06/23 13:19:33 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.12 $ */ +/* NetHack 3.6 tile.h $NHDT-Date: 1524689272 2018/04/25 20:47:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.13 $ */ +/* Copyright (c) 2016 by Michael Allison */ +/* NetHack may be freely redistributed. See license for details. */ + typedef unsigned char pixval; typedef struct pixel_s { diff --git a/win/share/tilemap.c b/win/share/tilemap.c index a14d9203e..46b1056e2 100644 --- a/win/share/tilemap.c +++ b/win/share/tilemap.c @@ -1,4 +1,5 @@ -/* NetHack 3.6 tilemap.c $NHDT-Date: 1470537037 2016/08/07 02:30:37 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.32 $ */ +/* NetHack 3.6 tilemap.c $NHDT-Date: 1524689272 2018/04/25 20:47:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.33 $ */ +/* Copyright (c) 2016 by Michael Allison */ /* NetHack may be freely redistributed. See license for details. */ /* diff --git a/win/share/tiletext.c b/win/share/tiletext.c index f2ee7bf03..480698c01 100644 --- a/win/share/tiletext.c +++ b/win/share/tiletext.c @@ -1,4 +1,5 @@ -/* NetHack 3.6 tiletext.c $NHDT-Date: 1466687974 2016/06/23 13:19:34 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.14 $ */ +/* NetHack 3.6 tiletext.c $NHDT-Date: 1524689272 2018/04/25 20:47:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.16 $ */ +/* Copyright (c) 2016 by Pasi Kallinen */ /* NetHack may be freely redistributed. See license for details. */ #include "config.h" diff --git a/win/tty/getline.c b/win/tty/getline.c index f471d853f..eea05fd39 100644 --- a/win/tty/getline.c +++ b/win/tty/getline.c @@ -1,5 +1,6 @@ /* NetHack 3.6 getline.c $NHDT-Date: 1523619111 2018/04/13 11:31:51 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.35 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2006. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/win/tty/termcap.c b/win/tty/termcap.c index 586818f0d..31203811a 100644 --- a/win/tty/termcap.c +++ b/win/tty/termcap.c @@ -1,5 +1,6 @@ /* NetHack 3.6 termcap.c $NHDT-Date: 1456907853 2016/03/02 08:37:33 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.24 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Pasi Kallinen, 2018. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/win/tty/topl.c b/win/tty/topl.c index c4a778eef..8aed570e7 100644 --- a/win/tty/topl.c +++ b/win/tty/topl.c @@ -1,5 +1,6 @@ /* NetHack 3.6 topl.c $NHDT-Date: 1490908468 2017/03/30 21:14:28 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.36 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/*-Copyright (c) Michael Allison, 2009. */ /* NetHack may be freely redistributed. See license for details. */ #include "hack.h" diff --git a/win/win32/.gitattributes b/win/win32/.gitattributes new file mode 100644 index 000000000..19106e2bb --- /dev/null +++ b/win/win32/.gitattributes @@ -0,0 +1,10 @@ +*.mak NHSUBST +*.sln -text +*.vcxproj -text +*.def NH_header=no +*.sln NH_header=no +*.vcxproj NH_header=no +*.proj NH_header=no +*.props NH_header=no +resource.h NH_header=no +nhresource.h NH_header=no diff --git a/win/win32/dgnstuff.mak b/win/win32/dgnstuff.mak index 0965501fe..2339a8a5a 100644 --- a/win/win32/dgnstuff.mak +++ b/win/win32/dgnstuff.mak @@ -1,4 +1,6 @@ -# $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# $NHDT-Date: 1524689255 2018/04/25 20:47:35 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.12 $ +# Copyright (c) 2018 by Michael Allison +# NetHack may be freely redistributed. See license for details. # Set all of these or none of them. # diff --git a/win/win32/levstuff.mak b/win/win32/levstuff.mak index 2072c2cc0..0a38390d1 100644 --- a/win/win32/levstuff.mak +++ b/win/win32/levstuff.mak @@ -1,4 +1,6 @@ -# $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +# $NHDT-Date: 1524689255 2018/04/25 20:47:35 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.12 $ +# Copyright (c) 2018 by Michael Allison +# NetHack may be freely redistributed. See license for details. # Set all of these or none of them. # diff --git a/win/win32/mswproc.c b/win/win32/mswproc.c index 30b1f5b2b..a1af46ed2 100644 --- a/win/win32/mswproc.c +++ b/win/win32/mswproc.c @@ -1654,7 +1654,7 @@ mswin_getlin(const char *question, char *input) SendMessage(mswin_hwnd_from_winid(WIN_MESSAGE), WM_MSNH_COMMAND, (WPARAM) MSNH_MSG_CARET, (LPARAM) &createcaret); - mswin_clear_nhwindow(WIN_MESSAGE); + /* mswin_clear_nhwindow(WIN_MESSAGE); */ mswin_putstr_ex(WIN_MESSAGE, ATR_BOLD, question, 0); mswin_putstr_ex(WIN_MESSAGE, ATR_BOLD, " ", 1); #ifdef EDIT_GETLIN diff --git a/win/win32/tiles.mak b/win/win32/tiles.mak index 0d7f35ea7..2c87c48a9 100644 --- a/win/win32/tiles.mak +++ b/win/win32/tiles.mak @@ -1,4 +1,6 @@ -#$NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ +#$NHDT-Date: 1524689255 2018/04/25 20:47:35 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.4 $ +# Copyright (c) 2002 by Michael Allison +# NetHack may be freely redistributed. See license for details. default: all