diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2010-01-28 15:58:56 +0000 |
---|---|---|
committer | Will Thompson <will.thompson@collabora.co.uk> | 2010-01-28 16:41:45 +0000 |
commit | a1b20303ad25d7d3c52f2cabfc4f72d84f699f23 (patch) | |
tree | f6e0d3d4395ccb672f03ab2f089c1b7497e20922 | |
parent | 03379adfc79f09dbcbba1e69a9146e6fd64b023c (diff) |
Version 0.9.4telepathy-gabble-0.9.4
-rw-r--r-- | NEWS | 43 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 43 insertions, 4 deletions
@@ -1,10 +1,49 @@ -telepathy-gabble 0.9.4 (UNRELEASED) +telepathy-gabble 0.9.4 (2010-01-28) =================================== +The “Samuel Clemens had four cats!” release. + Enhancements: • Added an --enable-is-a-phone configure switch, which makes Gabble identify - itself as a "phone" (rather than a "pc") in XEP-0115 disco replies. + itself as a "phone" (rather than a "pc") in XEP-0115 disco replies. (wjt) + +• Added preliminary support for the Channel.Type.Call draft. By default, + incoming Jingle calls are exposed as Channel.Type.Call if a handler is + available; pass --disable-channel-type-call to configure to always expose + incoming calls as StreamedMedia. (sjoerd, Maiku) + +• One-to-one text channels can now be upgraded to multi-user conferences using + the draft Conference interface. This will use a PMUC room on Google's + conference server if at least one participant is using a Google Talk client, + or an instant room on your own conference server (XEP-0045 §10.1.2) + otherwise. (danni) + +• Implements XEP-0276, to permit calling contacts whose presence you are not + subscribed to (controlled by a simple Gabble-specific connection interface). + (smcv) + +• Plugins may now specify their own version number, for improved debug logs. + (wjt) + +• Added a simple sidecar, implemented as a plugin, to support registering to + gateways which require nothing more than a username and password. (smcv) + +Fixes: + +• We can now accept calls from, and place calls to, bare JIDs (that is, + contacts with no resource). This is required for calling XEP-0100-compliant + SIP gateways. (smcv) + +• We now deal correctly with setting a vCard if there's no existing vCard on + the server. (fd.o#25987, wjt) + +• ignore-ssl-errors is now implied by require-encryption being false. This was + a regression from 0.8. (wjt) + +• ContactCapabilities are now exposed on the Contacts interface with the + correct attribute name. (fd.o#26210, wjt) + telepathy-gabble 0.9.3 (2009-12-21) =================================== diff --git a/configure.ac b/configure.ac index 0f827fa51..e7d7537ba 100644 --- a/configure.ac +++ b/configure.ac @@ -9,8 +9,8 @@ AC_PREREQ([2.59]) m4_define([gabble_major_version], [0]) m4_define([gabble_minor_version], [9]) -m4_define([gabble_micro_version], [3]) -m4_define([gabble_nano_version], [1]) +m4_define([gabble_micro_version], [4]) +m4_define([gabble_nano_version], [0]) # Some magic m4_define([gabble_base_version], |