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