diff options
author | tmclaugh <tmclaugh@FreeBSD.org> | 2007-02-04 23:10:52 +0000 |
---|---|---|
committer | tmclaugh <tmclaugh@FreeBSD.org> | 2007-02-04 23:10:52 +0000 |
commit | ece6fd33cbafacef50cd3276b767e139edd595d9 (patch) | |
tree | c8b7a9df656708c871be37c8ef6cbbb06d0e333d /deskutils/tomboy/files | |
parent | 2f005b5fb481ba35656e15af37191f74a1bdd4da (diff) | |
download | FreeBSD-ports-ece6fd33cbafacef50cd3276b767e139edd595d9.zip FreeBSD-ports-ece6fd33cbafacef50cd3276b767e139edd595d9.tar.gz |
- Update to 0.5.4
Version 0.5.4
* Bug fix release
Version 0.5.3
* New HTML export feature to export all recursively linked notes.
* Improved "Start Here" instructions for new Tomboy users.
Version 0.5.2
* New bulleted list support (Chris Scobell).
* New configurable plugin interface (Mathias Hasselmann).
* New Backlinks Plugin.
* Improved behavior running without notification area.
Version 0.5.1
* New Managed D-Bus/DBusSharp
* Additional search interface improvements.
Version 0.5.0
* New note pinning in main menu.
* New integrated table of contents and search.
* New find bar for searching inside a single note.
* New Bugzilla plugin (David Trowbridge).
* New Tomboy icons (Jakub Steiner).
* Timestamped logging to ~/.tomboy.log.
* Number of notes in main menu configurable in GConf.
- Move to LOCALBASE
- USE_GNOME+=gnomesharp20
NOTE: deve/dbus is needed because of the bundled managed dbus#
Project by: BSD# (http://www.mono-project.com/Mono:FreeBSD)
Diffstat (limited to 'deskutils/tomboy/files')
-rw-r--r-- | deskutils/tomboy/files/patch-Tomboy_Applet.cs | 13 | ||||
-rw-r--r-- | deskutils/tomboy/files/patch-Tomboy_Defines.cs.in | 11 |
2 files changed, 24 insertions, 0 deletions
diff --git a/deskutils/tomboy/files/patch-Tomboy_Applet.cs b/deskutils/tomboy/files/patch-Tomboy_Applet.cs new file mode 100644 index 0000000..6c25d73 --- /dev/null +++ b/deskutils/tomboy/files/patch-Tomboy_Applet.cs @@ -0,0 +1,13 @@ +--- Tomboy/Applet.cs.orig Mon Jan 22 14:48:19 2007 ++++ Tomboy/Applet.cs Mon Jan 22 14:48:22 2007 +@@ -91,7 +91,9 @@ + + void ShowHelpVerb () + { +- Tomboy.ActionManager ["ShowHelpAction"].Activate (); ++ // Don't use the ActionManager in this case because ++ // the handler won't know about the Screen. ++ GuiUtils.ShowHelp ("tomboy.xml", null, Screen, null); + } + + void ShowAboutVerb () diff --git a/deskutils/tomboy/files/patch-Tomboy_Defines.cs.in b/deskutils/tomboy/files/patch-Tomboy_Defines.cs.in new file mode 100644 index 0000000..9c8c5b8 --- /dev/null +++ b/deskutils/tomboy/files/patch-Tomboy_Defines.cs.in @@ -0,0 +1,11 @@ +--- Tomboy/Defines.cs.in.orig Thu Dec 7 19:06:17 2006 ++++ Tomboy/Defines.cs.in Sun Jan 21 00:02:01 2007 +@@ -8,7 +8,7 @@ + public const string VERSION = "@version@"; + public const string DATADIR = "@datadir@"; + public const string GNOME_LOCALE_DIR = "@datadir@/locale"; +- public const string GNOME_HELP_DIR = "@datadir@/gnome/help/tomboy"; ++ public const string GNOME_HELP_DIR = "@datadir@/help/tomboy"; + public const string PKGLIBDIR = "@pkglibdir@"; + public const string SYS_PLUGINS_DIR = "@pkglibdir@/Plugins"; + } |