2005-01-18  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Bump version to 0.3.1.
	* NEWS: Update for 0.3.1.
	* www/index.html: Point to 0.3.1 tarball and RPM.

2005-01-18  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/NoteBuffer.cs: Remove now unused "normal" tag.

	* Tomboy/Watchers.cs: Always fixup the GtkSpell tag, since this
	allows us to make an RPM that works no matter what GTK spell
	version you are running.

2005-01-18  Alex Graveley  <alex@beatniksoftware.com>

	* data/tomboy.schemas.in: Disable WikiWords by default.
	* Tomboy/Preferences.cs: Ditto.

2005-01-18  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Applet.cs: Rename "Manage Plugins" to "Install Plugins".
	* data/GNOME_TomboyApplet.xml: Ditto.

2005-01-18  Alex Graveley  <alex@beatniksoftware.com>

	* www/index.html: Update with friendly description of 0.3.0.
	Point to RPM.

	* Tomboy/Makefile.am: Fix another distcheck bug.

	* configure.in: Bump version to 0.3.0.

	* NEWS: Update for 0.3.0 release.

2005-01-18  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Plugins/Makefile.am: Use top_builddir when referring to
	Tomboy.exe, to pass distcheck.

	* tomboy.spec.in: Require libpanel-applet-2.so.0.  Don't install
	tomvoy.desktop (for now).

2005-01-18  Alex Graveley  <alex@beatniksoftware.com>

	* data/Makefile.am: Don't install the tomboy.desktop file for
	KDE...

	### Non-RedHat Gnome desktops don't honor the OnlyShowIn setting in .desktop
	### files.  tomboy.desktop should only appear in KDE, where it executes the
	### tray-icon version.  Gnome is our target audience, and since we don't want
	### them to have an extra menu item, we leave this out for now.

	* Tomboy/Plugins/Makefile.am: Don't install ExportToHTML.cs, since
	it doesn't do anything yet.

	* Tomboy/Watchers.cs: Stop listening to NoteManager events on
	shutdown, so we don't keep our deleted note alive if a linked-to
	note is deleted or renamed.

	* Tomboy/PluginManager.cs: Execute konqueror for opening Plugins
	directory if one of the common KDE environment variables are set.

	* configure.in: Bump version to 0.2.99, in preparation for release.

2005-01-17  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Note.cs: Emit the Opened event when the window is
	created.  Change IsOpened to mean "does the window exist".  Listen
	for window destroy instead of delete.

	* Tomboy/Watchers.cs: Update for new Trie interface.

	* Tomboy/Trie.cs: Implement the Aho-Corasick string matcher for
	note title lookups.

2005-01-17 Amanpreet Singh Alam <amanpreetalam@yahoo.com>

	*confiure.in: ALL_LINGUAS is updated with pa Punjabi

2005-01-12  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/NoteManager.cs: Fix bootstrapping by checking if the
	.tomboy directory exists before creating the PluginManager, which
	might create the directory, causing Start Here to not be created
	the first time Tomboy is run.

2005-01-08  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tray.cs: Escape underscores in note titles so tray
	menuitems do not have accidental mnemonics.  When dropping URLs,
	only apply a small text size to the inserted date using
	ForwardToLineEnd, instead of ForwardLines.

2005-01-04  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Search.cs: Fix Enter handling to focus the result list
	for global searches and to click Find Next for one-note searches.

2004-12-20  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Plugins/PrintNotes.cs: Add basic printing support based
	on patch from Jamin Philip Gray <jamin@pubcrawler.org>.

	* Tomboy/PluginManager.cs: Cleanup deleted plugins so they aren't
	added to new notes.

2004-12-15  Alex Graveley  <alex@beatniksoftware.com>

	* data/GNOME_TomboyApplet.xml: Plugins is note spelled Plguins.

2004-12-14  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Plugins/ExportToHTML.cs: Remove the toolbar item we add
	on Dispose ().
	* Tomboy/Plugins/PrintNotes.cs: Ditto.

	* Tomboy/Watchers.cs: Add Dispose() to all plugins.  Support file
	urls matching ~/foo.

	* Tomboy/PluginManager.cs: Make NotePlugin implement IDisposable,
	so that unloading can happen explicitly on plugin delete.  Call
	dispose when a Deleted FileSystemWatcher event for a plugin occurs.

2004-12-13  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Match filename URLs starting with '~/'.

2004-12-13  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Convert everything to the new NotePlugin
	interface.
	* Tomboy/Plugins/ExportToHTML.cs: Ditto.
	* Tomboy/Plugins/PrintNotes.cs: Ditto.

	* Tomboy/PluginManager.cs: Add an abstract OnNoteOpened method,
	that plugins fill out to cause some action on note load, do this
	instead of connecting to Note.OnNoteLoad in each NotePlugin so we
	can dynamically add plugins and have it work for already opened
	notes.

2004-12-10  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Makefile.am: Compile the current directory first, before
	Plugins, since they depend on Tomboy.exe.

	* Tomboy/Tomboy.cs: Fix compile error for non DBUS systems.

2004-12-10  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/PluginManager.cs: Create.  Handles loading plugins from
	~/.tomboy/Plugins, and connecting them to Notes.  Creates the
	Plugins dir if it doesn't exist, and creates an Uninstalled
	Plugins symlink to the system plugins.

	* Tomboy/NoteWindow.cs: Split out NoteWindow.editor related
	functions into NoteEditor class.

	* Tomboy/NoteManager.cs: Create a PluginManager and use it to load
	plugins for notes on init and on Create.

	* Tomboy/Makefile.am: Add PluginManager.cs.

	* Tomboy/Defines.cs.in: Add PKGLIBDIR and SYS_PLUGINS_DIR.

	* Tomboy/Applet.cs: Handle showing plugins directory from
	right-click menus.

	* data/GNOME_TomboyApplet.xml: Add "Manage Plugins..." right-click
	menu entry.

2004-12-08  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Search.cs: Listen to buffer content changes and update
	search results.

2004-12-08  Alex Graveley  <alex@beatniksoftware.com>

	* data/tomboy.desktop.in: Add OnlyShowIn=KDE, which executes
	`tomboy --tray-icon`.  In Gnome, you start Tomboy through the
	normal applet adding mechanism.

	* Tomboy/Watchers.cs: Update the note title only when the cursor
	leaves the title line, or when the window is closed to avoid
	popping up annoying nameclash dialog while you type a title.  Use
	Note.TextContent when searching other notes for link references on
	add/delete/rename, to handle matching <link>Full</link>Title xml.

	* Tomboy/Utils.cs: Add XmlDecoder which reads xml and returns only
	the text/whitespace content.  Add InterruptableTimeout, a simple
	wrapper around GLib timeouts that allow resetting and cancelling a
	currently active timeout.

	* Tomboy/Tray.cs: Support dropping links/urls/files onto the
	tomboy applet/tray icon.  Drops open Start Here and insert a
	timestamp and the URL(s) into the note.

	* Tomboy/Tomboy.cs: Add --tray-icon option, which displays in the
	notification area.

	* Tomboy/Note.cs: Rename Text to XmlContent, and add TextContent
	that is a stripped version of XmlContent using the new XmlDecoder
	utility.  Switch to using InterruptableTimeout for save timeouts.

	* Tomboy/Search.cs: Update results when notes are
	added/deleted. Switch to InterruptableTimeout for keypress
	timeout.  Fix conflicting Alt-C accellerators, make Alt-F jump the
	find entry.

2004-12-03  Sigurd Gartmann  <sigurd-translate@brogar.org>

	* configure.in: Add 'nb' and 'no' to ALL_LINGUAS.

2004-12-02  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: In NoteLinkWatcher, don't create inter-note
	links if we are inside a URL.  Fixes bug #156127.

2004-12-02  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Kill debug spew if a 'gtkspell-misspelled'
	tag isn't set on the Buffer (either you've disabled spellchecking
	or you don't have gtkspell installed).

	* Tomboy/NoteWindow.cs: Fix crasher on window creation for buffers
	that restore the cursor to the first line.

2004-12-02  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Use Unicode lowercase & uppercase character
	classes instead of [A-Z] and [a-z] in the WikiWatcher regexp.

2004-12-02  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: In NoteLinkWatcher, use TextTagEnumerator in
	note delete/rename handlers.	

	* Tomboy/Utils.cs: Add TextRange, a helper utility to support
	ranges of text that can be operated on.  Add TextTagEnumerator,
	which enumerates the tags as TextRanges in a Gtk.TextBuffer.

2004-11-30  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Trie.cs: Fix compile error for newer mono versions.

2004-11-30  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Note.cs: Disable the NoteRelatedToWatcher for now.

	* Tomboy/Watchers.cs: NoteLinkWatcher: Add nested TrieController
	class that handles updating the trie of note titles on
	load/create/delete/rename. Create a static TrieController in
	Initialize if it doesn't exist yet.
	Don't check ContainsText in OnNoteAdded as this breaks certain
	note creation linkage.

	* Tomboy/NoteManager.cs: Add NotesLoaded event, so the note linker
	can know when to generate the trie of note titles.

2004-11-29  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Makefile.am (CSFILES): Add Trie.cs.

	* Tomboy/Watchers.cs: Update to use a TrieTree instead of the slow
	naive approach for matching inline note-titles.

	* Tomboy/Trie.cs: Created.  An efficient tree-based string set
	matcher.

2004-11-26  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tomboy.exe.config: Map panel-applet-2 to
	libpanel-applet-2.so.0, so we'll load even if -devel packages
	aren't installed.

2004-11-25  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Applet.cs: Handling ChangeBackground crashes in the panel
	applet C# binding.  Comment out for now.

2004-11-24  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Applet.cs: Support transparent panels correctly by
	listening to ChangeBackground events correctly (or at least, how
	the trashapplet does).

	* Tomboy/Tray.cs: export the icon Gtk.Image, so it's sytle can be reset
	by the panel applet's ChangeBackground handler.

2004-11-24  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Add NoteRelatedToWatcher, which monitors
	link creation in other notes, and updates a "related notes" line
	(under the title-line) if a link to the current note is created.

	* Tomboy/NoteBuffer.cs: Add "related-to" tag, used in the Related
	line to indent and give the text a small size.

	* Tomboy/NoteWindow.cs: Always remove any sizing tags when a
	sizing menu item is applied. Add an unshown sizing menuitem to the Text
	menu, which gets set when text size is indeterminable (i.e. when
	on the title line).

2004-11-15  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Applet.cs: Pass Defines.DATADIR so the panel can find
	GNOME_TomboyApplet.xml even if we're installed into an odd path.

	* libtomboy/Makefile.am (libtomboy_la_LIBADD): Remove
	install/uninstall hooks for libtomboy.

	* configure.in: Use AM_DISABLE_STATIC to avoid creating libtomboy.a.

2004-11-02  Alex Graveley  <alex@beatniksoftware.com>

	* data/Makefile.am: Don't --shutdown the gconf daemon, as
	--makefile-install-rule already does it.

2004-11-02  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Utils.cs: In PopupMenu, set menu parent state to Selected
	on click, and back to Normal on deactivate.

2004-10-31  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Add 'ru' to ALL_LINGUAS.

2004-10-31  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/panelapplet/generated/PanelApplet.cs: Rename Flags to
	AppletFlags to avoid conflict with Gtk.Widget.Flags.

	* data/Makefile.am (EXTRA_DIST): Add dbusservice_in_files.

	* configure.in: Add --enable-dbus option.

	* tomboy.spec.in: Support rpmbuild option --with dbus, which
	requires a dbus-sharp package, and installs the .service file.

2004-10-31  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tomboy.cs: Print error for unknown options (excluding
	the panel's --oaf* options).

	* Tomboy/Utils.cs: Handle broken evolution-passed urls like
	file:////.

	* Tomboy/Watchers.cs: Fix bug where clicking the first character
	of a link would crate a new note.

2004-10-30  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Search.cs: Make MarkupEscapeText which calls
	g_markup_escape_text, since GLib.Markup.EscapeText passes an
	incorrect length which crashes when searching for Japanese (>1
	byte) characters.

2004-10-28  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/tomboy.in: Simplify, and use 'exec' to start mono.

2004-10-23  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tray.cs: Encode characters as UTF-8 escapes, so we can
	pass distcheck.

2004-10-23  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tray.cs: Call Sink to kill hanging tooltips reference.

	* Tomboy/Makefile.am: Install GNOME_TomboyApplet.xml.

	* Tomboy/Applet.cs: Use SetupMenuFromFile, as SetupMenu is failing
	silently for me.

	* Tomboy/panelapplet/generated/PanelApplet.cs: Add generated
	SetupMenuFromFile and SetupMenuFromResource.

2004-10-23  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/GNOME_TomboyApplet.server.in.in: Set category to
	Accessories, and mark for translation.

	* Tomboy/Makefile.am (CSFILES): Add Applet.cs, compile with
	-unsafe (used by panelapplet), and include all the panel applet
	sources from developmental Gtk#.  Add
	GNOME_TomboyApplet.server.in.in, the applet registration file, and
	GNOME_TomboyApplet.xml the applet menu definition.

	* Tomboy/NoteManager.cs: Listen to Tomboy.ExitingEvent, and save
	unsaved notes on emmission.

	* Tomboy/Tomboy.cs: Register TomboyApplet with the applet
	factory.  Make RegisterRemoteControl public so the applet can
	register the manager it creates.  Add an ExitingEvent, which is
	fired on SIGQUIT/SIGTERM, or by calling Exit.

	* Tomboy/Applet.cs: Add.  Create TomboyApplet gnome panel applet
	which contains a TomboyTray, and registers right-click menu XML.
	Create TomboyTrayIcon which wraps TomboyTray as a notification try
	icon, and provides a right-click menu.

	* Tomboy/Tray.cs: Make TomboyTray a generic widget with button
	press handler to show the notes menu.

2004-10-22  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tomboy.cs: Support --version command line arg.

	* Tomboy/Tray.cs: Add Takeshi AIHANA to translators pane in About
	dialog.

2004-10-22  Takeshi AIHANA <aihana@gnome.gr.jp>

	* configure.in: Added 'ja' (Japanese) to ALL_LINGUAS.

2004-10-21  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tray.cs: Add list of translations to about dialog.  Use
	"About Tomboy" in the menuitem label, and add a separator before
	quit.

	* tomboy.schemas.in: Oops. Forgot to commit the updates to support
	the preferences dialog settings.

2004-10-21  Jamin P. Gray <jamin@pubcrawler.org>

	* Tomboy/Tray.cs: Implement the about dialog
	* Tomboy/Utils.cs: new method GetIcon which does the same thing 
	as GetMiniIcon except it doesn't scale the image.  

2004-10-21  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Listen to changes in the WikiWord
	preference, do it easily by just avoiding future highlighting, and
	leaving existing ones intact.

2004-10-21  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/XKeybinder.cs: In TomboyGConfXKeybinder, Use Preferences
	for getting Gconf paths and default values.  Unbind everything
	when the Hotkey setting is deactivated, and listen for changes to
	it.

	* Tomboy/Watchers.cs: In NoteSpellChecker, listen for
	spellchecking gconf setting, and gtkspell_detach when it is
	deactivated.  Add back patronymic name avoidance for WikiWords.

	* Tomboy/Tray.cs: Use the Preferences helper class.  Add
	right-click menu to access preferences dialog, and quit.

	* Tomboy/Preferences.cs: Make Preferences, a Gconf settings access
	helper.  PreferencesDialog uses GConf PropertyEditors now, and is
	almost finished.

	* Tomboy/NoteWindow.cs: Listen for changes to custom_font gconf
	settings, and update the editing font.

2004-10-20  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Only set FIXED_GTKSPELL if GtkSpell version is
	greater than 2.0.9.  Because 2.0.8 is still broken.  
	Add nl.po translation from Paul Bolle <pebolle@tiscali.nl>.

2004-10-20  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Add Catalan translation from Jordi Mas
	<jmas@softcatala.org>.  Add Icelandic translation from Gunnar
	Steinn MagnÃºsson <gsm@gunnarsteinn.com>.  If gtkspell version
	>= 2.0.8, define FIXED_GTKSPELL.

	* Tomboy/Note.cs: Use shared TagTable when creating Buffer if
	FIXED_GTKSPELL is defined.

	Remove included gtkspell.  Included this out of frustration, but
	its not really the right thing to do.

2004-10-20  David Lodge <dave@cirt.net>
                                                                                
        * configure.in: Added en_GB to ALL_LINGUAS.
                                                                                
2004-10-20  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "sv" to ALL_LINGUAS.

2004-10-19  Alex Graveley  <alex@beatniksoftware.com>

	Add stripped down gtkspell 2.0.8 to the source tree, that will be
	installed in $pkglibdir.

	* Tomboy/NoteBuffer.cs: Remove all tags from the inserted text
	before applying the active tags... fixes bug where toggling bold
	inside a bold region would still insert bold.

	* Makefile.am (SUBDIRS): Build gtkspell conditionally.

	* tomboy.spec.in: Add tomboy manpage.

	* configure.in: Add Polish translation from Marek Habersack
	<grendel@caudium.net>.  Call AC_CONFIG_SUBDIRS on gtkspell
	directory if GtkSpell installed is older than 2.0.8 (likely).

2004-10-17  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Add Hungarian translation from TÃ¶rÃ¶k GÃ¡bor
	<gabo@linuxportal.hu>.  Thanks dude!

2004-10-15  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Bump version to 0.2.2.

2004-10-15  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Note.cs: Fix bug where we try to deserialize a null
	value.

	* Tomboy/NoteManager.cs: Add method for creating a new note with
	specified content, and use it in CreateStartNote().

2004-10-15  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Utils.cs: Add XmlEncoder, a simple class to xml-encode
	text strings.

	* Tomboy/Search.cs: Use XmlEncoder, and GLib.Markup.EscapeText
	when adding to result treeview.

	* Tomboy/NoteManager.cs: Use XmlEncoder.
	* Tomboy/Watchers.cs: Ditto.

2004-10-14  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/tomboy.1: Add manpage originally from Luca Capello, but
	with lots of changes.

2004-10-14  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Add German translation from Philipp Meier
	<meier@fnogol.de>.  Thanks!

2004-10-14  Alex Graveley  <alex@beatniksoftware.com>

	* www/index.html: Point to 0.2.1 tarball, and list some of the
	cooler changes.

	* configure.in: Bump version to 0.2.1.

	* tomboy.desktop.in: Don't pass any args, for now.

	* Tomboy/Watchers.cs: Fix unix path pattern to match only when
	preceding character is whitespace or start-of-line.

2004-10-14  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Search.cs: Don't highlight in all notes at once.  This
	opens some UI issues I don't want to deal with yet, like making
	Next/Previous work if you bring an already opened note to the
	foreground.

2004-10-13  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: In NoteRenameWatcher, show a unique name
	like "(Untitled 42)" if someone deletes the title.  In
	NoteLineWatcher, use InsertWithTags to fix a bug where a longer
	renamed title won't be fully marked up.

2004-10-13  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Cleanup NoteRenameWatcher to not allow other
	tags on the title line, handle title line breaks and insertions
	correctly, wait 1 second before updating the the Note title
	(instead of 0.5), and always grab the title explicitly instead of
	using a textmark.

2004-10-12  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tomboy.cs: Add a --start-here argument that opens the
	(possibly translated) "Start Here" note.

	* Tomboy/Search.cs: Highlight matches in all notes, not just
	current one.

	* Tomboy/RemoteControl.cs: Call find.FindNextButton.Click () in
	DisplayNoteWithSearch to scroll the note to the first match.

	* Tomboy/NoteWindow.cs: Don't link to the current word if none is
	selected. This makes problems when people make a note from a common
	word, then rename the note later, as all notes with that common
	word will have their content changed to the renamed title.

2004-10-11  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Note.cs: Don't save window dimensions if window is
	maximized.

	* Tomboy/NoteWindow.cs: Unmaximize before closing to ensure we
	don't reopen pseudo-maximized.

	* Tomboy/NoteBuffer.cs: Keep a reference to the TagTable passed
	in, otherwise it gets collected and gtk# creates a new one.

2004-10-11  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Fix bugs in Url matching regex to recognise
	unix paths again.

2004-10-10  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Search.cs: Html Encode the note title to html before adding.
	Don't reset the search to empty if SearchText is set null.  Don't
	set TransientFor ever.

	* configure.in: gtkspell 2.0.5 is still broken.  

2004-10-10  Dave Camp  <dave@novell.com>

	* Tomboy/NoteWindow.cs: Make "link to new note" work on the 
	word under the cursor if there is no selection.

	* Tomboy/NoteBuffer.cs: Add a GetCurrentBlock overload that 
	uses the InsertMark by default

2004-10-09  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Make ContainsText encode the search text.

	* Tomboy/Tomboy.cs: Add help string for --highlight-search.

	* Tomboy/RemoteControl.cs: Fix DisplayNoteWithSearch.

	* Tomboy/NoteManager.cs: Entity encode new note titles in Create.

2004-10-09  Jon Trowbridge  <trow@ximian.com>

	* Tomboy/Tomboy.cs: If the argument to --open-note looks like a
	Uri, treat it like a Uri instead of as a note title.  Also, added
	the --highlight-search command-line option.

2004-10-09  Nat Friedman  <nat@novell.com>

	* Tomboy/Search.cs: Make FindMatches and HighlightMatches public
	static.
	* Tomboy/RemoteControlProxy.cs
	Tomboy/RemoteControl.cs: Add DisplayNoteWithSearch.

2004-10-08  Alex Graveley  <alex@beatniksoftware.com>

	* NEWS: Update for 0.2.0.

2004-10-08  Alex Graveley  <alex@beatniksoftware.com>

	* tomboy.spec.in: Add all the missing files, register .schemas
	file.

2004-10-08  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/NoteManager.cs: Select the initial note text on newly
	created notes.

2004-10-08  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Bump version to 0.2.0.

	* Tomboy/Makefile.am (EXTRA_DIST): Add
	com.beatniksoftware.Tomboy.service to CLEANFILES.

2004-10-08  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Move all watchers to NotePlugin interface,
	which simplifies code and avoid creating windows/buffers
	prematurely; eventually this will be the interface to allow 3rd
	party plugins.  Move wiki/url watchers to using regex matching,
	which simplifies the code.

	* Tomboy/Tray.cs: Show notes edited in the last two days in menu
	(up to 18).

	* Tomboy/RecentChanges.cs: Remove open-one-at-a-time behavior.
	* Tomboy/Search.cs: Ditto.

	* Tomboy/NoteManager.cs: Split NoteChanged into NoteAdded and
	NoteDeleted signals.  Make new note filenames be guids, to avoid
	renaming files on note rename, and to give permalink urls.

	* Tomboy/Note.cs: Load plugins as creation.
	Send Opened signal on window realize.  Add IsLoaded property to
	tell if buffer has been deserialized.

	* Tomboy/Makefile.am (com.beatniksoftware.Tomboy.service): Install
	com.beatniksoftware.Tomboy.service to $libdir/dbus-1.0/services.

2004-10-07  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tomboy.cs: Make --new-note "NoteTitle" open an existing
	note if it exists.

2004-10-05  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/NoteWindow.cs: Get the target list and add our extra
	targets to it, this way we don't overwrite the targets GtkTextView
	installs.  Install text/uri-list (nautilus drags) and
	_NETSCAPE_URL (moz drags).

2004-10-05  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tomboy.cs: Add TomboyRemoteExecute, a simple command line
	frontend to a running tomboy.  Allows opening an existing note,
	and create new notes.

2004-10-05  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Add "es" to ALL_LINGUAS.  Translation by Antonio
	Ognio <gnrfan@gnrfan.org>.

2004-10-04  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Tomboy.cs: Switch from a System.Diagnostics.Conditional
	attribute on RegisterRemoteControl to a #if ENABLE_DBUS.
	With ConditionalAttribute the compiler still parses the method
	body, which can't find the DBus types if they aren't installed.
	Fixes 154496, reported by Adam Lopresto (adam@pubcrawler.org).

2004-10-03  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/NoteManager.cs: Properly Url encode filenames on creation
	and rename.  Allows '/' in note titles and fixes bug #154396 filed
	by Erik Volkman.

	* Tomboy/Search.cs: Fix bug with GetInstance implementation being
	passed a string to search.  Instead add SearchText property.
	Fixes a bug where just selecting text then right-clicking would
	activate searching for the selected text.

2004-10-02  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/NoteWindow.cs: Implement simple (and broken) DND to note
	content, to allow dragging urls from nautilus/firefox/etc.

2004-10-02  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/XKeybinder.cs: Split out XKeybinding classes from
	Utils.cs.

2004-10-02  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/RecentChanges.cs: Support dnd of results into open notes.
	* Tomboy/Search.cs: Ditto.

2004-10-01  Alex Graveley  <alex@beatniksoftware.com>

	Thanks to hurricane Jeanne last week, here is a massive commit...

	Thanks to Jon Trowbridge <trow@ximian.com> for the dbus-based
	remote control interface.

	* configure.in: add optional check for dbus, and set ENABLE_DBUS
	if found.  Check for old version (<2.0.5) of GtkSpell, and set
	OLD_GTKSPELL if found.

	* Tomboy/Makefile.am: include RemoteControl.cs and
	RemoteControlProxy.cs if ENABLE_DBUS is set.

	* Tomboy/Note.cs: make SaveDate into ChangeDate, which we update
	whenever the buffer changes.  Fixes ordering in the panel applet
	for notes where the save timeout hasn't been called yet.  Add Uri,
	used by remote control. Add IsOpened, used by the tray menu.  Fix
	newly created notes to remember window position.

	* Tomboy/NoteManager.cs: Use a HIGMessageDialog for showing name
	clash errors.  Add FindByUri, used by the remote control.

	* Tomboy/NoteWindow.cs: Use a HIGMessageDialog for the delete
	dialog.

	* Tomboy/RecentChanges.cs: Update results on note
	rename/add/delete.

	* Tomboy/Tomboy.cs: Register the remote control with dbus.

	* Tomboy/Tray.cs: Add tooltip to notification icon which says
	"Tomboy Notes" and lists the global shortcut key for showing the
	menu.  Create menu accelerators which map to their global
	shortcuts stored in gconf ("Alt-F11" next to Start Here, by
	default).

	* Tomboy/Utils.cs: Add HIGMessageDialog, which implements the HIG
	recommended message dialog.

	* Tomboy/Watchers.cs: Middle clicking a link/url closes the
	opening note.  Shift or control clicking a link/url places the
	cursor instead of opening.  Control-Enter with cursor on a
	link/url opens it. Use a HIGMessageDialog for location open error
	dialog.  Fix wikiword identification to ignore words with internal
	punctuation, and disregard any trailing punctuation.

	* TrayIcon/libtrayicon/tomboykeybinder.c: Regrab keys if the
	default keymap changes.

2004-10-01  Adam Lopresto <adam@pubcrawler.org>

	* Tomboy/Search.cs: Make searches implicitly AND words instead of
	OR.  Also fix a bug with spaces at the end of the search string.

2004-09-27  BenoÃÂ®t Dejean  <tazforever@dlfp.org>

	* configure.in: Added "fr" to ALL_LINGUAS.

2004-09-27  Alex Graveley  <alex@beatniksoftware.com>

	Lots of changes...

	* Add calls to Catalog.GetString everywhere we use a translatable
	string.
	* Add MouseHandWatcher which will change the mouse cursor to a
	hand when hovering over links.
	* Add global keybinding code
	* Add gconf setting to allow opening the notes menu (<Alt>F12 by
	default), opening Start Here (<Alt>F11 by default), creating a new
	note, opening the Search dialog, and opening the Recent Changes
	dialog.
	* Fix session saving, so our wrapper script gets executed by
	gnome-session.
	* Add beginning of bullet list and horizonal spacer code,
	commented out for now.
	
	Added Files...

	* tomboy.desktop.in: .desktop file to make tomboy show up in
	Applications/Accessories.
	* tomboy.schemas.in: Add gconf schema with global keybindings.
	* Tomboy/Defines.cs.in: Gets generated to Defines.cs, so we can
	find our translation files.
	* TrayIcon/libtrayicon/eggaccelerators.[ch]: Handles parsing of
	global gconf keybinding strings.
	* TrayIcon/libtrayicon/tomboykeybinder.[ch]: Listens for global
	keybindings on the X root window.

2004-09-24  Alex Graveley  <alex@beatniksoftware.com>

	* www/index.html: Add copyright notice for Tintin.

2004-09-23  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Watchers.cs: Copy the mautilus behavior of "middle click
	closes the opener" when clicking note links.  Should this apply
	for clicking urls as well?

2004-09-21  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Note.cs: Subscribe to window configure events, and save
	the note on change.  This should fix any problems people are
	having with spatial note windows.

2004-09-21  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/Search.cs: Fixed up things a bit: Make the dialog a
	singleton, so clicking search anywhere will bring up same search
	dialog, and reapply the search to the current note.  Scroll to
	the matched text.  Fix insertion into the search history list
	(sort of, it'll still show partial entries if you type slow).
	Search still needs some work wrt listening for change events and
	optimizing, as well as making the currently iterated note title
	bold in the search dialog.

	* Tomboy/NoteWindow.cs: Use a property accessor to get the find
	dialog instance everywhere, instead of keeping a local copy.
	* Tomboy/Tray.cs: Ditto.

2004-09-21  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Drop the gtkspell 2.0.6 dependency.  Bump version
	to 0.1.2.
	* tomboy.spec.in (Requires): Ditto.

	* Tomboy/NoteWindow.cs: Bind find-next and find-previous to the
	right callback, instead of CloseWindowHandler.  Doh.

	* Tomboy/Watchers.cs: Override gtkspell's tag to use the squiggly
	with a black foreground text color.  This makes us not depend on
	the newest gtkspell versions.  Gtk 2.2 versions of pango will just
	show misspellings as black text with a regular underline.

	* Tomboy/Search.cs (OnFindPreviousClicked): Fix bug where previous
	was only jumping between first and last match.

	* www/index.html: Point to 0.1.2 tarball.

2004-09-20  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/NoteWindow.cs: Allow escape and Ctrl-w to close a note
	for now, until I get some feedback on which to use.

2004-09-20  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Bump version to 0.1.1.
	* www/index.html: Point to 0.1.1 tarball.

	Add NEWS, AUTHORS, COPYING, README files.

2004-09-20  Alex Graveley  <alex@ximian.com>

	* Tomboy/NoteWindow.cs: Set the close window key to Escape, which
	makes tomboy feel less obtrusive.  Suggestion from Michael GroÃe
	<mgrosze@web.de>.

2004-09-20  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/NoteWindow.cs: Ask for confirmation before deleting.
	Based on patch from Johan Wallenborg <johan@deepfolks.com>.

2004-09-20  Alex Graveley  <alex@beatniksoftware.com>

	* tomboy.spec.in: Initial spec file from Ricardo Veguilla
	<veguilla@hpcf.upr.edu>.

	* Tomboy/NoteManager.cs (NoteManager.CreateStartNote): Fix typo.

	* Tomboy/Note.cs: Pass a StreamReader for the note's file to the
	XmlTextReader constructor.  Hopefully it won't complain about
	invalid URLs in some versions of mono.  Reported by O'Grady
	Stephen <sogrady@redmonk.com>.

2004-09-19  Alex Graveley  <alex@beatniksoftware.com>

	* configure.in: Require gtkspell version 2.0.6.

2004-09-19  Jesse Andrews  <anotherjesse@gmail.com>

	* Tomboy/NoteBuffer.cs: changed internal linnk back to red

2004-09-19  Jesse Andrews  <anotherjesse@gmail.com>

	* Tomboy/NoteBuffer.cs: modified color of internal link to
	dark green since misspellings are red

	* Tomboy/NoteManager.cs: store notes in ~/.tomboy instead of ~/tomboy

2004-09-18  Alex Graveley  <alex@beatniksoftware.com>

	* TrayIcon/libtrayicon/Makefile.am: Install libtrayicon.so into
	pkglibdir.

	* TrayIcon/Makefile.am: Install TrayIcon.dll into pkglibdir.

	* Tomboy/tomboy.in: Set LD_LIBRARY_PATH, and MONO_PATH.

	* Tomboy/Watchers.cs: Avoid an infinite loop for buffers with no
	content.

2004-09-18  Alex Graveley  <alex@beatniksoftware.com>

	* Tomboy/NoteWindow.cs: 
	* Tomboy/RecentChanges.cs: 
	* Tomboy/Search.cs: Gtk.ScrolledWindow.Child is read-only on Gtk#
	HEAD, use Add() instead.

	* configure.in: PKG_CHECK for gtkspell-2.0, since we call into it
	from C#.

