=== Released 2.3.5 ===
[platform/upstream/glib.git] / NEWS
1 Overview of Changes from GLib 2.3.3 to GLib 2.3.4
2 =================================================
3
4 * Make glib-mkenums parse initializers with macros. [Matthias Clasen, muppet]
5 * Respect locale era in g_date_set_parse(). [Theppitak Karoonboonyanan] 
6 * Add atomic operations and use it for the async queue and
7   gonce implementation. [Sebastian Wilhelmi]
8 * Documentation improvements [Sebastian, Matthias, Sven Herzberg]
9 * Add g_main_depth() for finding the recursion depth of the main
10   loop [Owen Taylor, Tim Janik, Stefan Westerfeld]
11 * Add g_spawn_close_pid(), needed on win32 [J. Ali]
12 * Win32 fixes. [Hans Breuer, J. Ali Harlow]
13 * Misc bugfixes [Sebastian, Matthias, Balazs Scheidler, Owen]
14 * Updated translations (cy,et,ga,sq)
15
16 Overview of Changes from GLib 2.3.2 to GLib 2.3.3
17 =================================================
18
19 * Add a native AIX gmodule implementation. [Laurent Vivier]
20 * Add g_node_copy_deep().  [James M. Cape, Matthias Clasen]
21 * Extend GQueue API to match the GList API. [Soeren Sandmann]
22 * Add g_hash_table_find().  [Tim Janik]
23 * Add a G_MODULE_BIND_LOCAL flag. [David Schleef]
24 * Inline g_string_append_c() when possible. [Owen Taylor, Tim]
25 * Wrap waitpid() as a GSource. [Jonathan R. Blandford]
26 * Add g_completion_complete_utf8(). [Theppitak Karoonboonyanan, 
27   Matthias]
28 * Add g_strsplit_set(). [Soeren]
29 * Documentation improvements. [Vincent Untz, Sebastian Wilhelmi, 
30   Soeren, Matthias]
31 * Win32 build fixes. [Tor Lillquist]
32 * Misc bugfixes [Manish Singh, Noah Levitt, Simon Josefsson, 
33   Morten Welinder, Damien Carbery, Julio M. Merino Vidal, Sebastian, 
34   Matthias]
35 * Updated translations (nn,cs,it,ko,sq,ms,az,hr,uk,sr,sr@Latn,sq,ta)
36
37 Overview of Changes from GLib 2.3.1 to GLib 2.3.2
38 =================================================
39
40 * Add G_MAXSIZE. [Manish Singh]
41 * Add g_rand_new_with_seed_array(), g_rand_set_seed_array(),
42   implementing the init-by-array functionality of the 
43   original mersenne twister. Add g_rand_copy(). Improve seeding. 
44   [George Lebl]
45 * Add a lowercase_name option to glib-mkenums. [Murray Cumming]
46 * Add g_ptr_array_foreach(). [Matthias Clasen]
47 * Add g_timer_continue(). [Tim-Philipp Müller]
48 * Fix a threadsafety issue in mem chunks. [Matthias, Balazs Scheidler]
49 * Fix g_filename_{to,from}_utf8() on Win32 and improve 
50   g_file_test() there too [Hans Breuer] 
51 * Add a boxed type for NULL-terminated string arrays.  [Matthias]
52 * Add G_DEFINE_TYPE() plus variants to ease the constuction
53   of GObject boilerplate code.  [Tim Janik]
54 * Support & in password GECOS field [Matthias, Soeren Boll Overgaard]
55 * Documentation improvements [Matthias, Manish]
56 * Win32 build fixes [Hans]
57 * Misc bug fixes [Damien Carbery, Matthias, Manish, Olivier Poncet, 
58   Zack Rusin]
59 * Updated translations (ar,de,fa,ga,mn,nn,no,sq)
60
61 Overview of Changes from GLib 2.3.0 to GLib-2.3.1
62 =================================================
63
64 * Add glib/gi18n.h and glib/gi18n-lib.h for common
65   gettext support, including a Q_() macro for translation
66   with context [Matthias Clasen]
67 * Add a more flexible G_FILENAME_ENCODING variable
68   as a replacement for G_BROKEN_FILENAMES [Matthias]
69 * Fix the return value g_main_context_iterate() for
70   newly ready sources [Padraig O'Briain]
71 * Handle Hangul composition for normalization [Noah Levitt]
72 * Add G_{MIN,MAX,MAXU}INT{8,16,32}. [Mark Jones, Matthias]
73 * Add G_GSIZE_FORMAT/G_SSIZE_FORMAT [Manish Singh]
74 * Add G_STRFUNC as a portable wrapper for __func__ [Tim Janik]
75 * Documentation improvements [Matthias]
76 * GObject [Tim Janik]
77  - Support '-' in g_signal_connect()/disconnect() names
78    like 'swapped-signal'.
79  - Add g_type_class_peek_static() and use to optimize
80    g_object_new() for static types [Tim]
81  - Allow setting construct-only properties from within
82    init() implementations
83  - Enforce readability/writeability in g_object_set/get()
84 * Fix bug with g_ascii_strtod and multi-byte separator.
85   [Behdad Esfahbod, Roozbeh Pournader]  
86 * Misc bug fixes [Matthias, John Ehresman, Andrew Lanoix,
87   Tor Lillqvist, Mark McLoughlin, Tim-Philipp Müller, Manish, 
88   Morten Welinder]
89 * Updated translations (ca,cs,da,es,fr,ja,nn,no,pt,ru)
90
91 Overview of Changes from GLib 2.2.x to GLib-2.3.0
92 =================================================
93
94 * Replace Trio printf by gnulib vasnprintf [Matthias Clasen]
95 * Update Unicode data to Unicode 4.0 [Noah Levitt]
96 * Support XML-safe formatted output with 
97   g_markup_[v]printf_escaped [Owen Taylor]
98 * Add g_file_read_link to read symbolic links [Matthias]
99 * Add g_unichar_get_mirror_char to obtain the 
100   mirrored variant of a character [Noah]
101 * Support for one-time initialization functions. 
102   [Sebastian Wilhelmi]
103 * Miscellaneous API additions: g_vasprintf
104   g_string_chunk_insert_len, g_setenv, g_unsetenv [Matthias]
105 * Docs improvements [Matthias]
106 * Add support instance-private data on classed types
107   [Mark McLoughlin, Tim Janik, Owen]
108 * Optimize signal emissions [Soeren Sandmann, Tim]
109 * Support a "default vtable" per interface [Tim]
110 * Add support for properties on interfaces [Owen, Tim]
111 * Miscellaneous API additions: g_value_take_string(),
112   g_value_take_param(), g_value_take_object(), 
113   g_value_take_boxed(). [Matthias]
114 * Win32 build fixes [Tor Lillquist]
115
116 Overview of Changes from GLib 2.1.5 to GLib-2.2.0
117 =================================================
118
119 * Fix a problem with g_thread_init() on 64-bit problems
120   [Alceste Scalas, Sebastian Wilhelmi]
121 * Add assembly implementations of byteswap macros
122   for ia64 and x86_64. [Manish Singh]
123 * IOChannel fixes for Win32 [Tor Lillqvist, Thorsten Maerz]
124 * Updated translations (bg,ca,es,da,fi,lv,ru,sk)
125
126 Overview of Changes from GLib 2.1.4 to GLib-2.1.5
127 =================================================
128
129 * Win32 bug fixes [Tor Lillqvist]
130 * Various post-rewrite fixes for glib-gettext.m4 [Owen Taylor,
131   Jody Goldberg, Kjartan Maraas, Johannes Stezenbach]
132 * Ensure we have a GUINT64_FORMAT by pulling in Trio
133   if necessary [Manish Singh]
134 * Further Trio build fixes [Matthias Clasen, Owen]
135 * Hack around gcc, libtool issues with -pthread [Owen]
136 * Docs improvements [Matthias]
137 * Bug and portability fixes 
138 * Updated and new translations (bg,de,fi,fr,sq,fr)
139
140 Other contributors: Kai Poitschke, Morten Welinder
141
142 Overview of Changes from GLib 2.1.3 to GLib-2.1.4
143 =================================================
144
145 * autoconf changes to make it possible to cross compile
146   GLib. [Owen Taylor, Dan Kegel, Amy Lin, Dimi Shahbaz, 
147   Johannes Stezenbach]
148 * Use libintl when it has bind_textdomain_codeset() and
149   GLib doesn't. [Owen]
150 * Improve generation of pseudo-random integers [Morten Welinder, 
151   Sebastian Wilhelmi]
152 * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren]
153 * Cleanup include order [Sven Neumann]
154 * autoconf cleanups and bug fixes [Daniel, Matthias Clasen, Owen]
155 * Doc fixes and additions [Matthias]
156
157 Other contributors: James M. Cape, Frederic Crozat, Martin Gansser,
158   Phuc LeHong, Manish Singh, Joshua Weage, Morten Welinder
159
160 Overview of Changes from GLib 2.0.x to GLib-2.1.x
161 =================================================
162
163 * Add copy of the Trio library to build and use for printf() when 
164   system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen]
165 * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson]
166 * Add g_markup_parse_context_get_element() [Matthias]
167 * Add g_utf8_strreverse [Matthias]
168 * Add g_ascii_strtoull() [Tim Janik]
169 * Support scanning of 64-bit values with GScanner [Tim]
170 * Add g_set/get_application_name() [Havoc Pennington]
171 * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. 
172   Use for g_return_if_fail(). [Matthias Clasen]
173 * Add G_GNUC_DEPRECATED macro [Tom Tromey]
174 * Improve the seeding algorithm of GRandom to avoid problems
175   with certain pathological seeds. Support G_RANDOM_VERSION=2.0
176   environment variable. [Sebastian Wilhelmi]
177 * Improve thread configure checks, use -pthread where applicable
178   [Sebastian]
179 * Improve handlng of thread priorities [Sebastian]
180 * Fix up parameter names that might shadow functions from
181   system headers [Soeren Sandmann]
182 * Clean up usage of deprecated functions [Manish Singh]
183 * Docs fixes and improvements. In particular, include "Since" information.
184   [Matthias, Soeren, Martin Schulze, Daryll Strauss, Bill Janssen, 
185   Owen Taylor, Morten Welinder]. 
186
187 Overview of Changes in GLib 2.0.7
188 =================================
189
190 * Fix C++ warnings in gtype.h [Dom Lachowicz]
191 * Fix g_type_fundamental_next() [Tim Janik]
192 * Fix various missing includes of config.h [Morten Welinder]
193 * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi]
194 * Various 64-bit fixes [Manish Singh]
195 * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs]
196 * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner]
197 * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor,
198      Tim, Havoc Pennington,  Matthias Clasen, Sebastian Rittau,
199      Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor]
200 * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
201
202 Overview of Changes in GLib 2.0.6
203 =================================
204
205 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
206 * Clean up debug spew from GObject [Anders Carlsson]
207 * Compiler warning fixes [David L. Cooper II]
208 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
209 * Fixes for --disable-debug [Sebastian Wilhelmi]
210 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
211   Rajkumar Sivasamy, Laurent Vivier]
212 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
213   Sebastian Rittau, Linus Welleij]
214 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
215 * Updated translations (bg,ko,vi)
216
217 Overview of Changes in GLib 2.0.5
218 =================================
219
220 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
221 * Clean up debug spew from GObject [Anders Carlsson]
222 * Compiler warning fixes [David L. Cooper II]
223 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
224 * Fixes for --disable-debug [Sebastian Wilhelmi]
225 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
226   Rajkumar Sivasamy, Laurent Vivier]
227 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
228   Sebastian Rittau, Linus Welleij]
229 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
230 * Updated translations (bg,ko,vi)
231
232 Overview of Changes in GLib 2.0.4
233 =================================
234
235 * Fix some 64-bit problems. (George Lebl, David L. Cooper II)
236 * Add note about Tru64 iconv to INSTALL. (Manuel Op de Coul)
237 * Fix problem with timouts > MAXINT. (Tim Janik, Owen Taylor)
238 * Updated translations (ca,es,fr,ja,gl,ms,nl,pl,pt,ru)
239
240 Overview of Changes in GLib 2.0.3
241 =================================
242
243 * Handle sorting 0-length arrays (Ron Arts)
244 * Threading fixes (Sebastian Wilhelmi)
245 * Portability fixes (Miroslaw Dobrzanski-Neumann, Jacob Berkman, Gareth Pierce, 
246   Sebastian, Qingjiang Yuan)
247 * Various fixes for glib-2.0.m4. (Jim Gettys, others.)
248 * Locate right glib-genmarshal when cross-compiling. (Mitch Natterer)
249 * Win32 fixes (Tor Lillqvist)
250 * Try to fix g_get_charset() related segfaults. (Owen)
251 * Fixes for gettext detection. (Dan Winship, HideToshi Tajima, Boyd Lynn Gerber,
252   Andrew P. Lentvorski, Jr.)
253 * Fix g_scanner_unexp_token() (Tim Janik, Sven Neumann)
254 * g_markup fixes. (Matthias Clasen.)
255 * Bug fixes and cleanups (Daniel Elstner, Matthias, Laszlo Peter, Morten Welinder,
256   Wayne Schuller)
257
258 Overview of Changes in GLib 2.0.1
259 =================================
260
261 * Portability fixes for Sun's Forte compiler [Erwann Chenede]
262 * Performance improvements for GObject parameter lookup, 
263   g_filename_to/from_utf8() [Alex Larsson]
264 * Actually check interface prerequisites [Matthias Clasen,
265   Miroslaw Dobrzanski-Neumann]
266 * Fix problem with glib-mkenums taking huge amounts of stack. [Owen Taylor]
267 * Fix g_signal_handlers_disconnect_by_func() for C++ [Damien Sandras]
268 * Fixes for g_log() and threading.
269   [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, Tim Janik]
270 * Make g_print(), g_printerr(), g_warning(), etc, convert from
271   UTF-8 to the encoding of the locale [Sebastian Wilhelmi, Tim]
272 * Fixes for GIOChannel on windows. [Tor Lillqvist]
273 * Fix gsize/gint mismatches in giochannel.c [Miroslaw Dobrzanski-Neumann]
274 * Fix file descriptor leak in g_file_get_contents() [Matthias]
275 * Workaround iconv() problems on older Solaris [Lauri Alanko]
276 * Fix warnings with gcc-3.1 about asm const [Cody Russel]
277 * Minor bug fixes.
278
279 Other contributors: Hans Breuer, LEE Sau Dan, Sven Neumann, Salmaso Raffaele,
280   Akira Tagoh, Morten Welinder
281
282
283 Overview of Changes in GLib 2.0.0
284 =================================
285
286 * Thread portability fixes [Sebastian Wilhelmi]
287 * Documentation updates [Owen Taylor]
288 * Make g_strerror(), g_strsignal() properly return UTF-8,
289   call bind_text_domain_codeset() so that error strings
290   are in UTF-8 as well. [Owen, Tor Lillqvist]
291
292 Overview of Changes in GLib 2.0.0 rc1:
293 ======================================
294
295 * Win32 fixes [Tor Lillqvist]
296 * Portability fixes [Finlay Dobbie, Miroslaw Dobrzanski-Neumann]
297 * Fix up g_date_strftime [Daniel Elstner]
298 * Add some structure padding [Tim Janik]
299 * Make g_get_homedir() prefer the users home directory to $HOME
300
301 Other contributors: Matthias Clasen, Paolo Maggi, Christian Rose
302
303 Overview of Changes in GLib 1.3.15:
304 ===================================
305
306 * Speed up marshalers by using private access to GValue 
307   [Anders Carlsson, Tim Janik]
308 * Reduce GValue to 2 elements [Tim]
309 * Add G_DEBUG environment variable, G_DEBUG=fatal_warnings [Matthias Clasen]
310 * Fixes for AIX compilation [Miroslaw Dobrzanski-Neumann]
311 * Add padding to various structures [Owen Taylor, Tim]
312 * Win32 fixes [Tor Lillqvist]
313
314 Other contributors: James Henstridge, Ryan Lovett, Morten Welinder,
315   Daniel Elstner
316
317 Overview of Changes in GLib 1.3.14:
318 ===================================
319
320 * Register value transformations for gint64, guint64 [Andy Wingo]
321 * Build with large-file support [Sven Neumann, Owen Taylor]
322 * Fix handling of hostnames in URI's [Darin Adler]
323 * Main loop bug fixes [Havoc Pennington, Owen]
324 * Doc fixes and improvements [Manish Singh, Tim Janik]
325 * Support ' as attribute delimiters in GMarkup [Matthias Clasen]
326 * Win32 fixes [Hans Breuer, Tor Lillqvist]
327 * Threading bug and build fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann]
328 * Miscellaneous bug fixes
329
330 Other contributors: Matthias Clasen, James Henstridge, Mitch Natterer, 
331   Morten Welinder.
332
333 Overview of Changes in GLib 1.3.13:
334 ===================================
335
336 * Fix g_filename_to/from_uri for Win32 [Tor Lillqvist, Darin Adler]
337 * Miscellaneous win32 fixes [Tor, Hans Breuer]
338 * Fix thread options for gcc on AIX [Jerome Zago, Sebastian Wilhelmi]
339 * Documentation improvements [Ron Steinke, Matthias, Sebastian]
340 * Cache iconv converters as used by g_convert() [Jeffrey Stedfast]
341 * Bug fixes [Sven Neumann, Owen Taylor, Matthias Clasen, Jeffrey,
342   Laszlo Peter, Havoc Pennington, Tim Janik]
343
344 Overview of Changes in GLib 1.3.12:
345 ===================================
346
347 * Implement closure chaining, fixing up API (Tim Janik)
348 * Closure chaining test case (James Henstridge)
349 * Make GType long not int where both are equal width (Tim)
350 * Win32 fixes and improvements (Hans Breuer, Tor Lillqvist)
351 * Fixes for NetBSD. (Dan Winship)
352 * Use snprintf() for g_printf_string_upper_bound() where possible. (Matthias Clasen)
353 * Save space for GBSearchArray (Tim Janik)
354 * Documentation improvements. (Matthias, Sven Neumann, Havoc Pennington)
355
356 Other contributors: Darin Adler, Chris Blizzard, Anders Carlson, Daniel Elstner, Michael Meeks, 
357   Mark McLoughlin, Dave Neary, Manish Singh, Owen Taylor, HideToshi Tajima, 
358   Sebastian Wilhelmi.
359
360
361 Overview of Changes in GLib 1.3.11:
362 ===================================
363
364 * Win32 fixes [Hans Breuer, Tor Lillqvist]
365 * Documentation improvements [Matthias Clasen]
366 * Portable directory handling API [Hans]
367 * Threading fixes [Sebastian Wilhelmi, Havoc Pennington]
368 * Fix excess relocations in Unicode tables [Andrew Taylor]
369 * Fix gpattern for UTF-8 [Matthias Clasen]
370 * Support overriding class closures [Tim Janik]
371 * Support for derivation from G_TYPE_POINTER [Owen Taylor]
372 * Hide pointers to type information inside GType to reduce locking
373   [Alex Larsson, Tim]
374 * Adds check for direct inclusion of gobject/*.h [Owen]
375 * GObject API cleanups [Tim]
376
377 Other contributors: Darin Adler, Jacob Berkman, Daniel Egger, Eric Lemings, 
378   Michael Meeks, Mark McLoughlin, Arkadiusz Miskiewicz, Dan Winship
379
380
381 Overview of Changes in GLib 1.3.10:
382 ===================================
383
384 * Many Win32 fixes and improvements [Tor Lillqvist]
385 * Documentation improvements [Matthias Clasen]
386 * g_string_printfa() renamed to g_string_append_printf()
387 * Use libcharset from libiconv to implement charset detection
388   more portably. [Owen Taylor, Hidetoshi Tajima]
389 * Add 64 bit type support to GObject [Joshua Pritikin, Mathieu Lacage, Owen]
390 * Make support for 64 bit integers a requirement [Joshua]
391 * GPattern improvements [Tim Janik, Matthias]
392 * Locale independent g_ascii_strtod / g_ascii_dtostr [Alex Larsson]
393 * Many bug fixes and minor tweaks.
394
395 Other Contributors: Darin Adler, Jakub Jelinek, James Antill, Andrew Taylor,
396   Ben Gertzfield, Elliot Lee, Manish Singh, Abel Cheung, Laszlo Peter,
397   Sven Neumann, George Lebl, Raja Harinath, Sebastian Wilhelmi,
398   Jacob Berkman
399
400
401 Overview of Changes in GLib 1.3.9:
402 ==================================
403
404 * Fixes for comparison of threads [Sebastian Wilhelmi]
405 * Use vasprintf() when possible for g_strdup_printf [Matthias Clasen]
406 * Win32 fixes [Tor Lillqvist, Hans Breuer]
407 * Add a len argument to g_ascii_strup/strdown
408 * Bug, portability fixes, cleanups.
409
410 Other Contributors: Darin Adler, Katsuhiro Okuno, Joshua N. Pritikin
411
412
413 Overview of Changes in GLib 1.3.8:
414 ==================================
415
416 * Documentation updates [Owen]
417 * Made GType interfaces overridable in derived types
418 * Many win32 fixes [Tor Lillqvist]
419 * Miscellaneous cleanups and fixes
420
421 Other contributors:
422   Darin Adler, Matthias Clasen, Ron Steinke, Hans Breuer, Alex Larsson
423
424
425 Overview of Changes in GLib 1.3.7:
426 ==================================
427
428 * Integrate GClosure support into the main loop [Owen Taylor]
429 * More GSignal convenience functions (macros) [Sven Neumann, Tim Janik]
430 * Introduced weak references for GObject [James Henstridge, Sven, Tim] 
431 * Minor hash table optimizations
432 * Main loop and threading improvements [Sebastian Wilhelmi]
433 * Added g_ascii_* functions to be used for locale insensitive UTF-8
434   compliant code instead of old string functions  [Darin Adler, Alex Larsson]
435 * Add functions for Unicode case-conversion, normalization, and 
436   collation [Owen]* GString improvements [Owen]
437 * Reworked the GIOChannel code [Hidetoshi Tajima, Ron Steinke]
438 * Removed glib-config-2.0 in favour of pkgconfig [Sebastian]
439 * Make code 64bit clean [Mark Murnane]
440 * More G_CONST_RETURN fixes
441 * Many improvements to the win32 code [Tor Lillqvist, Hans Breuer]
442 * Miscellaneous bug and API fixes
443
444 Other contributors:
445   Michael Natterer, Christopher James Lahey, Padraig O'Briain,
446   Matthias Clasen, Josh Pritikin, Steve Baker, Cesar Rincon, Garry R. Osgood,
447   Michael Meeks, Laszlo Peter,  Martin Baulig, Kjartan Maraas, Andrew Lanoix,
448   Peter Williams
449
450
451 Overview of Changes in GLib 1.3.6:
452 ==================================
453
454 * Threads have a "return value" from g_thread_join
455 * Removed ability to adjust thread stack size
456 * Prefix warnings with progname/PID by default, change toggle for this to 
457   be an env variable G_MESSAGES_PREFIXED not a compile-time option
458 * GMarkup speedups
459 * GDate const, convenience fixups
460 * Include test cases that headers are compilable by C++ compiler
461 * Add ability to spawn processes with argv[0] != executable path.
462 * g_strstr_len, g_strrstr, g_strrstr_len
463 * Add length argument to g_utf8_strchr and g_utf8_strrchr.
464 * Misc bug fixes
465
466
467 Overview of Changes in GLib 1.3.5:
468 ==================================
469
470 * Added an installed glib-mkenums Perl program for parsing enumeration
471   declarations from header files.
472 * Mark some additional deprecated functions.
473 * Bug and Portability fixes
474
475
476 Overview of Changes in GLib 1.3.4:
477 ==================================
478
479 * Efficiency improvements for GThreadPool
480 * A few bug fixes
481 * Build fixes
482 * Documentation improvements
483
484
485 Overview of Changes in GLib 1.3.3:
486 ==================================
487
488 GLib:
489
490 * More user_data support in various functions.
491 * Main loop API revamps to support per-thread main loops.
492 * Unicode handling improvements.
493 * Implemented debugging traps.
494 * G_CONST_RETURN specification all over the place.
495 * Various new small utility functions.
496 * Random number generator precision improvements.
497 * New configure option --disable-mem-pools.
498 * Many Win32 improvements.
499 * Added g_try_malloc() friends varinats.
500 * Many documentation improvements.
501 * Many threading improvements, support for dynamic allocation
502   of static mutexes.
503 * GHookLIst API cleanups.
504 * Improved format support of GDate parser.
505 * String function speed improvements with new g_stpcpy().
506 * Hashtable API additions.
507 * New GPatternSpec for shell-style pattern matching (from GtkPatternSpec).
508 * Optimizations, cleanups, bug fixes.
509
510 GObject:
511
512 * Added many convenience functions.
513 * GClosure and GParamSpec use float/sink ref-counting scheme now.
514 * Reworked property change notification.
515 * Binary searchable array cleanups, so it's widely usable now.
516 * Added static content keeping for some GValue types.
517 * Support for statically scoped signal parameters.
518 * Extinguished property trailer args in set/get interface.
519 * Added support for abstract types.
520 * G_CONST_RETURN specification all over the place.
521 * Split parameter exchange functionality into value transforms
522   and parameter conversions.
523 * Added signal emission hooks and signal accumulators.
524 * Added interface prerequisites to support is_a (interface, object)
525   relations.
526 * Implemented GValueArray.
527 * New types, boxed: G_TYPE_VALUE, G_TYPE_CLOSURE, G_TYPE_GSTRING
528   GParamSpecs: G_TYPE_PARAM_PARAM, G_TYPE_PARAM_POINTER, G_TYPE_PARAM_CLOSURE,
529   G_TYPE_VALUE_ARRAY, G_TYPE_PARAM_UNICHAR, G_TYPE_PARAM_VALUE_ARRAY.
530 * Varrags value collection improvements.
531 * Implemented debugging traps.
532 * Made things thread-safe.
533 * Many documentation improvements.
534 * Many cleanups, optimizations and bug fixes.
535
536
537 Overview of Changes in GLib 1.3.2:
538 ==================================
539
540 GLib:
541
542 * Win32 build improvements  [Tor]
543 * Improvements to error reporting  
544   (g_critical(), g_return_if_reached()) [Darin]
545 * Add g_strlcpy/g_strlcat  [David Wheeler]
546 * New IO channel implementation for Win32  [Tor] 
547 * Make g_array_free, g_string_free return pointer to memory requested
548   not to be freed.  [Darin]
549 * Added GError based error reporting for thread functions.  [Sebastian]
550 * Moved reference docs into GLib distribution. [Owen]
551 * Added g_convert() for doing convenient character set conversions based
552   on iconv. (GLib now requires libiconv or a native iconv.) [Havoc/Owen]
553 * Various Unicode handling additions (g_ucs4_to_utf8, g_utf8_validate(),
554   g_{locale,filename}_{to,from}_utf8)  [Robert/Havoc/Owen]
555 * Portability fixes for threading.  [Sebastian]
556 * Added convenient functions for launching new processes (g_spawn_*),
557   and shell quoting/unquoting functions.  [Havoc]
558 * Split glib.h into many headers.  [Sebastian]
559 * Added a simple callback-based parser for XML-like files (GMarkup).  [Havoc]
560 * Fixed confusions between comparison functions that return <0, 0, >0
561   and equaility functions that return FALSE,TRUE.  [Sebastian]
562 * Added safe/portable temporary file manipulation functions.  [Tor]
563 * autoconf improvements.  [Raja]
564 * Many documentation improvements.
565 * Bug fixes.
566
567 GObject:
568
569 * Added boxed and pointer types.  [Tim/Jonathan]
570 * Added callback abstraction (GClosure)  [Tim]
571 * Added signal system (GSignal)  [Tim]
572 * Make GTypePlugin an interface  [Tim]
573 * Added GTypeModule - a simple GTypePlugin instantiation  [Owen]
574 * Bug fixes.
575
576
577 What's new in GLib 1.3.1:
578 =========================
579
580 * New GObject library added including object system based on
581   the GTK+ object system. 
582 * Functions for getting the properties of Unicode characters, 
583   computing the canonical decomposition and ordering combining
584   characters aand manipulating UTF-8 string manipulation based
585   on libunicode.
586 * GString now properly handles embedded nuls.
587 * Multiple fixes from the 1.2.x branch.
588 * Upgrade to libtool 1.3.3
589 * Full thread support (thread creation and destruction).
590 * BeOS port, BeOS dynamic modules.
591 * Many improvements to the Windows ports.
592 * Improvements to the OS/2 port, OS/2 module support.
593 * Double ended queue implementation.
594 * GLib macros for printf() formatting, e.g. G_GULONG_FORMAT = "lu"
595 * New configure option --enable-msg-prefix to prefix messages, warnings
596   et ceteri with the program name and the process id.
597 * New thread-safe random number generator Mersenne Twister.
598 * g_strcompress() added, g_strescape() had a slight API change, and
599   more tightly defined semantics.
600 * the g_string(x) macro has been removed, #x may be used instead.
601