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