r9046 - packages/trunk/glest/debian

Siegfried-Angel Gevatter Pujals rainct-guest at alioth.debian.org
Sat Mar 7 19:12:19 UTC 2009


Author: rainct-guest
Date: 2009-03-07 19:12:19 +0000 (Sat, 07 Mar 2009)
New Revision: 9046

Modified:
   packages/trunk/glest/debian/changelog
   packages/trunk/glest/debian/glest.6
   packages/trunk/glest/debian/glest.sh
Log:
   - The default resultion is now 640x480 (Closes: #450770).
   - Replace the configuration file (glest.ini) with a new one if it is too
     old (setting are not preserved).
   - Create directory ~/.glest/screens for the screenshots (Closes: #505919).
* debian/glest.6:
   - Update the manpage for Glest 3 (Closes: #505917).

Modified: packages/trunk/glest/debian/changelog
===================================================================
--- packages/trunk/glest/debian/changelog	2009-03-07 14:45:06 UTC (rev 9045)
+++ packages/trunk/glest/debian/changelog	2009-03-07 19:12:19 UTC (rev 9046)
@@ -3,6 +3,7 @@
   [ Siegfried-Angel Gevatter Pujals ]
   * New upstream version.
      - Repackage the tarball from .zip to .tar.gz.
+     - The default resultion is now 640x480 (Closes: #450770).
   * debian/control:
      - Change my entry in the Uploaders field.
      - Add a Build-Depends on liblua5.1-dev, autoconf and automake.
@@ -32,6 +33,11 @@
        just "<langname>". Also, if the selected language isn't available
        anymore change it back to "english", in order to avoid the game refusing
        to start.
+     - Replace the configuration file (glest.ini) with a new one if it is too
+       old (setting are not preserved).
+     - Create directory ~/.glest/screens for the screenshots (Closes: #505919).
+  * debian/glest.6:
+     - Update the manpage for Glest 3 (Closes: #505917).
 
   [ Alexander Reichle-Schmehl ]
   * Adopt debian/control to my new name

Modified: packages/trunk/glest/debian/glest.6
===================================================================
--- packages/trunk/glest/debian/glest.6	2009-03-07 14:45:06 UTC (rev 9045)
+++ packages/trunk/glest/debian/glest.6	2009-03-07 19:12:19 UTC (rev 9046)
@@ -4,9 +4,6 @@
 glest \- A free 3d real-time customizable strategy game.
 .SH SYNOPSIS
 .B glest
-.br
-.PP
-.B It is recommented to perform Config -> Auto Config before starting to play.
 .SH DESCRIPTION
 This manual page documents briefly the
 .B glest
@@ -17,7 +14,7 @@
 .TP 
 .B Camera
 .br
-m => toggle camera mode (game mode and free mode)
+f => toggle camera mode (game mode and free mode)
 .br
 w => move camera up (only on free camera more)
 .br
@@ -29,7 +26,7 @@
 .br
 up arrow or mouse on top => move camera forward
 .br
-down arrow or mouse on bottom => move camera backward
+down arrow or mouse on bottom => move camera backwards
 .br
 left arrow or mouse on left => move camera left
 .br
@@ -56,6 +53,22 @@
 number => recall group
 .br
 control + number => assign group
+.br
+a => activate attack command for selection
+.br
+m => activate move command for selection
+.br
+s => issue stop command to selection
+.br
+i => select next idle harvester
+.br
+b => select next building
+.br
+d => select next damaged unit
+.br
+t => select next storage unit
+.br
+r => select next producer unit
 .TP
 .B Other Keys
 .br
@@ -65,9 +78,10 @@
 .br
 p => pause game
 .br
-t => save screen to TGA file
+e => save screen to TGA file
+.br
+alt + enter => toggle fullscreen/windowed
 
-
 .SH CONFIGURATION
 .TP
 .B Glest can be configured in three ways:
@@ -121,7 +135,7 @@
 
 
 .SH AUTHOR
-glest was written by Martino Figueroa et al (see readme.txt).
+Glest was written by Martino Figueroa et al (see readme.txt).
 .PP
 This manual page was written by Giuseppe Borzi <gborzi at ieee.org>,
 for the Debian project (but may be used by others).

Modified: packages/trunk/glest/debian/glest.sh
===================================================================
--- packages/trunk/glest/debian/glest.sh	2009-03-07 14:45:06 UTC (rev 9045)
+++ packages/trunk/glest/debian/glest.sh	2009-03-07 19:12:19 UTC (rev 9046)
@@ -9,6 +9,11 @@
     language=$(cat glest.ini | grep Lang | cut -d'=' -f2)
     [ -f /usr/share/games/glest/data/lang/${language}.lng ] || \
         sed -i "s/${language}/english/" glest.ini
+    # If the configuration file is too old, replace it
+    grep AutoTest glest.ini >/dev/null 2>&1
+    [ $? -eq 0 ] || \
+        mv glest.ini glest.ini.bck
+        cp /usr/lib/glest/glest.ini .
 else
     cp /usr/lib/glest/glest.ini .
 fi
@@ -18,6 +23,7 @@
       [ -h $i ] || ln -s $MAINDIR/$i .
 done
 [ -d maps ] || mkdir maps
+[ -d screens ] || mkdir screens
 cd maps
 for i in $MAINDIR/maps/*; do
       [ -h `basename $i` ] || ln -s $i .




More information about the Pkg-games-commits mailing list