1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
telepathy-glib 0.9.1 (UNRELEASED)
=================================
Fixes:
* Corrected the GLib dependency to 2.20 (this was also needed for 0.9.0,
but that fact was undocumented) (smcv)
* Corrected the error message given when a write-only D-Bus property
is read (Pekka Pessi)
* Work around GLib 2.20 being less const-correct than 2.22 (jonny)
* fd.o #23853: if a connection manager is discovered not to be running while
TpConnectionManager has a ListProtocols call in-flight, then a new instance
of the CM starts up and replies to that call, don't crash with an assertion
failure (smcv)
* If a connection manager returns error from GetParameters(), don't dereference
a NULL pointer and segfault (smcv)
* When asked to activate or introspect a connection manager, don't do anything
until we have at least worked out whether it was initially running, in order
to provide the documented behaviour (smcv)
* When getting parameter details from a running connection manager, consider
parameters called "password" or ending with "-password" to be secret even
if they lack the SECRET flag, as was already done when reading .manager
files (smcv)
telepathy-glib 0.9.0 (2009-09-28)
=================================
The "purging all the lies" release.
Dependencies:
* GLib 2.20 is now required.
* telepathy-glib now links to GIO as well as GLib and GObject (in practice
they're packaged together, and we already depended on a new enough GLib
version that it would come with GIO).
Enhancements:
* TpAccountManager, TpAccount: add convenience API similar to libempathy's
(jonny, with contributions from wjt/danni/sjoerd/smcv)
* telepathy-glib now uses Automake 1.11's "silent rules" feature for
kernel-style output; as a result, we no longer use shave. If you were
previously using --enable-shave to get prettier output, use
--enable-silent-rules instead, and upgrade to Automake >= 1.11 if you will
be altering the build system. (jonny)
telepathy-glib 0.8.0 (2009-09-24)
=================================
The "line in the sand" release.
This release begins a bugfix-only 0.8.x branch, in which new API/ABI will no
longer be added; 0.9.x development releases will continue to be made from
the master branch.
Summary of API changes since 0.6.x:
* Since 0.7.35, it is no longer guaranteed that the self-handle in
TpBaseConnection is set to 0 when the state changes to DISCONNECTED;
instead, it remains valid until the connection is disposed. This will cause
assertion failures during disconnection in telepathy-sofiasip < 0.5.17 and
telepathy-gabble < 0.7.9.
Summary of major enhancements since 0.6.x:
* updated telepathy-spec from 0.16.x to 0.18.0, with many new interfaces, the
AccountManager, the ChannelDispatcher, and Clients
* added TpProxy, a base class representing remote D-Bus objects
(see <http://smcv.pseudorandom.co.uk/2009/05/tp-proxy/>)
* added subclasses of TpProxy for all the major Telepathy objects (apart from
Debug, which will be added later)
* added TpContact, an object representing a Telepathy contact
* added macros for interface-name GQuarks, and for Telepathy dbus-glib GTypes
* added the tp_asv_get_foo() family of functions to manipulate a{sv} maps
* used versioned symbols to document the ABI
* implemented various simple example connection managers and clients
Changes since 0.7.37:
* spec: update from 0.17.28 to 0.18.0 (no real changes) (smcv)
* ContactList example CM: fix a crash during shutdown (andrunko)
* StreamedMedia example CM: check for direction changes correctly (andrunko)
|