Updating manual package creation info
authorepage <eopage@byu.net>
Sat, 18 Jul 2009 17:41:19 +0000 (17:41 +0000)
committerepage <eopage@byu.net>
Sat, 18 Jul 2009 17:41:19 +0000 (17:41 +0000)
Added spell check support
Made sure the version bump was everywhere

git-svn-id: file:///svnroot/quicknote/trunk@55 bb7704e3-badb-4cfa-9ab3-9374dc87eaa2

Makefile
debian/changelog
debian/copyright
src/libnotizen.py
support/builddeb.py

index 86a6221..c83ef96 100644 (file)
--- 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
index 624ba89..f0f15fe 100644 (file)
@@ -1,3 +1,25 @@
+quicknote (0.7.8) unstable; urgency=low
+
+  * Spell checking
+
+ -- unknown <eopage@byu.net>  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 <eopage@byu.net>  Thu,  22 May 2008 08:12:53 +0100
+
+quicknote (0.7.6) unstable; urgency=low
+
+  * Line-wrap
+  * Zoom
+
+ -- unknown <eopage@byu.nt>  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 <n800@axique.de>  Thu,  22 May 2008 08:12:53 +0100
 
-
 quicknote (0.7.3) unstable; urgency=low
 
   * fixed small bugs
index 3c80733..a71d245 100644 (file)
@@ -1,11 +1,11 @@
 This package was debianized by Christoph Würstle <n800 !at! axique .dotx de> on
 Mon, 22 Jan 2007 22:44:33 +0200.
 
-It was downloaded from <fill in ftp site>
+It was downloaded from http://axique.de/?f=Quicknote
 
 Copyright:
 
-Upstream Author(s): <put author(s) name and email here>
+Upstream Author(s): Christoph Würstle <n800 !at! axique .dotx de>
 
 License:
 
index a2edfda..357c7b2 100644 (file)
@@ -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()
index 1b38cde..17a8614 100755 (executable)
@@ -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