From 6a69ad5e9cb0cae73c495b9a1ce2b1ce29513511 Mon Sep 17 00:00:00 2001 From: Murray Cumming Date: Wed, 7 Sep 2005 05:53:55 +0000 Subject: [PATCH] increased version --- ChangeLog | 4 ++++ NEWS | 44 ++++++++++++++++++++++++++++++++++++++++++++ README | 9 ++------- configure.in | 4 ++-- 4 files changed, 52 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index cbaf2b5a2..02f31cc31 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2.8.0: + +Updated NEWS and increased version. + 2.7.4: 2005-08-17 Murray Cumming diff --git a/NEWS b/NEWS index 1382b5d14..41d7033b1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,47 @@ +2.8.0: + +API additions since 2.6: + +Gtk: +* AboutDialog: Added set/get_wrap_license() and property. +* CellRenderer: Added "sensitive" property. +* ComboBoxText, ComboBoxEntryText: + - Deprecated clear() in favour of new clear_items() method, + because clear() exists in the base CellLayout class and is + very different. + - Added remove_text() to remove items one at a time. +* Dialog: Added get_response_for_widget(). +* EntryCompletion: Added properties, get/set_popup_set_width(), + get/set_popup_single_width(). +* FileChooser: Added get/set_do_overwrite_confirmation( +* Iconview: Added get_item_at_pos(), get_visible_range(), get/set_cursor(), + scroll_to_path(). +* TreeRowReference: Added get_model(). +* TreeView: + - Added unset_model(). + - Added const versions of get_path_at_pos(), + get_cell_area(), get_background_area(), get_visible_rect(), + widget_to_tree_coords(), tree_to_widget_coords(). + - Added get_visible_range(). +* TreeView::Column: Added queue_resize(). +* Sizegroup: Added ignore_hidden property. +* Stock: Added FULLSCREEN, LEAVE_FULLSCREEN, and INFO stock items. +* Widget: Added drag_source_set_icon(const Glib::ustring& icon_name). +* Window: + - Added urgency_hint property, and get/set_urgency_hint(). + Added present(timestamp) overload. + +Gdk: +* Colormap: Deprecated alloc_colors() and free_colors(). + Add free_color() for use with alloc_color(). +* Cursor: Added get_image() and a Cursor(name) constructor. +* DragContext:Added set_icon(const Glib::ustring& name). +* Pixbuf: Added a save_to_buffer() overload without the options + parameters. +* Window: Added move_region(). + +(Murray Cumming, Jonathon (Jongsma), Ishmal, Daniel Glöckner, Alexander Nedotsukov, Philip Langdale, The Written Word) + 2.7.4: Gtk: diff --git a/README b/README index 3d5672171..b480135f3 100644 --- a/README +++ b/README @@ -1,8 +1,3 @@ -This version of gtkmm is aimed at Gtk+ 2.5/2.6 -See CHANGES for a comparison with gtkmm 2.4 +This is gtkmm, a C++ API for GTK+. +See http://www.gtkmm.org/ -Required Libraries ------------------- - -* Of course, you will need gtk+ 2 and its dependencies. -* glibmm (which requires libsigc++ 2.0) diff --git a/configure.in b/configure.in index f995d54ae..f77434a65 100644 --- a/configure.in +++ b/configure.in @@ -14,8 +14,8 @@ #We use pushdef here because we can't use shell variables before AC_INIT, but we want to use a variable with AC_INIT: pushdef([GTKMM_MAJOR_VERSION], [2]) -pushdef([GTKMM_MINOR_VERSION], [7]) -pushdef([GTKMM_MICRO_VERSION], [4]) +pushdef([GTKMM_MINOR_VERSION], [8]) +pushdef([GTKMM_MICRO_VERSION], [0]) pushdef([GTKMM_EXTRA_VERSION], []) pushdef([GTKMM_VERSION], GTKMM_MAJOR_VERSION.GTKMM_MINOR_VERSION.GTKMM_MICRO_VERSION[]GTKMM_EXTRA_VERSION) AC_INIT([gtkmm], GTKMM_VERSION, [gtkmm-list@gnome.org])