Misc updates.
This commit is contained in:
parent
c2c4795558
commit
f4240579c5
5 changed files with 15 additions and 5 deletions
5
NEWS
5
NEWS
|
@ -1,4 +1,9 @@
|
|||
New in 0.48
|
||||
* Fixed polygon winding problem in scenery generation, so all
|
||||
tri-strips are would counter clockwise (opengl default).
|
||||
|
||||
New in 0.47
|
||||
* Course (per tile) view frustum culling.
|
||||
* Added a command line option to specify --fg-root which will override
|
||||
$FG_ROOT
|
||||
* Hard coded default locations for FG_ROOT for situations when nothing
|
||||
|
|
|
@ -42,5 +42,6 @@ Num Lock Inactive
|
|||
|
||||
Autopilot
|
||||
---------
|
||||
Shift + A Enable Autopilot
|
||||
Shift + S Disable Autopilot
|
||||
Shift + A Enable autopilot (defaults to heading of 000)
|
||||
Shift + S Disable autopilot
|
||||
Shift + D Lock autopilot heading to current heading
|
||||
|
|
4
Thanks
4
Thanks
|
@ -78,6 +78,10 @@ Eric Mitchell <mitchell@mars.ark.com>
|
|||
Contributed some topnotch scenery textures.
|
||||
|
||||
|
||||
Anders Morken <amrken@online.no>
|
||||
Maintains the European mirror of the FG web pages.
|
||||
|
||||
|
||||
Jonathan R Shewchuk <Jonathan_R_Shewchuk@ux4.sp.cs.cmu.edu>
|
||||
Author of the Triangle program. Triangle is used to calculate the
|
||||
Delauney triangulation of our irregular terrain.
|
||||
|
|
4
configure
vendored
4
configure
vendored
|
@ -703,7 +703,7 @@ fi
|
|||
|
||||
PACKAGE=FlightGear
|
||||
|
||||
VERSION=0.47
|
||||
VERSION=0.48
|
||||
|
||||
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
|
||||
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
|
||||
|
@ -1316,7 +1316,7 @@ echo "configure:1316: checking for ld used by GCC" >&5
|
|||
ac_prog=`($CC -print-prog-name=ld) 2>&5`
|
||||
case "$ac_prog" in
|
||||
# Accept absolute paths.
|
||||
/* | [A-Za-z]:\\*)
|
||||
/* | A-Za-z:\\*)
|
||||
test -z "$LD" && LD="$ac_prog"
|
||||
;;
|
||||
"")
|
||||
|
|
|
@ -5,7 +5,7 @@ dnl
|
|||
AC_INIT(Simulator/Aircraft/aircraft.c)
|
||||
|
||||
dnl Initialize the automake stuff
|
||||
AM_INIT_AUTOMAKE(FlightGear, 0.47)
|
||||
AM_INIT_AUTOMAKE(FlightGear, 0.48)
|
||||
|
||||
dnl Checks for programs.
|
||||
|
||||
|
|
Loading…
Reference in a new issue