1
0
Fork 0
This commit is contained in:
curt 1998-09-29 01:59:45 +00:00
parent 439bd57141
commit ebe2214e6c
5 changed files with 58 additions and 3 deletions

View file

@ -3,8 +3,43 @@
# Use "make -f Makefile.extra <target> # Use "make -f Makefile.extra <target>
VERSION=0.41 VERSION=0.54
ROOT=fg-$(VERSION) 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 up dependencies
clean-deps: clean-deps:
@ -14,6 +49,7 @@ clean-deps:
Lib/*/*/.deps Simulator/*/*/.deps Tools/*/*/.deps \ Lib/*/*/.deps Simulator/*/*/.deps Tools/*/*/.deps \
Tests/.deps Tests/.deps
# clean up after libtool
clean-libs: clean-libs:
rm -rf .libs Lib/.libs Simulator/.libs Tools/.libs \ rm -rf .libs Lib/.libs Simulator/.libs Tools/.libs \
Lib/*/.libs Simulator/*/.libs Tools/*/.libs \ Lib/*/.libs Simulator/*/.libs Tools/*/.libs \

1
NEWS
View file

@ -1,4 +1,5 @@
New in 0.54 New in 0.54
* Implimented audio envelopes so that pitch of engine changes with throttle
* Textured moon, and rewritten/restructured Astro code. * Textured moon, and rewritten/restructured Astro code.
* More optimizations and code cleanups. (Norman Vine, Bernie Bright, Charlie * More optimizations and code cleanups. (Norman Vine, Bernie Bright, Charlie
Hotchkiss.) Hotchkiss.)

View file

@ -40,8 +40,18 @@ Num Lock Inactive
6 = right 6 = right
9 = right/forward 9 = right/forward
Brakes
------
Press the "b" key to toggle
Autopilot Autopilot
--------- ---------
Shift + A Enable autopilot (defaults to heading of 000) Shift + A Enable autopilot (defaults to heading of 000)
Shift + S Disable autopilot Shift + S Disable autopilot
Shift + D Lock autopilot heading to current heading Shift + D Lock autopilot heading to current heading
Other
-----
F8 = Toggle fog modes
F9 = Toggle textures on/off
F10 = Toggle menu

8
Thanks
View file

@ -36,6 +36,10 @@ Paul Bleisch <pbleisch@acm.org>
system. 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> Bernie Bright <bbright@c031.aone.net.au>
Many C++ style, usage, and implimentation improvements. 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. 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 Paul Schlyter <pausch@saaf.se>. Mr. Schlyter provided Durk Talsma with
all the information he needed to write the astro code. all the information he needed to write the astro code.

View file

@ -6,7 +6,7 @@ dnl
AC_INIT(Simulator/Aircraft/aircraft.c) AC_INIT(Simulator/Aircraft/aircraft.c)
dnl Initialize the automake stuff dnl Initialize the automake stuff
AM_INIT_AUTOMAKE(FlightGear, 0.54) AM_INIT_AUTOMAKE(FlightGear, 0.55)
dnl Checks for programs. dnl Checks for programs.
AC_PROG_MAKE_SET AC_PROG_MAKE_SET