This commit is contained in:
parent
66c23f5924
commit
a4564859a2
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bdd6b546caf3ffb0fa9d219f9751447ccaf9ad3c47cb28c9159238d1561d17ad
|
||||
size 9308730
|
3
gtkmm-2.16.0.tar.bz2
Normal file
3
gtkmm-2.16.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9994e6a92f7086adb58aba0431f29a766218f806b9db95359dad59a0615f95bf
|
||||
size 9313258
|
@ -1,3 +1,42 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 16 22:26:23 CET 2009 - vuntz@novell.com
|
||||
|
||||
- Update to version 2.16.0:
|
||||
+ Gtk:
|
||||
- Builder:
|
||||
* get_widget_derived(): Reference-counting correction.
|
||||
* create_from_file(), add_from_file(), create_from_string(),
|
||||
* add_from_string(): Add method overloads that take a char*
|
||||
for the object ID, to avoid ambiguity with the two other
|
||||
overloads that take ustring or StringArrayHandle.
|
||||
- Entry:
|
||||
* *_icon_* methods(): Rearrange parameters to make these
|
||||
consistent and so we can have more default parameter
|
||||
values.
|
||||
* Added icon_press and icon_release signals.
|
||||
- FileChooserButton: Added the file_set signal.
|
||||
- Stock: Added CAPS_LOCK_WARNING.
|
||||
- Style: Added get_style_property_value() and templated
|
||||
get_style_property().
|
||||
- Added Orientable and Activatable interfaces, though they
|
||||
cannot be used yet because that would break ABI of existing
|
||||
classes.
|
||||
+ Gdk:
|
||||
- PixbufAnimation: create_from_file(): Throw an exception when
|
||||
the GError is not null.
|
||||
+ Maemo-specific API:
|
||||
- TextBuffer: get/set_rich_text_format(),
|
||||
set_rich_text_format_all(), get/set_can_paste_rich_text():
|
||||
Remove these Maemo-specific methods which have been
|
||||
superseded by the generic TextBuffer serialization functions.
|
||||
- Enums
|
||||
* Added Maemo-specific Gtk::HildonSizeType, wrapping
|
||||
HildonSizeType, which was inexplicably added to GTK+ in
|
||||
Maemo 5.
|
||||
* Likewise added Gtk::Hildon::InputMode, wrapping
|
||||
HildonGtkInputMode.
|
||||
- Remove AutoReqProv: it's default now.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 6 13:57:54 CET 2009 - vuntz@novell.com
|
||||
|
||||
|
41
gtkmm2.spec
41
gtkmm2.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package gtkmm2 (Version 2.15.5)
|
||||
# spec file for package gtkmm2 (Version 2.16.0)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -24,7 +24,7 @@ BuildRequires: cairomm-devel fdupes gcc-c++ glibmm2-devel libsigc++2-devel pang
|
||||
BuildRequires: gtk2-devel >= 2.15.1
|
||||
# Only for directory ownership:
|
||||
BuildRequires: devhelp
|
||||
Version: 2.15.5
|
||||
Version: 2.16.0
|
||||
Release: 1
|
||||
Group: System/Libraries
|
||||
License: GPL v2 or later; LGPL v2.1 or later
|
||||
@ -33,7 +33,6 @@ Url: http://www.gtkmm.org/
|
||||
Source: ftp://ftp.gnome.org/pub/GNOME/sources/%{_name}/2.10/%{_name}-%{version}.tar.bz2
|
||||
Provides: gtkmm24 = %{version}
|
||||
Obsoletes: gtkmm24
|
||||
AutoReqProv: on
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
@ -188,6 +187,42 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/gtkmm-2.4
|
||||
|
||||
%changelog
|
||||
* Mon Mar 16 2009 vuntz@novell.com
|
||||
- Update to version 2.16.0:
|
||||
+ Gtk:
|
||||
- Builder:
|
||||
* get_widget_derived(): Reference-counting correction.
|
||||
* create_from_file(), add_from_file(), create_from_string(),
|
||||
* add_from_string(): Add method overloads that take a char*
|
||||
for the object ID, to avoid ambiguity with the two other
|
||||
overloads that take ustring or StringArrayHandle.
|
||||
- Entry:
|
||||
* *_icon_* methods(): Rearrange parameters to make these
|
||||
consistent and so we can have more default parameter
|
||||
values.
|
||||
* Added icon_press and icon_release signals.
|
||||
- FileChooserButton: Added the file_set signal.
|
||||
- Stock: Added CAPS_LOCK_WARNING.
|
||||
- Style: Added get_style_property_value() and templated
|
||||
get_style_property().
|
||||
- Added Orientable and Activatable interfaces, though they
|
||||
cannot be used yet because that would break ABI of existing
|
||||
classes.
|
||||
+ Gdk:
|
||||
- PixbufAnimation: create_from_file(): Throw an exception when
|
||||
the GError is not null.
|
||||
+ Maemo-specific API:
|
||||
- TextBuffer: get/set_rich_text_format(),
|
||||
set_rich_text_format_all(), get/set_can_paste_rich_text():
|
||||
Remove these Maemo-specific methods which have been
|
||||
superseded by the generic TextBuffer serialization functions.
|
||||
- Enums
|
||||
* Added Maemo-specific Gtk::HildonSizeType, wrapping
|
||||
HildonSizeType, which was inexplicably added to GTK+ in
|
||||
Maemo 5.
|
||||
* Likewise added Gtk::Hildon::InputMode, wrapping
|
||||
HildonGtkInputMode.
|
||||
- Remove AutoReqProv: it's default now.
|
||||
* Fri Mar 06 2009 vuntz@novell.com
|
||||
- Update to version 2.15.5:
|
||||
+ Activatable: reset_vfunc() renamed to
|
||||
|
Loading…
x
Reference in New Issue
Block a user