Some pre-release updates.

This commit is contained in:
curt 2005-11-05 19:30:52 +00:00
parent 96fb7a45f7
commit a1d1b4e49f
5 changed files with 158 additions and 920 deletions

View File

@ -22,7 +22,7 @@ PROJECT_NAME = SimGear
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = 0.3.8
PROJECT_NUMBER = 0.3.9
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.

View File

@ -10,7 +10,7 @@ EXTRA_DIST = \
SUBDIRS = src-libs simgear
dist-hook:
(cd $(top_srcdir); $(HOME)/Projects/FlightGear-0.9/admin/am2dsp.pl)
(cd $(top_srcdir); $(HOME)/Projects/FlightGear/admin/am2dsp.pl)
#
# Rule to build RPM distribution package

26
NEWS
View File

@ -1,3 +1,29 @@
New in 0.3.9-pre1
* November 5, 2005
* Add support for OpenAL 1.1 (with a seperate alut library.)
* Add support for volumetric shadows. Aircraft can cast shadows on themselves
as well as onto the ground (by Harold Johnson.)
* New 3d volumetric clouds by Harold Johnson (along with several rounds of
followup fixes and improvements.)
* Remove Mark Harris's old 3d clouds because they were never properly
integrated. And we now have new 3d clouds.
* Add support for seasonal textures (with a set of winter textures added
to FlightGear.)
* Create a metar abstraction layer with support for most of the metar codes.
* Updated Nasal scripting system. Adds several new syntax convenience
features, fixes parser bugs, fixes several internal bugs.
* Our 3d cockpit jitter problem is fixed (woohoo!)
* Add code to support rendering to a texture.
* Various low model level animation fixes and additions ... color,
transparancy, 'chrome' effects, randomized spin, etc.
* Create our own portable stdint.h implimentation.
* Fixed several memory leaks.
* RemoveChildren() fixes in the property system.
* Fix many cases of 'const'.
* Fixes for cygwin, solaris/sun, Mac OS X, MSVC, gcc-3.4.x.
New in 0.3.8
* January 18, 2005

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ dnl Require at least automake 2.52
AC_PREREQ(2.52)
dnl Initialize the automake stuff
AM_INIT_AUTOMAKE(SimGear, 0.3.8)
AM_INIT_AUTOMAKE(SimGear, 0.3.9-pre1)
dnl Specify KAI C++ compiler and flags.
dnl Borrowed with slight modification from blitz distribution.