...
This commit is contained in:
parent
439bd57141
commit
ebe2214e6c
5 changed files with 58 additions and 3 deletions
|
@ -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 \
|
||||
|
|
1
NEWS
1
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.)
|
||||
|
|
|
@ -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
|
||||
|
|
8
Thanks
8
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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue