# HG changeset patch # User Jeffrey Connelly # Date 1184544348 0 # Node ID c0758f8dff334c43aa8096dac86c66a17ae51619 # Parent 2bf10f37fa375f9e16400fbd6b810ecd58ad45ef Update for 0.12. diff -r 2bf10f37fa37 -r c0758f8dff33 libpurple/protocols/myspace/CHANGES --- 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 - 0.12 +2007-07-15 Jeff Connelly - 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 - 0.11 * Allow going idle (tested with I'dle Ma'ker) and viewing idle status of diff -r 2bf10f37fa37 -r c0758f8dff33 libpurple/protocols/myspace/myspace.c --- 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 */ diff -r 2bf10f37fa37 -r c0758f8dff33 libpurple/protocols/myspace/release.sh --- 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.