Updates
[platform/upstream/glib.git] / NEWS
1 Overview of Changes from GLib 2.4.x to GLib 2.6.0
2 =================================================
3
4 * Major new APIs
5   - GOption, a commandline option parser
6   - GKeyFile, a parser/editor for the .ini like files 
7   - Functions to support the XDG basedir specification
8   - Wrappers for common POSIX pathname functions to handle filename
9     encodings consistently
10
11 * Miscellaneous new functions
12   - g_filename_display_name() converts filenames in displayable UTF-8 strings
13   - g_uri_list_extract_uris() splits uri lists
14   - g_date_get_iso8601_week_of_year() gets ISO 8601 week numbers
15   - g_log_set_default_handler() installs an alternate default log handler
16   - g_get_language_names() obtains a list of applicable locale names
17   - g_strv_length() calculates the length of NULL-terminated string arrays
18   - g_win32_get_windows_version() determines the Windows version 
19   - G_GNUC_INTERNAL marks functions as non-exported
20   - glib_check_version() checks the GLib version at runtime
21   - g_debug() completes the family of logging functions
22
23 * Performance improvements
24   - Optimize g_utf8_validate()
25   - Optimize g_markup_parse_context_parse()
26   - Reduce signal connection complexity from O(n) to O(1) 
27   - Get rid of many PLT entries for internally used exported symbols
28   - Reduce code size by removing literal strings from g_return_if_fail()
29
30 * Other changes
31   - Use higher precision for mathematical constants
32   - Don't convert to/from UTF-8 in g_filename_to_uri/g_filename_from_uri
33   - Support ll as printf format modifier for long long on all platforms
34   - Clean up the ABI and enforce the list of exported symbols
35   - Add a .pc file for using gmodule in libraries
36   - Require ngettext
37
38 Overview of Changes from GLib 2.5.7 to GLib 2.6.0
39 =================================================
40 * GOption: Don't list help options if group-specific
41   options have been requested [Glynn Foster]
42 * Make g_get_language_names() track locale changes [Christian Persch]
43 * Win32 bug fixes [Tor Lillqvist]
44 * Bug fixes [Philippe Blain, Owen Taylor, Sebastian Wilhelmi]
45 * New and updated translations (da,es,ja,lt,zh_CN)
46 Bugs fixed: 159530,100697,160271,160645,157255
47
48 Overview of Changes from GLib 2.5.6 to GLib 2.5.7
49 =================================================
50 * Optimize g_utf8_validate() [Owen Taylor, Matthias Clasen]
51 * Optimize g_markup_parse_context_parse() [Havoc Pennington, 
52   Morten Welinder]
53 * Reduce signal connection complexity from O(n) to O(1) 
54   [Sven Neumann]
55 * Add a .pc file for using gmodule in libraries [Owen]
56 * Add G_GNUC_MALLOC to mark functions returning newly 
57   allocated memory  [Matthias]
58 * Win32 bug fixes [Hans Breuer, Tor Lillqvist, Robert Ögren,
59   Bruce Hochstetler]
60 * Bug fixes [Kazuki IWAMOTO, Matthias, Manish Singh, Morten,
61   Frederic Crozat, Tor]
62 * Documentation improvements [Matthias, Tor, Owen]
63 * New and updated translations (cs,da,de,en_CA,en_GB,es,nb,nl,sq,zh_CN)
64
65 Overview of Changes from GLib 2.5.5 to GLib 2.5.6
66 =================================================
67 * GOption
68   - Add G_OPTION_FLAG_REVERSE to allow options 
69     which unset a  boolean variable [Tor Lillqvist]
70 * GChildWatch
71   - Use sigaction instead of signal [Jonas Jonnson, 
72   Archana Shah]
73   - Make the very first SIGCHLD work [Gustavo Carneiro]
74 * Bug fixes [Morten Welinder, Tor, David MacLachlan,
75   Manish Singh, J. Ali Harlow]
76 * Documentation improvements [Matthias Clasen, Tor]
77 * Updated translations (da,ja,tr,zh_CN)
78
79 Overview of Changes from GLib 2.5.4 to GLib 2.5.5
80 =================================================
81 * GKeyFile
82   - Cleanups, add more error checking [Ray Strode]
83   - Fall back to the untranslated string when getting 
84     locale strings [Mark McLoughlin]
85 * GOption
86   - Document GOption [Matthias Clasen]
87   - Better support for rest arguments [Owen Taylor, Matthias]
88   - Handle conflicts between groups [Matthias]
89 * Add g_lstat() to the stdio wrappers [Tor Lillqvist]
90 * Add g_filename_display_name() to convert filenames
91   in displayable UTF-8 strings  [Alex Larsson, Matthias]
92 * Win32 bug fixes [Kazuki IWAMOTO, Hans Breuer, Tor]
93 * Bug fixes [Christophe Fergeau, Morten Welinder, 
94   Owen, Kjartan Maraas, Mark]
95 * Documentation improvements [Matthias, Tor]
96
97 Overview of Changes from GLib 2.5.3 to GLib 2.5.4
98 =================================================
99 Add GKeyFile, a parser/editor for the .ini like files used in various
100    freedesktop.org specifications. [Ray Strode]
101 Make the handling of filename encodings consistent across all
102    GLib functions, introduce wrappers for common POSIX 
103    functions which accept the same filename encoding. [Tor Lillqvist, 
104    Owen Taylor]
105 GOption
106  - Rename g_context_option_error_quark() to a more language-binding
107    friendly name [Murray Cumming]
108  - Accept backslashes in filenames on Win32 [Tor Lillqvist]
109 * Strip the internal aliasing prefix IA__ from function names in 
110   assertions [Matthias Clasen]
111 * Add a function to split uri lists. [Matthias]
112 * Win32 bug fixes 
113  - Don't open console windows [Tor]
114 * Other bug fixes [Philippe Blain, Robert Ögren, Hidetaka Iwai, Matthias,
115  Morten Welinder, Mats-Ola Persson, Tor, Nickolay V. Shmyrev, Kjartan Maraas,
116   Anders Carlsson, Tim-Philipp Müller, Lucas Rocha, Andrea Campi, Manish
117   Singh, Thomas Fitzsimmons, Kazuki IWAMOTO]
118 * Documentation improvements [Matthias, Linus Walleij, Nickolay, Philippe, 
119  Adam Hooper, Gustavo Carneiro]
120 * New and updated translations (cs,en_CA,en_GB,ja,nb,nl,or,sr,sr@Latn,sq)
121
122 Overview of Changes from GLib 2.5.2 to GLib 2.5.3
123 =================================================
124 * GOption
125  - set the program name from argv[0] [Masatake YAMATO] 
126  - make contexts work without a main group [Anders Carlsson]
127 * Performance 
128  - Get rid of many PLT entries for internally used exported symbols,
129    and clean up the ABI at the same time and make make check check the
130    list of exported symbols.  [Matthias Clasen]
131 * Add API to get ISO 8601 week numbers [Niklas Lundell]
132 * Add API to install an alternate default log handler [Darin Adler]
133 * Add API to obtain a list of applicable locale names [Hidetoshi Tajima]
134 * Reduce code size bloat by removing literal strings from
135  the g_return_if_fail() macros [Owen Taylor]
136 * Add g_strv_length [Tim-Philipp Müller]
137 * Win32 changes
138  - Add API to determine the Windows version [Tor Lillqvist]
139 * Other bug fixes [Stepan Kasal, Anders, Tor, Kazuki Iwamoto,
140   Manish Singh]
141 * Documentation improvements [Morten Welinder, Matthias]
142 * New and updated translations (es,nn,ro)
143
144 Overview of Changes from GLib 2.5.1 to GLib 2.5.2
145 =================================================
146 * Add G_GNUC_INTERNAL macro [Arjan van de Ven]
147 * Add GOption, a commandline option parser [Anders Carlsson]
148 * Add glib_check_version [Michael Natterer]
149 * Add XDG basedir API [Ray Strode]
150 * Require ngettext [Danilo Segan]
151 * Bug fixes [Manish Singh, Ray Strode, Vincent Noel, 
152   Jon-Kare Hellan, Jody Goldberg]
153 * Win32 bug fixes [Tor Lillqvist, Hans Breuer, Peter Zelezny]
154 * Documentation improvements [Matthias Clasen, Vincent Untz, Christian Persch]
155 * New and updated translations (bs,eu,fi,gu,ne,pa)
156
157 Overview of Changes from GLib 2.5.0 to GLib 2.5.1
158 =================================================
159
160 * Bug fixes [Oliver Guntermann, Sven Neumann, James 
161   Henstridge, Hiroyuki Ikezoe, Matthias Clasen, Robert 
162   Ögren, Tommi Komulainen]
163 * Documentation improvements [Soeren Sandmann, 
164   Christophe Fergeau, Danek Duvall]
165 * New and updated translations (eu,hi)
166   
167 Overview of Changes from GLib 2.4.1 to GLib 2.5.0
168 =================================================
169
170 * New functions g_debug [Sven Herzberg]
171 * Use higher precision for mathematical constants [Morten 
172  Welinder]
173 * Don't convert to/from UTF-8 in g_filename_{to,from}_uri 
174  [Federico Mena Quintero]
175 * Win32
176  - Handle empty digit string in printf() functions 
177    correctly [Tor Lillqvist]
178  - Support ll as format modifier for long long [Tor]
179  - Be more careful about HOME [Tor, Ivan Wong]
180  - Bug fixes [John Ehresman]
181 * Miscellaneous bug and portability fixes [Danilo Segan, 
182  Owen Taylor, Nikolai Weibull, Benoît Carpentier, Morten 
183  Welinder, Manish Singh, Sven Neumann, Julio M. Merino Vidal,
184  Kaz Sasayama, Murray Cumming, Federico, Mariano Suarez-Alvarez]
185 * Documentation updates [Matthias Clasen, Crispin Flowerday,
186  Tommi Komulainen, Federico Mena Quintero, Ed Griffiths]
187 * New and updated translations (ja,ne,no,wa)
188  
189 Overview of Changes from GLib 2.4.0 to GLib 2.4.1
190 =================================================
191
192 * Win32 bug fixes [Tor Lillqvist, Roger Leigh, John Ehresman]
193 * Miscellaneous bug and portability fixes [Owen Taylor,
194   Matthias Clasen, Jonas Jonsson, Christian Krause,
195   Nickolay V. Shmyrev, Christophe Saout, Philippe Blain,
196   Piotr Klaban]
197 * Documentation updates [Matthias]
198 * New and updated translations (ca,cs,cy,el,en_CA,en_GB,es,eu,fi,
199   fr,gu,he,id,nl,pt,pl,ru,sr,sr@ije,sr@Latn,sv,uk)
200
201 Overview of Changes from GLib 2.3.6 to GLib 2.4.0
202 =================================================
203
204 * Handle invalid-UTF-8 in g_log() properly [Matthias Clasen]
205 * Win32 bug fixes [Tor Lillqvist, Bruce Hochstetler]
206 * Miscellaneous bug and portability fixes [Olivier Biot, David L. Cooper II, 
207   Kjartan Maraas, Frédéric L. W. Meunier, Christof Petig, Manish Singh, 
208   Sebastian Wilhelmi]
209 * Documentation updates [Owen]
210 * Updated translations (hr,ro)
211
212 Overview of Changes from GLib 2.3.5 to GLib 2.3.6
213 =================================================
214
215 * GAtomic bug fixes [Sebastian Wilhelmi, Mark McLoughlin]
216 * GMain threading fixes and improvements [Sebastian]
217 * Win32 [Tor Lillqvist]
218  - restore some symbols extraneously exported from gobject to maintain ABI compatibility
219  - Misc build improvements and fixes [Tor, Cedric Gustin, Hans Breuer]
220 * Documentation updates [Sebastian, Takeshi AIHANA, Matthias, Sven Herzberg]
221 * New and updated translations (be,es,fi,ga,pa,sr@ije,zh_CN)
222
223 Overview of Changes from GLib 2.3.3 to GLib 2.3.5
224 =================================================
225
226 * Make glib-mkenums parse initializers with macros. [Matthias Clasen, muppet]
227 * Respect locale era in g_date_set_parse(). [Theppitak Karoonboonyanan] 
228 * Add atomic operations and use it for the async queue and
229   gonce implementation. [Sebastian Wilhelmi]
230 * Documentation improvements [Sebastian, Matthias, Sven Herzberg]
231 * Add g_main_depth() for finding the recursion depth of the main
232   loop [Owen Taylor, Tim Janik, Stefan Westerfeld]
233 * Add g_spawn_close_pid(), needed on win32 [J. Ali]
234 * Win32 fixes. [Hans Breuer, J. Ali Harlow]
235 * Misc bugfixes [Sebastian, Matthias, Balazs Scheidler, Owen]
236 * Updated translations (cy,et,ga,sq)
237
238 Overview of Changes from GLib 2.3.2 to GLib 2.3.3
239 =================================================
240
241 * Add a native AIX gmodule implementation. [Laurent Vivier]
242 * Add g_node_copy_deep().  [James M. Cape, Matthias Clasen]
243 * Extend GQueue API to match the GList API. [Soeren Sandmann]
244 * Add g_hash_table_find().  [Tim Janik]
245 * Add a G_MODULE_BIND_LOCAL flag. [David Schleef]
246 * Inline g_string_append_c() when possible. [Owen Taylor, Tim]
247 * Wrap waitpid() as a GSource. [Jonathan R. Blandford]
248 * Add g_completion_complete_utf8(). [Theppitak Karoonboonyanan, 
249   Matthias]
250 * Add g_strsplit_set(). [Soeren]
251 * Documentation improvements. [Vincent Untz, Sebastian Wilhelmi, 
252   Soeren, Matthias]
253 * Win32 build fixes. [Tor Lillqvist]
254 * Misc bugfixes [Manish Singh, Noah Levitt, Simon Josefsson, 
255   Morten Welinder, Damien Carbery, Julio M. Merino Vidal, Sebastian, 
256   Matthias]
257 * Updated translations (nn,cs,it,ko,sq,ms,az,hr,uk,sr,sr@Latn,sq,ta)
258
259 Overview of Changes from GLib 2.3.1 to GLib 2.3.2
260 =================================================
261
262 * Add G_MAXSIZE. [Manish Singh]
263 * Add g_rand_new_with_seed_array(), g_rand_set_seed_array(),
264   implementing the init-by-array functionality of the 
265   original mersenne twister. Add g_rand_copy(). Improve seeding. 
266   [George Lebl]
267 * Add a lowercase_name option to glib-mkenums. [Murray Cumming]
268 * Add g_ptr_array_foreach(). [Matthias Clasen]
269 * Add g_timer_continue(). [Tim-Philipp Müller]
270 * Fix a threadsafety issue in mem chunks. [Matthias, Balazs Scheidler]
271 * Fix g_filename_{to,from}_utf8() on Win32 and improve 
272   g_file_test() there too [Hans Breuer] 
273 * Add a boxed type for NULL-terminated string arrays.  [Matthias]
274 * Add G_DEFINE_TYPE() plus variants to ease the constuction
275   of GObject boilerplate code.  [Tim Janik]
276 * Support & in password GECOS field [Matthias, Soeren Boll Overgaard]
277 * Documentation improvements [Matthias, Manish]
278 * Win32 build fixes [Hans]
279 * Misc bug fixes [Damien Carbery, Matthias, Manish, Olivier Poncet, 
280   Zack Rusin]
281 * Updated translations (ar,de,fa,ga,mn,nn,no,sq)
282
283 Overview of Changes from GLib 2.3.0 to GLib-2.3.1
284 =================================================
285
286 * Add glib/gi18n.h and glib/gi18n-lib.h for common
287   gettext support, including a Q_() macro for translation
288   with context [Matthias Clasen]
289 * Add a more flexible G_FILENAME_ENCODING variable
290   as a replacement for G_BROKEN_FILENAMES [Matthias]
291 * Fix the return value g_main_context_iterate() for
292   newly ready sources [Padraig O'Briain]
293 * Handle Hangul composition for normalization [Noah Levitt]
294 * Add G_{MIN,MAX,MAXU}INT{8,16,32}. [Mark Jones, Matthias]
295 * Add G_GSIZE_FORMAT/G_SSIZE_FORMAT [Manish Singh]
296 * Add G_STRFUNC as a portable wrapper for __func__ [Tim Janik]
297 * Documentation improvements [Matthias]
298 * GObject [Tim Janik]
299  - Support '-' in g_signal_connect()/disconnect() names
300    like 'swapped-signal'.
301  - Add g_type_class_peek_static() and use to optimize
302    g_object_new() for static types [Tim]
303  - Allow setting construct-only properties from within
304    init() implementations
305  - Enforce readability/writeability in g_object_set/get()
306 * Fix bug with g_ascii_strtod and multi-byte separator.
307   [Behdad Esfahbod, Roozbeh Pournader]  
308 * Misc bug fixes [Matthias, John Ehresman, Andrew Lanoix,
309   Tor Lillqvist, Mark McLoughlin, Tim-Philipp Müller, Manish, 
310   Morten Welinder]
311 * Updated translations (ca,cs,da,es,fr,ja,nn,no,pt,ru)
312
313 Overview of Changes from GLib 2.2.x to GLib-2.3.0
314 =================================================
315
316 * Replace Trio printf by gnulib vasnprintf [Matthias Clasen]
317 * Update Unicode data to Unicode 4.0 [Noah Levitt]
318 * Support XML-safe formatted output with 
319   g_markup_[v]printf_escaped [Owen Taylor]
320 * Add g_file_read_link to read symbolic links [Matthias]
321 * Add g_unichar_get_mirror_char to obtain the 
322   mirrored variant of a character [Noah]
323 * Support for one-time initialization functions. 
324   [Sebastian Wilhelmi]
325 * Miscellaneous API additions: g_vasprintf
326   g_string_chunk_insert_len, g_setenv, g_unsetenv [Matthias]
327 * Docs improvements [Matthias]
328 * Add support instance-private data on classed types
329   [Mark McLoughlin, Tim Janik, Owen]
330 * Optimize signal emissions [Soeren Sandmann, Tim]
331 * Support a "default vtable" per interface [Tim]
332 * Add support for properties on interfaces [Owen, Tim]
333 * Miscellaneous API additions: g_value_take_string(),
334   g_value_take_param(), g_value_take_object(), 
335   g_value_take_boxed(). [Matthias]
336 * Win32 build fixes [Tor Lillqvist]
337
338 Overview of Changes from GLib 2.1.5 to GLib-2.2.0
339 =================================================
340
341 * Fix a problem with g_thread_init() on 64-bit problems
342   [Alceste Scalas, Sebastian Wilhelmi]
343 * Add assembly implementations of byteswap macros
344   for ia64 and x86_64. [Manish Singh]
345 * IOChannel fixes for Win32 [Tor Lillqvist, Thorsten Maerz]
346 * Updated translations (bg,ca,es,da,fi,lv,ru,sk)
347
348 Overview of Changes from GLib 2.1.4 to GLib-2.1.5
349 =================================================
350
351 * Win32 bug fixes [Tor Lillqvist]
352 * Various post-rewrite fixes for glib-gettext.m4 [Owen Taylor,
353   Jody Goldberg, Kjartan Maraas, Johannes Stezenbach]
354 * Ensure we have a GUINT64_FORMAT by pulling in Trio
355   if necessary [Manish Singh]
356 * Further Trio build fixes [Matthias Clasen, Owen]
357 * Hack around gcc, libtool issues with -pthread [Owen]
358 * Docs improvements [Matthias]
359 * Bug and portability fixes 
360 * Updated and new translations (bg,de,fi,fr,sq,fr)
361
362 Other contributors: Kai Poitschke, Morten Welinder
363
364 Overview of Changes from GLib 2.1.3 to GLib-2.1.4
365 =================================================
366
367 * autoconf changes to make it possible to cross compile
368   GLib. [Owen Taylor, Dan Kegel, Amy Lin, Dimi Shahbaz, 
369   Johannes Stezenbach]
370 * Use libintl when it has bind_textdomain_codeset() and
371   GLib doesn't. [Owen]
372 * Improve generation of pseudo-random integers [Morten Welinder, 
373   Sebastian Wilhelmi]
374 * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren]
375 * Cleanup include order [Sven Neumann]
376 * autoconf cleanups and bug fixes [Daniel, Matthias Clasen, Owen]
377 * Doc fixes and additions [Matthias]
378
379 Other contributors: James M. Cape, Frederic Crozat, Martin Gansser,
380   Phuc LeHong, Manish Singh, Joshua Weage, Morten Welinder
381
382 Overview of Changes from GLib 2.0.x to GLib-2.1.x
383 =================================================
384
385 * Add copy of the Trio library to build and use for printf() when 
386   system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen]
387 * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson]
388 * Add g_markup_parse_context_get_element() [Matthias]
389 * Add g_utf8_strreverse [Matthias]
390 * Add g_ascii_strtoull() [Tim Janik]
391 * Support scanning of 64-bit values with GScanner [Tim]
392 * Add g_set/get_application_name() [Havoc Pennington]
393 * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. 
394   Use for g_return_if_fail(). [Matthias Clasen]
395 * Add G_GNUC_DEPRECATED macro [Tom Tromey]
396 * Improve the seeding algorithm of GRandom to avoid problems
397   with certain pathological seeds. Support G_RANDOM_VERSION=2.0
398   environment variable. [Sebastian Wilhelmi]
399 * Improve thread configure checks, use -pthread where applicable
400   [Sebastian]
401 * Improve handlng of thread priorities [Sebastian]
402 * Fix up parameter names that might shadow functions from
403   system headers [Soeren Sandmann]
404 * Clean up usage of deprecated functions [Manish Singh]
405 * Docs fixes and improvements. In particular, include "Since" information.
406   [Matthias, Soeren, Martin Schulze, Daryll Strauss, Bill Janssen, 
407   Owen Taylor, Morten Welinder]. 
408
409 Overview of Changes in GLib 2.0.7
410 =================================
411
412 * Fix C++ warnings in gtype.h [Dom Lachowicz]
413 * Fix g_type_fundamental_next() [Tim Janik]
414 * Fix various missing includes of config.h [Morten Welinder]
415 * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi]
416 * Various 64-bit fixes [Manish Singh]
417 * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs]
418 * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner]
419 * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor,
420      Tim, Havoc Pennington,  Matthias Clasen, Sebastian Rittau,
421      Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor]
422 * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
423
424 Overview of Changes in GLib 2.0.6
425 =================================
426
427 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
428 * Clean up debug spew from GObject [Anders Carlsson]
429 * Compiler warning fixes [David L. Cooper II]
430 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
431 * Fixes for --disable-debug [Sebastian Wilhelmi]
432 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
433   Rajkumar Sivasamy, Laurent Vivier]
434 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
435   Sebastian Rittau, Linus Welleij]
436 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
437 * Updated translations (bg,ko,vi)
438
439 Overview of Changes in GLib 2.0.5
440 =================================
441
442 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
443 * Clean up debug spew from GObject [Anders Carlsson]
444 * Compiler warning fixes [David L. Cooper II]
445 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
446 * Fixes for --disable-debug [Sebastian Wilhelmi]
447 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
448   Rajkumar Sivasamy, Laurent Vivier]
449 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
450   Sebastian Rittau, Linus Welleij]
451 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
452 * Updated translations (bg,ko,vi)
453
454 Overview of Changes in GLib 2.0.4
455 =================================
456
457 * Fix some 64-bit problems. (George Lebl, David L. Cooper II)
458 * Add note about Tru64 iconv to INSTALL. (Manuel Op de Coul)
459 * Fix problem with timouts > MAXINT. (Tim Janik, Owen Taylor)
460 * Updated translations (ca,es,fr,ja,gl,ms,nl,pl,pt,ru)
461
462 Overview of Changes in GLib 2.0.3
463 =================================
464
465 * Handle sorting 0-length arrays (Ron Arts)
466 * Threading fixes (Sebastian Wilhelmi)
467 * Portability fixes (Miroslaw Dobrzanski-Neumann, Jacob Berkman, Gareth Pierce, 
468   Sebastian, Qingjiang Yuan)
469 * Various fixes for glib-2.0.m4. (Jim Gettys, others.)
470 * Locate right glib-genmarshal when cross-compiling. (Mitch Natterer)
471 * Win32 fixes (Tor Lillqvist)
472 * Try to fix g_get_charset() related segfaults. (Owen)
473 * Fixes for gettext detection. (Dan Winship, HideToshi Tajima, Boyd Lynn Gerber,
474   Andrew P. Lentvorski, Jr.)
475 * Fix g_scanner_unexp_token() (Tim Janik, Sven Neumann)
476 * g_markup fixes. (Matthias Clasen.)
477 * Bug fixes and cleanups (Daniel Elstner, Matthias, Laszlo Peter, Morten Welinder,
478   Wayne Schuller)
479
480 Overview of Changes in GLib 2.0.1
481 =================================
482
483 * Portability fixes for Sun's Forte compiler [Erwann Chenede]
484 * Performance improvements for GObject parameter lookup, 
485   g_filename_to/from_utf8() [Alex Larsson]
486 * Actually check interface prerequisites [Matthias Clasen,
487   Miroslaw Dobrzanski-Neumann]
488 * Fix problem with glib-mkenums taking huge amounts of stack. [Owen Taylor]
489 * Fix g_signal_handlers_disconnect_by_func() for C++ [Damien Sandras]
490 * Fixes for g_log() and threading.
491   [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, Tim Janik]
492 * Make g_print(), g_printerr(), g_warning(), etc, convert from
493   UTF-8 to the encoding of the locale [Sebastian Wilhelmi, Tim]
494 * Fixes for GIOChannel on windows. [Tor Lillqvist]
495 * Fix gsize/gint mismatches in giochannel.c [Miroslaw Dobrzanski-Neumann]
496 * Fix file descriptor leak in g_file_get_contents() [Matthias]
497 * Workaround iconv() problems on older Solaris [Lauri Alanko]
498 * Fix warnings with gcc-3.1 about asm const [Cody Russel]
499 * Minor bug fixes.
500
501 Other contributors: Hans Breuer, LEE Sau Dan, Sven Neumann, Salmaso Raffaele,
502   Akira Tagoh, Morten Welinder
503
504
505 Overview of Changes in GLib 2.0.0
506 =================================
507
508 * Thread portability fixes [Sebastian Wilhelmi]
509 * Documentation updates [Owen Taylor]
510 * Make g_strerror(), g_strsignal() properly return UTF-8,
511   call bind_text_domain_codeset() so that error strings
512   are in UTF-8 as well. [Owen, Tor Lillqvist]
513
514 Overview of Changes in GLib 2.0.0 rc1:
515 ======================================
516
517 * Win32 fixes [Tor Lillqvist]
518 * Portability fixes [Finlay Dobbie, Miroslaw Dobrzanski-Neumann]
519 * Fix up g_date_strftime [Daniel Elstner]
520 * Add some structure padding [Tim Janik]
521 * Make g_get_homedir() prefer the users home directory to $HOME
522
523 Other contributors: Matthias Clasen, Paolo Maggi, Christian Rose
524
525 Overview of Changes in GLib 1.3.15:
526 ===================================
527
528 * Speed up marshalers by using private access to GValue 
529   [Anders Carlsson, Tim Janik]
530 * Reduce GValue to 2 elements [Tim]
531 * Add G_DEBUG environment variable, G_DEBUG=fatal_warnings [Matthias Clasen]
532 * Fixes for AIX compilation [Miroslaw Dobrzanski-Neumann]
533 * Add padding to various structures [Owen Taylor, Tim]
534 * Win32 fixes [Tor Lillqvist]
535
536 Other contributors: James Henstridge, Ryan Lovett, Morten Welinder,
537   Daniel Elstner
538
539 Overview of Changes in GLib 1.3.14:
540 ===================================
541
542 * Register value transformations for gint64, guint64 [Andy Wingo]
543 * Build with large-file support [Sven Neumann, Owen Taylor]
544 * Fix handling of hostnames in URI's [Darin Adler]
545 * Main loop bug fixes [Havoc Pennington, Owen]
546 * Doc fixes and improvements [Manish Singh, Tim Janik]
547 * Support ' as attribute delimiters in GMarkup [Matthias Clasen]
548 * Win32 fixes [Hans Breuer, Tor Lillqvist]
549 * Threading bug and build fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann]
550 * Miscellaneous bug fixes
551
552 Other contributors: Matthias Clasen, James Henstridge, Mitch Natterer, 
553   Morten Welinder.
554
555 Overview of Changes in GLib 1.3.13:
556 ===================================
557
558 * Fix g_filename_to/from_uri for Win32 [Tor Lillqvist, Darin Adler]
559 * Miscellaneous win32 fixes [Tor, Hans Breuer]
560 * Fix thread options for gcc on AIX [Jerome Zago, Sebastian Wilhelmi]
561 * Documentation improvements [Ron Steinke, Matthias, Sebastian]
562 * Cache iconv converters as used by g_convert() [Jeffrey Stedfast]
563 * Bug fixes [Sven Neumann, Owen Taylor, Matthias Clasen, Jeffrey,
564   Laszlo Peter, Havoc Pennington, Tim Janik]
565
566 Overview of Changes in GLib 1.3.12:
567 ===================================
568
569 * Implement closure chaining, fixing up API (Tim Janik)
570 * Closure chaining test case (James Henstridge)
571 * Make GType long not int where both are equal width (Tim)
572 * Win32 fixes and improvements (Hans Breuer, Tor Lillqvist)
573 * Fixes for NetBSD. (Dan Winship)
574 * Use snprintf() for g_printf_string_upper_bound() where possible. (Matthias Clasen)
575 * Save space for GBSearchArray (Tim Janik)
576 * Documentation improvements. (Matthias, Sven Neumann, Havoc Pennington)
577
578 Other contributors: Darin Adler, Chris Blizzard, Anders Carlson, Daniel Elstner, Michael Meeks, 
579   Mark McLoughlin, Dave Neary, Manish Singh, Owen Taylor, HideToshi Tajima, 
580   Sebastian Wilhelmi.
581
582
583 Overview of Changes in GLib 1.3.11:
584 ===================================
585
586 * Win32 fixes [Hans Breuer, Tor Lillqvist]
587 * Documentation improvements [Matthias Clasen]
588 * Portable directory handling API [Hans]
589 * Threading fixes [Sebastian Wilhelmi, Havoc Pennington]
590 * Fix excess relocations in Unicode tables [Andrew Taylor]
591 * Fix gpattern for UTF-8 [Matthias Clasen]
592 * Support overriding class closures [Tim Janik]
593 * Support for derivation from G_TYPE_POINTER [Owen Taylor]
594 * Hide pointers to type information inside GType to reduce locking
595   [Alex Larsson, Tim]
596 * Adds check for direct inclusion of gobject/*.h [Owen]
597 * GObject API cleanups [Tim]
598
599 Other contributors: Darin Adler, Jacob Berkman, Daniel Egger, Eric Lemings, 
600   Michael Meeks, Mark McLoughlin, Arkadiusz Miskiewicz, Dan Winship
601
602
603 Overview of Changes in GLib 1.3.10:
604 ===================================
605
606 * Many Win32 fixes and improvements [Tor Lillqvist]
607 * Documentation improvements [Matthias Clasen]
608 * g_string_printfa() renamed to g_string_append_printf()
609 * Use libcharset from libiconv to implement charset detection
610   more portably. [Owen Taylor, Hidetoshi Tajima]
611 * Add 64 bit type support to GObject [Joshua Pritikin, Mathieu Lacage, Owen]
612 * Make support for 64 bit integers a requirement [Joshua]
613 * GPattern improvements [Tim Janik, Matthias]
614 * Locale independent g_ascii_strtod / g_ascii_dtostr [Alex Larsson]
615 * Many bug fixes and minor tweaks.
616
617 Other Contributors: Darin Adler, Jakub Jelinek, James Antill, Andrew Taylor,
618   Ben Gertzfield, Elliot Lee, Manish Singh, Abel Cheung, Laszlo Peter,
619   Sven Neumann, George Lebl, Raja Harinath, Sebastian Wilhelmi,
620   Jacob Berkman
621
622
623 Overview of Changes in GLib 1.3.9:
624 ==================================
625
626 * Fixes for comparison of threads [Sebastian Wilhelmi]
627 * Use vasprintf() when possible for g_strdup_printf [Matthias Clasen]
628 * Win32 fixes [Tor Lillqvist, Hans Breuer]
629 * Add a len argument to g_ascii_strup/strdown
630 * Bug, portability fixes, cleanups.
631
632 Other Contributors: Darin Adler, Katsuhiro Okuno, Joshua N. Pritikin
633
634
635 Overview of Changes in GLib 1.3.8:
636 ==================================
637
638 * Documentation updates [Owen]
639 * Made GType interfaces overridable in derived types
640 * Many win32 fixes [Tor Lillqvist]
641 * Miscellaneous cleanups and fixes
642
643 Other contributors:
644   Darin Adler, Matthias Clasen, Ron Steinke, Hans Breuer, Alex Larsson
645
646
647 Overview of Changes in GLib 1.3.7:
648 ==================================
649
650 * Integrate GClosure support into the main loop [Owen Taylor]
651 * More GSignal convenience functions (macros) [Sven Neumann, Tim Janik]
652 * Introduced weak references for GObject [James Henstridge, Sven, Tim] 
653 * Minor hash table optimizations
654 * Main loop and threading improvements [Sebastian Wilhelmi]
655 * Added g_ascii_* functions to be used for locale insensitive UTF-8
656   compliant code instead of old string functions  [Darin Adler, Alex Larsson]
657 * Add functions for Unicode case-conversion, normalization, and 
658   collation [Owen]* GString improvements [Owen]
659 * Reworked the GIOChannel code [Hidetoshi Tajima, Ron Steinke]
660 * Removed glib-config-2.0 in favour of pkgconfig [Sebastian]
661 * Make code 64bit clean [Mark Murnane]
662 * More G_CONST_RETURN fixes
663 * Many improvements to the win32 code [Tor Lillqvist, Hans Breuer]
664 * Miscellaneous bug and API fixes
665
666 Other contributors:
667   Michael Natterer, Christopher James Lahey, Padraig O'Briain,
668   Matthias Clasen, Josh Pritikin, Steve Baker, Cesar Rincon, Garry R. Osgood,
669   Michael Meeks, Laszlo Peter,  Martin Baulig, Kjartan Maraas, Andrew Lanoix,
670   Peter Williams
671
672
673 Overview of Changes in GLib 1.3.6:
674 ==================================
675
676 * Threads have a "return value" from g_thread_join
677 * Removed ability to adjust thread stack size
678 * Prefix warnings with progname/PID by default, change toggle for this to 
679   be an env variable G_MESSAGES_PREFIXED not a compile-time option
680 * GMarkup speedups
681 * GDate const, convenience fixups
682 * Include test cases that headers are compilable by C++ compiler
683 * Add ability to spawn processes with argv[0] != executable path.
684 * g_strstr_len, g_strrstr, g_strrstr_len
685 * Add length argument to g_utf8_strchr and g_utf8_strrchr.
686 * Misc bug fixes
687
688
689 Overview of Changes in GLib 1.3.5:
690 ==================================
691
692 * Added an installed glib-mkenums Perl program for parsing enumeration
693   declarations from header files.
694 * Mark some additional deprecated functions.
695 * Bug and Portability fixes
696
697
698 Overview of Changes in GLib 1.3.4:
699 ==================================
700
701 * Efficiency improvements for GThreadPool
702 * A few bug fixes
703 * Build fixes
704 * Documentation improvements
705
706
707 Overview of Changes in GLib 1.3.3:
708 ==================================
709
710 GLib:
711
712 * More user_data support in various functions.
713 * Main loop API revamps to support per-thread main loops.
714 * Unicode handling improvements.
715 * Implemented debugging traps.
716 * G_CONST_RETURN specification all over the place.
717 * Various new small utility functions.
718 * Random number generator precision improvements.
719 * New configure option --disable-mem-pools.
720 * Many Win32 improvements.
721 * Added g_try_malloc() friends varinats.
722 * Many documentation improvements.
723 * Many threading improvements, support for dynamic allocation
724   of static mutexes.
725 * GHookLIst API cleanups.
726 * Improved format support of GDate parser.
727 * String function speed improvements with new g_stpcpy().
728 * Hashtable API additions.
729 * New GPatternSpec for shell-style pattern matching (from GtkPatternSpec).
730 * Optimizations, cleanups, bug fixes.
731
732 GObject:
733
734 * Added many convenience functions.
735 * GClosure and GParamSpec use float/sink ref-counting scheme now.
736 * Reworked property change notification.
737 * Binary searchable array cleanups, so it's widely usable now.
738 * Added static content keeping for some GValue types.
739 * Support for statically scoped signal parameters.
740 * Extinguished property trailer args in set/get interface.
741 * Added support for abstract types.
742 * G_CONST_RETURN specification all over the place.
743 * Split parameter exchange functionality into value transforms
744   and parameter conversions.
745 * Added signal emission hooks and signal accumulators.
746 * Added interface prerequisites to support is_a (interface, object)
747   relations.
748 * Implemented GValueArray.
749 * New types, boxed: G_TYPE_VALUE, G_TYPE_CLOSURE, G_TYPE_GSTRING
750   GParamSpecs: G_TYPE_PARAM_PARAM, G_TYPE_PARAM_POINTER, G_TYPE_PARAM_CLOSURE,
751   G_TYPE_VALUE_ARRAY, G_TYPE_PARAM_UNICHAR, G_TYPE_PARAM_VALUE_ARRAY.
752 * Varrags value collection improvements.
753 * Implemented debugging traps.
754 * Made things thread-safe.
755 * Many documentation improvements.
756 * Many cleanups, optimizations and bug fixes.
757
758
759 Overview of Changes in GLib 1.3.2:
760 ==================================
761
762 GLib:
763
764 * Win32 build improvements  [Tor]
765 * Improvements to error reporting  
766   (g_critical(), g_return_if_reached()) [Darin]
767 * Add g_strlcpy/g_strlcat  [David Wheeler]
768 * New IO channel implementation for Win32  [Tor] 
769 * Make g_array_free, g_string_free return pointer to memory requested
770   not to be freed.  [Darin]
771 * Added GError based error reporting for thread functions.  [Sebastian]
772 * Moved reference docs into GLib distribution. [Owen]
773 * Added g_convert() for doing convenient character set conversions based
774   on iconv. (GLib now requires libiconv or a native iconv.) [Havoc/Owen]
775 * Various Unicode handling additions (g_ucs4_to_utf8, g_utf8_validate(),
776   g_{locale,filename}_{to,from}_utf8)  [Robert/Havoc/Owen]
777 * Portability fixes for threading.  [Sebastian]
778 * Added convenient functions for launching new processes (g_spawn_*),
779   and shell quoting/unquoting functions.  [Havoc]
780 * Split glib.h into many headers.  [Sebastian]
781 * Added a simple callback-based parser for XML-like files (GMarkup).  [Havoc]
782 * Fixed confusions between comparison functions that return <0, 0, >0
783   and equaility functions that return FALSE,TRUE.  [Sebastian]
784 * Added safe/portable temporary file manipulation functions.  [Tor]
785 * autoconf improvements.  [Raja]
786 * Many documentation improvements.
787 * Bug fixes.
788
789 GObject:
790
791 * Added boxed and pointer types.  [Tim/Jonathan]
792 * Added callback abstraction (GClosure)  [Tim]
793 * Added signal system (GSignal)  [Tim]
794 * Make GTypePlugin an interface  [Tim]
795 * Added GTypeModule - a simple GTypePlugin instantiation  [Owen]
796 * Bug fixes.
797
798
799 What's new in GLib 1.3.1:
800 =========================
801
802 * New GObject library added including object system based on
803   the GTK+ object system. 
804 * Functions for getting the properties of Unicode characters, 
805   computing the canonical decomposition and ordering combining
806   characters aand manipulating UTF-8 string manipulation based
807   on libunicode.
808 * GString now properly handles embedded nuls.
809 * Multiple fixes from the 1.2.x branch.
810 * Upgrade to libtool 1.3.3
811 * Full thread support (thread creation and destruction).
812 * BeOS port, BeOS dynamic modules.
813 * Many improvements to the Windows ports.
814 * Improvements to the OS/2 port, OS/2 module support.
815 * Double ended queue implementation.
816 * GLib macros for printf() formatting, e.g. G_GULONG_FORMAT = "lu"
817 * New configure option --enable-msg-prefix to prefix messages, warnings
818   et ceteri with the program name and the process id.
819 * New thread-safe random number generator Mersenne Twister.
820 * g_strcompress() added, g_strescape() had a slight API change, and
821   more tightly defined semantics.
822 * the g_string(x) macro has been removed, #x may be used instead.
823