diff --git a/NEWS b/NEWS index 5ad724495..a883af71f 100644 --- a/NEWS +++ b/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 diff --git a/README.running b/README.running index 6f55518c0..0b10c2cac 100644 --- a/README.running +++ b/README.running @@ -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 diff --git a/Thanks b/Thanks index f2db02a4b..22b47d707 100644 --- a/Thanks +++ b/Thanks @@ -78,6 +78,10 @@ Eric Mitchell Contributed some topnotch scenery textures. +Anders Morken + Maintains the European mirror of the FG web pages. + + Jonathan R Shewchuk Author of the Triangle program. Triangle is used to calculate the Delauney triangulation of our irregular terrain. diff --git a/configure b/configure index ac59779e7..3706a4a3e 100755 --- a/configure +++ b/configure @@ -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" ;; "") diff --git a/configure.in b/configure.in index 543b1dd11..f908148b9 100644 --- a/configure.in +++ b/configure.in @@ -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.