summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Egan <seanegan@pidgin.im>2007-09-14 05:52:04 +0000
committerSean Egan <seanegan@pidgin.im>2007-09-14 05:52:04 +0000
commit20f54325168375cf19b685b7a07962bfedb7a6a0 (patch)
treeabb0dfa886c4fdc7ab9d17eb2ed6b531408b9fc2
parentdd9cf9d404f3d1e9cfa8846aec86985468cf5e5e (diff)
downloadpidgin-20f54325168375cf19b685b7a07962bfedb7a6a0.tar.gz
Please NEWS and continue to ChangeLog things.
-rw-r--r--ChangeLog7
-rw-r--r--NEWS7
-rw-r--r--libpurple/protocols/msn/userlist.c2
3 files changed, 14 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 16619303f4..335fe5d43b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,14 @@
Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul
-version 2.2.0:
+version 2.2.0i (09/13/2007):
Libpurple:
* New protocol plugin: MySpaceIM (Jeff Connelly, Google Summer of
Code)
+ * XMPP enhancements. See
+ http://www.adiumx.com/blog/2007/07/soc-xmpp-update.php (Andreas
+ Monitzer, Google Summer of Code for Adium)
+ * Certificate management. Libpurple will validate certificates on
+ SSL-encrypted protocols (William Ehlhardt, Google Summer of Code)
Pidgin:
* Insert Horizontal Rules and Strikethrough text from toolbar
diff --git a/NEWS b/NEWS
index 8fc2fa4ae3..984fe3839e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,12 @@
Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul
+2.2.0 (9/13/2007):
+ Sean: 2.2.0 contains the results of several major Google Summer
+ of Code branches bringing some new, extraordinary features. We
+ have a new protocol, MySpaceIM, a bunch of new features for an
+ existing protocol, XMPP, and nifty new certificate management
+ to make sure your IM server is who it says it is.
+
2.1.1 (8/20/2007):
Sean: Continuing our schedule of frequent releases, Pidgin 2.1.1
is out. In it, we've addressed a lot of UI issues from our
diff --git a/libpurple/protocols/msn/userlist.c b/libpurple/protocols/msn/userlist.c
index 1fe201f3ba..c7d48d0d7a 100644
--- a/libpurple/protocols/msn/userlist.c
+++ b/libpurple/protocols/msn/userlist.c
@@ -452,7 +452,7 @@ msn_userlist_destroy(MsnUserList *userlist)
void
msn_userlist_add_user(MsnUserList *userlist, MsnUser *user)
{
- userlist->users = g_list_append(userlist->users, user);
+ userlist->users = g_list_prepend(userlist->users, user);
}
void