Skip to content
This repository has been archived by the owner on Feb 7, 2018. It is now read-only.

Commit

Permalink
Updated CHANGELOG and README. Version bump to 0.10.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Nov 1, 2009
1 parent 208e3ef commit 801968e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
@@ -1,3 +1,12 @@
v0.10.0 (2009/11/01):
- merging friends timeline with mentions (@-replies) timeline,
- fixed notifications - now notify about new statuses (NOT unread ones) and display unread statuses count,
- improved URL shortening (all urls at one go, customizable shortcut, pluggable),
- automatic #hashtagging,
- fixes in parsing links in statuses (by Stephan Beyer),
- initial plugin architecture (subject to change),
- improvements in build system (detecting correct libdir on *NIXes and automatic generation of translations),
- code cleanup in Twitter API library (by Stephan Beyer).
v0.9.2 (2009/10/01):
- SSL encryption for connections to Twitter and Identi.ca (#75),
- fixed incomplete Norwegian translation (#74),
Expand Down
8 changes: 4 additions & 4 deletions README
@@ -1,19 +1,19 @@
qTwitter is an application interacting with microblogging services, such as Twitter, Identi.ca and others based on StatusNet application (former laconica). It aims to be as compact as possible still providing outstanding usability. Since it's a Qt-based application with no other dependencies, it works wherever Qt does, i.e. Windows, Mac OS X and vast variety of Linuxes and Unices supporting X11 (including Nokia's Maemo platform).

Features' summary as for v0.9.2:
Features' summary as for v0.10.0:
- OAuth-based authentication scheme for Twitter accounts,
- support for Twitter, Identi.ca and StatusNet for:
* friends and public timeline,
* friends and mentions (@-replies) timeline,
* posting, replying, retweeting, deleting and (dis)favoring statuses,
* downloading, sending and deleting direct messages,
- secure (SSL encrypted) connection to Twitter and Identi.ca,
- support for working with multiple accounts at the same time,
- storing statuses lists between sessions,
- automatic checking for updates,
- integrated support for one-click URL shortening via 9 different services,
- automatic #hashtagging and URL shortening via 9 different services,
- full interaction with TwitPic API, allowing for easy one-click image uploading and posting updates,
- system tray notifications (via Plasma and Growl),
- customizable statuses list length and look (via the use of themes),
- automatic checking for updates,
- in-session passwords storing (can be disabled),
- HTTP proxy support,
- being recognized as a source of updates,
Expand Down
2 changes: 1 addition & 1 deletion qtwitter-app/src/configfile.cpp
Expand Up @@ -95,7 +95,7 @@ bool AppVersion::operator <=( const AppVersion &other ) const
return ( *this == other ) || ( *this < other );
}

const QString ConfigFile::APP_VERSION = "0.9.2";
const QString ConfigFile::APP_VERSION = "0.10.0";
const QString ConfigFile::COMPAT_SETTINGS_APP_VERSION = "0.9.0";


Expand Down
4 changes: 2 additions & 2 deletions twitterapi/twitterapi.pri
@@ -1,6 +1,6 @@
VER_MAJ = 0
VER_MIN = 9
VER_PAT = 2
VER_MIN = 10
VER_PAT = 0
VERSION = $${VER_MAJ}.$${VER_MIN}.$${VER_PAT}

win32: TWITTERAPI_LIB = -ltwitterapi$${VER_MAJ}
Expand Down

0 comments on commit 801968e

Please sign in to comment.