changeset 342:941f848b61c9 0.9.0

- update requirement for pidgin to 2.6.0 - update README to release 0.9.0
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Sun, 18 Oct 2009 23:59:55 +0900
parents b41f1bf69cba
children 2ef92a18578c
files README configure.ac
diffstat 2 files changed, 20 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/README	Sun Oct 18 17:38:40 2009 +0900
+++ b/README	Sun Oct 18 23:59:55 2009 +0900
@@ -1,4 +1,4 @@
-pidgin-twitter-0.8.5.2
+pidgin-twitter-0.9.0
 
 
 1. What is this?
@@ -18,9 +18,10 @@
 
 Twitter specific
     * get/post Twitter statuses via API
+    * reply/favorite/retweet functionalities
+    # translate #<search tag> to link to the search query
     * escape pseudo commands like "w"
     * suppress oops message
-    # translate #<search tag> to link to the search query
 
 Wassr specific
     * translate #<channel name> to link to the channel
@@ -34,7 +35,7 @@
 
 2. Dependency
 
-This plugin requires Pidgin 2.4.0 or newer, glib-2.16.0 or newer,
+This plugin requires Pidgin 2.6.0 or newer, glib-2.16.0 or newer,
 gtk+-2.12.0 or newer and libxml-2.6.27 or newer.
 
 
@@ -252,6 +253,16 @@
 trouble, we suggest to enable this feature and report us your problem
 with obtained information.
 
+4.7 Reply, Favorite and Retweet
+
+In twitter service, pidgin-twitter adds links for replying, creating
+favorite and retweeting to each message. To reply a message, press R
+link and @username string will be automatically prepared in the
+composing area. Sending message with this action sets "in reply to"
+property on the server. To create favorite, just press F link. To
+retweet someone's message, press RT link and the message is properly
+quoted and prepared in the composing area.
+
 
 5. History
 
@@ -342,6 +353,10 @@
 - Improved icon retrieval in twitter service. Now icon file whose name
   contains UTF-8 multi-byte characters can be retrieved as well.
 
+0.9.0 (October 19 2009)
+- Added reply, favorite and retweet functionality in twitter service.
+- Added support for non-ascii hash tags.
+
 
 6. Acknowledgments
 
--- a/configure.ac	Sun Oct 18 17:38:40 2009 +0900
+++ b/configure.ac	Sun Oct 18 23:59:55 2009 +0900
@@ -30,11 +30,11 @@
 AC_SUBST(GLIB_LIBS)
 AC_SUBST(GLIB_LIB_DIR)
 
-PKG_CHECK_MODULES(PIDGIN, [pidgin >= 2.4.0], , [
+PKG_CHECK_MODULES(PIDGIN, [pidgin >= 2.6.0], , [
         AC_MSG_RESULT(no)
         AC_MSG_ERROR([
 
-You must have pidgin >= 2.4.0 development headers installed to build.
+You must have pidgin >= 2.6.0 development headers installed to build.
 ])])
 PIDGIN_CFLAGS=`pkg-config --cflags pidgin 2> /dev/null`
 PIDGIN_LIBS=`pkg-config --libs pidgin 2> /dev/null`