Vanilla Development Mailing List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS update: Vanilla



Date:	Thursday December 30, 1999 @ 0:39
Author:	cameron

Update of /home/netrek/cvsroot/Vanilla
In directory swashbuckler.fortress.real-time.com:/var/tmp/cvs-serv7254

Modified Files:
	ChangeLog PROJECTS config.h.in patchlevel.h 
Log Message:
Mass changes (see ChangeLog) prior to 2.9pl4 release.


****************************************

Index: Vanilla/ChangeLog
diff -u Vanilla/ChangeLog:1.58 Vanilla/ChangeLog:1.59
--- Vanilla/ChangeLog:1.58	Wed Dec 29 18:14:49 1999
+++ Vanilla/ChangeLog	Thu Dec 30 00:39:56 1999
@@ -1,15 +1,34 @@
+Thu Dec 30 17:11:40 1999  James Cameron  <quozl@us.netrek.org>
+
+	* rpm/netrek.crontab: fix syntax error that generated hourly mail
+	to root on system that package was installed on.
+
+Thu Dec 30 14:49:55 1999  James Cameron  <quozl@us.netrek.org>
+
+	* ntserv/defs.h: add N_PORTS and N_NETREKDPID for netrekd.
+
+	* newstartd/newstartd.c: further edits to messages for name change
+	from newstartd to netrekd, add code to prevent duplicate starts.
+
 Wed Dec 29 16:15:01 1999  Carlos Y. Villalpando  <unbelver@us.netrek.org>
 
 	* ntserv/daemonII.c (udsurrend): Bump non-T race observers to the
 	team selection window.
+	
 	* ntserv/getentry.c (tournamentMask): Force observers to choose a
 	T-mode race, if any.
 	
+Tue Nov 16 21:33:31 1999  James Cameron  <quozl@us.netrek.org>
+
+	* ntserv/daemonII.c (killerstats): [VANILLA-LIST:2711] do not credit
+	chung (plasma self or team member against wall) army kills.
+	Patch reverted to a #define due to non-universal acceptance.
+
 Mon Nov 22 15:54:12 1999  Carlos Y. Villalpando  <unbelver@us.netrek.org>
 
-        * ntserv/data.c: added variables for all features types
-        * ntserv/data.h: added declarations of all feature types
-        * ntserv/feature.h: filled in null entries for feature variables
+	* ntserv/data.c: added variables for all features types
+	* ntserv/data.h: added declarations of all feature types
+	* ntserv/feature.h: filled in null entries for feature variables
 
 Mon Nov 22 14:23:30 1999  Carlos Y. Villalpando  <unbelver@us.netrek.org>
 
@@ -31,11 +50,6 @@
 	* robots/inl.c (obliterate): [VANILLA-LIST:2710] avoid depositing
 	observer's armies on home planet.
 
-Mon Nov  1 21:24:46 1999  James Cameron  <quozl@us.netrek.org>
-
-	* ntserv/daemonII.c (killerstats): [VANILLA-LIST:2711] do not credit
-	chung (plasma self or team member against wall) army kills.
-
 Fri Oct  1 16:38:06 1999  James Cameron  <quozl@us.netrek.org>
 
 	* ntserv/daemonII.c (beam): reference to me->p_ship.s_type instead of
@@ -759,4 +773,4 @@
  	update_sys_defaults in updateMessages to a more appropriate
  	location - updateClient in socket.c.
 	
-	$Id: ChangeLog,v 1.58 1999/12/30 00:14:49 unbelver Exp $
+	$Id: ChangeLog,v 1.59 1999/12/30 06:39:56 cameron Exp $
Index: Vanilla/PROJECTS
diff -u Vanilla/PROJECTS:1.64 Vanilla/PROJECTS:1.65
--- Vanilla/PROJECTS:1.64	Mon Nov 15 19:19:09 1999
+++ Vanilla/PROJECTS	Thu Dec 30 00:39:56 1999
@@ -1,6 +1,6 @@
 PROJECTS ... list of things to do or fix, and hints for developers.
 
-#	$Id: PROJECTS,v 1.64 1999/11/16 01:19:09 unbelver Exp $	
+#	$Id: PROJECTS,v 1.65 1999/12/30 06:39:56 cameron Exp $	
 
 Small things
 
@@ -148,11 +148,11 @@
 	cd Vanilla
 
 	# set variables to ease the rest of this ...
-	set VS=2.9pl3
-	set VL=v_2_9_3
+	set VS=2.9pl4
+	set VL=v_2_9_4
 
 	# make sure you have committed all changes
-	cvs diff -u > tmp.tmp
+	cvs -z9 diff -u > tmp.tmp
 	# review uncommitted changes
 	more tmp.tmp
 	# commit changes
@@ -166,10 +166,10 @@
 	cd ..
 	cvs -z9 export -d Vanilla-$VS -r $VL Vanilla
 	tar cvf Vanilla-$VS.tar Vanilla-$VS
-	bzip2 -9v Vanilla-$VS.tar
+	gzip -9v Vanilla-$VS.tar
 
 	# record md5sum of kit for publishing
-	md5sum Vanilla-$VS.tar.bz2 > Vanilla-$VS.tar.bz2.md5sum
+	md5sum Vanilla-$VS.tar.gz > Vanilla-$VS.tar.gz.md5sum
 
 	# test build kit
 	cd Vanilla-$VS
@@ -188,7 +188,7 @@
 	rm -rf /tmp/$VS
 	rm -rf Vanilla-$VS
 
-	# send .tar.bz2 to ftp sites
+	# send .tar.gz to ftp sites
 	ftp://bigbang.astro.indiana.edu/incoming/
 	ftp://ftp.netrek.org/ somewhere?
 	ftp://ftp.real-time.com/
Index: Vanilla/config.h.in
diff -u Vanilla/config.h.in:1.17 Vanilla/config.h.in:1.18
--- Vanilla/config.h.in:1.17	Fri Jul 23 17:09:11 1999
+++ Vanilla/config.h.in	Thu Dec 30 00:39:56 1999
@@ -430,6 +430,15 @@
 				*/
 #define UDP_PORTSWAP
 
+				/* NO_CHUNG_CREDIT - Avoid crediting a player
+				for armies killed by their own death
+				due to a plasma owned by their team.  Not a
+				particularly common misuse but a few
+				people asked for this, apparently just
+				because of one player.
+				*/
+#undef NO_CHUNG_CREDIT
+
 #endif		/* SERVER */
 
 
Index: Vanilla/patchlevel.h
diff -u Vanilla/patchlevel.h:1.6 Vanilla/patchlevel.h:1.7
--- Vanilla/patchlevel.h:1.6	Thu Mar  4 19:44:24 1999
+++ Vanilla/patchlevel.h	Thu Dec 30 00:39:56 1999
@@ -12,7 +12,7 @@
  *  (a) reset this to zero before each major release, and;
  *  (b) increment this number before each patch release.
  */
-#define PATCHLEVEL 3
+#define PATCHLEVEL 4
 #if !defined(NULL)
 #define NULL 0
 #endif