Move the compiler-dependency in the G_GNUC_INTERNAL definition from
[platform/upstream/glib.git] / NEWS
1 Overview of Changes from GLib 2.13.0 to GLib 2.13.1
2 ===================================================
3
4 * GRegex:
5  - Portability fixes
6  - Split into immutable GRegex and GMatchInfo
7  - Add g_regex_get_max_backref() and g_regex_get_capture_count()
8    to obtain information about the compiled regex
9
10 * GKeyFile:
11  - Fix roundtrip problems
12  - Add g_key_file_load_from_dirs()
13
14 * Unicode support:
15  - Fix corner cases in case conversion routines
16
17 * GOption:
18   - Add a function to get the formatted help string
19
20 * GHash:
21  - Add new functions g_hash_table_get_keys() and
22    g_hash_table_get_values() to retrieve the keys and
23    values in list form
24
25 * Updated transations:
26   Simplified Chinese (zh_CN)
27   Arabic (ar)
28
29
30 Overview of Changes from GLib 2.12 to GLib 2.13.0
31 =================================================
32
33 * Add GSequence, a list that is implemented using
34   a balanced binary tree.
35
36 * Add GRegex, an implementation of Perl regular expressions,
37   based on PCRE.
38  
39 * Use Posix monotonic clocks instead of gettimeofday()
40   for GTimer when available.
41
42 * Support static initialization of GQeues with G_QUEUE_INIT,
43   g_queue_init() and g_queue_clear().
44
45 * Add g_string_chunk_clear() for clearing a 
46   GStringChunk.
47
48 * Add g_unichar_get_script() to obtain Unicode
49   script information.
50
51 * Add g_unichar_iszerowidth() to obtain information
52   about zero-width characters.
53
54 * Add G_GNUC_MAY_ALIAS which wraps the gcc may_alias 
55   type attribute.
56
57 * G_GNUC_INTERNAL has a working definition for the
58   Sun Studio compiler. This requires the macro to
59   be positioned before the function declaration.
60
61 * The slice allocator can produce detailed debugging
62   information with G_SLICE=debug-blocks.
63
64 * Modules support G_DEBUG flags resident-modules and
65   bind-now-modules.
66
67 * Add G_DEFINE_DYNAMIC_TYPE() to make it easier
68   to define types in modules.
69
70 * Bug fixes: too many to list them in detail here.
71
72 * New and updated translations (be,bg,bn,ca,cs,de,
73   en_CA,en_GB,et,fa,fr,he,hu,it,ja,ku,lt,mg,mk,ml,
74   nb,ne,nn,pt,pt_BR,ro,sr,sr@Latn,sv,ta,uk,vi,zh_CN,
75   zh_HK,zh_TW)
76
77
78 Overview of Changes from GLib 2.12.1 to GLib 2.12.2
79 ===================================================
80
81 * Unicode updates:
82  - Normalization is following Unicode TR #29
83  - g_unichar_isxdigit() only accept characters
84    for which g_unichar_xdigit_value() returns a value
85  - g_unichar_toupper and g_unichar_tolower leave
86    unconvertable characters in place instead of
87    replacing them by NUL
88
89 * Bugs fixed
90  348491 g_utf8_strup() and g_utf8_strdown() returns 
91         string with NUL bytes
92  349825 GKeyFile always inserts a newline before a group
93  347842 g_unichar_isxdigit() is too general about what 
94         it considers a digit
95  348694 g_utf8_normalize() hasn't been updated to PR #29
96  348785 Hint about G_DEBUG in Message Logging docs
97  349792 Wrong english string (UI)
98  349952 gparamspecs.c uses gcc feature
99
100 * Translation updates (ca,cs,de,dz,es,eu,fi,gu,ko,
101   nl,pl,tr,uk,zh_HK,zh_TW)
102
103
104 Overview of Changes from GLib 2.12.0 to GLib 2.12.1
105 ===================================================
106
107 * Update to final Unicode Character Database 5.0.0
108
109 * Bugs fixed:
110  346660 issues with base64 api documentation / g_base64_decode_cl...
111  348136 Coverity reports allocation of wrong size CID #2839
112  336281 Update to UCD 5.0
113  346197 g_date_strftime %F option doesnt work for win32
114  348011 Small optimization to real_toupper()
115  246494 prototype mismatch in glib/gconvert.c
116
117 * New and updated translations (bg,bn_IN,ca,dz,eu,fi,
118   fr,he,it,ja,mk,or,pt)
119
120
121 Overview of Changes from GLib 2.11.4 to GLib 2.12
122 =================================================
123
124 * Bugs fixed:
125  344905 leap-year bug in g_time_val_from_iso8601 w/o HAVE_TIMEGM
126
127 * Updated translations (cy,nb,nl)
128
129
130 Overview of Changes from GLib 2.11.3 to GLib 2.11.4
131 ===================================================
132
133 * GBookmarkFile:
134  - g_bookmark_file_remove_item returns a boolean
135  
136 * g_mkstemp accepts the XXXXXX in the middle of
137   the template
138  
139 * Bugs fixed:
140  344868 g_key_file_to_data should separate groups 
141
142 * Updated translations (de,es,fr,gu,hi,ko,th)
143
144
145 Overview of Changes from GLib 2.11.2 to GLib 2.11.3
146 ===================================================
147
148 * GBookmarkFile:
149   - g_bookmark_file_move_item: Return TRUE in case of
150     an empty target
151
152 * Bugs fixed: 
153  343919 gunicollate.c: strxfrm bug on VC8
154
155 * Updated translations (fi)
156
157 Overview of Changes from GLib 2.11.1 to GLib 2.11.2
158 ===================================================
159
160 * Add g_ascii_stroll to parse signed 64bit integers
161
162 * GMarkup: add a flag to treat CDATA as text
163
164 * GHashTable: add functions to remove all entries
165
166 * GMainLoop: add functions to find the currently
167   running source, and determine if it is destroyed
168
169 * Bug fixes:
170  342563  g_atomic_thread_init() needs to be called before 
171          other _g_*_thread_init() functions
172  343548  Potential use after free in callers of g_string_free() 
173  168538  Wish: Clearing contents of GHashTables
174  321886  GTK+ cannot be reliably used in multi-threaded 
175          applications
176  341826  goption.c: 'strtoll' is C99's function
177  343899  g_ascii_formatd dosn't work as expected for all 
178          format strings
179  317793  Make GEnumValue strings const
180  337129  Compile warnings in G_IMPLEMENT_INTERFACE
181  303622  What is G_TYPE_CHAR?
182
183 * Updated translations (bg,dz,eu,gl,ja,ko,nl,th,vi)
184  
185
186 Overview of Changes from GLib 2.11.0 to GLib 2.11.1
187 ===================================================
188
189 * GOption  
190   - Support 64-bit integers 
191   - Allow optional text before and after the options
192     in help output
193
194 * Bug fixes:
195  340538 gbase64-test writes OOB 
196  340816 GKeyFile set_string_list invalid memory reads 
197  339105 g_key_file_parse_value_as_double
198  340434 convert-test.c fails (function test_one_half)
199  311043 Memory leaks (and potential infinite loops) 
200         when using G_ERRORCHECK_MUTEXES
201  335198 Error checking mutexes are fubar  
202  341237 Add a G_OPTION_ARG_INT64
203  341192 g_io_channel_set_flags not implemented on win32
204  336120 Allow adding description before/after GOption 
205         --help output body
206  341191 misplaced check in g_relation_delete
207  340530 mismatched calloc / g_free in win32 threads
208
209 * Updated translation (es)
210
211 Overview of Changes from GLib 2.10.x to GLib 2.11.0
212 ===================================================
213
214 * GBookmarkFile: a parser for files containing bookmarks
215   stored using the Desktop Bookmark specification.
216
217 * Base64 encoding support
218         
219 * Unicode 5.0 support
220
221 * GOption supports floating point numbers 
222
223 * GKeyFile supports floating point numbers
224
225 * Bug fixes:
226  155884 gatomic.c should be based on new SDK
227  157877 update-desktop-database doesn't handle duplicate entries
228  164719 keyfile parser doesn't support floats
229  327662 Import BookmarkFile from libegg
230  329548 Add G_OPTION_ARG_DOUBLE
231  329789 option-test.c type confusion
232  332841 Segmentation Fault when %llu is passed to vasnprintf and 
233         HAVE_SNPRINTF is not defined
234  333879 gthread/gthread-win32.c: IsDebuggerPresent needs '#define 
235         _WIN32_WINDOWS 0x0401'
236  333916 g_timer_elapsed docs should mention that microseconds 
237         may be NULL
238  334440 dlerror() portability issue causes crash on (old) a.out 
239         NetBSD platform
240  334646 goption + error out params
241  334799 g_remove() must check return value of remove()
242  334943 make check FAIL: threadpool-test
243  335215 Some breakages with GThreadPool
244  336085 g_option_context_new parameter lacks better explanation
245  336677 Documentation for g_object_ref_sink() is incorrect
246  337027 gbookmarkfile.c: sys/time.h include error
247  337553 Wrong escaping of URIs
248  338572 Dereferencing NULL value in g_key_file_get_group_comment
249  338845 g_completion_complete_utf8 crashes when NULL is passed to it
250  339337 g_bookmark_file_set_description
251  339338 gbookmarkfile.c, function expand_exec_line
252  339340 gbookmarkfile.c, function bookmark_app_info_dump
253
254 * Translation updates (bg,en_GB,et,gl,gu,he,hi,ka,nb,nl,nn,
255                        or,pt_BR,ro,tr,vi,zh_CN)
256
257
258 Overview of Changes from GLib 2.10.0 to GLib 2.10.1
259 ===================================================
260
261 * Bugs fixed:
262  314794 Broken pthread detection on Darwin [Gregor Riepl]
263  322476 Missing check for .dylib [Vladimir Panov]
264  333651 Inconsistent _g_charset_get_aliases prototype [Julio 
265         M. Merino Vidal]
266  333761 GInitiallyUnowned breaks application code [Sven Herzberg]
267
268 * Win32 changes:
269  - Fix g_listenv() implementation.
270  - Allow up to 100 GPrivate structs
271
272 * Translation updates (fr,hu,lt,pl,sv)
273
274
275 Overview of Changes from GLib 2.9.6 to GLib 2.10.0
276 ==================================================
277
278 * Bugs fixed:
279  328997 64bit pointer trunction in glib slab-allocator
280         [Pascal Hofstee]
281  331110 g_cond_broadcast(inform_cond) without holding 
282         inform_mutex [Chris Wilson, Sebastian Wilhelmi]
283  332093 Fix some leaks in the tests [Kjartan Maraas]
284  332435 g_utf8_strlen returns wrong value if a maximum 
285         number of bytes to check is specified 
286         [Matthias Clasen]
287  331367 gslice requires more POSIX-like semantics for 
288         GPrivate destructors [Tor Lillqvist]
289
290 * Documentation improvements [Matthias, Kang Jeong-Hee,
291   Tor Lillqvist, Stefan Kost]
292
293 * Translation updates (el,eu,ka,uk)
294
295 Overview of Changes from GLib 2.9.5 to GLib 2.9.6
296 =================================================
297
298 * Bugs fixed: 
299  329124 distclean removes README [Kjartan Maraas, Tim Janik]
300  317679 GRelation field type not documented [Behdad Esfahbod]
301  329123 Typo in GTime docs [Kjartan Maraas]
302
303 * Documentation improvements [Sven Herzberg, David
304   Schleef, Kjartan Maraas, Behdad Esfahbod]
305
306 * Translation updates (cs,cy,it,ko,pt,sq,sr,sr@Latn,ru
307
308 Overview of Changes from GLib 2.9.4 to GLib 2.9.5
309 =================================================
310
311 * Memory management: 
312   Runtime debugging support: The slice allocator
313   can be turned off by setting G_SLICE=always-malloc
314   in the environment. Zeroing of freed memory can
315   now be turned on at runtime by setting
316   G_DEBUG=gc-friendly in the environment. [Tim Janik]
317
318 * Bugs fixed:
319  328253 HP-UX/IA-64 uses ".so" as default shared library 
320         extension [Albert Chin]
321  143380 unicode-encoding test fails converting to UTF-16 
322         with libiconv [Marc Moorcroft]
323  328254 Build breakage (GSlice) [Jens Ganseuer]
324  328705 C99ism in glib/gmem.c [Kazuki Iwamoto]
325
326 * Translation updates (da,et,zh_CN)
327
328 Overview of Changes from GLib 2.9.3 to GLib 2.9.4
329 =================================================
330
331 * Type system:
332   Fix a problem with g_object_compat_control() which 
333   can lead to segfaults in GTK+ applications on 64bit 
334   platforms. 
335
336 * Thread suppport: 
337   Unused threads now fall back to the global pool after 
338   500 milliseconds, where they wait for another 
339   max-idle-time milliseconds. [Sebastian Wilhelmi]
340
341 * Fix a memory allocation problem in GKeyFile. [Morten 
342   Welinder]
343
344
345 Overview of Changes from GLib 2.9.2 to GLib 2.9.3
346 =================================================
347
348 * GTree:
349  - Replace the simple recursive implementation by
350    a nonrecursive, threaded one  [Maurizio Monge]
351
352 * Change g_filename_display_name and
353   g_filename_display_basename to use the Unicode
354   replacement character U+FFFD instead of a question
355   mark, and don't append "(invalid encoding)"  [Matthias]
356
357 * Documentation improvements [Sven Herzberg, Federico
358   Mena Quintero, Stefan Kost]
359
360 * Bugs fixed:
361  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X 
362         [Bogdan Nicula]
363  326558 Some test failures on IRIX 6.5 [Daichi Kawahata]
364  169285 "threaded" tree implementation for GTree 
365         [Maurizio Monge]
366  326747 g_filename_display_basename adds (invalid encoding) 
367         [Alberto Ruiz]
368
369 Other contributors: Christian Kellner, Murray Cumming
370
371 New and updated translations (bg,ca,de,es,et,gu,ja,nl,th,vi)
372
373
374 Overview of Changes from GLib 2.9.1 to GLib 2.9.2
375 =================================================
376
377 * Memory management:
378  - Add tests for cache colorization [Tim Janik]
379  - Minimize space consumption if small amounts of differently
380    sized slices are allocated, at a small performance cost.  [Tim]
381
382 * Thread support:
383  - Add g_atomic_pointer_set() and g_atomic_int_set() [Tim Janik,
384    Sebastian Wilhelmi]
385  - Add g_thread_pool_set_sort_function() to allow sorting the 
386    tasks of a threadpool.  [Martyn Russell]
387  - Add g_thread_pool_set_idle_time() to allow unused threads
388    to exit after a certain time.  [Martyn]
389
390 * Type system:
391  - introduce a new type GInitiallyUnowned, which has an initial
392    floating reference. [Tim]
393  - Add support for GType parameters. [Matthias]
394
395 * Main loop:
396  - Add g_main_context_is_owner() to determine if the current
397    thread is the owner of the context.  [Michael Meeks]
398
399 * Provide g_access(), g_chdir(), g_unlink(), g_rmdir() as 
400   wrapper functions instead of macros.  [Manish Singh]
401
402 * Documentation improvements [Tim, Matthias, Federico Mena Quintero,
403   Stefan Kasal, Dan Williams]
404
405 * New and updated translations (en_CA,fi,fr,gl,ml,nb,no,zh_HK,zh_TW)
406
407 * Bugs fixed:
408  324179 g_allocator_new() returns pointer to const dummy which Gtk+ 2.8 
409         tries to modify [J. Ali Harlow]
410  324332 g_option_context_parse() returns false without setting error 
411         [Tim-Philipp Müller]
412  324950 GLIB 2.9.1 testcase errors [Dan Yefimov]
413  325015 gslice.c: process.h is needed on Windows [Kazuki Iwamoto]
414  321978 G_DATALIST_GET_FLAGS() macro is not casting datalist to 
415         gpointer [Andrew Paprocki]
416  316221 G_LOCK warns about breaking strict-aliasing [Michal Benes, 
417         Stanislav Brabec]
418  325273 Error in documentation for glib_check_version () [Declan Naughton]
419  325310 g_spawn_sync hangs when catching both stdout and 
420         stderr [Tor Lillqvist]
421  325249 gcc warning when using g_rmdir from <glib/gstdio.h> [Jani Monoses]
422  325864 glib/gthreadpool.c:"#define debug(...)" is C99 [Kazuki Iwamoto]
423  325874 Should say somewhere that source IDs are > 0 [Dan Williams]
424  325438 a typo (compatability) [Stefan Kasal]
425  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X [Bogdan Nicula]
426
427
428 Overview of Changes from GLib 2.9.0 to GLib 2.9.1
429 =================================================
430
431 * Memory management
432  - The slice allocator is implemented [Tim Janik]
433  - g_slice_free_chain() has been renamed to 
434    g_slice_free_chain_with_offset()  [Tim, Behdad Esfahbod]
435  - Mem chunks are deprecated [Matthias Clasen]
436
437 * Data structures
438  - Hash tables are refcounted, and have a boxed type [Tim]
439
440 * Thread support
441  - Support for Solaris threads has been removed 
442    [Sebastian Wilhelmi, Andrew Paprocki]
443  - g_async_queue_sort(), g_async_queue_push_sorted() have 
444    been added to allow GAsyncQueue to be used as a priority 
445    queue, together with the corresponding _unlocked 
446    variants  [Martyn Russell]
447
448 * GObject:
449  - The concept of a floating initial reference has been
450    moved from GtkObject to GObject [Tim]
451
452 * Win32 changes:
453  - Make g_rename() replace existing files [Tor Lillqvist]
454
455 * Misc new API:
456  - G_GUINT64_CONSTANT macro to define guint64 
457    constants [Andrew Paprocki]
458  - G_GNUC_WARN_UNUSED_RESULT macro to instruct the 
459    compiler to emit a warning if the value returned
460    by a function is ignored. [Arjan van de Ven, Alex Larsson]
461  - GList and GSList now have sort functions which take an
462    extra user data argument [Martyn Russell]
463  - g_param_spec_ref_sink() has been added for consistency [Tim]
464
465 * $LOGNAME is respected when determining user data. [Laszlo Peter]
466
467 * Other changes and bug fixes [Tim, Matthias, Behdad, 
468   Christian Persch, Benedikt Meurer, Andrew Paprocki, 
469   Kazuki Iwamoto, Alexis S. L. Carvalho, Stanislav Brabec,
470   Andreas Schwab, Kalle Vahlman]
471
472 * Documentation
473  - Deprecation warnings carry version information [Matthias]
474  - The slice allocator has been documented [Matthias, Tim]
475  - Other improvements [Morten Welinder]
476
477 Overview of Changes from GLib 2.8.x to GLib 2.9.0
478 =================================================
479 * Unicode support:
480  - The Unicode tables have been updated to Unicode 4.1, 
481    adding several new values to the GUnicodeBreakType 
482    enumeration. This breaks Pango <= 1.10 
483    [Behdad Esfahbod]
484  - The various Unicode character predicate functions 
485    (g_unichar_isalpha, g_unichar_isdigit,...) have
486    been optimized
487    [Behdad]
488  - g_utf8_pointer_to_offset, g_utf8_offset_to_pointer:
489    These functions handle negative offsets now, and
490    going backwards in g_utf8_offset_to_pointer uses
491    "stutter stepping".
492    [Larry Ewing, Matthias Clasen]
493
494 * Memory management:
495  - Mem chunks are no longer used internally in GLib and
496    GObject. GMemChunk will be deprecated in GLib 2.10
497  - All APIs based on GAllocator (g_list_push/pop_allocator,
498    and similar push/pop_allocator functions for other
499    data structures) have been deprecated, since they
500    never worked as intended.
501  - The g_slice_* functions have been added as a 
502    new API for fast allocation of small memory blocks. 
503    The implementation in GLib 2.9.0 is just a simple 
504    wrapper around malloc. GLib 2.10 will have an
505    efficient and scalable implementation. 
506    [Tim Janik, Matthias]
507
508 * Pattern matching:
509  - g_pattern_match has been optimized to avoid
510    unnecessary recursion.
511    [Tim, Matthias]
512
513 * g_intern_string, g_intern_static_string: 
514  - New functions to intern strings. These are now used 
515    by GObject to avoid duplicating static strings 
516    [Matthias]
517
518 * g_thread_foreach: 
519  - New function to iterate over all GThreads 
520    [Tim, Matthias]
521
522 * g_date_set_time_t, g_date_set_time_val:
523  - New functions to set a GDate from a time_t or
524    GTimeVal value. g_date_set_time has been deprecated 
525    in favor of these.
526    [Roger Leigh]
527
528 * g_snprintf and g_vsnprintf:
529  - These functions are no longer declared in gprintf.h, 
530    since they are in glib.h
531    [Matthias]
532
533 Overview of Changes from GLib 2.8.0 to GLib 2.8.1
534 =================================================
535 * Optimize single-character insertions in GString [Ross Burton]
536 * Fix build problems on OS X
537 * Fix build problems on Win32 [Tor Lillqvist, Hans Breuer]
538 * Other bug fixes [Matthew F. Barnes, Stepan Kasal] 
539 * Documentation improvements [Tristan van Berkom, Behnam
540   Esfahbod, Gustavo Carneiro, Stepan Kasal, Matthias]
541 * New and updated translations (ca,cy,ko,ro,uk)
542
543 Overview of Changes from GLib 2.7.7 to GLib 2.8.0
544 =================================================
545 * Make g_value_transform() handle enum values
546   correctly on ppc64.  [Michael Lorenz]
547   (Third-party code accessing enumeration values 
548   in GValues should also be changed to access 
549   v_long, not v_int, in order to work on bigendian 
550   64bit machines.)
551 * Make g_flags_get_first_value() handle a value
552   of 0 meaningfully. [Tim-Philipp Müller] 
553
554 Overview of Changes from GLib 2.7.6 to GLib 2.7.7
555 =================================================
556 * Make atomic operations on s390 work [Matthias]
557 * Fix C++ guards in gstdio.h [Tor Lillqvist]
558
559 Overview of Changes from GLib 2.7.5 to GLib 2.7.6
560 =================================================
561 * Add native implementations of atomic operations 
562   on s390 [Matthias]
563 * Make atomic reference counting of closures
564   work on s390 [Matthias]
565 * Avoid an infinite loop in g_convert_with_iconv().
566   [Sebastian Bacher]
567 * Documentation improvements [Ross Burton]
568
569 Overview of Changes from GLib 2.7.4 to GLib 2.7.5
570 =================================================
571 * Thread-related changes
572  - Fix build issues on HP-UX [Paul Cornett]
573  - Threadsafe access to flags stored in datasets [Tim Janik]
574  - Fix several issues with atomic refcounting for 
575    closures, objects and paramspecs [Tim]
576  - Improve tests for atomic refcounting changes [Tim]
577 * Fix handling of stateful encodings in g_convert_* [Matthias]
578 * Fix translation of GOption help output [Dan Winship]
579 * Catch format errors in translations. This may cause 
580   "make check" to fail when using older versions
581   of gettext [Matthias]
582 * Win32 bug fixes [Tor Lillqvist]
583 * Documentation improvements [Ross Burton, Jochen Baier, 
584   Matthias, Tim]
585 * New and updated translations (de,fi,gu,pl,pt,tr,zh_TW)
586
587 Overview of Changes from GLib 2.7.3 to GLib 2.7.4
588 =================================================
589 * Fix g_atomic_pointer_compare_and_exchange 
590   on Sparc64 [Gert Doering]
591 * Fix a hang in g_thread_pool_free. [Hong Jen Yee]
592 * Win32 bug fixes [Tor Lillquist]
593 * Other bug fixes [Benoit Dejean, Manish Singh]
594 * Documentation improvements [Bryan Silverthorn,
595   Callum McKenzie] 
596 * New and updated translations (de,lt,sq,zh_CN)
597
598 Overview of Changes from GLib 2.7.2 to GLib 2.7.3
599 =================================================
600 * GOption
601  - Allow callbacks with optional arguments [Pawel Sliwowski]
602  - Allow to turn off the automatic long option name
603    disambiguation  [Adam McLaurin]
604  - Only allow printable ASCII as short option names [Matthias]
605 * Win32
606  - Build fixes [Tor Lillqvist]
607  - Rewrite iochannel socket implementation [Tor]
608 * GObject
609  - Threadsafety improvements; in particular, refcounting
610    of objects is done atomically now. [Wim Taymans, Tim Janik]
611 * Bug fixes [Morten Welinder, Matthias, Wim Taymans]
612 * Documentation improvements [Richard Laager, Matthias]
613 * New and improved translations (bf,cs,hu,nb,nl,no)
614
615 Overview of Changes from GLib 2.7.1 to GLib 2.7.2
616 =================================================
617 * Win32 build fixes [Hans Breuer]
618 * Bug fixes [Mikael Magnusson]
619 * Documentation improvements [Matthias Clasen]
620 * New and updated translations (en_CA,es,et,ja,sr,sr@Latn,zh_TW)
621
622 Overview of Changes from GLib 2.7.0 to GLib 2.7.1
623 =================================================
624 * GOption 
625  - Allow callback arguments without parameters [Dan Winship]
626 * GMappedFile: an mmap wrapper [David Schleef, Behdad Esfahbod]
627 * Misc new functions:
628  - g_get_host_name [Tor Lillqvist]
629  - g_mkdir_with_parents [Tor]
630  - g_build_pathv, g_build_filenamev [Todd A. Fisher, 
631    Matthias Clasen]
632 * Bug fixes [Roger Leigh, Masatake YAMATO, Kjartan Maraas,
633   Manish Singh, Tor, Murray Cumming, Kian Duffy, Morten Welinder]
634 * Documentation improvements [Hong Gang XU, Dan Winship, Matthias]
635 * New and updated translations (bg,cs,da,en_CA,es,et,nb,nl,no,
636   sk,th,zh_TW)
637
638 Overview of Changes from GLib 2.6.x to GLib 2.7.0
639 =================================================
640 * GKeyFile
641  - Add unit tests [Matthias Clasen, Suren A. Chilingaryan]
642  - Accept \r\n as line end [Bastian Nocera]
643  - Don't interpret leading zeros as octal numbers. [Matthias]
644  - Make key and group removal work [David Hoover, Matthias Hasselmann]
645 * GOption
646  - Improve formatting of --help output [Matthias, Noah Levitt]
647  - Accept -? [Matthias]
648  - Warn about duplicate main groups [Jeff Franks]
649  - Treat '-' as non-option argument [Tim Musson, Thomas Leonard]
650  - Report missing arguments as errors [Björn Lindqvist]
651  - Add a boxed type for GDate [Tim-Philipp Müller]
652 * GTree
653  - g_tree_remove() and g_tree_steal() return status information [Matthew F. Barnes]
654 * Stdio wrappers
655  - Work regardless of large file support [Manish Singh]
656  - Add g_access(), g_chmod(), g_creat(), g_chdir [Tor Lillqvist]
657 * GObject
658  - Implement "toggle references" to help language bindings [Owen Taylor]
659  - Allow to mark names, nicks and blurbs of pspecs as static [Ben Maurer, Matthias]
660  - Make pspec lookup a bit faster [Morten Welinder]
661 * Add g_listenv() to list all set environment variables [Hans Petter Jansson]
662 * Add g_file_set_contents() to atomically write a file.  [Søren Sandmann,
663   Sven Neumann, Manish, Alexis S. L. Carvalho]
664 * Add g_try_malloc(), g_try_new(), g_try_new0() and g_try_renew() [Stefan Kost]
665 * Add g_utf8_collate_key_for_filename() to sort filenames taking
666   extensions and numeric suffixes into account.  [Ole Laursen, Alex Larsson]
667 * Add G_GNUC_NULL_TERMINATED to mark varargs function with 
668   NULL-terminated argument lists. [Marc Meissner]
669 * Win32 changes
670  - Improved debugability [Ulf Lamping, Hans Breuer]
671  - Make filename handling more robust [Tor, Billy Skaggs]
672  - Improve g_get_system_data_dirs() [Tor]
673  - Use more precise timers [Tor]
674  - Build fixes [Kazuki Iwamoto, Hans, Tor, Robert Ã–gren]
675 * Other bug fixes [Roger Leigh, Owen, Matthias, Morten, Kjartan Maraas, 
676   Pawel Sakowski, Tor, Simon Budig, Ed Avis, Manish, Nicolas Laurent, 
677   Bastien, Fabrício Barros Cabral, Michael Banck, Daniel Atallah, 
678   J. Ali Harlow, Tim Janik, Hazael Maldonado Torres, Sven, Jon-Kare Hellan,
679   Dave Benson, Tommi Komulainen, Benjamin Otte, Brian Cameron, Changwoo Ryu, 
680   Christian Biere, Noah, Benoît Carpentier]
681 * Documentation improvements [Vincent Untz, Matthias, Tim-Philipp Müller,
682   Morten, Matthew, Federico Mena Quintero, Sebastian Bacher, Oliver Sessink, 
683   Stefan, Jared Lash, Tor, Owen, Daniel Vaillard, Mathieu Lacage]
684 * New and updated translations (ca,cs,da,el,en_CA,en_GB,es,et,eu,fa,fr,gl,
685   hu,id,it,lt,mn,ne,nl,pl,pt,pt_BR,ro,rw,sk,sq,sr,sr@Latn,tl,uk,xh,zh_CN)
686
687 Overview of Changes from GLib 2.6.0 to GLib 2.6.1
688 =================================================
689 * GOption
690  - Make gtk_init(NULL, NULL) work again [Marcin Krzyzanowski]
691  - Improve handling of -- [Matthias Clasen]
692  - Don't show G_OPTION_REMAINING in --help output [Matthew F. Barnes]
693 * g_find_program_in_path() doesn't return directories [Tommi Komulainen]
694 * Add gmodule-export-2.0.pc [Matthias]
695 * Win32 changes
696  - Improve hangling of UNC paths [Tor Lillqvist]
697  - g_getenv(), g_setenv(), g_unsetenv(), g_find_program_in_path()
698    take and return UTF-8 now [Tor] 
699  - Make g_file_test() work more reliably, and use PATHEXT
700    when check for executables [Tor]
701  - Build and cross-compilation fixes [J. Ali Harlow]
702 * Other bug fixes [Jens Hatlak, Morten Welinder, 
703   Tor, Kalpesh Shah, Adrian Bunk]
704 * Documentation improvements [Marcin Krzyzanowski, Tor, Crispin
705   Flowerday, Mariano Suárez-Alvarez, Christian Biere, Danny Milo,
706   Vincent Untz, Bastien Nocera]
707 * New and updated translations (cy,de,nl,ru,sq,sv)
708
709 Overview of Changes from GLib 2.4.x to GLib 2.6.0
710 =================================================
711
712 * Major new APIs
713   - GOption, a commandline option parser
714   - GKeyFile, a parser/editor for the .ini like files 
715   - Functions to support the XDG basedir specification
716   - Wrappers for common POSIX pathname functions to handle filename
717     encodings consistently. On Windows, these use UTF-8.
718
719 * Miscellaneous new functions
720   - g_filename_display_name() converts filenames in displayable UTF-8 strings
721   - g_uri_list_extract_uris() splits uri lists
722   - g_date_get_iso8601_week_of_year() gets ISO 8601 week numbers
723   - g_log_set_default_handler() installs an alternate default log handler
724   - g_get_language_names() obtains a list of applicable locale names
725   - g_strv_length() calculates the length of NULL-terminated string arrays
726   - g_win32_get_windows_version() determines the Windows version 
727   - G_GNUC_INTERNAL marks functions as non-exported
728   - glib_check_version() checks the GLib version at runtime
729   - g_debug() completes the family of logging functions
730
731 * Performance improvements
732   - Optimize g_utf8_validate()
733   - Optimize g_markup_parse_context_parse()
734   - Reduce signal connection complexity from O(n) to O(1) 
735   - Get rid of many PLT entries for internally used exported symbols
736   - Reduce code size by removing literal strings from g_return_if_fail()
737
738 * Other changes
739   - On Windows, GLib functions that take file name arguments now require
740     those to be in UTF-8. Functions that return file names return UTF-8.
741   - Use higher precision for mathematical constants
742   - Don't convert to/from UTF-8 in g_filename_to_uri/g_filename_from_uri
743   - Support ll as printf format modifier for long long on all platforms
744   - Clean up the ABI and enforce the list of exported symbols
745   - Add a .pc file for using gmodule in libraries
746   - Require ngettext
747
748 Overview of Changes from GLib 2.5.7 to GLib 2.6.0
749 =================================================
750 * GOption: Don't list help options if group-specific
751   options have been requested [Glynn Foster]
752 * Make g_get_language_names() track locale changes [Christian Persch]
753 * Win32 bug fixes [Tor Lillqvist]
754 * Bug fixes [Philippe Blain, Owen Taylor, Sebastian Wilhelmi]
755 * New and updated translations (da,es,ja,lt,zh_CN)
756 Bugs fixed: 159530,100697,160271,160645,157255
757
758 Overview of Changes from GLib 2.5.6 to GLib 2.5.7
759 =================================================
760 * Optimize g_utf8_validate() [Owen Taylor, Matthias Clasen]
761 * Optimize g_markup_parse_context_parse() [Havoc Pennington, 
762   Morten Welinder]
763 * Reduce signal connection complexity from O(n) to O(1) 
764   [Sven Neumann]
765 * Add a .pc file for using gmodule in libraries [Owen]
766 * Add G_GNUC_MALLOC to mark functions returning newly 
767   allocated memory  [Matthias]
768 * Win32 bug fixes [Hans Breuer, Tor Lillqvist, Robert Ã–gren,
769   Bruce Hochstetler]
770 * Bug fixes [Kazuki IWAMOTO, Matthias, Manish Singh, Morten,
771   Frederic Crozat, Tor]
772 * Documentation improvements [Matthias, Tor, Owen]
773 * New and updated translations (cs,da,de,en_CA,en_GB,es,nb,nl,sq,zh_CN)
774
775 Overview of Changes from GLib 2.5.5 to GLib 2.5.6
776 =================================================
777 * GOption
778   - Add G_OPTION_FLAG_REVERSE to allow options 
779     which unset a  boolean variable [Tor Lillqvist]
780 * GChildWatch
781   - Use sigaction instead of signal [Jonas Jonnson, 
782   Archana Shah]
783   - Make the very first SIGCHLD work [Gustavo Carneiro]
784 * Bug fixes [Morten Welinder, Tor, David MacLachlan,
785   Manish Singh, J. Ali Harlow]
786 * Documentation improvements [Matthias Clasen, Tor]
787 * Updated translations (da,ja,tr,zh_CN)
788
789 Overview of Changes from GLib 2.5.4 to GLib 2.5.5
790 =================================================
791 * GKeyFile
792   - Cleanups, add more error checking [Ray Strode]
793   - Fall back to the untranslated string when getting 
794     locale strings [Mark McLoughlin]
795 * GOption
796   - Document GOption [Matthias Clasen]
797   - Better support for rest arguments [Owen Taylor, Matthias]
798   - Handle conflicts between groups [Matthias]
799 * Add g_lstat() to the stdio wrappers [Tor Lillqvist]
800 * Add g_filename_display_name() to convert filenames
801   in displayable UTF-8 strings  [Alex Larsson, Matthias]
802 * Win32 bug fixes [Kazuki IWAMOTO, Hans Breuer, Tor]
803 * Bug fixes [Christophe Fergeau, Morten Welinder, 
804   Owen, Kjartan Maraas, Mark]
805 * Documentation improvements [Matthias, Tor]
806
807 Overview of Changes from GLib 2.5.3 to GLib 2.5.4
808 =================================================
809 Add GKeyFile, a parser/editor for the .ini like files used in various
810    freedesktop.org specifications. [Ray Strode]
811 Make the handling of filename encodings consistent across all
812    GLib functions, introduce wrappers for common POSIX 
813    functions which accept the same filename encoding. [Tor Lillqvist, 
814    Owen Taylor]
815 GOption
816  - Rename g_context_option_error_quark() to a more language-binding
817    friendly name [Murray Cumming]
818  - Accept backslashes in filenames on Win32 [Tor Lillqvist]
819 * Strip the internal aliasing prefix IA__ from function names in 
820   assertions [Matthias Clasen]
821 * Add a function to split uri lists. [Matthias]
822 * Win32 bug fixes 
823  - Don't open console windows [Tor]
824 * Other bug fixes [Philippe Blain, Robert Ã–gren, Hidetaka Iwai, Matthias,
825  Morten Welinder, Mats-Ola Persson, Tor, Nickolay V. Shmyrev, Kjartan Maraas,
826   Anders Carlsson, Tim-Philipp Müller, Lucas Rocha, Andrea Campi, Manish
827   Singh, Thomas Fitzsimmons, Kazuki IWAMOTO]
828 * Documentation improvements [Matthias, Linus Walleij, Nickolay, Philippe, 
829  Adam Hooper, Gustavo Carneiro]
830 * New and updated translations (cs,en_CA,en_GB,ja,nb,nl,or,sr,sr@Latn,sq)
831
832 Overview of Changes from GLib 2.5.2 to GLib 2.5.3
833 =================================================
834 * GOption
835  - set the program name from argv[0] [Masatake YAMATO] 
836  - make contexts work without a main group [Anders Carlsson]
837 * Performance 
838  - Get rid of many PLT entries for internally used exported symbols,
839    and clean up the ABI at the same time and make make check check the
840    list of exported symbols.  [Matthias Clasen]
841 * Add API to get ISO 8601 week numbers [Niklas Lundell]
842 * Add API to install an alternate default log handler [Darin Adler]
843 * Add API to obtain a list of applicable locale names [Hidetoshi Tajima]
844 * Reduce code size bloat by removing literal strings from
845  the g_return_if_fail() macros [Owen Taylor]
846 * Add g_strv_length [Tim-Philipp Müller]
847 * Win32 changes
848  - Add API to determine the Windows version [Tor Lillqvist]
849 * Other bug fixes [Stepan Kasal, Anders, Tor, Kazuki Iwamoto,
850   Manish Singh]
851 * Documentation improvements [Morten Welinder, Matthias]
852 * New and updated translations (es,nn,ro)
853
854 Overview of Changes from GLib 2.5.1 to GLib 2.5.2
855 =================================================
856 * Add G_GNUC_INTERNAL macro [Arjan van de Ven]
857 * Add GOption, a commandline option parser [Anders Carlsson]
858 * Add glib_check_version [Michael Natterer]
859 * Add XDG basedir API [Ray Strode]
860 * Require ngettext [Danilo Segan]
861 * Bug fixes [Manish Singh, Ray Strode, Vincent Noel, 
862   Jon-Kare Hellan, Jody Goldberg]
863 * Win32 bug fixes [Tor Lillqvist, Hans Breuer, Peter Zelezny]
864 * Documentation improvements [Matthias Clasen, Vincent Untz, Christian Persch]
865 * New and updated translations (bs,eu,fi,gu,ne,pa)
866
867 Overview of Changes from GLib 2.5.0 to GLib 2.5.1
868 =================================================
869
870 * Bug fixes [Oliver Guntermann, Sven Neumann, James 
871   Henstridge, Hiroyuki Ikezoe, Matthias Clasen, Robert 
872   Ã–gren, Tommi Komulainen]
873 * Documentation improvements [Soeren Sandmann, 
874   Christophe Fergeau, Danek Duvall]
875 * New and updated translations (eu,hi)
876   
877 Overview of Changes from GLib 2.4.1 to GLib 2.5.0
878 =================================================
879
880 * New functions g_debug [Sven Herzberg]
881 * Use higher precision for mathematical constants [Morten 
882  Welinder]
883 * Don't convert to/from UTF-8 in g_filename_{to,from}_uri 
884  [Federico Mena Quintero]
885 * Win32
886  - Handle empty digit string in printf() functions 
887    correctly [Tor Lillqvist]
888  - Support ll as format modifier for long long [Tor]
889  - Be more careful about HOME [Tor, Ivan Wong]
890  - Bug fixes [John Ehresman]
891 * Miscellaneous bug and portability fixes [Danilo Segan, 
892  Owen Taylor, Nikolai Weibull, Benoît Carpentier, Morten 
893  Welinder, Manish Singh, Sven Neumann, Julio M. Merino Vidal,
894  Kaz Sasayama, Murray Cumming, Federico, Mariano Suarez-Alvarez]
895 * Documentation updates [Matthias Clasen, Crispin Flowerday,
896  Tommi Komulainen, Federico Mena Quintero, Ed Griffiths]
897 * New and updated translations (ja,ne,no,wa)
898  
899 Overview of Changes from GLib 2.4.0 to GLib 2.4.1
900 =================================================
901
902 * Win32 bug fixes [Tor Lillqvist, Roger Leigh, John Ehresman]
903 * Miscellaneous bug and portability fixes [Owen Taylor,
904   Matthias Clasen, Jonas Jonsson, Christian Krause,
905   Nickolay V. Shmyrev, Christophe Saout, Philippe Blain,
906   Piotr Klaban]
907 * Documentation updates [Matthias]
908 * New and updated translations (ca,cs,cy,el,en_CA,en_GB,es,eu,fi,
909   fr,gu,he,id,nl,pt,pl,ru,sr,sr@ije,sr@Latn,sv,uk)
910
911 Overview of Changes from GLib 2.3.6 to GLib 2.4.0
912 =================================================
913
914 * Handle invalid-UTF-8 in g_log() properly [Matthias Clasen]
915 * Win32 bug fixes [Tor Lillqvist, Bruce Hochstetler]
916 * Miscellaneous bug and portability fixes [Olivier Biot, David L. Cooper II, 
917   Kjartan Maraas, Frédéric L. W. Meunier, Christof Petig, Manish Singh, 
918   Sebastian Wilhelmi]
919 * Documentation updates [Owen]
920 * Updated translations (hr,ro)
921
922 Overview of Changes from GLib 2.3.5 to GLib 2.3.6
923 =================================================
924
925 * GAtomic bug fixes [Sebastian Wilhelmi, Mark McLoughlin]
926 * GMain threading fixes and improvements [Sebastian]
927 * Win32 [Tor Lillqvist]
928  - restore some symbols extraneously exported from gobject to maintain ABI compatibility
929  - Misc build improvements and fixes [Tor, Cedric Gustin, Hans Breuer]
930 * Documentation updates [Sebastian, Takeshi AIHANA, Matthias, Sven Herzberg]
931 * New and updated translations (be,es,fi,ga,pa,sr@ije,zh_CN)
932
933 Overview of Changes from GLib 2.3.3 to GLib 2.3.5
934 =================================================
935
936 * Make glib-mkenums parse initializers with macros. [Matthias Clasen, muppet]
937 * Respect locale era in g_date_set_parse(). [Theppitak Karoonboonyanan] 
938 * Add atomic operations and use it for the async queue and
939   gonce implementation. [Sebastian Wilhelmi]
940 * Documentation improvements [Sebastian, Matthias, Sven Herzberg]
941 * Add g_main_depth() for finding the recursion depth of the main
942   loop [Owen Taylor, Tim Janik, Stefan Westerfeld]
943 * Add g_spawn_close_pid(), needed on win32 [J. Ali]
944 * Win32 fixes. [Hans Breuer, J. Ali Harlow]
945 * Misc bugfixes [Sebastian, Matthias, Balazs Scheidler, Owen]
946 * Updated translations (cy,et,ga,sq)
947
948 Overview of Changes from GLib 2.3.2 to GLib 2.3.3
949 =================================================
950
951 * Add a native AIX gmodule implementation. [Laurent Vivier]
952 * Add g_node_copy_deep().  [James M. Cape, Matthias Clasen]
953 * Extend GQueue API to match the GList API. [Soeren Sandmann]
954 * Add g_hash_table_find().  [Tim Janik]
955 * Add a G_MODULE_BIND_LOCAL flag. [David Schleef]
956 * Inline g_string_append_c() when possible. [Owen Taylor, Tim]
957 * Wrap waitpid() as a GSource. [Jonathan R. Blandford]
958 * Add g_completion_complete_utf8(). [Theppitak Karoonboonyanan, 
959   Matthias]
960 * Add g_strsplit_set(). [Soeren]
961 * Documentation improvements. [Vincent Untz, Sebastian Wilhelmi, 
962   Soeren, Matthias]
963 * Win32 build fixes. [Tor Lillqvist]
964 * Misc bugfixes [Manish Singh, Noah Levitt, Simon Josefsson, 
965   Morten Welinder, Damien Carbery, Julio M. Merino Vidal, Sebastian, 
966   Matthias]
967 * Updated translations (nn,cs,it,ko,sq,ms,az,hr,uk,sr,sr@Latn,sq,ta)
968
969 Overview of Changes from GLib 2.3.1 to GLib 2.3.2
970 =================================================
971
972 * Add G_MAXSIZE. [Manish Singh]
973 * Add g_rand_new_with_seed_array(), g_rand_set_seed_array(),
974   implementing the init-by-array functionality of the 
975   original mersenne twister. Add g_rand_copy(). Improve seeding. 
976   [George Lebl]
977 * Add a lowercase_name option to glib-mkenums. [Murray Cumming]
978 * Add g_ptr_array_foreach(). [Matthias Clasen]
979 * Add g_timer_continue(). [Tim-Philipp Müller]
980 * Fix a threadsafety issue in mem chunks. [Matthias, Balazs Scheidler]
981 * Fix g_filename_{to,from}_utf8() on Win32 and improve 
982   g_file_test() there too [Hans Breuer] 
983 * Add a boxed type for NULL-terminated string arrays.  [Matthias]
984 * Add G_DEFINE_TYPE() plus variants to ease the constuction
985   of GObject boilerplate code.  [Tim Janik]
986 * Support & in password GECOS field [Matthias, Soeren Boll Overgaard]
987 * Documentation improvements [Matthias, Manish]
988 * Win32 build fixes [Hans]
989 * Misc bug fixes [Damien Carbery, Matthias, Manish, Olivier Poncet, 
990   Zack Rusin]
991 * Updated translations (ar,de,fa,ga,mn,nn,no,sq)
992
993 Overview of Changes from GLib 2.3.0 to GLib-2.3.1
994 =================================================
995
996 * Add glib/gi18n.h and glib/gi18n-lib.h for common
997   gettext support, including a Q_() macro for translation
998   with context [Matthias Clasen]
999 * Add a more flexible G_FILENAME_ENCODING variable
1000   as a replacement for G_BROKEN_FILENAMES [Matthias]
1001 * Fix the return value g_main_context_iterate() for
1002   newly ready sources [Padraig O'Briain]
1003 * Handle Hangul composition for normalization [Noah Levitt]
1004 * Add G_{MIN,MAX,MAXU}INT{8,16,32}. [Mark Jones, Matthias]
1005 * Add G_GSIZE_FORMAT/G_SSIZE_FORMAT [Manish Singh]
1006 * Add G_STRFUNC as a portable wrapper for __func__ [Tim Janik]
1007 * Documentation improvements [Matthias]
1008 * GObject [Tim Janik]
1009  - Support '-' in g_signal_connect()/disconnect() names
1010    like 'swapped-signal'.
1011  - Add g_type_class_peek_static() and use to optimize
1012    g_object_new() for static types [Tim]
1013  - Allow setting construct-only properties from within
1014    init() implementations
1015  - Enforce readability/writeability in g_object_set/get()
1016 * Fix bug with g_ascii_strtod and multi-byte separator.
1017   [Behdad Esfahbod, Roozbeh Pournader]  
1018 * Misc bug fixes [Matthias, John Ehresman, Andrew Lanoix,
1019   Tor Lillqvist, Mark McLoughlin, Tim-Philipp Müller, Manish, 
1020   Morten Welinder]
1021 * Updated translations (ca,cs,da,es,fr,ja,nn,no,pt,ru)
1022
1023 Overview of Changes from GLib 2.2.x to GLib-2.3.0
1024 =================================================
1025
1026 * Replace Trio printf by gnulib vasnprintf [Matthias Clasen]
1027 * Update Unicode data to Unicode 4.0 [Noah Levitt]
1028 * Support XML-safe formatted output with 
1029   g_markup_[v]printf_escaped [Owen Taylor]
1030 * Add g_file_read_link to read symbolic links [Matthias]
1031 * Add g_unichar_get_mirror_char to obtain the 
1032   mirrored variant of a character [Noah]
1033 * Support for one-time initialization functions. 
1034   [Sebastian Wilhelmi]
1035 * Miscellaneous API additions: g_vasprintf
1036   g_string_chunk_insert_len, g_setenv, g_unsetenv [Matthias]
1037 * Docs improvements [Matthias]
1038 * Add support instance-private data on classed types
1039   [Mark McLoughlin, Tim Janik, Owen]
1040 * Optimize signal emissions [Soeren Sandmann, Tim]
1041 * Support a "default vtable" per interface [Tim]
1042 * Add support for properties on interfaces [Owen, Tim]
1043 * Miscellaneous API additions: g_value_take_string(),
1044   g_value_take_param(), g_value_take_object(), 
1045   g_value_take_boxed(). [Matthias]
1046 * Win32 build fixes [Tor Lillqvist]
1047
1048 Overview of Changes from GLib 2.1.5 to GLib-2.2.0
1049 =================================================
1050
1051 * Fix a problem with g_thread_init() on 64-bit problems
1052   [Alceste Scalas, Sebastian Wilhelmi]
1053 * Add assembly implementations of byteswap macros
1054   for ia64 and x86_64. [Manish Singh]
1055 * IOChannel fixes for Win32 [Tor Lillqvist, Thorsten Maerz]
1056 * Updated translations (bg,ca,es,da,fi,lv,ru,sk)
1057
1058 Overview of Changes from GLib 2.1.4 to GLib-2.1.5
1059 =================================================
1060
1061 * Win32 bug fixes [Tor Lillqvist]
1062 * Various post-rewrite fixes for glib-gettext.m4 [Owen Taylor,
1063   Jody Goldberg, Kjartan Maraas, Johannes Stezenbach]
1064 * Ensure we have a GUINT64_FORMAT by pulling in Trio
1065   if necessary [Manish Singh]
1066 * Further Trio build fixes [Matthias Clasen, Owen]
1067 * Hack around gcc, libtool issues with -pthread [Owen]
1068 * Docs improvements [Matthias]
1069 * Bug and portability fixes 
1070 * Updated and new translations (bg,de,fi,fr,sq,fr)
1071
1072 Other contributors: Kai Poitschke, Morten Welinder
1073
1074 Overview of Changes from GLib 2.1.3 to GLib-2.1.4
1075 =================================================
1076
1077 * autoconf changes to make it possible to cross compile
1078   GLib. [Owen Taylor, Dan Kegel, Amy Lin, Dimi Shahbaz, 
1079   Johannes Stezenbach]
1080 * Use libintl when it has bind_textdomain_codeset() and
1081   GLib doesn't. [Owen]
1082 * Improve generation of pseudo-random integers [Morten Welinder, 
1083   Sebastian Wilhelmi]
1084 * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren]
1085 * Cleanup include order [Sven Neumann]
1086 * autoconf cleanups and bug fixes [Daniel, Matthias Clasen, Owen]
1087 * Doc fixes and additions [Matthias]
1088
1089 Other contributors: James M. Cape, Frederic Crozat, Martin Gansser,
1090   Phuc LeHong, Manish Singh, Joshua Weage, Morten Welinder
1091
1092 Overview of Changes from GLib 2.0.x to GLib-2.1.x
1093 =================================================
1094
1095 * Add copy of the Trio library to build and use for printf() when 
1096   system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen]
1097 * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson]
1098 * Add g_markup_parse_context_get_element() [Matthias]
1099 * Add g_utf8_strreverse [Matthias]
1100 * Add g_ascii_strtoull() [Tim Janik]
1101 * Support scanning of 64-bit values with GScanner [Tim]
1102 * Add g_set/get_application_name() [Havoc Pennington]
1103 * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. 
1104   Use for g_return_if_fail(). [Matthias Clasen]
1105 * Add G_GNUC_DEPRECATED macro [Tom Tromey]
1106 * Improve the seeding algorithm of GRandom to avoid problems
1107   with certain pathological seeds. Support G_RANDOM_VERSION=2.0
1108   environment variable. [Sebastian Wilhelmi]
1109 * Improve thread configure checks, use -pthread where applicable
1110   [Sebastian]
1111 * Improve handlng of thread priorities [Sebastian]
1112 * Fix up parameter names that might shadow functions from
1113   system headers [Soeren Sandmann]
1114 * Clean up usage of deprecated functions [Manish Singh]
1115 * Docs fixes and improvements. In particular, include "Since" information.
1116   [Matthias, Soeren, Martin Schulze, Daryll Strauss, Bill Janssen, 
1117   Owen Taylor, Morten Welinder]. 
1118
1119 Overview of Changes in GLib 2.0.7
1120 =================================
1121
1122 * Fix C++ warnings in gtype.h [Dom Lachowicz]
1123 * Fix g_type_fundamental_next() [Tim Janik]
1124 * Fix various missing includes of config.h [Morten Welinder]
1125 * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi]
1126 * Various 64-bit fixes [Manish Singh]
1127 * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs]
1128 * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner]
1129 * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor,
1130      Tim, Havoc Pennington,  Matthias Clasen, Sebastian Rittau,
1131      Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor]
1132 * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
1133
1134 Overview of Changes in GLib 2.0.6
1135 =================================
1136
1137 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
1138 * Clean up debug spew from GObject [Anders Carlsson]
1139 * Compiler warning fixes [David L. Cooper II]
1140 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
1141 * Fixes for --disable-debug [Sebastian Wilhelmi]
1142 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
1143   Rajkumar Sivasamy, Laurent Vivier]
1144 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
1145   Sebastian Rittau, Linus Welleij]
1146 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
1147 * Updated translations (bg,ko,vi)
1148
1149 Overview of Changes in GLib 2.0.5
1150 =================================
1151
1152 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
1153 * Clean up debug spew from GObject [Anders Carlsson]
1154 * Compiler warning fixes [David L. Cooper II]
1155 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
1156 * Fixes for --disable-debug [Sebastian Wilhelmi]
1157 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
1158   Rajkumar Sivasamy, Laurent Vivier]
1159 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
1160   Sebastian Rittau, Linus Welleij]
1161 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
1162 * Updated translations (bg,ko,vi)
1163
1164 Overview of Changes in GLib 2.0.4
1165 =================================
1166
1167 * Fix some 64-bit problems. (George Lebl, David L. Cooper II)
1168 * Add note about Tru64 iconv to INSTALL. (Manuel Op de Coul)
1169 * Fix problem with timouts > MAXINT. (Tim Janik, Owen Taylor)
1170 * Updated translations (ca,es,fr,ja,gl,ms,nl,pl,pt,ru)
1171
1172 Overview of Changes in GLib 2.0.3
1173 =================================
1174
1175 * Handle sorting 0-length arrays (Ron Arts)
1176 * Threading fixes (Sebastian Wilhelmi)
1177 * Portability fixes (Miroslaw Dobrzanski-Neumann, Jacob Berkman, Gareth Pierce, 
1178   Sebastian, Qingjiang Yuan)
1179 * Various fixes for glib-2.0.m4. (Jim Gettys, others.)
1180 * Locate right glib-genmarshal when cross-compiling. (Mitch Natterer)
1181 * Win32 fixes (Tor Lillqvist)
1182 * Try to fix g_get_charset() related segfaults. (Owen)
1183 * Fixes for gettext detection. (Dan Winship, HideToshi Tajima, Boyd Lynn Gerber,
1184   Andrew P. Lentvorski, Jr.)
1185 * Fix g_scanner_unexp_token() (Tim Janik, Sven Neumann)
1186 * g_markup fixes. (Matthias Clasen.)
1187 * Bug fixes and cleanups (Daniel Elstner, Matthias, Laszlo Peter, Morten Welinder,
1188   Wayne Schuller)
1189
1190 Overview of Changes in GLib 2.0.1
1191 =================================
1192
1193 * Portability fixes for Sun's Forte compiler [Erwann Chenede]
1194 * Performance improvements for GObject parameter lookup, 
1195   g_filename_to/from_utf8() [Alex Larsson]
1196 * Actually check interface prerequisites [Matthias Clasen,
1197   Miroslaw Dobrzanski-Neumann]
1198 * Fix problem with glib-mkenums taking huge amounts of stack. [Owen Taylor]
1199 * Fix g_signal_handlers_disconnect_by_func() for C++ [Damien Sandras]
1200 * Fixes for g_log() and threading.
1201   [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, Tim Janik]
1202 * Make g_print(), g_printerr(), g_warning(), etc, convert from
1203   UTF-8 to the encoding of the locale [Sebastian Wilhelmi, Tim]
1204 * Fixes for GIOChannel on windows. [Tor Lillqvist]
1205 * Fix gsize/gint mismatches in giochannel.c [Miroslaw Dobrzanski-Neumann]
1206 * Fix file descriptor leak in g_file_get_contents() [Matthias]
1207 * Workaround iconv() problems on older Solaris [Lauri Alanko]
1208 * Fix warnings with gcc-3.1 about asm const [Cody Russel]
1209 * Minor bug fixes.
1210
1211 Other contributors: Hans Breuer, LEE Sau Dan, Sven Neumann, Salmaso Raffaele,
1212   Akira Tagoh, Morten Welinder
1213
1214
1215 Overview of Changes in GLib 2.0.0
1216 =================================
1217
1218 * Thread portability fixes [Sebastian Wilhelmi]
1219 * Documentation updates [Owen Taylor]
1220 * Make g_strerror(), g_strsignal() properly return UTF-8,
1221   call bind_text_domain_codeset() so that error strings
1222   are in UTF-8 as well. [Owen, Tor Lillqvist]
1223
1224 Overview of Changes in GLib 2.0.0 rc1:
1225 ======================================
1226
1227 * Win32 fixes [Tor Lillqvist]
1228 * Portability fixes [Finlay Dobbie, Miroslaw Dobrzanski-Neumann]
1229 * Fix up g_date_strftime [Daniel Elstner]
1230 * Add some structure padding [Tim Janik]
1231 * Make g_get_homedir() prefer the users home directory to $HOME
1232
1233 Other contributors: Matthias Clasen, Paolo Maggi, Christian Rose
1234
1235 Overview of Changes in GLib 1.3.15:
1236 ===================================
1237
1238 * Speed up marshalers by using private access to GValue 
1239   [Anders Carlsson, Tim Janik]
1240 * Reduce GValue to 2 elements [Tim]
1241 * Add G_DEBUG environment variable, G_DEBUG=fatal_warnings [Matthias Clasen]
1242 * Fixes for AIX compilation [Miroslaw Dobrzanski-Neumann]
1243 * Add padding to various structures [Owen Taylor, Tim]
1244 * Win32 fixes [Tor Lillqvist]
1245
1246 Other contributors: James Henstridge, Ryan Lovett, Morten Welinder,
1247   Daniel Elstner
1248
1249 Overview of Changes in GLib 1.3.14:
1250 ===================================
1251
1252 * Register value transformations for gint64, guint64 [Andy Wingo]
1253 * Build with large-file support [Sven Neumann, Owen Taylor]
1254 * Fix handling of hostnames in URI's [Darin Adler]
1255 * Main loop bug fixes [Havoc Pennington, Owen]
1256 * Doc fixes and improvements [Manish Singh, Tim Janik]
1257 * Support ' as attribute delimiters in GMarkup [Matthias Clasen]
1258 * Win32 fixes [Hans Breuer, Tor Lillqvist]
1259 * Threading bug and build fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann]
1260 * Miscellaneous bug fixes
1261
1262 Other contributors: Matthias Clasen, James Henstridge, Mitch Natterer, 
1263   Morten Welinder.
1264
1265 Overview of Changes in GLib 1.3.13:
1266 ===================================
1267
1268 * Fix g_filename_to/from_uri for Win32 [Tor Lillqvist, Darin Adler]
1269 * Miscellaneous win32 fixes [Tor, Hans Breuer]
1270 * Fix thread options for gcc on AIX [Jerome Zago, Sebastian Wilhelmi]
1271 * Documentation improvements [Ron Steinke, Matthias, Sebastian]
1272 * Cache iconv converters as used by g_convert() [Jeffrey Stedfast]
1273 * Bug fixes [Sven Neumann, Owen Taylor, Matthias Clasen, Jeffrey,
1274   Laszlo Peter, Havoc Pennington, Tim Janik]
1275
1276 Overview of Changes in GLib 1.3.12:
1277 ===================================
1278
1279 * Implement closure chaining, fixing up API (Tim Janik)
1280 * Closure chaining test case (James Henstridge)
1281 * Make GType long not int where both are equal width (Tim)
1282 * Win32 fixes and improvements (Hans Breuer, Tor Lillqvist)
1283 * Fixes for NetBSD. (Dan Winship)
1284 * Use snprintf() for g_printf_string_upper_bound() where possible. (Matthias Clasen)
1285 * Save space for GBSearchArray (Tim Janik)
1286 * Documentation improvements. (Matthias, Sven Neumann, Havoc Pennington)
1287
1288 Other contributors: Darin Adler, Chris Blizzard, Anders Carlson, Daniel Elstner, Michael Meeks, 
1289   Mark McLoughlin, Dave Neary, Manish Singh, Owen Taylor, HideToshi Tajima, 
1290   Sebastian Wilhelmi.
1291
1292
1293 Overview of Changes in GLib 1.3.11:
1294 ===================================
1295
1296 * Win32 fixes [Hans Breuer, Tor Lillqvist]
1297 * Documentation improvements [Matthias Clasen]
1298 * Portable directory handling API [Hans]
1299 * Threading fixes [Sebastian Wilhelmi, Havoc Pennington]
1300 * Fix excess relocations in Unicode tables [Andrew Taylor]
1301 * Fix gpattern for UTF-8 [Matthias Clasen]
1302 * Support overriding class closures [Tim Janik]
1303 * Support for derivation from G_TYPE_POINTER [Owen Taylor]
1304 * Hide pointers to type information inside GType to reduce locking
1305   [Alex Larsson, Tim]
1306 * Adds check for direct inclusion of gobject/*.h [Owen]
1307 * GObject API cleanups [Tim]
1308
1309 Other contributors: Darin Adler, Jacob Berkman, Daniel Egger, Eric Lemings, 
1310   Michael Meeks, Mark McLoughlin, Arkadiusz Miskiewicz, Dan Winship
1311
1312
1313 Overview of Changes in GLib 1.3.10:
1314 ===================================
1315
1316 * Many Win32 fixes and improvements [Tor Lillqvist]
1317 * Documentation improvements [Matthias Clasen]
1318 * g_string_printfa() renamed to g_string_append_printf()
1319 * Use libcharset from libiconv to implement charset detection
1320   more portably. [Owen Taylor, Hidetoshi Tajima]
1321 * Add 64 bit type support to GObject [Joshua Pritikin, Mathieu Lacage, Owen]
1322 * Make support for 64 bit integers a requirement [Joshua]
1323 * GPattern improvements [Tim Janik, Matthias]
1324 * Locale independent g_ascii_strtod / g_ascii_dtostr [Alex Larsson]
1325 * Many bug fixes and minor tweaks.
1326
1327 Other Contributors: Darin Adler, Jakub Jelinek, James Antill, Andrew Taylor,
1328   Ben Gertzfield, Elliot Lee, Manish Singh, Abel Cheung, Laszlo Peter,
1329   Sven Neumann, George Lebl, Raja Harinath, Sebastian Wilhelmi,
1330   Jacob Berkman
1331
1332
1333 Overview of Changes in GLib 1.3.9:
1334 ==================================
1335
1336 * Fixes for comparison of threads [Sebastian Wilhelmi]
1337 * Use vasprintf() when possible for g_strdup_printf [Matthias Clasen]
1338 * Win32 fixes [Tor Lillqvist, Hans Breuer]
1339 * Add a len argument to g_ascii_strup/strdown
1340 * Bug, portability fixes, cleanups.
1341
1342 Other Contributors: Darin Adler, Katsuhiro Okuno, Joshua N. Pritikin
1343
1344
1345 Overview of Changes in GLib 1.3.8:
1346 ==================================
1347
1348 * Documentation updates [Owen]
1349 * Made GType interfaces overridable in derived types
1350 * Many win32 fixes [Tor Lillqvist]
1351 * Miscellaneous cleanups and fixes
1352
1353 Other contributors:
1354   Darin Adler, Matthias Clasen, Ron Steinke, Hans Breuer, Alex Larsson
1355
1356
1357 Overview of Changes in GLib 1.3.7:
1358 ==================================
1359
1360 * Integrate GClosure support into the main loop [Owen Taylor]
1361 * More GSignal convenience functions (macros) [Sven Neumann, Tim Janik]
1362 * Introduced weak references for GObject [James Henstridge, Sven, Tim] 
1363 * Minor hash table optimizations
1364 * Main loop and threading improvements [Sebastian Wilhelmi]
1365 * Added g_ascii_* functions to be used for locale insensitive UTF-8
1366   compliant code instead of old string functions  [Darin Adler, Alex Larsson]
1367 * Add functions for Unicode case-conversion, normalization, and 
1368   collation [Owen]* GString improvements [Owen]
1369 * Reworked the GIOChannel code [Hidetoshi Tajima, Ron Steinke]
1370 * Removed glib-config-2.0 in favour of pkgconfig [Sebastian]
1371 * Make code 64bit clean [Mark Murnane]
1372 * More G_CONST_RETURN fixes
1373 * Many improvements to the win32 code [Tor Lillqvist, Hans Breuer]
1374 * Miscellaneous bug and API fixes
1375
1376 Other contributors:
1377   Michael Natterer, Christopher James Lahey, Padraig O'Briain,
1378   Matthias Clasen, Josh Pritikin, Steve Baker, Cesar Rincon, Garry R. Osgood,
1379   Michael Meeks, Laszlo Peter,  Martin Baulig, Kjartan Maraas, Andrew Lanoix,
1380   Peter Williams
1381
1382
1383 Overview of Changes in GLib 1.3.6:
1384 ==================================
1385
1386 * Threads have a "return value" from g_thread_join
1387 * Removed ability to adjust thread stack size
1388 * Prefix warnings with progname/PID by default, change toggle for this to 
1389   be an env variable G_MESSAGES_PREFIXED not a compile-time option
1390 * GMarkup speedups
1391 * GDate const, convenience fixups
1392 * Include test cases that headers are compilable by C++ compiler
1393 * Add ability to spawn processes with argv[0] != executable path.
1394 * g_strstr_len, g_strrstr, g_strrstr_len
1395 * Add length argument to g_utf8_strchr and g_utf8_strrchr.
1396 * Misc bug fixes
1397
1398
1399 Overview of Changes in GLib 1.3.5:
1400 ==================================
1401
1402 * Added an installed glib-mkenums Perl program for parsing enumeration
1403   declarations from header files.
1404 * Mark some additional deprecated functions.
1405 * Bug and Portability fixes
1406
1407
1408 Overview of Changes in GLib 1.3.4:
1409 ==================================
1410
1411 * Efficiency improvements for GThreadPool
1412 * A few bug fixes
1413 * Build fixes
1414 * Documentation improvements
1415
1416
1417 Overview of Changes in GLib 1.3.3:
1418 ==================================
1419
1420 GLib:
1421
1422 * More user_data support in various functions.
1423 * Main loop API revamps to support per-thread main loops.
1424 * Unicode handling improvements.
1425 * Implemented debugging traps.
1426 * G_CONST_RETURN specification all over the place.
1427 * Various new small utility functions.
1428 * Random number generator precision improvements.
1429 * New configure option --disable-mem-pools.
1430 * Many Win32 improvements.
1431 * Added g_try_malloc() friends varinats.
1432 * Many documentation improvements.
1433 * Many threading improvements, support for dynamic allocation
1434   of static mutexes.
1435 * GHookLIst API cleanups.
1436 * Improved format support of GDate parser.
1437 * String function speed improvements with new g_stpcpy().
1438 * Hashtable API additions.
1439 * New GPatternSpec for shell-style pattern matching (from GtkPatternSpec).
1440 * Optimizations, cleanups, bug fixes.
1441
1442 GObject:
1443
1444 * Added many convenience functions.
1445 * GClosure and GParamSpec use float/sink ref-counting scheme now.
1446 * Reworked property change notification.
1447 * Binary searchable array cleanups, so it's widely usable now.
1448 * Added static content keeping for some GValue types.
1449 * Support for statically scoped signal parameters.
1450 * Extinguished property trailer args in set/get interface.
1451 * Added support for abstract types.
1452 * G_CONST_RETURN specification all over the place.
1453 * Split parameter exchange functionality into value transforms
1454   and parameter conversions.
1455 * Added signal emission hooks and signal accumulators.
1456 * Added interface prerequisites to support is_a (interface, object)
1457   relations.
1458 * Implemented GValueArray.
1459 * New types, boxed: G_TYPE_VALUE, G_TYPE_CLOSURE, G_TYPE_GSTRING
1460   GParamSpecs: G_TYPE_PARAM_PARAM, G_TYPE_PARAM_POINTER, G_TYPE_PARAM_CLOSURE,
1461   G_TYPE_VALUE_ARRAY, G_TYPE_PARAM_UNICHAR, G_TYPE_PARAM_VALUE_ARRAY.
1462 * Varrags value collection improvements.
1463 * Implemented debugging traps.
1464 * Made things thread-safe.
1465 * Many documentation improvements.
1466 * Many cleanups, optimizations and bug fixes.
1467
1468
1469 Overview of Changes in GLib 1.3.2:
1470 ==================================
1471
1472 GLib:
1473
1474 * Win32 build improvements  [Tor]
1475 * Improvements to error reporting  
1476   (g_critical(), g_return_if_reached()) [Darin]
1477 * Add g_strlcpy/g_strlcat  [David Wheeler]
1478 * New IO channel implementation for Win32  [Tor] 
1479 * Make g_array_free, g_string_free return pointer to memory requested
1480   not to be freed.  [Darin]
1481 * Added GError based error reporting for thread functions.  [Sebastian]
1482 * Moved reference docs into GLib distribution. [Owen]
1483 * Added g_convert() for doing convenient character set conversions based
1484   on iconv. (GLib now requires libiconv or a native iconv.) [Havoc/Owen]
1485 * Various Unicode handling additions (g_ucs4_to_utf8, g_utf8_validate(),
1486   g_{locale,filename}_{to,from}_utf8)  [Robert/Havoc/Owen]
1487 * Portability fixes for threading.  [Sebastian]
1488 * Added convenient functions for launching new processes (g_spawn_*),
1489   and shell quoting/unquoting functions.  [Havoc]
1490 * Split glib.h into many headers.  [Sebastian]
1491 * Added a simple callback-based parser for XML-like files (GMarkup).  [Havoc]
1492 * Fixed confusions between comparison functions that return <0, 0, >0
1493   and equaility functions that return FALSE,TRUE.  [Sebastian]
1494 * Added safe/portable temporary file manipulation functions.  [Tor]
1495 * autoconf improvements.  [Raja]
1496 * Many documentation improvements.
1497 * Bug fixes.
1498
1499 GObject:
1500
1501 * Added boxed and pointer types.  [Tim/Jonathan]
1502 * Added callback abstraction (GClosure)  [Tim]
1503 * Added signal system (GSignal)  [Tim]
1504 * Make GTypePlugin an interface  [Tim]
1505 * Added GTypeModule - a simple GTypePlugin instantiation  [Owen]
1506 * Bug fixes.
1507
1508
1509 What's new in GLib 1.3.1:
1510 =========================
1511
1512 * New GObject library added including object system based on
1513   the GTK+ object system. 
1514 * Functions for getting the properties of Unicode characters, 
1515   computing the canonical decomposition and ordering combining
1516   characters aand manipulating UTF-8 string manipulation based
1517   on libunicode.
1518 * GString now properly handles embedded nuls.
1519 * Multiple fixes from the 1.2.x branch.
1520 * Upgrade to libtool 1.3.3
1521 * Full thread support (thread creation and destruction).
1522 * BeOS port, BeOS dynamic modules.
1523 * Many improvements to the Windows ports.
1524 * Improvements to the OS/2 port, OS/2 module support.
1525 * Double ended queue implementation.
1526 * GLib macros for printf() formatting, e.g. G_GULONG_FORMAT = "lu"
1527 * New configure option --enable-msg-prefix to prefix messages, warnings
1528   et ceteri with the program name and the process id.
1529 * New thread-safe random number generator Mersenne Twister.
1530 * g_strcompress() added, g_strescape() had a slight API change, and
1531   more tightly defined semantics.
1532 * the g_string(x) macro has been removed, #x may be used instead.
1533