]> git.mxchange.org Git - flightgear.git/blob - NEWS
Moved files from Simulator/Scenery/ to Simulator/Object/
[flightgear.git] / NEWS
1 New in 0.53
2 * Some initial "GameGLUT" support contributed by Gary R. Van Sickle
3   (tiberius@braemarinc.com)
4 * Tracked down and eliminated some memory access type bugs that were
5   causing segfaults on some platforms, with some compilers using various
6   optimization flags.
7 * Assorted code optimizations submitted by Norman Vine.
8
9 New in 0.52
10 * Stars added in 8 stages as sky gets darker for a smoother more realistic
11   transition.
12 * rewrote star loader to significantly improve load times.
13 * Tweaked sky brightness and dawn/dusk colors.
14 * Fixed a small problem with moon rendering.
15 * Fog color tries to track the sky color at the center of view in sunrise
16   and sunset situations.
17 * Optimizations from Norman Vine
18 * Code fixes and tweaks from Charlie Hotchkiss.
19 * Added an --enable/disable-sound option.
20 * Added a pause key "p"
21 * Added command line options to specify initial position and orientation.
22 * Added command line option to start in paused or unpaused state.
23
24 New in 0.51
25 * Translucent menus
26 * Various HUD intensities so you can find something that is readable for the
27   current conditions and lighting.
28 * Tie visibility to far clip plane & view frustum culling so reducting
29   visibility can increase frame rates by increasing what is culled.
30 * Fixed stupid bug with misplaced initial position.
31 * Hopefully fixed a bug when parsing system.fgfsrc on windoze.
32
33 New in 0.50
34 * HUD updates from Charlie Hotchkiss (ladder number rotate w/ ladder, control
35   position indicators are back)
36 * Only draw the PUI cursor if Mesa/Glide/Fullscreen.
37 * Added mipmapping.
38 * Calculate the model view transformation matrix once per tile per iteration.
39   Then glLoadMatrixd() it for each fragment rather than calling push(), 
40   translate(), pop().
41 * Added a basic splash screen.
42 * Added support for switching between fullscreen and window mode for 
43   Mesa/3dfx/glide.
44 * added an enable/disable splash screen option
45 * added an enable/disable intro music option
46 * added an enable/disable instrument panel option
47 * added an enable/disable mouse pointer option
48 * Ground collision detection.  You can now land or test for collision with
49   any scenery surface.
50 * Converted angle of attack scale into a radio altimeter.
51
52 New in 0.49
53 * Managment of multiple textures
54 * Incorporated Friedemann Reinhard's initial panel code.
55 * Fog mode is now GL_FOG_EXP2 instead of GL_FOG_LINEAR
56 * Build the non-shared pieces of the FG sim as static libs.
57
58 New in 0.48
59 * Incorporated Steve Baker's PUI user interface library written
60   entirely on top of OpenGL
61 * Incorporated Steve Baker's Audio library which currently only
62   supports Linux, but a win32 port is very close to being done.
63 * Sort object fragments by material property before rendering.  This
64   will be a big help to performance when we start including objects
65   with a wide variety of material properties and textures.
66 * Overlapped scenery tiles to reduce the chance of an occasional
67   floating point precission induced gaps.
68 * Fixed a bug in zlib exposed by Borland Win32 compiler.
69 * Impose a maximum triangle area during scenery generation so even
70   very flat areas will get split into a few smaller sub triangles.
71 * Fine grained (fragment level) view frustum culling.
72 * view transformation optimizations -- Norman Vine.
73 * Fixed polygon winding problem in scenery generation, so all
74   tri-strips are wound counter clockwise (opengl default).
75
76 New in 0.47
77 * Course (per tile) view frustum culling.
78 * Added a command line option to specify --fg-root which will override
79   $FG_ROOT
80 * Hard coded default locations for FG_ROOT for situations when nothing
81   is specified.  Unix = /usr/local/lib/FlightGear  Win32 = \FlightGear
82 * Restructured the command line processing code so that it can process
83   these sames comands (one per line) out of a config file.
84 * Added a command line option to specify field of view.  This is
85   adjustable at run time using "X / x".  Supporting code contributed
86   by Norman Vine.
87
88 New in 0.46:
89 * Complete C++ re-write of the HUD section.
90 * Miscellaneous bug fixes and tweaks.
91
92 New in 0.45:
93 * Added an option to enable/disable wireframe rendering.
94 * Added an option to enable/disable fog/haze.
95 * Added an option to enable/disable sky blending.
96 * Added an option to select smooth/flat polygon shading.
97 * Added an option to enable full-screen mode.
98 * Added a visual frame rate counter on the HUD.  (Contributed by Durk Talsma)
99 * Autopilot updates (Jeff Goeke-Smith)
100 * Added an option to control the number of neighboring tiles that are drawn
101
102 New in 0.44: 
103 * Fixed a horible bug that cause the time to be *WAY* off when
104   compiling with the CygWin32 compiler.
105 * Wrap up zlib so we can conditionally compile back in normal behavior
106   on systems that have trouble building zlib.
107 * Minor adjustment to texture coordinate generation to reduce texture
108   swimming.
109 * Added a command line option to enable/disable texture maps
110 * Minor transformation adjustments to try to keep scenery tiles closer
111   to (0, 0, 0) GLfloats run out of precision at the distances we need
112   to model the earth, but we can do a bunch of pre-transformations
113   using double floats and then cast to GLfloat once everything is
114   close in where we have less precision problems.
115 * command line option to set starting position by airport ID
116 * Cleaned up initialization sequence to eliminate interdependencies
117   between sun position, lighting, and view position.  This creates a
118   valid single pass initialization path.  
119 * use already calculated LaRCsim values to create the roll/pitch/yaw
120   transformation matrix
121
122 New in 0.43:
123 * material properties bug fixed when rendering terrain.
124 * bug in sky color generation fixed.
125 * bug in fog color generation fixed.
126 * zlib on the fly decompression/compression support.
127 * more code reorganization and clean ups.
128 * a fixed up 30 arcsec DEM file preprocessor.  World wide DEM's are 
129   available in this format.
130
131 New in 0.42:
132 * Simple autopilot heading hold contributed by 
133   Jeff Goeke-Smith <jgoeke@voyager.net>
134 * More code reorganization and clean ups.
135
136 New in 0.41:
137 * Many autoconf cleanups and tweaks
138 * make and make install work in unix
139 * make works for cygnus win32 (but not install yet)
140 * make dist now works
141 * added the Tools directory into the main source tree
142
143 New in 0.40:
144 * Gnu automake/autoconf/libtool make system
145 * Initial texture support
146 * Bug fixes