This commit is contained in:
parent
685a98e3dc
commit
55036b22f3
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f8675340d929346333b5a58cd4d05482dd8b76cf8606fed85b526022bf9c5e47
|
|
||||||
size 9162290
|
|
3
gtkmm-2.15.1.tar.bz2
Normal file
3
gtkmm-2.15.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:090f4f20cdb27361d53ed489d3739c67aa9609fcfb2d4f846d2da12e929aa047
|
||||||
|
size 9243884
|
@ -1,14 +0,0 @@
|
|||||||
Index: gtkmm-2.10.8/gtk/gtkmm/treeview.cc
|
|
||||||
===================================================================
|
|
||||||
--- gtkmm-2.10.8.orig/gtk/gtkmm/treeview.cc
|
|
||||||
+++ gtkmm-2.10.8/gtk/gtkmm/treeview.cc
|
|
||||||
@@ -236,7 +236,8 @@ bool TreeView::get_path_at_pos(int x, in
|
|
||||||
int TreeView::insert_column(const Glib::ustring& title, CellRenderer& cell, int position)
|
|
||||||
{
|
|
||||||
return gtk_tree_view_insert_column_with_attributes(
|
|
||||||
- gobj(), position, const_cast<char*>(title.c_str()), cell.gobj(), (void*)0); //Note that some compilers need the extra (void*) clue.
|
|
||||||
+ gobj(), position, const_cast<char*>(title.c_str()), cell.gobj(), NULL); //Note that some compilers need the extra (void*) clue.
|
|
||||||
+// But I'm changing it to NULL anyway.
|
|
||||||
}
|
|
||||||
|
|
||||||
int TreeView::append_column(const Glib::ustring& title, CellRenderer& cell)
|
|
@ -1,3 +1,81 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 2 12:00:55 EST 2009 - hfiguiere@suse.de
|
||||||
|
|
||||||
|
- Fix devhelp (bnc#410564)
|
||||||
|
- Add specific require on gtk2-devel
|
||||||
|
- Split -doc package
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Feb 1 19:44:39 EST 2009 - mboman@suse.de
|
||||||
|
|
||||||
|
- Update to version 2.15.1:
|
||||||
|
+ CellView: Added get_model() and some new properties.
|
||||||
|
+ Entry: Added unset_invisible_char(), get_invisible_char().
|
||||||
|
+ ImageMenuItem: Added get/set_use_stock(), set_accel_group().
|
||||||
|
+ MenuItem: Added get/set_label(), get/set_use_underline() and properties
|
||||||
|
+ PaperSize: Constructor: Remove the default value for the name parameter,
|
||||||
|
because there is already a default constructor,
|
||||||
|
+ PrintOperation: Added draw_page_finish(), set_defer_drawing().
|
||||||
|
+ PrintSettings: Added get_resolution_x(), get_resolution_y(),
|
||||||
|
set_resolution_xy(), get/set_printer_lpi().
|
||||||
|
+ SelectionData: Reimplement get_selection() using the new C getter method.
|
||||||
|
+ StatusIcon: Added button_press_event, button_release_event and
|
||||||
|
scroll_event signals. Added get/set_has_tooltip(),
|
||||||
|
get/set_tooltip_text(), get/set_tooltip_markup().
|
||||||
|
+ Stock: ORIENTATION_PORTRAIT, ORIENTATION_LANDSCAPE,
|
||||||
|
ORIENTATION_REVERSE_LANDSCAPE, and ORIENTATION_REVERSE_PORTRAIT,
|
||||||
|
avoiding undefined reference errors when trying to use these.
|
||||||
|
+ TextBuffer: Added the paste_done signal.
|
||||||
|
+ TextView: Added im-module property.
|
||||||
|
+ TreeModel::Path::empty(): Also check for a null underlying
|
||||||
|
GtkTreePath. Added operator bool() to do the same, just calling !empty().
|
||||||
|
+ Drawable::draw_pixbuf(): Add an override without a GC parameter,
|
||||||
|
because it can be NULL in C.
|
||||||
|
+ Screen: Added get_monitor_width_mm(), get_monitor_height_mm(),
|
||||||
|
get_monitor_plug_name().
|
||||||
|
- Disabled MSVC++ compiler warning 4250
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 23 13:18:05 CET 2009 - vuntz@novell.com
|
||||||
|
|
||||||
|
- Drop gtkmm2-null.patch: it's not needed anymore, after discussing
|
||||||
|
with upstream.
|
||||||
|
- Minor spec file clean up.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 5 12:30:13 EST 2009 - mboman@suse.de
|
||||||
|
|
||||||
|
- Update to version 2.15.0:
|
||||||
|
+ CellRendererPixbuf: Added the icon-name and follow-state
|
||||||
|
properties
|
||||||
|
+ Printer::enumerate_printers(): Fix a refcounting problem
|
||||||
|
+ Gdk::Window: Added an invalidate() that takes no rect
|
||||||
|
parameter because it can be NULL in C.
|
||||||
|
+ Cleaned up gtk includes to use only toplevel headers, as may be
|
||||||
|
required by a future GTK+ version.
|
||||||
|
+ Container: Use GType instead of GtkType for the child_type_vfunc()
|
||||||
|
return type. This should allow soure code to use gtkmm if it declares
|
||||||
|
GTK_DISABLE_DEPRECATED
|
||||||
|
+ Documentation: TreeModel: set_value_impl() documentation: Mention
|
||||||
|
row_changed(), not set_row_changed()
|
||||||
|
+ HandleBox: Restore the child-attached property, which was lost at some
|
||||||
|
point during 2.14
|
||||||
|
+ LinkButton: Resore the visited property definition, which was lost at
|
||||||
|
some point during 2.14
|
||||||
|
+ CellView, ComboBox, EntryCompletion, IconView: Added unset_model()
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 24 07:53:04 EST 2008 - mboman@suse.de
|
||||||
|
|
||||||
|
- Update to version 2.14.3:
|
||||||
|
+ Restored Gtk::HandleBox::signal_child_attached() and
|
||||||
|
Gtk::LinkButton::property_visited() to the API, which were lost sometime
|
||||||
|
during the gtkmm 2.14.x series
|
||||||
|
+ Remove some ;s to avoid warnings.
|
||||||
|
+ Use the new naming convention, similar to boost.
|
||||||
|
installer-creation script improvements.
|
||||||
|
+ Documentation fixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 3 19:18:53 WST 2008 - mboman@suse.de
|
Fri Oct 3 19:18:53 WST 2008 - mboman@suse.de
|
||||||
|
|
||||||
|
165
gtkmm2.spec
165
gtkmm2.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gtkmm2 (Version 2.14.1)
|
# spec file for package gtkmm2 (Version 2.15.1)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -20,17 +20,17 @@
|
|||||||
|
|
||||||
Name: gtkmm2
|
Name: gtkmm2
|
||||||
%define _name gtkmm
|
%define _name gtkmm
|
||||||
BuildRequires: cairomm-devel fdupes gcc-c++ glibmm2-devel gtk2-devel libsigc++2-devel pangomm-devel update-desktop-files
|
BuildRequires: cairomm-devel fdupes gcc-c++ glibmm2-devel libsigc++2-devel pangomm-devel update-desktop-files
|
||||||
|
BuildRequires: gtk2-devel >= 2.15.1
|
||||||
# Only for directory ownership:
|
# Only for directory ownership:
|
||||||
BuildRequires: devhelp
|
BuildRequires: devhelp
|
||||||
Version: 2.14.1
|
Version: 2.15.1
|
||||||
Release: 1
|
Release: 1
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
License: GPL v2 or later; LGPL v2.1 or later
|
License: GPL v2 or later; LGPL v2.1 or later
|
||||||
Summary: C++ Interface for GTK2 (a GUI Library for X)
|
Summary: C++ Interface for GTK2 (a GUI Library for X)
|
||||||
Url: http://www.gtkmm.org/
|
Url: http://www.gtkmm.org/
|
||||||
Source: ftp://ftp.gnome.org/pub/GNOME/sources/%{_name}/2.10/%{_name}-%{version}.tar.bz2
|
Source: ftp://ftp.gnome.org/pub/GNOME/sources/%{_name}/2.10/%{_name}-%{version}.tar.bz2
|
||||||
Patch: gtkmm2-null.patch
|
|
||||||
Provides: gtkmm24 = %{version}
|
Provides: gtkmm24 = %{version}
|
||||||
Obsoletes: gtkmm24
|
Obsoletes: gtkmm24
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
@ -77,6 +77,37 @@ freely combined to quickly create complex user interfaces.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Murray Cumming <murrayc@usa.net>
|
||||||
|
Daniel Elstner <daniel.elstner@gmx.net>
|
||||||
|
Karl Nelson <kenelson@ece.ucdavis.edu>
|
||||||
|
Tero Pulkkinen <terop@modeemi.cs.tut.fi>
|
||||||
|
Elliot Lee <sopwith@redhat.com>
|
||||||
|
Phil Dawes <P.L.Dawes-CSSE94@cs.bham.ac.uk>
|
||||||
|
Erik Andersen <andersee@debian.org>
|
||||||
|
Bibek Sahu <scorpio@dodds.net>
|
||||||
|
Mirko Streckenbach
|
||||||
|
Havoc Pennington <hp@pobox.com>
|
||||||
|
Guillaume Laurent <glaurent@telegraph-road.org>
|
||||||
|
Todd Dukes <tdukes@ibmoto.com>
|
||||||
|
Peter Lerner <peter.lerner@bnbt.de>
|
||||||
|
Herbert Valerio Riedel <hvr@gnu.org>
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
License: GPL v2 or later; LGPL v2.1 or later
|
||||||
|
Group: Documentation/HTML
|
||||||
|
Summary: C++ Interface for GTK2 (a GUI Library for X)
|
||||||
|
Requires: glibmm2-doc
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
Gtkmm provides a C++ interface to the GTK+ GUI library. gtkmm2 wraps
|
||||||
|
GTK+ 2. Highlights include typesafe callbacks, widgets extensible via
|
||||||
|
inheritance, and a comprehensive set of widget classes that can be
|
||||||
|
freely combined to quickly create complex user interfaces.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
Authors:
|
||||||
--------
|
--------
|
||||||
Murray Cumming <murrayc@usa.net>
|
Murray Cumming <murrayc@usa.net>
|
||||||
@ -96,7 +127,6 @@ Authors:
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{_name}-%{version}
|
%setup -q -n %{_name}-%{version}
|
||||||
%patch -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# FIXME: cannot autoreconf, HAVE_MKFIFO is missing.
|
# FIXME: cannot autoreconf, HAVE_MKFIFO is missing.
|
||||||
@ -109,6 +139,8 @@ make DESTDIR=$RPM_BUILD_ROOT gtkmm_docdir=%{_docdir}/%{name}/docs install
|
|||||||
rm $RPM_BUILD_ROOT/%{_libdir}/*.*a
|
rm $RPM_BUILD_ROOT/%{_libdir}/*.*a
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}
|
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}
|
||||||
cp -r AUTHORS CHANGES COPYING ChangeLog INSTALL NEWS README $RPM_BUILD_ROOT%{_docdir}/%{name}
|
cp -r AUTHORS CHANGES COPYING ChangeLog INSTALL NEWS README $RPM_BUILD_ROOT%{_docdir}/%{name}
|
||||||
|
# we change the path of the documentation. Make sure devhelp works. bnc#410564
|
||||||
|
perl -pi -e "s@/doc/gtkmm-2.4/@/doc/packages/gtkmm2/@g" $RPM_BUILD_ROOT%{_datadir}/devhelp/books/gtkmm-2.4/gtkmm-2.4.devhelp
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}/tests
|
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}/tests
|
||||||
cp tests/Makefile $RPM_BUILD_ROOT%{_docdir}/%{name}/tests
|
cp tests/Makefile $RPM_BUILD_ROOT%{_docdir}/%{name}/tests
|
||||||
export LANG=C
|
export LANG=C
|
||||||
@ -146,18 +178,85 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
%{_libdir}/gdkmm-2.4
|
%{_libdir}/gdkmm-2.4
|
||||||
%{_libdir}/gtkmm-2.4
|
%{_libdir}/gtkmm-2.4
|
||||||
# FIXME: location of devhelp books, directory ownership, maybe use separate package:
|
|
||||||
|
%files doc
|
||||||
|
%defattr (-, root, root)
|
||||||
|
%doc %{_docdir}/%{name}/docs
|
||||||
|
%doc %{_docdir}/%{name}/tests
|
||||||
%dir %{_datadir}/devhelp/books
|
%dir %{_datadir}/devhelp/books
|
||||||
%{_datadir}/devhelp/books/gtkmm-2.4
|
%{_datadir}/devhelp/books/gtkmm-2.4
|
||||||
%{_datadir}/gtkmm-2.4
|
%{_datadir}/gtkmm-2.4
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 02 2009 hfiguiere@suse.de
|
||||||
|
- Fix devhelp (bnc#410564)
|
||||||
|
- Add specific require on gtk2-devel
|
||||||
|
- Split -doc package
|
||||||
|
* Sun Feb 01 2009 mboman@suse.de
|
||||||
|
- Update to version 2.15.1:
|
||||||
|
+ CellView: Added get_model() and some new properties.
|
||||||
|
+ Entry: Added unset_invisible_char(), get_invisible_char().
|
||||||
|
+ ImageMenuItem: Added get/set_use_stock(), set_accel_group().
|
||||||
|
+ MenuItem: Added get/set_label(), get/set_use_underline() and properties
|
||||||
|
+ PaperSize: Constructor: Remove the default value for the name parameter,
|
||||||
|
because there is already a default constructor,
|
||||||
|
+ PrintOperation: Added draw_page_finish(), set_defer_drawing().
|
||||||
|
+ PrintSettings: Added get_resolution_x(), get_resolution_y(),
|
||||||
|
set_resolution_xy(), get/set_printer_lpi().
|
||||||
|
+ SelectionData: Reimplement get_selection() using the new C getter method.
|
||||||
|
+ StatusIcon: Added button_press_event, button_release_event and
|
||||||
|
scroll_event signals. Added get/set_has_tooltip(),
|
||||||
|
get/set_tooltip_text(), get/set_tooltip_markup().
|
||||||
|
+ Stock: ORIENTATION_PORTRAIT, ORIENTATION_LANDSCAPE,
|
||||||
|
ORIENTATION_REVERSE_LANDSCAPE, and ORIENTATION_REVERSE_PORTRAIT,
|
||||||
|
avoiding undefined reference errors when trying to use these.
|
||||||
|
+ TextBuffer: Added the paste_done signal.
|
||||||
|
+ TextView: Added im-module property.
|
||||||
|
+ TreeModel::Path::empty(): Also check for a null underlying
|
||||||
|
GtkTreePath. Added operator bool() to do the same, just calling !empty().
|
||||||
|
+ Drawable::draw_pixbuf(): Add an override without a GC parameter,
|
||||||
|
because it can be NULL in C.
|
||||||
|
+ Screen: Added get_monitor_width_mm(), get_monitor_height_mm(),
|
||||||
|
get_monitor_plug_name().
|
||||||
|
- Disabled MSVC++ compiler warning 4250
|
||||||
|
* Fri Jan 23 2009 vuntz@novell.com
|
||||||
|
- Drop gtkmm2-null.patch: it's not needed anymore, after discussing
|
||||||
|
with upstream.
|
||||||
|
- Minor spec file clean up.
|
||||||
|
* Mon Jan 05 2009 mboman@suse.de
|
||||||
|
- Update to version 2.15.0:
|
||||||
|
+ CellRendererPixbuf: Added the icon-name and follow-state
|
||||||
|
properties
|
||||||
|
+ Printer::enumerate_printers(): Fix a refcounting problem
|
||||||
|
+ Gdk::Window: Added an invalidate() that takes no rect
|
||||||
|
parameter because it can be NULL in C.
|
||||||
|
+ Cleaned up gtk includes to use only toplevel headers, as may be
|
||||||
|
required by a future GTK+ version.
|
||||||
|
+ Container: Use GType instead of GtkType for the child_type_vfunc()
|
||||||
|
return type. This should allow soure code to use gtkmm if it declares
|
||||||
|
GTK_DISABLE_DEPRECATED
|
||||||
|
+ Documentation: TreeModel: set_value_impl() documentation: Mention
|
||||||
|
row_changed(), not set_row_changed()
|
||||||
|
+ HandleBox: Restore the child-attached property, which was lost at some
|
||||||
|
point during 2.14
|
||||||
|
+ LinkButton: Resore the visited property definition, which was lost at
|
||||||
|
some point during 2.14
|
||||||
|
+ CellView, ComboBox, EntryCompletion, IconView: Added unset_model()
|
||||||
|
* Wed Dec 24 2008 mboman@suse.de
|
||||||
|
- Update to version 2.14.3:
|
||||||
|
+ Restored Gtk::HandleBox::signal_child_attached() and
|
||||||
|
Gtk::LinkButton::property_visited() to the API, which were lost sometime
|
||||||
|
during the gtkmm 2.14.x series
|
||||||
|
+ Remove some ;s to avoid warnings.
|
||||||
|
+ Use the new naming convention, similar to boost.
|
||||||
|
installer-creation script improvements.
|
||||||
|
+ Documentation fixes
|
||||||
* Fri Oct 03 2008 mboman@suse.de
|
* Fri Oct 03 2008 mboman@suse.de
|
||||||
- Update to version 2.14.1:
|
- Update to version 2.14.1:
|
||||||
+ Windows build fixes
|
+ Windows build fixes
|
||||||
* Thu Sep 25 2008 ro@suse.de
|
* Thu Sep 25 2008 ro@suse.de
|
||||||
- add pangomm-devel to devel package requires
|
- add pangomm-devel to devel package requires
|
||||||
* Fri Sep 19 2008 maw@suse.de
|
* Thu Sep 18 2008 maw@suse.de
|
||||||
- Update to version 2.23.8:
|
- Update to version 2.23.8:
|
||||||
+ ComboBox: Added get/set_button_sensitivity()
|
+ ComboBox: Added get/set_button_sensitivity()
|
||||||
+ FileChooser: Added set_file(), select_file(), unselect_file(),
|
+ FileChooser: Added set_file(), select_file(), unselect_file(),
|
||||||
@ -179,9 +278,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
direct struct field access, to match latest GTK+.
|
direct struct field access, to match latest GTK+.
|
||||||
+ Added a COPYING.tools file because a small gmmproc utility
|
+ Added a COPYING.tools file because a small gmmproc utility
|
||||||
is GPL (bgo##550789).
|
is GPL (bgo##550789).
|
||||||
* Fri Sep 19 2008 maw@suse.de
|
* Thu Sep 18 2008 maw@suse.de
|
||||||
- Require pangomm-devel to build.
|
- Require pangomm-devel to build.
|
||||||
* Tue Aug 12 2008 maw@suse.de
|
* Mon Aug 11 2008 maw@suse.de
|
||||||
- Update to version 2.13.6:
|
- Update to version 2.13.6:
|
||||||
+ pangomm is now in its own tarball
|
+ pangomm is now in its own tarball
|
||||||
+ AccelGroup: Added get_is_locked() and get_modifier_mask()
|
+ AccelGroup: Added get_is_locked() and get_modifier_mask()
|
||||||
@ -250,11 +349,11 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Widget: Added the drag_failed signal, with no default signal
|
* Widget: Added the drag_failed signal, with no default signal
|
||||||
handler
|
handler
|
||||||
+ Calendar: Removed spurious ; characters (bgo#54484).
|
+ Calendar: Removed spurious ; characters (bgo#54484).
|
||||||
* Tue Jul 01 2008 maw@suse.de
|
* Mon Jun 30 2008 maw@suse.de
|
||||||
- Update to version 2.13.1:
|
- Update to version 2.13.1:
|
||||||
+ Various API additions and bugfixes
|
+ Various API additions and bugfixes
|
||||||
+ For a fuller account, see the included NEWS file.
|
+ For a fuller account, see the included NEWS file.
|
||||||
* Sat Apr 12 2008 maw@suse.de
|
* Fri Apr 11 2008 maw@suse.de
|
||||||
- Update to version 2.12.7:
|
- Update to version 2.12.7:
|
||||||
+ Container: Avoid a useless warning about remove() with custom
|
+ Container: Avoid a useless warning about remove() with custom
|
||||||
containers (bgo#518002)
|
containers (bgo#518002)
|
||||||
@ -263,13 +362,13 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
non-ASCII text in UI markup
|
non-ASCII text in UI markup
|
||||||
+ TreeModel::Path (TreePath): TreePath(In pbegin, In pend)
|
+ TreeModel::Path (TreePath): TreePath(In pbegin, In pend)
|
||||||
constructor: initialize gobject_ to avoid a crash (bgo#50043).
|
constructor: initialize gobject_ to avoid a crash (bgo#50043).
|
||||||
* Tue Mar 18 2008 maw@suse.de
|
* Mon Mar 17 2008 maw@suse.de
|
||||||
- Update to version 2.12.5:
|
- Update to version 2.12.5:
|
||||||
+ Improved documentation
|
+ Improved documentation
|
||||||
+ Build fixes
|
+ Build fixes
|
||||||
- The file hitherto known as /usr/bin/demo has been
|
- The file hitherto known as /usr/bin/demo has been
|
||||||
renamed to /usr/bin/gtkmm-demo.
|
renamed to /usr/bin/gtkmm-demo.
|
||||||
* Wed Jan 30 2008 maw@suse.de
|
* Tue Jan 29 2008 maw@suse.de
|
||||||
- Update to version 2.12.4:
|
- Update to version 2.12.4:
|
||||||
+ Gtk::RecentAction: Derive from RecentChooser - this class was
|
+ Gtk::RecentAction: Derive from RecentChooser - this class was
|
||||||
unusable before and we didn't want to wait for the next
|
unusable before and we didn't want to wait for the next
|
||||||
@ -277,18 +376,18 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
+ Build fix with gcc 4.3 pre-releases
|
+ Build fix with gcc 4.3 pre-releases
|
||||||
- Respin gtkmm2-gcc43.patch
|
- Respin gtkmm2-gcc43.patch
|
||||||
- Remove libtool archives.
|
- Remove libtool archives.
|
||||||
* Tue Nov 27 2007 maw@suse.de
|
* Mon Nov 26 2007 maw@suse.de
|
||||||
- Update to version 2.12.3:
|
- Update to version 2.12.3:
|
||||||
+ Bug fixes
|
+ Bug fixes
|
||||||
+ Improved documentation.
|
+ Improved documentation.
|
||||||
* Wed Oct 17 2007 rguenther@suse.de
|
* Wed Oct 17 2007 rguenther@suse.de
|
||||||
- Fix build with GCC 4.3.
|
- Fix build with GCC 4.3.
|
||||||
* Tue Sep 18 2007 maw@suse.de
|
* Mon Sep 17 2007 maw@suse.de
|
||||||
- Update to version 2.12.0:
|
- Update to version 2.12.0:
|
||||||
* RecentAction: Rearrange the constructor parameters, to match
|
* RecentAction: Rearrange the constructor parameters, to match
|
||||||
the other Action classes; added more default parameters
|
the other Action classes; added more default parameters
|
||||||
- This release requires gtk+ version 2.14.0.
|
- This release requires gtk+ version 2.14.0.
|
||||||
* Tue Sep 11 2007 mauro@suse.de
|
* Mon Sep 10 2007 mauro@suse.de
|
||||||
- Update to version 2.11.8:
|
- Update to version 2.11.8:
|
||||||
+ Gdk::Cairo::set_source_color(), set_source_pixbuf(), set_source_pixmap():
|
+ Gdk::Cairo::set_source_color(), set_source_pixbuf(), set_source_pixmap():
|
||||||
Deprecated the existing versions of these methods and added overloads that
|
Deprecated the existing versions of these methods and added overloads that
|
||||||
@ -299,12 +398,12 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
because these names are clearer.
|
because these names are clearer.
|
||||||
+ Documentation: Tutorial: DrawingArea: Corrected a mention of
|
+ Documentation: Tutorial: DrawingArea: Corrected a mention of
|
||||||
PixBuf to Pixbuf. Bug #465961
|
PixBuf to Pixbuf. Bug #465961
|
||||||
* Sat Sep 01 2007 maw@suse.de
|
* Fri Aug 31 2007 maw@suse.de
|
||||||
- Update to version 2.11.7:
|
- Update to version 2.11.7:
|
||||||
+ Build fixes
|
+ Build fixes
|
||||||
+ Documentation markup changes for future appearence in
|
+ Documentation markup changes for future appearence in
|
||||||
library.gnome.org.
|
library.gnome.org.
|
||||||
* Tue Jul 31 2007 maw@suse.de
|
* Mon Jul 30 2007 maw@suse.de
|
||||||
- Update to version 2.11.6
|
- Update to version 2.11.6
|
||||||
2.11.6:
|
2.11.6:
|
||||||
Gdk:
|
Gdk:
|
||||||
@ -372,43 +471,43 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* TreeVIew: Added is_rubber_banding_active()
|
* TreeVIew: Added is_rubber_banding_active()
|
||||||
(Murray Cumming)
|
(Murray Cumming)
|
||||||
- Use %%fdupes.
|
- Use %%fdupes.
|
||||||
* Thu Jul 12 2007 mauro@suse.de
|
* Wed Jul 11 2007 mauro@suse.de
|
||||||
- Update to version 2.11.4
|
- Update to version 2.11.4
|
||||||
- Fixes to class documentation.
|
- Fixes to class documentation.
|
||||||
- Updated widget class - to match the new tooltips API.
|
- Updated widget class - to match the new tooltips API.
|
||||||
- Converter from libglade's .glade files to GtkBuilder .ui files.
|
- Converter from libglade's .glade files to GtkBuilder .ui files.
|
||||||
- Some examples were added to the documentation.
|
- Some examples were added to the documentation.
|
||||||
* Wed Apr 11 2007 maw@suse.de
|
* Tue Apr 10 2007 maw@suse.de
|
||||||
- Update to version 2.10.8
|
- Update to version 2.10.8
|
||||||
- Fixes for bugzilla.gnome.org #409102, #383340, #395572, #387708,
|
- Fixes for bugzilla.gnome.org #409102, #383340, #395572, #387708,
|
||||||
[#371882], #366930, #369335, #358268, #358268, and #352226.
|
[#371882], #366930, #369335, #358268, #358268, and #352226.
|
||||||
* Fri Jan 12 2007 sbrabec@suse.cz
|
* Fri Jan 12 2007 sbrabec@suse.cz
|
||||||
- Spec file cleanup.
|
- Spec file cleanup.
|
||||||
* Tue Dec 19 2006 maw@suse.de
|
* Mon Dec 18 2006 maw@suse.de
|
||||||
- Move to /usr.
|
- Move to /usr.
|
||||||
* Wed Oct 18 2006 jhargadon@suse.de
|
* Tue Oct 17 2006 jhargadon@suse.de
|
||||||
- update to version 2.10.2
|
- update to version 2.10.2
|
||||||
- Added --enable-atk=no option, to disable the build and use
|
- Added --enable-atk=no option, to disable the build and use
|
||||||
of the atkmm API, for use in embedded environments
|
of the atkmm API, for use in embedded environments
|
||||||
- Book: Added Plug and Socket chapter to book, with example
|
- Book: Added Plug and Socket chapter to book, with example
|
||||||
* Tue Oct 10 2006 sbrabec@suse.cz
|
* Tue Oct 10 2006 sbrabec@suse.cz
|
||||||
- Use Obsoletes (#211085).
|
- Use Obsoletes (#211085).
|
||||||
* Thu Sep 28 2006 sbrabec@suse.cz
|
|
||||||
- Provide old devel package name.
|
|
||||||
* Wed Sep 27 2006 sbrabec@suse.cz
|
* Wed Sep 27 2006 sbrabec@suse.cz
|
||||||
|
- Provide old devel package name.
|
||||||
|
* Tue Sep 26 2006 sbrabec@suse.cz
|
||||||
- Merged packaging changes from gtkmm24.
|
- Merged packaging changes from gtkmm24.
|
||||||
- Provide old package name.
|
- Provide old package name.
|
||||||
* Sat Sep 16 2006 jhargadon@suse.de
|
* Fri Sep 15 2006 jhargadon@suse.de
|
||||||
- update to version 2.10.1
|
- update to version 2.10.1
|
||||||
- gtkmm now depends on cairomm
|
- gtkmm now depends on cairomm
|
||||||
- AccelMap: Added lookup_entry()
|
- AccelMap: Added lookup_entry()
|
||||||
- Button: Added get/set_image_position()
|
- Button: Added get/set_image_position()
|
||||||
- many other additions
|
- many other additions
|
||||||
* Thu Jan 26 2006 mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Wed Jan 18 2006 sbrabec@suse.cz
|
* Tue Jan 17 2006 sbrabec@suse.cz
|
||||||
- Updated to version 2.8.2.
|
- Updated to version 2.8.2.
|
||||||
* Fri Dec 02 2005 gekker@suse.de
|
* Thu Dec 01 2005 gekker@suse.de
|
||||||
- Update to version 2.8.1
|
- Update to version 2.8.1
|
||||||
* Wed Sep 07 2005 sbrabec@suse.cz
|
* Wed Sep 07 2005 sbrabec@suse.cz
|
||||||
- Updated to version 2.8.0 (GNOME 2.12).
|
- Updated to version 2.8.0 (GNOME 2.12).
|
||||||
@ -418,15 +517,15 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Updated to version 2.6.4.
|
- Updated to version 2.6.4.
|
||||||
* Wed Jun 01 2005 sbrabec@suse.cz
|
* Wed Jun 01 2005 sbrabec@suse.cz
|
||||||
- Fixed devel requirements.
|
- Fixed devel requirements.
|
||||||
* Thu Apr 14 2005 sbrabec@suse.cz
|
* Wed Apr 13 2005 sbrabec@suse.cz
|
||||||
- Fixed required NULL-pointer argument.
|
- Fixed required NULL-pointer argument.
|
||||||
* Fri Feb 11 2005 sbrabec@suse.cz
|
* Fri Feb 11 2005 sbrabec@suse.cz
|
||||||
- Added branch 2.4, package splitted, updated to version 2.4.7.
|
- Added branch 2.4, package splitted, updated to version 2.4.7.
|
||||||
* Wed May 26 2004 ro@suse.de
|
* Tue May 25 2004 ro@suse.de
|
||||||
- undeprecate where needed
|
- undeprecate where needed
|
||||||
* Fri Mar 19 2004 sbrabec@suse.cz
|
* Thu Mar 18 2004 sbrabec@suse.cz
|
||||||
- Removed *.o files from documentation (#36348).
|
- Removed *.o files from documentation (#36348).
|
||||||
* Tue Feb 24 2004 sbrabec@suse.cz
|
* Mon Feb 23 2004 sbrabec@suse.cz
|
||||||
- Call autoreconf.
|
- Call autoreconf.
|
||||||
* Tue Feb 17 2004 sbrabec@suse.cz
|
* Tue Feb 17 2004 sbrabec@suse.cz
|
||||||
- Initial SuSE package version 2.2.8.
|
- Initial SuSE package version 2.2.8.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user