tasque r71 - trunk
- From: sharm svn gnome org
- To: svn-commits-list gnome org
- Subject: tasque r71 - trunk
- Date: Thu, 12 Jun 2008 04:27:49 +0000 (UTC)
Author: sharm
Date: Thu Jun 12 04:27:48 2008
New Revision: 71
URL: http://svn.gnome.org/viewvc/tasque?rev=71&view=rev
Log:
* configure.ac: Removed seemingly unused $enable_ice_desktop variable.
Make sure to check that Novell.IceDesktop is actually available
when running configure. Fixes bug #537906.
* NEWS: Getting ready for 0.1.6 release.
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/configure.ac
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Thu Jun 12 04:27:48 2008
@@ -4,6 +4,14 @@
Bugs/Issues: http://code.google.com/p/tasque/issues/list
Mailing list: http://groups.google.com/group/tasque
+Version 0.1.6 (Not yet released)
+* New task entry widget at top of Tasque window.
+* When entering a new task, parse for due date information.
+* Cleaner SVG icon, Jakub Steiner.
+* Use Gtk.StatusIcon, Eric Butler.
+* Crash fixes from Charles Schaefer (#533609, #533607).
+* Bug fixes: #525282, #536740, #532764, #526663, #525272
+
Version 0.1.5
* Fixed category filter when showing "All" in Task view
* New beautiful "jimmac" Icon
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Thu Jun 12 04:27:48 2008
@@ -124,13 +124,16 @@
#
# ICEcore for IceBackend Support
#
-PKG_CHECK_MODULES(ICE_DESKTOP, Novell.IceDesktop, enable_ice_desktop="yes", enable_ice_desktop="no")
-AC_SUBST(ICE_DESKTOP_LIBS)
AC_ARG_ENABLE(backend_icecore,
AC_HELP_STRING([--enable-backend-icecore],
[Enable the ICEcore Backend [default=no]]),
enable_backend_icecore=yes, enable_backend_icecore=no)
AM_CONDITIONAL(ENABLE_BACKEND_ICECORE, test "x$enable_backend_icecore" = "xyes")
+if test "x$enable_backend_icecore" = "xyes" ; then
+ # FIXME : Is this the right way to do this ?
+ PKG_CHECK_MODULES(ICE_DESKTOP, Novell.IceDesktop)
+fi
+AC_SUBST(ICE_DESKTOP_LIBS)
#
# Evolution-Sharp for EDSBackend Support
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]