Mercurial > pidgin
changeset 17951:c0758f8dff33
Update for 0.12.
author | Jeffrey Connelly <jaconnel@calpoly.edu> |
---|---|
date | Mon, 16 Jul 2007 00:05:48 +0000 |
parents | 2bf10f37fa37 |
children | 4001661344e4 |
files | libpurple/protocols/myspace/CHANGES libpurple/protocols/myspace/myspace.c libpurple/protocols/myspace/release.sh |
diffstat | 3 files changed, 11 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/myspace/CHANGES Sun Jul 15 23:46:12 2007 +0000 +++ b/libpurple/protocols/myspace/CHANGES Mon Jul 16 00:05:48 2007 +0000 @@ -1,7 +1,11 @@ -2007-07-xx Jeff Connelly <jeff2@soc.pidgin.im> - 0.12 +2007-07-15 Jeff Connelly <jeff2@soc.pidgin.im> - 0.12 * Allow logging in with passwords containing uppercase letters (bug #2066) * Add /3 -> | translation to escaping. * Allow setting status string. +* Disable keepalive timeout. +* Remove faking self online, instead show real status (now that it exists). +* Support font sizes in incoming instant messages. +* Add support for mail notifications. 2007-07-09 Jeff Connelly <jeff2@soc.pidgin.im> - 0.11 * Allow going idle (tested with I'dle Ma'ker) and viewing idle status of
--- a/libpurple/protocols/myspace/myspace.c Sun Jul 15 23:46:12 2007 +0000 +++ b/libpurple/protocols/myspace/myspace.c Mon Jul 16 00:05:48 2007 +0000 @@ -2710,7 +2710,8 @@ * @param cb The callback, an MSIM_USER_LOOKUP_CB. * @param data Arbitrary user data to be passed to callback (probably an MsimMessage *). * - * @return The request/reply ID, used to link replies with requests. Put the rid in your request. + * @return The request/reply ID, used to link replies with requests, or -1. + * Put the rid in your request, 'rid' field. * * TODO: Make more generic and more specific: * 1) MSIM_USER_LOOKUP_CB - make it for PERSIST_REPLY, not just user lookup @@ -2722,6 +2723,8 @@ { guint rid; + g_return_val_if_fail(MSIM_SESSION_VALID(session), -1); + rid = session->next_rid++; g_hash_table_insert(session->user_lookup_cb, GUINT_TO_POINTER(rid), cb); @@ -3164,7 +3167,7 @@ "prpl-myspace", /**< id */ "MySpaceIM", /**< name */ - "0.10", /**< version */ + "0.12", /**< version */ /** summary */ "MySpaceIM Protocol Plugin", /** description */
--- a/libpurple/protocols/myspace/release.sh Sun Jul 15 23:46:12 2007 +0000 +++ b/libpurple/protocols/myspace/release.sh Mon Jul 16 00:05:48 2007 +0000 @@ -4,7 +4,7 @@ # Package a new msimprpl for release. Must be run with bash. -VERSION=0.11 +VERSION=0.12 make # Include 'myspace' directory in archive, so it can easily be unextracted # into ~/pidgin/libpurple/protocols at the correct location.