]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog.pre-2-6
Update to libtool-1.2b, change library versioning scheme to drop
[~andy/gtk] / ChangeLog.pre-2-6
index 1ed33d347055fe26569b22909f3f874c99276def..3ce5dacf2abe3914b6668db63ca7f456583edd89 100644 (file)
@@ -1,3 +1,114 @@
+Tue Sep 15 14:57:30 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * Makefile.am gtk-config.in l*: Update to libtool-1.2b,
+       change library versioning scheme to drop LT_RELEASE
+       from the -l line, while keeping it in the soname.
+
+Tue Sep 15 14:10:33 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * configure.in Makefile.in: define a MAINT-like variable REBUILD
+       which is set if Perl and awk are found, and autogenerated sources
+       can be rebuilt. Remove the auto-generated sources from
+       CVS. 
+
+       Add dependencies so that the autogenerated sources are 
+       rebuilt if the files they depend on change. 
+       (This unfortunately currently results in the entire
+       gtk/ directory being rebuilt when any header changes.
+       Moving all enums to gtkenums.h would fix this.)
+
+Thu Sep 17 05:12:48 1998  Tim Janik  <timj@gtk.org>
+
+       * gtk/gtkobject.h: added gtk_object_set_data_destroy and
+       gtk_object_set_data_destroy_by_id functions to set the destroy
+       function pointer for an existing data portion.
+
+       * gtk/gtkobject.c: removed the GtkObjectData implementation and
+       made all gtk_object_*data* functions use the GLib equivalents.
+
+1998-09-16  Federico Mena Quintero  <federico@nuclecu.unam.mx>
+
+       * gtk/gtktoolbar.c (gtk_toolbar_insert_element): Test whether type
+       is not equal to GTK_TOOLBAR_CHILD_RADIOBUTTON before checking that
+       (widget != NULL), otherwise radio button insertion will not work
+       -- the widget argument is NULL for the first radio button in the
+       group.
+
+>>>>>>> 1.636
+Tue Sep 15 13:09:24 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdkimage.c (gdk_image_new): Reverted global changes
+       of g_new to malloc(), added back in the one place where
+       it actually mattered. #include <stdlib.h>.
+
+       * gdk/gdkrgb.c: g_malloc() to malloc() as above.
+
+Tue Sep 15 11:30:03 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkfilesel.c: Keep a list of directories in which we never
+       want to stat the entries (like /afs), and assume everything in
+       those directories is a subdirectory.
+
+       - When following a path, try to open components even when
+       we don't find them in their parent's directory to
+       support automounters.
+
+Tue Sep 15 11:06:13 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkwindow.c (gtk_window_move_resize): Don't request
+       a new size from the WM if we asked for the same size
+       before and our request was rejected.
+
+       * gtk/gtkwindow.c (gtk_window_configure_event): If
+       in response to a request, we get a configure event
+       with unchanged dimensions, send a synthetic expose
+       since ForgetGravity won't expose our window.
+
+Mon Sep 14 14:28:24 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtktext.c (adjust_adj): Change the way we
+       set the adjustments on resize so that it tries to
+       keep the beginning of the text in approximately
+       the same place. 
+
+       Removed assertion that the above change made invalid.
+
+Thu Sep 10 22:19:35 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtktext.c: - Save first_cut_pixels when switching
+       sizes, so that if we switch to the _same_ size,
+       we don't move lines around.
+
+       - Make sure that the text area always has a size of at
+       least 1x1, then do all computations when realized.
+
+        - When fetching lines in recompute_geometry, make
+       sure we fetch enough lines to cover the screen.
+       
+Mon Sep 14 21:47:35 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
+
+       * gdk/gdkimage.c: changed g_new()s to malloc()s and 
+         g_free()s to free()s to avoid mixing g_new()s with 
+         free()s.  X itself uses free() on some of the 
+         malloced memory.
+
+Sat Sep 12 10:44:06 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * gtkfilesel.c: Maintain a list of directories like
+       /afs we know contain only directories, and avoid
+       stat'ing files in those directories. (Because
+       stat'ing all files in /afs is extremely expensive)
+
+       To support automounters, try to open directories,
+       even if we couldn't find them when reading their
+       parent directory.
+
+Thu Sep  3 10:29:03 1998  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk.m4: Conditionalize check for GTK_MAJOR_VERSION,
+       to allow the same gtk.m4 to work for 1.0.x and
+       1.1.x.
+
 Fri Sep 11 15:25:10 1998  Lars Hamann  <lars@gtk.org>
 
        * gtk/gtkclist.c (gtk_clist_set_selectable): new function