← Back to team overview

ayatana-commits team mailing list archive

[Branch ~agateau/libindicate-qt/trunk] Rev 103: Getting ready for 0.2.3

 

------------------------------------------------------------
revno: 103
committer: Aurelien Gateau <aurelien.gateau@xxxxxxxxxxxxx>
branch nick: libindicate-qt
timestamp: Fri 2010-02-12 14:55:21 +0100
message:
  Getting ready for 0.2.3
added:
  README
modified:
  NEWS


--
lp:libindicate-qt
https://code.launchpad.net/~agateau/libindicate-qt/trunk

Your team ayatana-commits is subscribed to branch lp:libindicate-qt.
To unsubscribe from this branch go to https://code.launchpad.net/~agateau/libindicate-qt/trunk/+edit-subscription.
=== modified file 'NEWS'
--- NEWS	2009-09-25 11:58:33 +0000
+++ NEWS	2010-02-12 13:55:21 +0000
@@ -1,28 +1,35 @@
+# 0.2.3
+## Improvements
+- Ported to libindicate 0.3. Note that libindicate-qt 0.2.2 and 0.2.3 are
+  binary compatible even if libindicate 0.2 and libindicate 0.3 are not.
+- Added property getters for int, bool and QDateTime types.
+- Added README.
+
 # 0.2.2
 ## Improvements
-- Added support for server count
+- Added support for server count.
 
 ## Fixes
-- Use defines from libindicate for property names in convenience methods
+- Use defines from libindicate for property names in convenience methods.
 
 # 0.2.1
 ## Improvements
-- Ported to libindicate 0.2.0
+- Ported to libindicate 0.2.0.
 - Added convenience methods to get/set these common properties:
   name, time, icon, count, draw_attention
-- Added bool and int versions of setIndicatorProperty()
-- Moved all value decoding functions to QIndicate::Decode namespace
-- Removed QIndicate::Indicator::display() signal
-- Removed QIndicate::IndicatorMessage class, matching libindicate changes
+- Added bool and int versions of setIndicatorProperty().
+- Moved all value decoding functions to QIndicate::Decode namespace.
+- Removed QIndicate::Indicator::display() signal.
+- Removed QIndicate::IndicatorMessage class, matching libindicate changes.
 
 ## Fixes
 - Renamed property() to indicatorProperty() and setProperty() to
-  setIndicatorProperty() to avoid hiding QObject methods
-- Honor ${LIB_SUFFIX} variable
+  setIndicatorProperty() to avoid hiding QObject methods.
+- Honor ${LIB_SUFFIX} variable.
 
 # 0.2.0
 ## Fixes
-- Fixed handling of time properties to properly include the time part
+- Fixed handling of time properties to properly include the time part.
 
 ## Improvements
 - Added methods:

=== added file 'README'
--- README	1970-01-01 00:00:00 +0000
+++ README	2010-02-12 13:55:21 +0000
@@ -0,0 +1,24 @@
+# Introduction
+
+This library provides Qt bindings for libindicate.
+
+[1]: http://launchpad.net/libindicate
+
+It makes it possible for Qt and KDE applications to provide a list of incoming
+messages to the user without being too intrusive. Messages are made available
+over DBus and are displayed by a Message Indicator.
+
+# Message Indicators
+
+KDE users can display messages with the Message Indicator Plasma Widget,
+available here:
+http://launchpad.net/plasma-widget-message-indicator
+
+GNOME users can display messages with the Indicator Applet, available here:
+http://launchpad.net/indicator-applet
+
+# A bit of architecture
+
+To use libindicate-qt, an application must instantiate one QIndicate::Server. It
+can then instantiate one or more QIndicate::Indicator, one for each message to be
+presented.