Released GLib 1.1.4
[platform/upstream/glib.git] / NEWS
1 Overview of Changes in GLib 1.1.4:
2
3 * Added generic callback maintenance functions (ghook)
4 * New endian defines (G_*_ENDIAN)
5 * New string join/split/free routines 
6 * Fixes
7
8 Overview of Changes in GLib 1.1.3:
9
10 * New GModule mechanism (implemented in an extra library) which wraps dynamic
11   object code loading facilities in a portable manner.
12 * glib-config features extra "glib" (old behaviour remains) and "gmodule"
13   (add libgmodule.so to the --libs output) arguments now. this can also
14   be specified as fourth argument to the AM_PATH_GLIB() macro.
15 * Overhaul of the `inline' autoconfiguration stuff, so inlining should be
16   sufficiently supported on all systems that allow inlining now.
17 * New g_log() mechanism for logging of messages at different log levels,
18   associated with certain log domains (define -DG_LOG_DOMAIN for your library).
19 * New inline functions for bit masks tests.
20 * GNode macros (and functions) now return the newly allocated node.
21 * New macro G_VA_COPY() to work around va_list copying oddities on some
22   platforms. the non-static g_vsprintf() function vanished in favour of
23   a publically exported g_strdup_vprintf().
24   People that used the former g_vsprintf() would definitely want to read the
25   associated ChangeLog entries (grep for printf).
26 * New utility functions:
27   g_strndup(), g_on_error_query(), g_on_error_stack_trace(), g_strdup_printf(),
28   g_strdup_vprintf(), g_printf_string_upper_bound(), g_spaced_primes_closest(),
29   g_strnfill(), g_memdup(). 
30 * Overhaul of the array implementations, this contains some source incompatible
31   changes. Again, the ChangeLog is much more informative (grep for garray.c).
32 * The internals of the g_dataset mechanism are now exported through the
33   new g_datalist_* API (this is also the underlying implementation for the
34   keyed data of GtkObjects).
35 * New function g_atexit(), use of the ATEXIT() macro is discouraged.
36 * Better configure checks for ansi compliance.
37 * Libtool update to version 1.2b.
38 * Lotsa bug fixes and cleanups as always ;)
39
40 Overview of Changes in GLib 1.1.2:
41
42 * Fixed packaging mistake which occured in 1.1.1
43 * fix 64-bitness in g_prints in glibtest
44
45 What is new in GLib 1.1.1:
46
47 * An n-way tree implementation is provided now, based on the GNode structure.
48 * Bugfix for pointer arrays.
49
50 What is new in GLib 1.1.0:
51
52 * GLib is distributed seperatedly from Gtk+ now and uses a sophisticated
53   shared library versioning scheme to deal with interface and binary
54   incompatibilities.
55 * There is a glib-config helper script installed now.
56 * Fixups all over the place.
57 * gboolean is now a gint, not a gchar anymore.
58 * API extensions for GList and GSList.
59 * New g_str*() functions for simple string handling.
60 * GScanner extensions for scope, warning and error handling.
61 * Minor performance improvements for GMemChunks.
62 * Implementations of GQuarks and datasets (similar to GtkObjects data
63   mechansim, but works for generic memory locations).
64 * More convenience macros for GNU C function arguments.
65 * Const correction all over the place, including a new pointer type
66   gconstpointer.
67 * Generic functions for TAB completions.
68 * GRelations for n-way mapping of certain data.