X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=ChangeLog.pre-2-8;h=74b18219f32b9a5cf57460ef16934f1981b62a69;hb=e61fd79f19dcb1dfe3ca507696ab40345ca56b35;hp=8c323c19a4e5c37e49b30f495ac1169eb6e2c2ef;hpb=441488cdb451acbe69c74417df7db7ed4a573091;p=~andy%2Fgtk diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 8c323c19a..74b18219f 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,191 @@ +Thu Apr 4 22:35:42 2002 Soeren Sandmann + + * tests/testgtk.c (menu_items): revert accidentally commited + change to testgtk.c + +Thu Apr 4 22:28:08 2002 Soeren Sandmann + + * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem with menu + titles being clipped (#75948) + +2002-04-04 Tor Lillqvist + + * gdk/gdkrgb.c: Fix some bugs, and introduce a minor feature. + + (gdk_rgb_convert_4_pack): New function, for 16-color (4 bits per + pixel) static visuals (fixes #858). + + (gdk_rgb_convert_gray4_pack, gdk_rgb_convert_gray4_d_pack): Fix + same bugs in both functions: Odd start coordinate (partial byte) + was not handled correctly. Also a partial final byte was not + handled correctly. + + (gdk_rgb_do_colormaps): Use G_N_ELEMENTS. + (gdk_rgb_create_info): For pseudocolor visuals, use the 2x2x2 + colorcube only for depths 3 and 4. For static color, use it for + depths 3..7 like before. (Depth 5..7 pseudocolor probably never + occurs on X11. It doesn't normally occur on Win32 either, but + there is experimental code in gdkvisual-win32.c to let the user + restrict the size of palette used.) + (gdk_rgb_init): Set gdk_rgb_verbose if the GDK_DEBUG_GDKRGB flag + is set. + (gdk_rgb_select_conv): Use gdk_rgb_convert_8 also for depths 5, 6 + and 7 (see above). Use gdk_rgb_convert_4_pack for 4 bits per pixel + static color. + +Tue Apr 2 11:10:13 2002 Jonathan Blandford + * gtk/gtkliststore.c (gtk_list_store_set_sort_func): set the + sort_func correctly, 77030 + +Tue Apr 2 13:44:27 2002 Tim Janik + + * configure.in: update version to 2.0.2, binary age 2, interface + age 2. + + * NEWS: updates for 2.0.2. + +Mon Apr 1 22:20:24 2002 Kristian Rietveld + + * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): add + check for y > tree_view->priv->height (fixes #76974) + +Mon Apr 1 22:19:39 2002 Kristian Rietveld + + * gtk/gtktreemodelsort.c (gtk_tree_model_sort_sort_level): get + the stamp changes right this time + +Mon Apr 1 22:13:24 2002 Kristian Rietveld + + * gtk/gtktreemodel.c (gtk_tree_row_reference_free): only + disconnect the ref callbacks when model == proxy (Thanks go to + Manuel Clos Crespo for the remote debugging) + +Sat Mar 30 15:19:24 2002 Kristian Rietveld + + * gtk/gtktreemodelsort.c: revert the latest stamp increment changes, + as it broke stuff for trees + +Fri Mar 29 18:15:12 2002 Owen Taylor + + * ===== Released 2.0.1 ====== + +Fri Mar 29 18:09:18 2002 Owen Taylor + + * gtk/gtkaccelgroup.c (gtk_accel_group_query): Call + gdk_keyval_to_lower() on the key passed in, since we + lowercase all other key vals passed in, so querying + keyvals will otherwise fail if the caller used + an uppercase accelerators (#76899, Vitaly Tishkov) + +Fri Mar 29 17:41:21 2002 Owen Taylor + + * gtk/gtkmain.c (load_modules): Fix screwup in handling + of module path that was resulting in freed memory being + accessed when both GTK_MODULES and a theme were set. + (#76902, Johan Dahlin) + +Fri Mar 29 17:57:36 2002 Owen Taylor + + * gtk/gtkiconfactory.c (get_default_icons): Fix wrong + stock id's for ADD/REMOVE. (#76915, Vitaly Tishkov) + +2002-03-29 Hans Breuer + + * gtk/gtkmain.h : fix typo in gtk_init_check macro, which + caused crashes if argc != 0 + + * gtk/stock-icons/makefile.msc : added new icons + +Fri Mar 29 20:17:35 2002 Kristian Rietveld + + * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered): + remove call to gtk_tree_model_sort_increment_stamp + (gtk_tree_model_sort_sort_level): always increment the stamp + +Fri Mar 29 00:19:41 2002 Owen Taylor + + * NEWS: Updates + + * configure.in: Version 2.0.1, binary, interface age 1. + + * configure.in (GDK_PIXBUF_VERSION): Up required versions + of dependencies. + + * gtk/gtkiconfactory.c gtk/stock-icons/Makefile.am: + Add stock_add/remove_16. + +Thu Mar 28 18:38:30 2002 Owen Taylor + + * gtk/gtk[hv]paned.c (gtk_[hv]paned_size_allocate): + Don't show the window unless the widget is mapped. + (#76742, Dennis Björklund, Soeren Sandmann) + +2002-03-29 Hans Breuer + + Fixed dashed line issues (#74441) to an IMO reasonable extend. + That is: use PS_USERSTYLE on WinNT (the next GDI limit appears + to be with lines width > 50); Render horizontal and vertical + dashed lines on Win9x 'by hand'. Dotted selection rectangles + and Dia look nice ... + + * gdk/win32/gdkprivate-win32.h : add pen_dashes pointer and + num_pen_dashes to _GdkGCWin32 + * gdk/win32/gdkgc-win32.c : initialize pen_dashes and remove + the guesses from dashes to windoze line styles. + (predraw_set_forground) : always ExtCreatePen (PS_SOLID) on + Win9x, which does not support PS_USERSTYLE. + * gdk/win32/gdkdrawable-win32.c : new functions render_line_ + . Use them if not running on NT in + gdk_win32_draw_ () + + * gdk/win32/gdkkeys-win32.c (gdk_keyval_name) : return NULL + for keyval == 0 to avoid to have zeros in all menu entries + without accelerator. + +2002-03-29 Jakub Steiner + + * gtk/stock-icons/stock_add_24.png: + * gtk/stock-icons/stock_add_16.png: + * gtk/stock-icons/stock_remove_24.png: + * gtk/stock-icons/stock_remove_16.png: use a simple '+' and '-', + works better. the old box was too clumsy + +Thu Mar 28 21:11:04 2002 Tim Janik + + * gtk/gtkfilesel.c (open_new_dir): when encountering non-UTF-8 file + names, alert the user with g_message() instead of g_warning() and + put out the actual conversion error. + +2002-03-28 Dave Camp + + * gtk/gtktreeview.c (install_scroll_sync_handler): Don't install + the handler if the widget isn't realized. + +2002-03-28 Jakub Steiner + + * gtk/stock-icons/stock_font*: + * gtk/stock-icons/stock_align*: + * gtk/stock-icons/stock_text*: better solution to the dark theme + problem. Also looks more pretty IMHO + +2002-03-27 Matthias Clasen + + * configure.in: Try to find libpng via pkg-config first, + since libpng-1.2.2 will come with a .pc file. + +Wed Mar 27 11:10:39 2002 Owen Taylor + + * gtk/gtknotebook.c (gtk_notebook_real_remove): Set + page->last_focus_child to NULL as well as removing the + weak reference, to deal with reentrancy in set_focus_child(). + (#76634, Dennis Björklund) + +2002-03-27 Murray Cumming + + * gtk/gtktreeview.c: Corrected registered return type of + "move-cursor" signal. Had to add a marshaller to + gtk/gtkmarshalers.list. + Tue Mar 26 14:46:50 2002 Owen Taylor * gtk/gtkmenu.c (gtk_menu_popup): Shuffle the ordering around