]> Pileus Git - ~andy/gtk/blob - NEWS
Push GdkRGB's visual and colormap around the color selection dialog so
[~andy/gtk] / NEWS
1 What is new in GTK+ 1.1.12:
2
3 * Korean translation added
4 * Fixed memory leaks
5 * A few other bug fixes
6
7 What is new in GTK+ 1.1.11:
8
9 * Dutch, Japanese, Swedish, Polish, and Norwegian translations
10 * Removed deprecated _interp variants: gtk_container_foreach_interp, 
11   gtk_idle_add_interp, gtk_timeout_add_interp, gtk_signal_connect_interp
12 * Lots of cast corrections
13 * Many fixes 
14
15 What is new in GTK+ 1.1.9:
16
17 * Check for broken glibc 2.0 mb functions and avoid them
18 * Label and Entry display fixes 
19 * Move main thread back to GDK, for locking when translating events
20 * Bug fixes
21
22 What is new in GTK+ 1.1.8:
23
24 * Added support for gettext and the localization of the standard
25   dialogs.
26 * Added line-wrapping for the label, and JUSTIFY_FILL
27 * Support reordering via drag and drop in  CList and CTree.
28 * Replaced GtkDrawWindow widget with a GTK_USER_DRAW flag
29 * Extended gtkpaned API to support minimum sizes and proportional
30   resizing.
31 * Changed the handling of shared memory segments so as to 
32   remove the need for GTK+ to set up signal handlers.
33 * Re-implemented event loop in terms of the event loop
34   that has been added to GLib 1.1.8
35 * Added 'grab_focus' signal to allow keyboard accelerators
36   for entries.
37 * Load locale specific RC files if present.
38 * Bug fixes.
39
40 What is new in GTK+ 1.1.7:
41
42 * Fixed memory mis-allocation in default files code
43 * Various event handling fixes
44 * Wide character support for entry and text
45 * Destroy widgets _after_ propagating unrealize signals through 
46   widget heirarchy
47 * Only build XIM-support if available
48 * Tutorial and examples updates
49 * Added gtk_drag_source_unset()
50
51 What is new in GTK+ 1.1.6:
52
53 * The signal system now features emission hooks whith special semantics,
54   refer to the ChangeLog for this.
55 * Minor? speedups and memory reductions to the emission handling of the
56   signal system.
57 * _interp() function variants are deprecated now. the corresponding *_full()
58   variants are provided for a long time now.
59 * Dnd abort timeout increased to 10 minutes.
60 * GtkScrolledWindow inherits from GtkBin now.
61 * GTK_POLICY_NEVER is implemented for scrolled windows now.
62 * Lots of API clean ups.
63 * Incremental freezing abilities.
64 * Integrated widgets from the GNOME tree: GtkLayout, GtkPlug and GtkSocket.
65 * New window functions for transient relationship, default size, and 
66   geometry hints
67 * Default rc files are now read in (<sysconfdir/etc/gtkrc and ~/.gtkrc)
68   GTK_RC_FILES environment variable and functions are provided to configure
69   this behavior
70 * Read doc/Changes-1.2.txt to properly adapt your code.
71 * Bug Fixes.
72
73 What is new in GTK+ 1.1.5:
74
75 * Theme integration
76 * Widget style modification is now handled through GtkRcStyles
77 * GtkPixmaps now grey out pixmaps when insensitive
78 * Notebook enhancements
79 * Shadow configurability for menubars and handleboxes
80 * DND enhancements
81 * gtkfilesel now supports automounters better
82 * Implementation of expose compression
83 * Queued redraws of partial areas
84 * Scrolledwindow (+Viewport) source incompatibilities, children that are added
85   to a scrolled window don't get an automatic viewport anymore. a convenience
86   function gtk_scrolled_window_add_with_viewport() is suplied for this task
87 * Deprecated functions will now issue a message, informing the programmer about
88   the use of this function. These functions will get removed in future versions
89 * Non-functional functions got removed entirely
90 * gtk_widget_new() and gtk_object_new() will now auto-construct new objects.
91   A new function gtk_object_default_construct() is provided now which should
92   be called after every gtk_type_new() to perfom the auto-construction
93 * Improved argument support of several widgets
94 * Bug Fixes
95
96 What is new in GTK+ 1.1.3:
97
98 * GtkCList/GtkCTree now have the ability to:
99     - hide/show individual columns
100     - disable/enable column resizing
101     - set min and max for column widths
102     - set expander style of the ctree
103     - set/get row and cell styles
104     - set spacing between tree expander and cell contents in ctree
105     - toggle auto_resize for columns
106 * Must enhanced DND support, removed old DND code
107 * Idle functions are now implemented via GHook, giving a slight speed
108   improvement
109 * An environment variable GTK_MODULES which takes a colon seperated
110   list of module names GTK+ will now automatically load at gtk_init() startup
111 * GtkFontSel now has support for an extra 'base' filter
112 * New function gdk_window_set_root_origin to get the real geometry taking
113   into account window manager offsets
114 * New function gtk_text_set_line_wrap to toggle line wrapping
115 * New function gtk_widget_add_events which safely adds additional
116   events to a widget's event mask
117 * New function gdk_event_get_time to get the timestamp from a generic
118   event
119 * New widget GtkCalendar
120 * New widget GtkInvisible - InputOnly offscreen windows used for reliable
121   pointer grabs and selection handling in DND code
122 * New functions gtk_object_remove_no_notify[_by_id] to remove a certain
123   data portion without invokation of its destroy notifier 
124 * gtk_spin_button_construct is now deprecated, use gtk_spin_button_configure
125   instead 
126 * gtk_clist_set_border is now deprecated, use gtk_clist_set_shadow_type 
127   instead
128 * Removed functions gtk_object_set_data_destroy[_by_id] 
129 * Documentation additions/updates 
130 * HTML and plain text files are now included in the distribution
131 * Bug fixes, typeness corrections, and general fixups
132
133 What is new in GTK+ 1.1.2:
134
135 * Gtk+ is now featuring runtime loading of dynamic modules via the
136   --gtk-modules= command line switch. such modules have to export a
137   G_MODULE_EXPORT void gtk_module_init (gint *argc, gchar ***argv);
138   function which will be invoked to initialize the module. since such
139   modules may create new widget types, they are always resident.
140 * The tutorial has been updated again.
141 * Changes to menus including tearoff menus and accelerators.
142 * Better support for modal dialogs.
143 * Removed CAN_FOCUS by default from scrollbars and button children of toolbar.
144 * More improvements and fixes for GtkCList and GtkCTree (i.e. row sorting).
145 * GtkCTree rows can be unselectable now.
146 * The GtkCTree API has undergone major renames (see ChangeLog entry from Lars
147   Hamann on Tue Aug 18 00:29:13 1998).
148 * A bunch of varargs functions changed to get va_lists working on systems that
149   implement va_lists as arrays.
150 * Improvements to the gdkrgb code.
151 * Improvements to Gdk color handling so we greatly reduce server traffic and
152   don't leak colors anymore.
153 * Improved internal widget tree iterators (the GtkContainer::foreach signal
154   vanished because of this).
155 * Option menus can have the keyboard focus now.
156 * More fixups to the text widget.
157 * GtkFileSelection should behave much more nicely in combination with AFS now.
158 * Support for label underlining.
159 * Support for GLib 1.1.3 log domains.
160 * Documentation improvements.
161 * Configuration fixes on various platforms.
162 * Miscellaneous fixes to XInput support.
163 * Build with shared library dependencies on Linux
164 * Fix for a major bug in the type systems memory allocation code that could
165   cause random crashes.
166 * Libtool update to version 1.2b.
167 * Lots of bugfixes and cleanups again ;)
168
169
170 What is new in GTK+ 1.1.1:
171
172 * Tutorial updates and additions.
173 * Key binding support for GtkListItems and GtkList.
174 * Extended selection mode and autoscrolling for GtkLists.
175 * A GtkCtree now operates on GtkCTreeNode* structures rather than GList*.
176 * GtkCTreeNodes can now be created from GNode trees.
177 * Bug fixes for GtkNotebook, GtkCList, GtkCombo and GdkWindow reparentation.
178
179
180 What is new in GTK+ 1.1.0:
181
182 * New widget GtkFontSelector.
183 * New featurefull progress bar.
184 * New container widget GtkPacker.
185 * New object GtkItemFactory, GtkMenuFactory is deprecated.
186 * New key binding system, configurable via rcfiles, similar to styles.
187 * New widget GtkCTree with drag selections and keyboard movement and
188   and horizontal scrolling. Features also implemented for GtkCList.
189 * Significant speedups to widget creation and destruction through caching
190   colormap and visual queries to the XServer.
191 * Speedups for type creation and especially gtk_type_is_a() checks.
192 * Speedups in signal lookup, creation and emissions and connection handling.
193 * Minor speedups with object data allocation and destruction.
194 * Additions to the signal handling API (e.g. *_emitv).
195 * Support for rc-file reparsing.
196 * Resizing logic is now implemented on container widget basis, rather than
197   for toplevel GtkWindows only.
198 * Buttons support relief styles now.
199 * Some widgets are now allocated through memchunks to behave more memory wise.
200 * Newly included file gtkfeatures.h which defines compatibility macros to
201   test for certain API features upon program compilation.
202 * Child arguments support for container widgets.
203 * Far better support for object arguments, revamp of the underlying
204   mechanism for speed and reusability. Child/object arguments don't
205   need to be preceeded by the "GtkType::" portion anymore.
206 * Removed GtkAcceleratorTable in favour of GtkAccelGroup, accelerator display
207   is now performed by a new widget GtkAccelLabel.
208 * Overhaul of the resizing code. Resizing behaviour can now be specified
209   on GtkContainer basis, so the underlying algorithm isn't only available
210   for GtkWindows.
211 * GtkTables are now fully resizable.
212 * The GtkType system now supports an additional base class initialization
213   function.
214 * GtkStyles and key bindings can now be looked up depending on the base
215   types of a widget, through a new keyword `class' in rc files.
216 * GtkButton derives from GtkBin (finally).  
217 * More descriptive error messages on rc parsing.  
218 * Runtime information is available to query enum/flag definition values.
219 * Upgrade to libtool-1.2
220 * Legions of bug fixes, memory leaks, segfaults, of-by-something errors...
221   including those that already went into the 1.0.x branch.
222 * A big bunch of features and cosmetic fixups that just got lost in
223   the masses of changes.