New in 0.47
0.46 -> 0.47
This commit is contained in:
parent
727cf54e9b
commit
c2c4795558
3 changed files with 17 additions and 2 deletions
15
NEWS
15
NEWS
|
@ -1,3 +1,18 @@
|
||||||
|
New in 0.47
|
||||||
|
* 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
|
||||||
|
is specified. Unix = /usr/local/lib/FlightGear Win32 = \FlightGear
|
||||||
|
* Restructured the command line processing code so that it can process
|
||||||
|
these sames comands (one per line) out of a config file.
|
||||||
|
* Added a command line option to specify field of view. This is
|
||||||
|
adjustable at run time using "X / x". Supporting code contributed
|
||||||
|
by Norman Vine.
|
||||||
|
|
||||||
|
New in 0.46:
|
||||||
|
* Complete C++ re-write of the HUD section.
|
||||||
|
* Miscellaneous bug fixes and tweaks.
|
||||||
|
|
||||||
New in 0.45:
|
New in 0.45:
|
||||||
* Added an option to enable/disable wireframe rendering.
|
* Added an option to enable/disable wireframe rendering.
|
||||||
* Added an option to enable/disable fog/haze.
|
* Added an option to enable/disable fog/haze.
|
||||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -703,7 +703,7 @@ fi
|
||||||
|
|
||||||
PACKAGE=FlightGear
|
PACKAGE=FlightGear
|
||||||
|
|
||||||
VERSION=0.46
|
VERSION=0.47
|
||||||
|
|
||||||
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
|
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; }
|
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
|
||||||
|
|
|
@ -5,7 +5,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.46)
|
AM_INIT_AUTOMAKE(FlightGear, 0.47)
|
||||||
|
|
||||||
dnl Checks for programs.
|
dnl Checks for programs.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue