From: epage Date: Sat, 18 Jul 2009 17:41:19 +0000 (+0000) Subject: Updating manual package creation info X-Git-Url: https://vcs.maemo.org/git/?p=quicknote;a=commitdiff_plain;h=330fcd31016c61a2a3216b48bc03c1e5a38d9a98 Updating manual package creation info Added spell check support Made sure the version bump was everywhere git-svn-id: file:///svnroot/quicknote/trunk@55 bb7704e3-badb-4cfa-9ab3-9374dc87eaa2 --- diff --git a/Makefile b/Makefile index 86a6221..c83ef96 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PROJECT_NAME=quicknote -PROJECT_VERSION=0.7.7 +PROJECT_VERSION=0.7.8 SOURCE_PATH=src SOURCE=$(shell find $(SOURCE_PATH) -iname "*.py") LOCALE_PATH=locale diff --git a/debian/changelog b/debian/changelog index 624ba89..f0f15fe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,25 @@ +quicknote (0.7.8) unstable; urgency=low + + * Spell checking + + -- unknown Thu, 18 July 2009 08:12:53 +0100 + +quicknote (0.7.7) unstable; urgency=low + + * Slight modifications to the note history and SQL dialogs + * On zoom, also hiding the history status and button + * Touched up the note list, making it ellipsize at the end rather than scroll + * Storing of zoom, wordwrap, and fullscreen settings + + -- unknown Thu, 22 May 2008 08:12:53 +0100 + +quicknote (0.7.6) unstable; urgency=low + + * Line-wrap + * Zoom + + -- unknown Thu, 22 May 2008 08:12:53 +0100 + quicknote (0.7.4) unstable; urgency=low * fixed small bugs @@ -5,7 +27,6 @@ quicknote (0.7.4) unstable; urgency=low -- unknown Thu, 22 May 2008 08:12:53 +0100 - quicknote (0.7.3) unstable; urgency=low * fixed small bugs diff --git a/debian/copyright b/debian/copyright index 3c80733..a71d245 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,11 +1,11 @@ This package was debianized by Christoph Würstle on Mon, 22 Jan 2007 22:44:33 +0200. -It was downloaded from +It was downloaded from http://axique.de/?f=Quicknote Copyright: -Upstream Author(s): +Upstream Author(s): Christoph Würstle License: diff --git a/src/libnotizen.py b/src/libnotizen.py index a2edfda..357c7b2 100644 --- a/src/libnotizen.py +++ b/src/libnotizen.py @@ -15,6 +15,7 @@ import uuid import gobject import gtk +import gtkspell import simple_list @@ -67,6 +68,7 @@ class Notizen(gtk.HBox): buf = self._noteBodyView.get_buffer() buf.set_text("") buf.connect("changed", self._on_note_changed, None) + self._noteBodySpellChecker = gtkspell.Spell(self._noteBodyView) #self.textviewNotiz.set_size_request(-1, 50) self._noteScrollWindow = gtk.ScrolledWindow() diff --git a/support/builddeb.py b/support/builddeb.py index 1b38cde..17a8614 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -19,6 +19,7 @@ __version__ = constants.__version__ __build__ = 0 __changelog__ = ''' 0.7.8 + * Spell checking 0.7.7 * Slight modifications to the note history and SQL dialogs