This commit is contained in:
parent
4295f23777
commit
b07cf89237
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2999b4cb1257677658e7ebb18a16502d413d5d786144b6258a139e9c480cb91d
|
||||
size 1400990
|
3
telepathy-glib-0.7.25.tar.bz2
Normal file
3
telepathy-glib-0.7.25.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:232975ed9a80ede97190e1cd3650bcd96beb01c2c2d1ab74e938580efaa65bf9
|
||||
size 1563593
|
@ -1,3 +1,68 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 18:23:47 EST 2009 - mboman@suse.de
|
||||
|
||||
- Update to version 0.7.25:
|
||||
+ fdo#17588: don't break ABI if errors are re-ordered in a future spec
|
||||
version
|
||||
+ fdo#19688: don't assert when getting contacts by ID if none of the
|
||||
identifiers supplied are valid
|
||||
+ TpPresenceMixin: don't allow setting statuses that are flagged as not
|
||||
settable on the user themselves
|
||||
+ TpPresenceMixin: never allow statuses of type OFFLINE, UNKNOWN or ERROR
|
||||
to be set on the user themselves, and warn if the connection manager
|
||||
got this wrong
|
||||
+ Fix a memory leak in tp_presence_mixin_get_statuses()
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 28 19:45:33 EST 2009 - hfiguiere@suse.de
|
||||
|
||||
- Update to version 0.7.24
|
||||
+ Update to telepathy-spec 0.17.19: better error handling
|
||||
+ Different error when a TpConnection is invalidated
|
||||
+ Add a client binding for the extensible error reporting
|
||||
+ Add File Transfer to the documentation
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 28 10:52:31 EST 2009 - hfiguiere@suse.de
|
||||
|
||||
- Update to version 0.7.23
|
||||
+ Updated to spec version 0.17.18: file transfer, better error
|
||||
handling (fdo#19609), etc
|
||||
+ Exported ABI symbols cleanup
|
||||
+ Documentation fixes
|
||||
+ Annotation fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 13 16:16:47 EST 2009 - hfiguiere@suse.de
|
||||
|
||||
- Update to version 0.7.22
|
||||
+ Accept message=NULL in tp_group_mixin_change_members, as documented and true
|
||||
in the past, rather than crashing.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 16:57:13 EST 2009 - hfiguiere@suse.de
|
||||
|
||||
- Update to version 0.7.21
|
||||
+ Updated to spec version 0.17.17
|
||||
+ (Finally) merged TpMessageMixin, which can be used in place of TpTextMixin to
|
||||
implement the Messages interface on Text channels.
|
||||
+ The examples have been made more exemplary.
|
||||
+ Added a TP_COMPILER_WARNINGS macro to simplify choosing compiler warnings in
|
||||
configure.ac
|
||||
+ Added support to TpGroupMixin for emitting the MembersChangedDetailed signal
|
||||
(fdo#19050 and fdo#19052), and to TpChannel for listening to it when possible
|
||||
(fdo#19051).
|
||||
+ Added tp_channel_get_identifier
|
||||
+ Added support for parsing the dbus-property CM parameter flag (introduced in
|
||||
spec 0.17.16) from .manager files (fdo#19053).
|
||||
+ fdo#19101: tp_connection_get_contacts_by_id() crashes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 1 09:50:08 EST 2009 - mboman@suse.de
|
||||
|
||||
- Update to version 0.7.20:
|
||||
+ Too many fixes/changes to list. Please see NEWS for full details.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 22 12:37:59 CDT 2008 - maw@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package telepathy-glib (Version 0.7.17)
|
||||
# spec file for package telepathy-glib (Version 0.7.25)
|
||||
#
|
||||
# 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
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -20,8 +20,11 @@
|
||||
|
||||
Name: telepathy-glib
|
||||
Url: http://telepathy.freedesktop.org/
|
||||
BuildRequires: dbus-1-glib-devel gtk-doc libxslt-devel python-xml
|
||||
Version: 0.7.17
|
||||
BuildRequires: dbus-1-glib-devel
|
||||
BuildRequires: gtk-doc
|
||||
BuildRequires: libxslt-devel
|
||||
BuildRequires: python-xml
|
||||
Version: 0.7.25
|
||||
Release: 1
|
||||
License: LGPL v2.1 or later
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@ -165,6 +168,53 @@ rm -rf "$RPM_BUILD_ROOT"
|
||||
%{_datadir}/gtk-doc/html/telepathy-glib
|
||||
|
||||
%changelog
|
||||
* Sun Feb 01 2009 mboman@suse.de
|
||||
- Update to version 0.7.25:
|
||||
+ fdo#17588: don't break ABI if errors are re-ordered in a future spec
|
||||
version
|
||||
+ fdo#19688: don't assert when getting contacts by ID if none of the
|
||||
identifiers supplied are valid
|
||||
+ TpPresenceMixin: don't allow setting statuses that are flagged as not
|
||||
settable on the user themselves
|
||||
+ TpPresenceMixin: never allow statuses of type OFFLINE, UNKNOWN or ERROR
|
||||
to be set on the user themselves, and warn if the connection manager
|
||||
got this wrong
|
||||
+ Fix a memory leak in tp_presence_mixin_get_statuses()
|
||||
* Wed Jan 28 2009 hfiguiere@suse.de
|
||||
- Update to version 0.7.24
|
||||
+ Update to telepathy-spec 0.17.19: better error handling
|
||||
+ Different error when a TpConnection is invalidated
|
||||
+ Add a client binding for the extensible error reporting
|
||||
+ Add File Transfer to the documentation
|
||||
* Wed Jan 28 2009 hfiguiere@suse.de
|
||||
- Update to version 0.7.23
|
||||
+ Updated to spec version 0.17.18: file transfer, better error
|
||||
handling (fdo#19609), etc
|
||||
+ Exported ABI symbols cleanup
|
||||
+ Documentation fixes
|
||||
+ Annotation fixes.
|
||||
* Tue Jan 13 2009 hfiguiere@suse.de
|
||||
- Update to version 0.7.22
|
||||
+ Accept message=NULL in tp_group_mixin_change_members, as documented and true
|
||||
in the past, rather than crashing.
|
||||
* Mon Jan 12 2009 hfiguiere@suse.de
|
||||
- Update to version 0.7.21
|
||||
+ Updated to spec version 0.17.17
|
||||
+ (Finally) merged TpMessageMixin, which can be used in place of TpTextMixin to
|
||||
implement the Messages interface on Text channels.
|
||||
+ The examples have been made more exemplary.
|
||||
+ Added a TP_COMPILER_WARNINGS macro to simplify choosing compiler warnings in
|
||||
configure.ac
|
||||
+ Added support to TpGroupMixin for emitting the MembersChangedDetailed signal
|
||||
(fdo#19050 and fdo#19052), and to TpChannel for listening to it when possible
|
||||
(fdo#19051).
|
||||
+ Added tp_channel_get_identifier
|
||||
+ Added support for parsing the dbus-property CM parameter flag (introduced in
|
||||
spec 0.17.16) from .manager files (fdo#19053).
|
||||
+ fdo#19101: tp_connection_get_contacts_by_id() crashes
|
||||
* Thu Jan 01 2009 mboman@suse.de
|
||||
- Update to version 0.7.20:
|
||||
+ Too many fixes/changes to list. Please see NEWS for full details.
|
||||
* Wed Oct 22 2008 maw@suse.de
|
||||
- Make debug packages require a specific %%{version}-%%{release}.
|
||||
* Sun Oct 19 2008 mboman@suse.de
|
||||
|
Loading…
x
Reference in New Issue
Block a user