This commit is contained in:
parent
7ab7d234ea
commit
f2c6959383
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:44e6e402079392e98d3286b9e38725a6fe6beceb6bec429c7254dfeb02c581b5
|
|
||||||
size 1592870
|
|
3
telepathy-glib-0.7.27.tar.bz2
Normal file
3
telepathy-glib-0.7.27.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d72b0d190e5e05ba07408e8c724003763a84d131eeb244ac1abba5bc65eeaf51
|
||||||
|
size 3431169
|
@ -1,3 +1,40 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 18 14:34:42 CET 2009 - vuntz@novell.com
|
||||||
|
|
||||||
|
- Update to version 0.7.27:
|
||||||
|
+ Enhancements:
|
||||||
|
- fdo#18220: make it much less verbose to construct
|
||||||
|
string/variant maps (a{sv}) by adding functions like
|
||||||
|
tp_g_value_slice_new_uint().
|
||||||
|
- Make example connection managers installable (with
|
||||||
|
--enable-installed-examples)
|
||||||
|
- Add an example connection manager that has dummy
|
||||||
|
StreamedMedia channels
|
||||||
|
- Add an example connection manager that has dummy ContactList
|
||||||
|
channels vaguely resembling the XMPP roster
|
||||||
|
- Update to telepathy-spec 0.17.21 (adding
|
||||||
|
TP_CHANNEL_GROUP_FLAG_MESSAGE_DEPART and
|
||||||
|
TP_CHANNEL_MEDIA_CAPABILITY_NAT_TRAVERSAL_ICE_UDP)
|
||||||
|
+ Fixes:
|
||||||
|
- fdo#20646: in TpChannel, when adding contacts to one of the
|
||||||
|
Group sets, remove them from both of the others
|
||||||
|
- Use AM_PATH_PYTHON to detect the Python version
|
||||||
|
- In TpGroupMixin, let implementations allow the self-handle to
|
||||||
|
be removed regardless of whether the CAN_REMOVE flag is set.
|
||||||
|
- fdo#20165: fix a use-after-free in
|
||||||
|
tp_base_connection_register() that causes connection managers
|
||||||
|
to assert if they have not already called
|
||||||
|
tp_dbus_daemon_dup() or tp_run_connection_manager()
|
||||||
|
- Fix some memory leaks when making TpContact objects, when
|
||||||
|
holding handles in TpContactsMixin, when filling contact
|
||||||
|
attributes in TpPresenceMixin, when setting simple presence,
|
||||||
|
and in the regression tests
|
||||||
|
- Update the valgrind suppressions file to cope with new
|
||||||
|
telepathy-glib code, GTest, and glibc 2.9
|
||||||
|
- Fix compilation with gtkdoc 1.11, which is stricter about the
|
||||||
|
contents of Since: annotations, and parses more comments
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 17 03:36:55 CET 2009 - vuntz@novell.com
|
Tue Feb 17 03:36:55 CET 2009 - vuntz@novell.com
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package telepathy-glib (Version 0.7.26)
|
# spec file for package telepathy-glib (Version 0.7.27)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -24,7 +24,7 @@ BuildRequires: dbus-1-glib-devel
|
|||||||
BuildRequires: gtk-doc
|
BuildRequires: gtk-doc
|
||||||
BuildRequires: libxslt-devel
|
BuildRequires: libxslt-devel
|
||||||
BuildRequires: python-xml
|
BuildRequires: python-xml
|
||||||
Version: 0.7.26
|
Version: 0.7.27
|
||||||
Release: 1
|
Release: 1
|
||||||
License: LGPL v2.1 or later
|
License: LGPL v2.1 or later
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -166,6 +166,39 @@ rm -rf "$RPM_BUILD_ROOT"
|
|||||||
%{_datadir}/gtk-doc/html/telepathy-glib
|
%{_datadir}/gtk-doc/html/telepathy-glib
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Mar 18 2009 vuntz@novell.com
|
||||||
|
- Update to version 0.7.27:
|
||||||
|
+ Enhancements:
|
||||||
|
- fdo#18220: make it much less verbose to construct
|
||||||
|
string/variant maps (a{sv}) by adding functions like
|
||||||
|
tp_g_value_slice_new_uint().
|
||||||
|
- Make example connection managers installable (with
|
||||||
|
--enable-installed-examples)
|
||||||
|
- Add an example connection manager that has dummy
|
||||||
|
StreamedMedia channels
|
||||||
|
- Add an example connection manager that has dummy ContactList
|
||||||
|
channels vaguely resembling the XMPP roster
|
||||||
|
- Update to telepathy-spec 0.17.21 (adding
|
||||||
|
TP_CHANNEL_GROUP_FLAG_MESSAGE_DEPART and
|
||||||
|
TP_CHANNEL_MEDIA_CAPABILITY_NAT_TRAVERSAL_ICE_UDP)
|
||||||
|
+ Fixes:
|
||||||
|
- fdo#20646: in TpChannel, when adding contacts to one of the
|
||||||
|
Group sets, remove them from both of the others
|
||||||
|
- Use AM_PATH_PYTHON to detect the Python version
|
||||||
|
- In TpGroupMixin, let implementations allow the self-handle to
|
||||||
|
be removed regardless of whether the CAN_REMOVE flag is set.
|
||||||
|
- fdo#20165: fix a use-after-free in
|
||||||
|
tp_base_connection_register() that causes connection managers
|
||||||
|
to assert if they have not already called
|
||||||
|
tp_dbus_daemon_dup() or tp_run_connection_manager()
|
||||||
|
- Fix some memory leaks when making TpContact objects, when
|
||||||
|
holding handles in TpContactsMixin, when filling contact
|
||||||
|
attributes in TpPresenceMixin, when setting simple presence,
|
||||||
|
and in the regression tests
|
||||||
|
- Update the valgrind suppressions file to cope with new
|
||||||
|
telepathy-glib code, GTest, and glibc 2.9
|
||||||
|
- Fix compilation with gtkdoc 1.11, which is stricter about the
|
||||||
|
contents of Since: annotations, and parses more comments
|
||||||
* Tue Feb 17 2009 vuntz@novell.com
|
* Tue Feb 17 2009 vuntz@novell.com
|
||||||
- Update to version 0.7.26:
|
- Update to version 0.7.26:
|
||||||
+ Enhancements:
|
+ Enhancements:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user