Mercurial > pidgin-twitter
changeset 265:c2944685ac8e 0.8.1
- update README to meet 0.8.1.
- little clean up.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Wed, 10 Dec 2008 15:46:30 +0900 |
parents | b7ac562d758c |
children | d3e2b2e58828 |
files | README icon.c main.c util.c |
diffstat | 4 files changed, 13 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/README Thu Dec 04 18:24:06 2008 +0900 +++ b/README Wed Dec 10 15:46:30 2008 +0900 @@ -1,4 +1,4 @@ -pidgin-twitter-0.8.0 +pidgin-twitter-0.8.1 1. What is this? @@ -294,6 +294,15 @@ - Strip excessive newline feature has been added. - Fixed a breakage of playing sound for the recipients. +0.8.1 (December 10 2008) +- Icon handling has been improved so that users' custom icons would + not turn into default one. +- Fixed a glitch in the pattern for identi.ca icon. +- Get/post twitter statuses via API has been turned on by default. +- prefs.ui file would be embedded into dll on windows environment so + that separate installation by hand is no longer required. +- Reorganized source codes. + 6. Acknowledgments
--- a/icon.c Thu Dec 04 18:24:06 2008 +0900 +++ b/icon.c Wed Dec 10 15:46:30 2008 +0900 @@ -695,4 +695,3 @@ g_object_unref(data->pixbuf); data->pixbuf = NULL; } -
--- a/main.c Thu Dec 04 18:24:06 2008 +0900 +++ b/main.c Wed Dec 10 15:46:30 2008 +0900 @@ -24,8 +24,9 @@ /* globals */ /***********/ GRegex *regp[NUM_REGPS]; +GHashTable *icon_hash[NUM_SERVICES]; +source_t source; static gboolean suppress_oops = FALSE; -GHashTable *icon_hash[NUM_SERVICES]; static GHashTable *conv_hash = NULL; static GList *wassr_parrot_list = NULL; static GList *identica_parrot_list = NULL; @@ -34,8 +35,6 @@ gboolean blink_modified = FALSE; #endif -source_t source; - /**************/ /* prototypes */ /**************/ @@ -60,7 +59,6 @@ static void cancel_fetch_func(gpointer key, gpointer value, gpointer user_data); static gboolean displaying_im_cb(PurpleAccount *account, const char *who, char **message, PurpleConversation *conv, PurpleMessageFlags flags, void *data); static void displayed_im_cb(PurpleAccount *account, const char *who, char *message, PurpleConversation *conv, PurpleMessageFlags flags); - #ifndef _WIN32 extern gchar *sanitize_utf(const gchar *msg, gsize len, gsize *newlen) __attribute__ ((weak)); #endif @@ -69,11 +67,6 @@ /*************/ /* functions */ /*************/ - - -/***********************/ -/* intrinsic functions */ -/***********************/ static gboolean sending_im_cb(PurpleAccount *account, char *recipient, char **buffer, void *data)