gtkmm r989 - trunk
- From: murrayc svn gnome org
- To: svn-commits-list gnome org
- Subject: gtkmm r989 - trunk
- Date: Thu, 10 Apr 2008 06:36:38 +0100 (BST)
Author: murrayc
Date: Thu Apr 10 06:36:38 2008
New Revision: 989
URL: http://svn.gnome.org/viewvc/gtkmm?rev=989&view=rev
Log:
Increased version
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/configure.in
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Thu Apr 10 06:36:38 2008
@@ -1,3 +1,113 @@
+2.13.0:
+
+Gtk:
+* Action, RadioAction, ToggleAction: Added create_with_icon_name() functions,
+ allowing IconTheme icon names to be used instead of stock IDs.
+ (Christian Hammond) Bug #437041.
+* Action: Added the icon_name, visible_overflown, and action_group properties.
+* Calendar: Added set_detail_func(), set_detail_width_chars(),
+ set_detail_height_rows(), get_detail_width_chars(), and
+ get_detail_height_rows(), and these properties.
+* EntryCompletion:
+ - Added set_popup_single_match(), deprecating the wrongly-named
+ set_popup_single_width().
+ Bug #473750 (Kevin Daughtridge).
+ - Added a const version of get_text_column() and deprecated the
+ non-const version.
+* IconInfo, IconTheme, AttrList: Deprecated the non-const
+ operator bool()s and added const versions.
+* PageSetup:
+ - Added copy(), wrapping gtk_page_setup_copy().
+ - Added const version of save_to_key_file() and deprecated the non-const one.
+* PrintSettings:
+ - Added copy(), wrapping gtk_print_settings_copy().
+ - Added const version of save_to_key_file() and deprecated the non-const one.
+* StockID: Added operator bool().
+* TreeView: set_headers_visible(): Added default parameter value.
+* Widget:
+ - drag_data_get(): Deprecated the current version and added a version
+ that takes a const Glib::ustring& for the target.
+ - Added the grab_broken_event signal
+ (with no_default_handler, to preserve ABI).
+ Bug #473465 (Balazs Scheidler).
+ - Added the popup_menu signal, now that we know that it is public API.
+ (with no_default_handler, to preserve ABI).
+ Bug #304103 (Philip Langdale).
+ (Murray Cumming)
+
+Gdk:
+* Color
+ - Added to_string().
+ - Deprecated the non-const operator bool()s and added a const version.
+* Drawable: dAdded a const override of get_size() and deprecated the non-const
+ version.
+ Bug #467539 (Bobby DaSilva).
+
+Build:
+* Removed the tutorial and examples. They are now in the gtkmm-documentation
+ module.
+
+2.12.7:
+
+* UIManager: add_ui_from_string():
+ Fix a problem with use of non-ASCII text in UI markup.
+ (Murray Cumming)
+* TreeModel::Path (TreePath):
+ TreePath(In pbegin, In pend) constructor:
+ Initialize gobject_ to avoid a crash.
+ (Svetlozar Argirov) Bug #50043.
+
+2.12.6:
+
+* Container: Avoid a useless warning about remove() with custom containers.
+ (Murray Cumming) Bug #518002 (Jonathon Jongsma).
+* Build: Fixed a warning from g++ 4.3.
+ (Tim Retout) Bug #524874.
+* Documentation: Correct the debian/Ubuntu package name.
+ (Deng Xiyue)
+
+2.12.5:
+
+* Documentation:
+ - Show stock icon images in the API reference again.
+ - Show some pictures of widgets in the API reference.
+ (Jonathon Jongsma)
+
+* Build:
+ - Fix header inclusion and use using directive for C functions to
+ fix build on gcc-4.3 (pre-releases) and Solaris.
+ (Deng Xiyue, Tim Mooney, Kjartan Maraas, Bug #498438, #517530)
+ - Install and find all needed files for gtkmm-demo, and correct the
+ executable name.
+ (Chris Wang. Bug #516602, #516600)
+
+2.12.4:
+
+* Gtk::RecentAction: Derive from RecentChooser - this class was
+ unusable before and we didn't want to wait for the next
+ major GTK+ and gtkmm versions to fix it.
+* Build fix with gcc 4.3 pre-releases.
+ (Sebastien Bacher)
+
+2.12.3:
+
+* Documentation: Improved the devhelp file to
+ - show the full method name, including the class name.
+ - really jump to the method's anchor on the page.
+ (Jonathon Jongsma) Bug #488261
+* Build: Fix the win32 build.
+ (Yevgen Muntyan)
+
+2.12.2:
+
+* IconView: set_cursor(): Actually implement this.
+ (Murray Cumming)
+* LinkButton: Correct the implementation of the
+ constructor that takes just the URI. Bug #492200
+ (Marko Anastasov)
+* Build: Fix the build on MacOS X. Bug #493057.
+ (Alberto Ruiz)
+
2.12.1:
* PrintOperation: Corrected a reference-counting problem that caused
Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in (original)
+++ trunk/configure.in Thu Apr 10 06:36:38 2008
@@ -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], [12])
-pushdef([GTKMM_MICRO_VERSION], [1])
+pushdef([GTKMM_MINOR_VERSION], [13])
+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])
@@ -198,9 +198,9 @@
# Dependancy checks
#########################################################################
gtkmm_min_glibmm_version=2.14.1
-gtkmm_min_giomm_version=2.15.3
-gtkmm_min_gtk_version=2.12.0
-gtkmm_min_cairomm_version=1.1.12
+gtkmm_min_giomm_version=2.16.0
+gtkmm_min_gtk_version=2.13.0
+gtkmm_min_cairomm_version=1.2.2
GLIBMM_LIBDIR=`pkg-config --variable=libdir glibmm-2.4`
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]