]> git.mxchange.org Git - simgear.git/blob - NEWS
MS patch from Norm Vine to fix min/max macro defs.
[simgear.git] / NEWS
1 New in 0.2.0
2 * September 6, 2002
3
4 * Modernized the autoconf/make scripts, plus lots of tweaks and enhancements.
5 * Removed efence support (in favor of valgrind.)
6
7 * Added a javascript interpreter.
8 * SGSocket reimplimented on top of plib/net libs.
9 * Added a new random number generation algorithm.
10 * Total rewrite of the strutils package.
11
12 * Patch for the random number seed.
13 * IA-64 w/ Intel compiler fixes.
14 * MSVC/MINGW fixes.
15 * Mac OS X fixes.
16 * Irix fixes.
17 * Code clean ups to remove warning messages.
18 * Optimizations in sg_binobj to reduce the amout of memory copying
19   needed when loading a binobj format file.
20 * Fixed a couple places where variables could be used before they were
21   initialized.
22 * Various property manager fixes and improvements.
23 * Fixes to cloud layer management code.
24 * Made the sky dome more flexible to facilitate use in other applications.
25
26
27 New in 0.0.18
28 * April 20, 2002
29
30 * Created a src/libs subdirectory for several packages that need to be
31   installed by the user but are used by many other packages and may already
32   be installed.  So we just bundle the source separately as a convenience
33   if the user needs to build and install these.
34 * Upgrade to zlib-1.1.4 (security fix)
35 * Upgrade to metakit-2.4.2-32.tar.gz (latest upstream release)
36 * Added support for point objects in the scenery file format.
37 * Additions to the binary file format to make it *much* more flexible.
38   For each major primative type: points, triangles, fans, and strips, you
39   can specify an index list of vertices, normals, colors, and texture
40   coordinates.  You can skip any of these you like to save on space.
41 * Added support for new file features in the binary -> ascii scenery file
42   decoder.
43 * Various code clean ups.
44 * Separate XML I/O operations into a separate header file.
45 * Major property manager rewrite, then lots of followup cleaning and
46   improvements.
47
48
49 New in 0.0.17 (final)
50 * February 16, 2002
51
52 * Explicitely reset the glBlendFunc() after drawing the moon for the
53   Voodoo2 linux driver since it seems to have a bug in glPopAttrib().
54
55
56 New in 0.0.17pre2
57 * February 13, 2002
58
59 * Replaced some cout's with SG_LOG's
60
61
62 New in 0.0.17pre1
63 * February 12, 2002
64
65 * Removed metakit and zlib from build process.  Tarballs are still included
66   for those who's systems don't provide these packages.
67 * MSVC fixes.
68 * IRIX fixes.
69 * Mingwin fixes.
70 * Mac OS X fixes.
71 * FreeBSD fixes.
72 * Added support for Intel's C++ compiler under Linux.
73 * Attempt to build in support for various non-compatible automake/autoconf
74   versions.
75 * Fix for a problem that could lead to a bogus build for people with voodoo
76   cards.
77 * Added Norman's jpegfactory code which can create jpeg format screen shots
78   of a live running application.
79 * implemented set/get_log_classes and set/get_log_priority.
80 * Socket library improvements.
81 * Added a C++ exception abstraction.
82 * Property manager fixes and improvements including node path caching
83   and debug tracing of property reads/writes.
84 * Updates/fixes to xml handling.
85
86
87 New in 0.0.16
88 * July 12, 2001
89 * Various changes to the property manager implimentation to better support
90   dumping out the desired portions of the property tree to file.
91 * Don't compile the metakit demos by default (causes problems for Irix)'
92 * Other various tweaks for Irix.
93 * Added a virtual destructor to XMLVisitor to fix a warning message.
94 * Check for valid hostname lookup in sg_socket.cxx
95 * Add a function to return modified julian date without creating an
96   entire SGTime class.  This avoids an extraneous warning about not
97   being able to find a timezone.
98 * Created a mailing list for cvs commit messages.
99 * Fixed a potential array under/over run bug in interpolator.cxx
100 * Removed all references to SGValue from the property manager.  Added
101   support for an "archive" bit in the property manager to control
102   which values get written out.
103 * Added SGCommandState class so that commands can compile and save
104   copies of their arguments for efficiency if they are called multiple
105   times.
106 * Added Brian Baul's "tr" tiled rendering low level support library.
107   This along with some higher level code in flightgear allows us to do
108   ultra-hires tiled screen dumps suitable for large format printers.
109   (Norman Vine)
110
111
112 New in 0.0.15
113 * June 20, 2001
114 * Various bug fixes, tweaks, and optimizations.
115 * Added a command manager (analogous to the property manager)
116 * Better Irix Mips support.
117 * Various gcc-3.0 fixes.
118 * Various MSVC fixes.
119 * Added MSVC project files (automatically generated from the unix
120   automake configuration files.)
121 * Removed total size limitation on interpolation table module.
122 * Various Cygwin fixes.
123 * Added some convenience functions to point3d.
124 * Various compiler warning fixes.
125 * Added a thread wrapper class (currently only supports pthreads)
126 * Added IO routines for a lowlevel, native simgear binary 3d file
127   format optimized for TerraGear terrain.
128 * Better endianness checking and support for the binary file
129   read/write routines.
130 * Added doxygen comments for all public interface code.  Documentation
131   can be accessed via the SimGear web page.
132 * Many FG -> SG name space changes for better consistancy throughout
133   this package.
134 * Added property aliases, repeated name tags, and a general xml
135   inclusion facilities.  Many other property manager clean ups
136   following a complete rewrite.
137 * Fixed some critical null pointer bugs in property manager.
138 * Magnetic variation can now be fetched for any arbitrary location.
139
140
141 New in 0.0.14
142 * December 14, 2000
143 * Added a module to manage waypoints and routes, calculate bearing and
144   distance to next waypoint, lateral distance off route, etc.
145 * Moved some of the basic time management code over from flightgear.
146 * Bucket dimensions can be returned in meters
147 * Added SOCK_STREAM (TCP) socket support to the networking code.
148 * Updated random number generator interface so application can provide
149   it's own seed value as well as use the default time seed.
150 * Added a routine to calculate the distance between a point and a line segment.
151 * Updates to the property manager and the property list loader/saver.
152 * Added an explanation of the rational behind our terrain texture coordinate
153   generation code.
154 * Fixed sky dome so that the color at the horizon will always match
155   the specified fog color.
156 * Did a fair amount of fg -> sg name space updating (lots left to do.)
157 * Added support for KAI C++ on linux.
158 * MSVC tweaks.
159 * MacOS tweaks.
160 * FreeBSD tweaks.
161
162
163 New in 0.0.13
164 * September 14, 2000
165 * Added support for reading and writing xml files (easyxml)
166 * Then updates to property manager and xml code.
167 * Update magnetic variation code.
168 * Sky code now uses glPushAttrib and glPopAttrib so it plays better with
169   other ssg based apps.
170 * MacOS tweaks.
171 * MSVC tweaks.
172
173
174 New in 0.0.12
175 * July 19, 2000
176 * Converted project license from GPL to LGPL.
177 * Moved low level IO (socket, file, serial) code over to SimGear.
178 * Moved ephemeral code into simgear
179 * Moved basic world time code into simgear
180 * Added a property manager (registry)
181 * Some documentation added.
182
183
184 New in 0.0.11
185 * July 3, 2000
186 * Replaced gdbm with metakit
187 * Added drop in sky (depends on plib)
188 * Added spherical course and dist given two points calculations
189 * MSVC5 fixes
190 * Math/bucket/tiling tweaks from Norman Vine
191
192
193 New in 0.0.7
194 * March 29, 2000
195 * Added support for RedHat package building contributed by Habibie 
196   <habibie@MailandNews.com>
197 * Added gdbm to SimGear.  Many systems will already have gdbm installed so
198   it is only built if it doesn't already exist on the user's platform.
199   gdbm is a set of database routines that use extendible hashing and works
200   similar to the standard UNIX dbm routines.  This guarantees the availability
201   of gdbm to any application that uses SimGear.
202 * Optimizations and bullet proofing of magnetic variation code by Norman 
203   Vine and Ed Williams
204
205
206 New in 0.0.6
207 * March 27, 2000
208 * Added Nima World Magnetic Model 2000 contributed by Ed Williams
209 * Fixes for MSVC++
210
211
212 New in 0.0.5
213 * March 17, 2000
214 * Restructured directory layout to facilitate windows/mac IDE builds.
215
216
217 New in 0.0.4
218 * Removed mat3.h and friends (we now use plib's sg lib for these sorts of 
219   things.)
220
221
222 New in 0.0.3
223 * Release that conincides with FlightGear-0.7.2