Blame NEWS.pre-1-3

Packit ae235b
Overview of Changes in GLib 1.2.1:
Packit ae235b
Packit ae235b
* g_realloc() fix for SunOS (please report further problems).
Packit ae235b
* Continued the never ending fix vendetta regarding getpwuid(),
Packit ae235b
  this time AIX has been the culprit.
Packit ae235b
* Upgrade to libtool 1.2f
Packit ae235b
* Miscellaneous other buglets fixed.
Packit ae235b
Packit ae235b
What's new in GLib 1.2.0 (since GLib 1.0.x):
Packit ae235b
Packit ae235b
* GLib is distributed seperatedly from Gtk+
Packit ae235b
* Win32 Portability
Packit ae235b
* Threading support
Packit ae235b
* GModule mechanism (implemented in an extra library) which wraps dynamic
Packit ae235b
  object code loading facilities in a portable manner
Packit ae235b
* GIOChannel structure to encapsulate the IPC mechanism
Packit ae235b
* GQuarks and datasets
Packit ae235b
* GRelations for n-way mapping of certain data
Packit ae235b
* An n-way tree implementation
Packit ae235b
* GDate functionality for calendar date manipulations
Packit ae235b
* GAllocator type and associated functions
Packit ae235b
* Added generic callback maintenance functions (ghook)
Packit ae235b
* Generic functions for TAB completions
Packit ae235b
* Endian defines (G_*_ENDIAN)
Packit ae235b
* g_log() mechanism for logging of messages at different log levels
Packit ae235b
* Generic main-loop mechanism
Packit ae235b
* New glib-config helper script
Packit ae235b
* Many more API extensions
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.16:
Packit ae235b
Packit ae235b
* Allocate smaller pools of memory for glists, gslists, gnodes
Packit ae235b
* Bug Fixes
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.15:
Packit ae235b
Packit ae235b
* HPUX 11 thread system detection should now work
Packit ae235b
* Release the main loop lock around calls to prepare() and
Packit ae235b
  check() so it is not held over user code
Packit ae235b
* A few Win32 fixups
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.14:
Packit ae235b
Packit ae235b
* Check for dlsym() in system libraries and -dl
Packit ae235b
* FreeBSD portability fixes
Packit ae235b
* Random bug fixes and autoconf/automake changes
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.13:
Packit ae235b
Packit ae235b
* Removed alloca() based function and macro variants again.
Packit ae235b
* Improved thread related configure tests.
Packit ae235b
* GSource destruction fixups.
Packit ae235b
* Fixed up idle function removal based on user_data pointer.
Packit ae235b
* Advanced Win32 portability.
Packit ae235b
* Enforced GSource's check(), prepare() and dispatch() constrains,
Packit ae235b
  loop recursions may only happen from dispatch(), and check() as well
Packit ae235b
  as prepare() are called while the main_loop lock is being held.
Packit ae235b
* GLib development now requires GNU autoconf 2.13, GNU automake 1.4
Packit ae235b
  and GNU libtool 1.2d.
Packit ae235b
* Lots of random portability and bug fixes.
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.12:
Packit ae235b
Packit ae235b
* Added alloca functions/macros: g_strdup_a, g_strconcat3_a, g_alloca,
Packit ae235b
  g_new_a, g_new0_a
Packit ae235b
* New tests structure.  Type 'make check' on your system to run them.
Packit ae235b
* Avoid unnecessary extra hook referencing in g_hook_list_marshal
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.11:
Packit ae235b
Packit ae235b
* provide defaults for POLL sysdefs
Packit ae235b
* g_main_is_running: new function to check whether a main loop has been quitted
Packit ae235b
* a few other enhancement/fixes
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.9:
Packit ae235b
Packit ae235b
* Check for pthread_attr_init in all cases, Digital Unix 4 requires this
Packit ae235b
* For G_LOCK_DECLARE_*, if !G_THREADS_ENABLED, eat trailing semicolon better
Packit ae235b
* Changed g_main_poll_(add|remove) to g_main_(add|remove)_poll
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.8:
Packit ae235b
Packit ae235b
* Added threading support
Packit ae235b
  - The ability to specify a set of functions to be used for
Packit ae235b
    locking at runtime.
Packit ae235b
  - Default implementations of locking functions for pthreads,
Packit ae235b
    Solaris threads, and (experimentally) NSPR.
Packit ae235b
  - All static variables should now properly locked.
Packit ae235b
  - Enhancements to the generic main-loop mechanism to be thread-safe.
Packit ae235b
    (It is used for the main-loop in GTK+ as of GTK+-1.1.8)
Packit ae235b
* Portability fixes.
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.7:
Packit ae235b
Packit ae235b
* Removed multiple define from glibconfig.h
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.6:
Packit ae235b
Packit ae235b
* New GDate functionality for calendar date manipulations (g_date_*)
Packit ae235b
* New GAllocator type and associated functions
Packit ae235b
* New functions g_slist_copy and g_list_copy to duplicate a list with all
Packit ae235b
  its data pointers.
Packit ae235b
* New function g_array_insert_vals and new macro g_array_insert_val to
Packit ae235b
  insert elements at an arbitrary index
Packit ae235b
* GAllocators used for glist, gslist, gnode node allocations
Packit ae235b
* Incremental freezing in ghash
Packit ae235b
* New function g_hook_list_marshal_check to eventually destroy hooks after
Packit ae235b
  they got marshalled
Packit ae235b
* Revised GIOChannel to provide generic virtual-function based interface
Packit ae235b
* Added generic main-loop abstraction
Packit ae235b
* Removed GListAllocator type and its g_*_allocator_*() function variants
Packit ae235b
* Bug fixes
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.5:
Packit ae235b
Packit ae235b
* Win32 portability
Packit ae235b
* GIOChannel structure to encapsulate the IPC mechanism 
Packit ae235b
* Reimplemented endian stuff, using inline asm for x86
Packit ae235b
* New functions:
Packit ae235b
  - g_strescape: escapes backslashes
Packit ae235b
  - g_path_is_absolute and g_path_skip_root
Packit ae235b
  - g_getenv: expands environment variables that contain references 
Packit ae235b
    to other environment variables
Packit ae235b
  - g_scanner_sync_file_offset: rewind the filedescriptor to the current
Packit ae235b
    buffer position and blow the file read ahead buffer
Packit ae235b
  - g_array_remove_index: remove an entry, preserving the order
Packit ae235b
  - g_array_remove_index_fast: remove an entry, order might be distorted
Packit ae235b
  - g_ptr_array_remove: remove an entry, preserving the order 
Packit ae235b
  - g_ptr_array_remove_fast: remove an entry, order might be distorted
Packit ae235b
  - g_byte_array_remove_index: wrapper for g_array_remove_index
Packit ae235b
  - g_byte_array_remove_index_fast: wrapper for g_array_remove_index_fast
Packit ae235b
  - g_strncasecmp: modeled closely after g_strcasecmp
Packit ae235b
  - g_list_sort, g_slist_sort: to merge sort GLists and GSLists
Packit ae235b
* New macros:
Packit ae235b
  - G_DIR_SEPARATOR, G_DIR_SEPARATOR_S: platform-dependant file name
Packit ae235b
    syntax elements
Packit ae235b
  - G_SEARCHPATH_SEPARATOR, G_SEARCHPATH_SEPARATOR_S: platform-dependant
Packit ae235b
    search path syntax conventions
Packit ae235b
  - G_STRUCT_OFFSET, G_STRUCT_MEMBER_P, G_STRUCT_MEMBER: for handling
Packit ae235b
    structure fields through their offsets
Packit ae235b
* Removed G_ENUM, G_FLAGS, G_NV, and G_SV macros
Packit ae235b
* Bug fixes
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.4:
Packit ae235b
Packit ae235b
* Added generic callback maintenance functions (ghook)
Packit ae235b
* New endian defines (G_*_ENDIAN)
Packit ae235b
* New string join/split/free routines 
Packit ae235b
* Fixes
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.3:
Packit ae235b
Packit ae235b
* New GModule mechanism (implemented in an extra library) which wraps dynamic
Packit ae235b
  object code loading facilities in a portable manner.
Packit ae235b
* glib-config features extra "glib" (old behaviour remains) and "gmodule"
Packit ae235b
  (add libgmodule.so to the --libs output) arguments now. this can also
Packit ae235b
  be specified as fourth argument to the AM_PATH_GLIB() macro.
Packit ae235b
* Overhaul of the `inline' autoconfiguration stuff, so inlining should be
Packit ae235b
  sufficiently supported on all systems that allow inlining now.
Packit ae235b
* New g_log() mechanism for logging of messages at different log levels,
Packit ae235b
  associated with certain log domains (define -DG_LOG_DOMAIN for your library).
Packit ae235b
* New inline functions for bit masks tests.
Packit ae235b
* GNode macros (and functions) now return the newly allocated node.
Packit ae235b
* New macro G_VA_COPY() to work around va_list copying oddities on some
Packit ae235b
  platforms. the non-static g_vsprintf() function vanished in favour of
Packit ae235b
  a publically exported g_strdup_vprintf().
Packit ae235b
  People that used the former g_vsprintf() would definitely want to read the
Packit ae235b
  associated ChangeLog entries (grep for printf).
Packit ae235b
* New utility functions:
Packit ae235b
  g_strndup(), g_on_error_query(), g_on_error_stack_trace(), g_strdup_printf(),
Packit ae235b
  g_strdup_vprintf(), g_printf_string_upper_bound(), g_spaced_primes_closest(),
Packit ae235b
  g_strnfill(), g_memdup(). 
Packit ae235b
* Overhaul of the array implementations, this contains some source incompatible
Packit ae235b
  changes. Again, the ChangeLog is much more informative (grep for garray.c).
Packit ae235b
* The internals of the g_dataset mechanism are now exported through the
Packit ae235b
  new g_datalist_* API (this is also the underlying implementation for the
Packit ae235b
  keyed data of GtkObjects).
Packit ae235b
* New function g_atexit(), use of the ATEXIT() macro is discouraged.
Packit ae235b
* Better configure checks for ansi compliance.
Packit ae235b
* Libtool update to version 1.2b.
Packit ae235b
* Lotsa bug fixes and cleanups as always ;)
Packit ae235b
Packit ae235b
Overview of Changes in GLib 1.1.2:
Packit ae235b
Packit ae235b
* Fixed packaging mistake which occured in 1.1.1
Packit ae235b
* fix 64-bitness in g_prints in glibtest
Packit ae235b
Packit ae235b
What is new in GLib 1.1.1:
Packit ae235b
Packit ae235b
* An n-way tree implementation is provided now, based on the GNode structure.
Packit ae235b
* Bugfix for pointer arrays.
Packit ae235b
Packit ae235b
What is new in GLib 1.1.0:
Packit ae235b
Packit ae235b
* GLib is distributed seperatedly from Gtk+ now and uses a sophisticated
Packit ae235b
  shared library versioning scheme to deal with interface and binary
Packit ae235b
  incompatibilities.
Packit ae235b
* There is a glib-config helper script installed now.
Packit ae235b
* Fixups all over the place.
Packit ae235b
* gboolean is now a gint, not a gchar anymore.
Packit ae235b
* API extensions for GList and GSList.
Packit ae235b
* New g_str*() functions for simple string handling.
Packit ae235b
* GScanner extensions for scope, warning and error handling.
Packit ae235b
* Minor performance improvements for GMemChunks.
Packit ae235b
* Implementations of GQuarks and datasets (similar to GtkObjects data
Packit ae235b
  mechansim, but works for generic memory locations).
Packit ae235b
* More convenience macros for GNU C function arguments.
Packit ae235b
* Const correction all over the place, including a new pointer type
Packit ae235b
  gconstpointer.
Packit ae235b
* Generic functions for TAB completions.
Packit ae235b
* GRelations for n-way mapping of certain data.