# HG changeset patch # User Jeffrey Connelly # Date 1183260634 0 # Node ID c5645d80aedc10ac9431754aba7791fb80ffd1bc # Parent 7e4e3f6582d293a9bac96e5e93d0ae2c6a0281db Update for v0.8 release. diff -r 7e4e3f6582d2 -r c5645d80aedc libpurple/protocols/myspace/CHANGES --- a/libpurple/protocols/myspace/CHANGES Tue Jun 26 05:53:52 2007 +0000 +++ b/libpurple/protocols/myspace/CHANGES Sun Jul 01 03:30:34 2007 +0000 @@ -1,9 +1,10 @@ -2007-XX-XX Jeff Connelly - 0.8 +2007-06-30 Jeff Connelly - 0.8 * Allow "Get Info" on all users, by uid or username * Fix crash when re-logging in, if login failed. * Show descriptive error message if login password is too long. * Fake self from being online, since can't add self to buddy list. * Update for Libpurple 2.0.2. +* Partial support for formatting on incoming instant messages. 2007-06-14 Jeff Connelly - 0.7 * Add/delete buddy now functional (required many other code improvements). diff -r 7e4e3f6582d2 -r c5645d80aedc libpurple/protocols/myspace/release.sh --- a/libpurple/protocols/myspace/release.sh Tue Jun 26 05:53:52 2007 +0000 +++ b/libpurple/protocols/myspace/release.sh Sun Jul 01 03:30:34 2007 +0000 @@ -1,13 +1,17 @@ -#!/bin/sh +#!/bin/bash # Created:20070618 # By Jeff Connelly +# Package a new msimprpl for release. Must be run with bash. + VERSION=0.8 make cd .. # Include 'myspace' directory in archive, so it can easily be unextracted # into ~/pidgin/libpurple/protocols at the correct location. -tar -cf msimprpl-$VERSION.tar myspace/ +# (if this command fails, run it manually). +# This convenient command requires bash. +tar -cf msimprpl-$VERSION.tar myspace/{CHANGES,ChangeLog,LICENSE,Makefile*,*.c,*.h,README,release.sh,.deps/*} cd myspace gzip ../msimprpl-$VERSION.tar @@ -15,6 +19,6 @@ make -f Makefile.mingw mv ~/pidgin/config.h- ~/pidgin/config.h cp ~/pidgin/win32-install-dir/plugins/libmyspace.dll . -# Zip is more common with Win32 users +# Zip is more common with Win32 users. Just include a few files in this archive. zip ../msimprpl-$VERSION-win32.zip libmyspace.dll README LICENSE ls -l ../msimprpl-$VERSION*