]> git.mxchange.org Git - flightgear.git/commitdiff
...
authorcurt <curt>
Tue, 29 Sep 1998 01:59:45 +0000 (01:59 +0000)
committercurt <curt>
Tue, 29 Sep 1998 01:59:45 +0000 (01:59 +0000)
Makefile.extra
NEWS
README.running
Thanks
configure.in

index 339f01f33d8a8a9acfc16bd8debe5cf22d61ec0a..05e65230e53864b8760d1b3bf21a184cd40e8a96 100644 (file)
@@ -3,8 +3,43 @@
 # Use "make -f Makefile.extra <target>
 
 
-VERSION=0.41
-ROOT=fg-$(VERSION)
+VERSION=0.54
+FG_ROOT=$(HOME)/FlightGear
+
+# make the base distribution with textures, sounds and a bit of
+# scenery, and all the other associated files
+fg-base-tar:
+       (cd $(HOME); \
+       tar czvf fgfs-base-$(VERSION).tar.gz \
+       FlightGear/[A-R]* \
+       FlightGear/Scenery/w120n030/w111n033 \
+       FlightGear/Sounds \
+       FlightGear/Textures FlightGear/Thanks \
+       FlightGear/[m-r]* )
+
+fg-base-zip:
+       (cd $(HOME); \
+       zip -r fgfs-base-$(VERSION).zip \
+       FlightGear/[A-R]* \
+       FlightGear/Scenery/w120n030/w111n033 \
+       FlightGear/Sounds \
+       FlightGear/Textures FlightGear/Thanks \
+       FlightGear/[m-r]* )
+
+# make the win32-bin distribution
+fg-win32-bin:
+       (cd $(HOME); \
+       zip -r fgfs-win32-bin-$(VERSION).zip FlightGear/bin )
+
+# make the win32-libs distribution
+win32-libs:
+       ( zip -r win32-libs-$(VERSION).zip Win32/Makefile \
+       Win32/README.glut Win32/cygwinb19.dll Win32/def \
+       Win32/*.exp Win32/gen-def-from-errors.pl \
+       Win32/glut.dll Win32/glut32.dll Win32/impdef.cpp \
+       Win32/impdef.exe Win32/include \
+       Win32/install.exe \
+       Win32/lib Win32/zlib.lib )
 
 # clean up dependencies
 clean-deps:
@@ -14,6 +49,7 @@ clean-deps:
        Lib/*/*/.deps Simulator/*/*/.deps Tools/*/*/.deps \
        Tests/.deps
 
+# clean up after libtool
 clean-libs:
        rm -rf .libs Lib/.libs Simulator/.libs Tools/.libs \
                Lib/*/.libs Simulator/*/.libs Tools/*/.libs \
diff --git a/NEWS b/NEWS
index c1b61a76d151f309dc4e26f2e1d97edcb7da1b93..e5b21a8143576a6eacd2c6b96fe075f340cc81b4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,5 @@
 New in 0.54
+* Implimented audio envelopes so that pitch of engine changes with throttle
 * Textured moon, and rewritten/restructured Astro code.
 * More optimizations and code cleanups.  (Norman Vine, Bernie Bright, Charlie
   Hotchkiss.)
index 3038df3fc1d263d6244823c1c7ad63a98c969f72..bfae12f171af30c69fa896fa2260becd8b244393 100644 (file)
@@ -40,8 +40,18 @@ Num Lock Inactive
     6 = right
     9 = right/forward
 
+Brakes
+------
+    Press the "b" key to toggle
+
 Autopilot
 ---------
     Shift + A               Enable autopilot (defaults to heading of 000)
     Shift + S               Disable autopilot
     Shift + D               Lock autopilot heading to current heading
+
+Other
+-----
+    F8 = Toggle fog modes
+    F9 = Toggle textures on/off
+    F10 = Toggle menu
diff --git a/Thanks b/Thanks
index f49e7fde77e2016be95a21e46459a5c4c68fab7d..c2630e7dc770085b65ac9de2b0ca834e9a45986b 100644 (file)
--- a/Thanks
+++ b/Thanks
@@ -36,6 +36,10 @@ Paul Bleisch <pbleisch@acm.org>
   system.
 
 
+Jim Brennan <jjb@foothill.net>
+  Provided a big chunk of online space to store USA scenery for Flight Gear.
+
+
 Bernie Bright <bbright@c031.aone.net.au>
   Many C++ style, usage, and implimentation improvements.
 
@@ -141,6 +145,10 @@ Petter Reinholdtsen <pere@games.no>
   environments since the don't use the Unix make system.
 
 
+William Riley <riley@technologist.com>
+  Contributed code to add "brakes".
+
+
 Paul Schlyter <pausch@saaf.se>.  Mr. Schlyter provided Durk Talsma with 
   all the information he needed to write the astro code.
 
index 8a9cf98f418aa9b39e2cea6e1141b62b41711c00..304eb6c75dc4c8d714251ebd68877753198ec334 100644 (file)
@@ -6,7 +6,7 @@ dnl
 AC_INIT(Simulator/Aircraft/aircraft.c)
 
 dnl Initialize the automake stuff
-AM_INIT_AUTOMAKE(FlightGear, 0.54)
+AM_INIT_AUTOMAKE(FlightGear, 0.55)
 
 dnl Checks for programs.
 AC_PROG_MAKE_SET