[gnote] Unbreak the applet support. (Closes #590346)



commit 9c5c3e1fb6aafafd85ba31c5358d1a1d04046aad
Author: Hubert Figuiere <hub figuiere net>
Date:   Fri Jul 31 18:22:55 2009 -0400

    Unbreak the applet support. (Closes #590346)
    
    Release 0.6.1 for this.

 NEWS          |    6 ++++++
 configure.ac  |    4 ++--
 src/gnote.cpp |    3 +++
 3 files changed, 11 insertions(+), 2 deletions(-)
---
diff --git a/NEWS b/NEWS
index f4d9378..4a03f08 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+0.6.1 "Bonobo Must Die" - 2009/07/31
+
+Fixes:
+
+  * Unbreak the applet support. (Closes #590346)
+
 0.6.0 "We believe in D-Bus" - 2009/07/29
 
 New Features:
diff --git a/configure.ac b/configure.ac
index a52d129..d9cf17a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(gnote, 0.6.0)
+AC_INIT(gnote, 0.6.1)
 AC_PREREQ(2.59)
 AC_CONFIG_SRCDIR(README)
 AM_INIT_AUTOMAKE([foreign dist-bzip2])
@@ -14,7 +14,7 @@ m4_pattern_allow([^BOOST_])
 
 MAJOR_VERSION=0
 MINOR_VERSION=6
-MICRO_VERSION=0
+MICRO_VERSION=1
 
 GNOTE_VERSION="$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION"
 AC_SUBST(GNOTE_VERSION)
diff --git a/src/gnote.cpp b/src/gnote.cpp
index b12803f..66e6d3b 100644
--- a/src/gnote.cpp
+++ b/src/gnote.cpp
@@ -430,6 +430,9 @@ namespace gnote {
     GOptionGroup *group = g_option_group_new("Gnote", _("A note taking application"), _("Gnote options at launch"), this, NULL);
     g_option_group_add_entries(group, entries);
     g_option_context_set_main_group (m_context, group);
+
+    // we need this for the panel support.
+    g_option_context_set_ignore_unknown_options(m_context, TRUE);
   }
 
   



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]