added a GNode test.
[platform/upstream/glib.git] / ChangeLog
index c21990f..9ba7458 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,176 @@
+Fri Jul 31 22:17:05 1998  Tim Janik  <timj@gtk.org>
+
+       * testglib.c (g_node_test): added a GNode test.
+
+Fri Jul 31 09:08:16 1998  Tim Janik  <timj@gtk.org>
+
+       * Makefile.am: compile gnode.c.
+
+       * glib.h: 
+       * gnode.c: added implementation of n-way trees.
+
+       * gtree.c (g_tree_traverse): added a warning to the switch() statement
+       which says that G_LEVEL_ORDER is not implemented.
+
+Mon Jul 27 00:17:30 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
+
+       * Released GLib 1.1.0
+
+Mon Jul 27 01:02:27 1998  Tim Janik  <timj@gtk.org>
+
+       * glib.h: #if 0'ed out the GTime definition, until it is definitively
+       needed. #if 0'ed out the g_getcwd() version, because it is the wrong
+       implementation.
+
+Sat Jul 25 16:09:00 1998  Mark Crichton <crichton@expert.cc.purdue.edu>
+       
+       * glib.h: gtime changed to g_time.  gtime is used in 
+       /usr/include/time.h in NetBSD, causing multiple headaches.
+       If this isn't the right way of fixing it.... ;)
+
+Thu Jul 23 00:29:14 1998  Tim Janik  <timj@gtk.org>
+
+       * glib.h: 
+       * gscanner.c: new functions to make a scanner scope sensitive wrt
+       symbol lookups.
+       g_scanner_scope_foreach_symbol, g_scanner_scope_lookup_symbol,
+       g_scanner_scope_remove_symbol, g_scanner_scope_add_symbol and
+       g_scanner_set_scope.
+       g_scanner_add_symbol, g_scanner_remove_symbol and
+       g_scanner_foreach_symbol are now aliases for scope 0.
+
+Mon Jul 20 23:05:34 1998  George Lebl  <jirka@5z.com>
+
+       * glib.h: typo fixed for alphas for gint64
+
+Tue Jul 14 09:05:18 1998  Tim Janik  <timj@gtk.org>
+
+       * glib.h:
+       * gutils.c: new fuction g_dirname() which returns a newlly
+       allocated string.
+
+Fri Jul 10 06:33:43 1998  Tim Janik  <timj@gtk.org>
+
+       * glib.h: 
+       * gutils.h: added a bunch of utility/wrapper functions:
+       g_basename(), g_getcwd(), g_get_user_name(), g_get_real_name(),
+       g_get_home_dir(), g_get_tmp_dir(), g_get_prgname() and g_set_prgname().
+
+       * gutils.c: removed all g_str* functions.
+       * gstrfuncs.c: moved the bunch g_str* functions from gutils.c in this
+       place. this file shall never include <unistd.h> to avoid clashes for
+       some of the g_str* functions on some OSes.
+
+Fri Jul 10 00:29:03 EEST 1998 Lauri Alanko <nether@gimp.org>
+
+       * glib.h:
+       * ghash.c: Renamed g_hash_table_lookup_full to
+       g_hash_table_lookup_extended to conform with naming conventions.
+
+Tue Jul  7 03:18:58 EEST 1998 Lauri Alanko <nether@gimp.org>
+
+       * glib.h:
+       * ghash.c: Generic cleanup, added a function:
+       (g_hash_table_lookup_full): Return whether the lookup succeeded,
+       and also retrieve the key and value. This allows one to
+       distinguish between failed lookup and finding a NULL, and also
+       allows one to free a key in the hash.
+
+Mon Jul  6 10:12:05 PDT 1998 Manish Singh <yosh@gimp.org>
+
+       * ltconfig: fix for properly detecting shared lib support on
+       SunPro cc (taken from libtool 1.2.a)
+
+Sat Jul  4 13:38:52 PDT 1998 Manish Singh <yosh@gimp.org>
+
+       * glib.h: added g_array_length
+
+Tue Jun 30 11:58:25 1998  Tim Janik  <timj@gtk.org>
+
+       * gscanner.c (g_scanner_unexp_token): take symbol_2_token into
+       account. react on valid/invalid string pairs.
+
+Sat Jun 27 21:55:46 PDT 1998 Manish Singh <yosh@gimp.org>
+
+       * glib.m4: ftp.glib.org -> ftp.gtk.org, since glib.org isn't
+       ours. ;)
+
+Fri Jun 19 03:11:02 1998  Tim Janik  <timj@gtk.org>
+
+       * gdataset.c: removed g_dataset_try_key, g_dataset_force_id and
+       g_dataset_retrive_key in favour of GQuarks.
+       a GQuark is an numeric id wich is associated with a certain string.
+       (g_quark_try_string): try to get the quark associated with this string,
+       if the lookup failed return 0.
+       (g_quark_from_string): get the associated quark for a string, if there
+       isn't currently a GQuark associated with this string, then allocate a
+       new quark and return that.
+       (g_quark_from_static_string): like the above function, but the string
+       isn't strdup()ed to save memory.
+       (g_quark_to_string): get the string that is associated with a certain
+       GQuark.
+
+       * gdataset.c (g_dataset_id_set_data_full): invoke the destroy function
+       _after_ the new data has been setup.
+
+Thu Jun 18 02:35:21 1998  Owen Taylor  <otaylor@gtk.org>
+
+       * glib.h: Changed messages for g_return_[val]_if_fail to
+       be somewhat more clear: assertion "blah" failed.
+
+1998-06-18  Federico Mena Quintero  <federico@nuclecu.unam.mx>
+
+       * testglib.c (main): Use GINT_TO_POINTER casts to remove compiler
+       warnings.
+
+       * grel.c: #include <string.h>
+
+Fri Jun 12 15:39:06 1998  Tim Janik  <timj@gtk.org>
+
+       * glib.h (GScanner): cleanups of the structure fields (binary
+       incompatible).
+
+Fri Jun 12 00:39:28 1998  Josh MacDonald  <jmacd@icw.EECS.Berkeley.EDU>
+
+       * glib.h: add new hash and equal functions g_int_*.  complement
+       g_direct_hash with g_direct_equal.
+
+       * grel.c: new file, GRelations implement tuples of N-N mappings.
+       A comment in glib.h briefly describes the interface.
+
+       * ghash.c: new function, g_hash_table_size
+
+       * glib.h: new typedefs, gsize, gssize, gtime.
+
+       * garray.c: new functions implementing a simplified GArray.  This
+       GPtrArray is an array of gpointers and has functions to add and
+       remove elements, much like java.lang.Vector.
+
+       * garray.c: new functions for the single-byte special case of
+       GArray.  The functions g_byte_array* operate on arrays of bytes.
+       Internally, a GArray is used.
+
+       * testglib.c: tests for g_ptr_array, g_byte_array, and g_relation...
+
+1998-06-11  Federico Mena Quintero  <federico@nuclecu.unam.mx>
+
+       * gdataset.c: #include <string.h>
+
+Thu Jun 11 04:15:31 1998  Tim Janik  <timj@gtk.org>
+
+        * glib.h:
+        * gdataset.c: new function g_dataset_retrive_key. adjusted prealloc
+        sizes, to take up less space on initial allocation.
+
+1998-06-10  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * acinclude.m4: New file.  Contains `libtool.m4' from libtool-1.2,
+       the version from which glib's libtool forked.  Needed for people
+       who use post-1.2 alphas of libtool.
+       * configure.in (enable_mem_check, enable_mem_profile): Replace
+       `echo -n' with AC_MSG_CHECKING.
+       (fd_set): Explain test for `fd_set' better.
+
 Wed Jun 10 19:29:51 1998  Owen Taylor  <otaylor@gtk.org>
 
        * Makefile.am glib.m4 configure.in: