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