updated externals
[platform/upstream/glib.git] / gobject / ChangeLog
index f0595d4..3d6f861 100644 (file)
@@ -1,3 +1,132 @@
+2001-07-29  Hans Breuer  <hans@breuer.org>
+
+       * gobject.def : updated externals
+
+2001-07-20  Hans Breuer  <hans@breuer.org>
+
+       * gobject.def : updated externals
+
+       * makefile.msc.in : reflect glib move
+
+Tue Jul 10 18:50:16 2001  Tim Janik  <timj@gtk.org>
+
+       * gsignal.h (struct _GSignalQuery): fix misplaced comment.
+
+Mon Jul  2 07:17:47 2001  Tim Janik  <timj@gtk.org>
+
+       * gobject.c (g_object_weak_ref): 
+       (g_object_watch_closure): congrats tim, introducing of-by-one
+       errors like on my very first day of C programming.
+
+Sat Jun 30 11:07:00 2001  Tim Janik  <timj@gtk.org>
+
+       * gobject.[hc]: provide weak_ref/weak_unref functions,
+       invoked from ->dispose. renamed ->shutdown() to ->dispose(),
+       provide "public" API entry here: g_object_run_dispose(), this
+       fucntion should _only_ be called from object system implementations
+       (e.g. gtkobject.c) if at all.
+
+       * gtypemodule.c (g_type_module_dispose): s/shutdown/dispose/
+
+       * gsignal.h: removed compat aliases.
+
+       * gobject.c (g_object_connect): support data objects.
+       
+Sat Jun 30 13:17:12 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * testgruntime.c (test_object_class_init)
+         gobject.c (g_object_do_class_init): 
+         g_signal_newc() => g_signal_new().
+
+Thu Jun 28 22:49:40 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtype.[ch] gobject-query.c testgruntime.c: Remove
+       debug flag argument to g_type_init() and add
+       g_type_init_with_debug_flags().
+
+Thu Jun 28 16:42:49 2001  Tim Janik  <timj@gtk.org>
+
+       * gsignal.c (g_signal_lookup): 
+       (g_signal_list_ids): give elaborate warnings about invalid types,
+       non-instantiatable types and unloaded types that we can't operate on.
+
+       * gparam.[hc]: g_param_spec_pool_belongings() ->
+       g_param_spec_pool_list_owned().
+
+       * gsignal.[hc]: renamed:
+       g_signal_newc -> g_signal_new
+       g_signal_disconnect_by_func -> g_signal_handlers_disconnect_by_func
+       g_signal_block_by_func -> g_signal_handlers_block_by_func
+       g_signal_unblock_by_func -> g_signal_handlers_unblock_by_func
+       added GConnectType to simplify (..gboolean swapped, gboolean after)
+       args.
+
+       * gobject.[hc]: changed prototypes accordingly.
+
+2001-06-22  Hans Breuer  <hans@breuer.org>
+
+       * gobject.def : updated externals
+
+       * gobjectnotifyqueue.c : include <string.h> for memset ()
+
+Thu Jun 21 02:43:10 2001  Tim Janik  <timj@gtk.org>
+
+       * gparamspecs.h: s/long/int/ for default_value in enum and flags
+       pspecs.
+
+Wed Jun 20 03:59:42 2001  Tim Janik  <timj@gtk.org>
+
+       * gtype.[hc]: added debugging variants g_type_name_from_class(),
+       g_type_name_from_instance().
+
+Mon Jun 11 17:07:06 2001  Tim Janik  <timj@gtk.org>
+
+       * gboxed.[hc]: remove left-over usages of an anonymous GBoxed typedef.
+
+       * gobjectnotifyqueue.c: moved property notify queue implementation
+       bits into this function.
+
+       * gparam.[hc]: added g_param_spec_pool_belongings(), completed
+       g_param_spec_pool_list(). added GParameter for _setv() functions.
+
+       * gobject.[hc]: use gobjectnotifyqueue.h implementation now.
+       got rid of properties_changed signal.
+       new functions g_object_newv(), g_object_class_list_properties().
+       removed "properties_changed" signal.
+
+       * gtype.[hc]: added g_type_depth() to figure number of parent
+       types + 1 for a type.
+
+       * gsignal.h: add g_signal_connect() (as per owen's request) and
+       g_signal_connect_swapped().
+
+2001-06-13  Havoc Pennington  <hp@redhat.com>
+
+       * Makefile.am (progs_LDADD): link to ./libgobject-1.3.la
+       since an installed libgobject was somehow being found; think 
+       it's a libtool bug, but this workaround should do for now.
+
+2001-06-12  Havoc Pennington  <hp@redhat.com>
+
+       * Makefile.am (glib-mkenums): don't put $(srcdir)/glib-mkenums in
+       bin_SCRIPTS, that breaks make install. Instead put 'glib-mkenums'
+       in bin_SCRIPTS and cp it into builddir
+
+Thu May 31 17:56:47 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gobject-query.c: Fix mispelling in help output.
+       (#53952, Skip Montanaro)
+
+2001-05-28  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * Makefile.am (EXTRA_DIST): Really distribute glib-mkenums, now
+       that bin_SCRIPTS doesn't seem to care about doing so anymore.
+
+Mon May 28 06:51:24 2001  Tim Janik  <timj@gtk.org>
+
+       * gsignal.c (signal_emit_unlocked_R): fixed bad faux-pass, forgot
+       to release signal lock when restarting emissions.
+
 Sun May 27 04:52:28 2001  Tim Janik  <timj@gtk.org>
 
        * gsignal.[hc] (g_signal_stop_emission_by_name): added variant