]> git.0d.be Git - empathy.git/commitdiff
Bump version to 0.8
authorXavier Claessens <xclaesse@gmail.com>
Sat, 9 Jun 2007 16:36:15 +0000 (16:36 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Sat, 9 Jun 2007 16:36:15 +0000 (16:36 +0000)
2007-06-09 Xavier Claessens  <xclaesse@gmail.com>

* configure.ac: Bump version to 0.8

* libempathy-gtk/gossip-ui-utils.c: Fix usage of contact subscription
property.

* data/gtalk.profile:
* data/jabber.profile:
* data/msn.profile: Add VCardField and VCardDefault to profiles for
eds-sync support.

svn path=/trunk/; revision=139

ChangeLog
configure.ac
data/gtalk.profile
data/jabber.profile
data/msn.profile
libempathy-gtk/gossip-ui-utils.c

index 112809f0adb1357988ef0f58eb82fd3f0a57603d..f2da5d97f835d6d0e00a35d1538aaab8109bc310 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2007-06-09 Xavier Claessens  <xclaesse@gmail.com>
+
+       * configure.ac: Bump version to 0.8
+
+       * libempathy-gtk/gossip-ui-utils.c: Fix usage of contact subscription
+       property.
+
+       * data/gtalk.profile:
+       * data/jabber.profile:
+       * data/msn.profile: Add VCardField and VCardDefault to profiles for
+       eds-sync support.
+
 2007-06-09 Xavier Claessens  <xclaesse@gmail.com>
 
        * libempathy-gtk/empathy-contact-widget.c: Fix a warning.
index 7a6ade7a49911fce88a14bd9fd4c96d2e45ee24e..4371b6a7aa0468c96c699402cc2358ca28a0d483 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT(Empathy, 0.7, http://bugzilla.gnome.org/browse.cgi?product=empathy)
+AC_INIT(Empathy, 0.8, http://bugzilla.gnome.org/browse.cgi?product=empathy)
 AC_PREREQ(2.59)
 AC_COPYRIGHT([Copyright (C) 2003-2007 Imendio AB])
 
index 563710780c95d1bc241b20c077a8000224f1ee97..bed2224e53c6af1806d3e24a5aec0e7bf6bcb697 100644 (file)
@@ -5,6 +5,8 @@ DisplayName=Google Talk
 IconName = empathy-proto-google-talk
 ConfigurationUI = jabber
 Capabilities = chat-p2p, chat-room, chat-room-list, voice-p2p, split-account, supports-avatars, supports-alias
+SupportsInvisible = 0
+VCardField = X-Jabber
 DefaultAccountDomain = gmail.com
 Default-server = talk.google.com
 Default-port = 5223
@@ -12,4 +14,4 @@ Default-old-ssl = 1
 Default-fallback-conference-server = conference.jabber.org
 Default-randomize-resource = 1
 Default-ignore-ssl-errors = 1
-SupportsInvisible = 0
+
index 7da8254f4786763e539777762bcc510be7c11bdc..55a1e69786984aa90867c44becfc3f7eca69e22d 100644 (file)
@@ -7,3 +7,6 @@ ConfigurationUI = jabber
 Capabilities = chat-p2p, chat-room, chat-room-list, voice-p2p, split-account, registration-ui, supports-avatars, supports-alias
 DefaultAccountDomain = jabber.org
 SupportsInvisible = 0
+VCardField = X-Jabber
+VCardDefault = true
+
index 44058fc15d07199a738035536be3a117c1f8b691..5651c5639598b49f9c09aed71808bf8e1f971be9 100644 (file)
@@ -6,3 +6,6 @@ IconName = empathy-proto-msn
 ConfigurationUI = msn
 SupportsInvisible = 1
 Capabilities = chat-p2p, split-account, supports-avatars, supports-alias
+VCardField = X-MSN
+VCardDefault = true
+
index f834ceb0c931874da964a98226c8418cc69dcaa8..b17e5776b69b04711a621712eda2b0fce7388867 100644 (file)
@@ -383,15 +383,12 @@ gossip_icon_name_for_contact (GossipContact *contact)
                              EMPATHY_IMAGE_OFFLINE);
 
        presence = gossip_contact_get_presence (contact);
-
        if (presence) {
                return gossip_icon_name_for_presence (presence);
        }
 
        subscription = gossip_contact_get_subscription (contact);
-
-       if (subscription != GOSSIP_SUBSCRIPTION_BOTH &&
-           subscription != GOSSIP_SUBSCRIPTION_TO) {
+       if (!(subscription & GOSSIP_SUBSCRIPTION_FROM)) {
                return EMPATHY_IMAGE_PENDING;
        }