Update of /cvsroot/netrek/client/netrekxp/resources/docs
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv23891/resources/docs

Modified Files:
	changes.txt netrekrc netrekrc_options.txt 
Log Message:
New option autoRotate to make it so teams are always on left hand side of galaxy.  Upon
entering game, a new function, rotateTeams(), is called if autoRotate is set.  It aligns the 
teams so they are on the left side of map, then calls a new function, rotateGalaxy(), to perform
the galactic rotation.  This function is placed in rotate.c and is the code formerly in option.c
to perform galaxy rotations via the options menu (this method still works).
Fix so geno bitmap doesn't get overwritten by MOTD if window is minimized/moved.

Index: netrekrc
===================================================================
RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/netrekrc,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- netrekrc	21 Feb 2007 11:43:38 -0000	1.21
+++ netrekrc	21 Feb 2007 15:17:03 -0000	1.22
@@ -29,6 +29,9 @@
 # Autoquit timer (default 60)
 autoQuit: 60
 
+# Automatically rotate galaxy so teams are on left side of map
+autoRotate: off
+
 # Base UDP local port
 baseUdpLocalPort: 0
 

Index: netrekrc_options.txt
===================================================================
RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/netrekrc_options.txt,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- netrekrc_options.txt	21 Feb 2007 11:43:38 -0000	1.23
+++ netrekrc_options.txt	21 Feb 2007 15:17:04 -0000	1.24
@@ -9,6 +9,7 @@
 
 allowWheelActions:        (on/off) allow mouse wheel to work in non-scrolling windows
 autoQuit:                 (int) autoquit time after death
+autoRotate:               (on/off) automatically rotate galaxy so teams are on left side of map
 b1keymap:                 (string) keymap for mouse button 1 (mouseAsShift=on)
 b2keymap:                 (string) keymap for mouse button 2 (mouseAsShift=on)
 b3keymap:                 (string) keymap for mouse button 3 (mouseAsShift=on)

Index: changes.txt
===================================================================
RCS file: /cvsroot/netrek/client/netrekxp/resources/docs/changes.txt,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -d -r1.105 -r1.106
--- changes.txt	21 Feb 2007 11:43:38 -0000	1.105
+++ changes.txt	21 Feb 2007 15:17:03 -0000	1.106
@@ -1,4 +1,6 @@
 Netrek XP 2006, Version 1.2: (Released Feb-2007)
+- added "autoRotate: on/(off)" to automatically rotate the galaxy when you enter so that
+  your team and largest other team are on the left hand side of the galaxy, if possible.
 - added "playerListBlankZeroKills: (on)/off" to choose whether or not to display 0.00 kills
   in the player list.
 - fixed cloak/decloak cycling so that it animates properly at 10 updates/second.