X-Git-Url: http://git.maemo.org/git/?p=quicknote;a=blobdiff_plain;f=support%2Fbuilddeb.py;h=a739a80d22c6f2a13f9b8ded4e08f79018c62fcd;hp=a280e8ad745a02407c20c5e6049fca7df8e527a5;hb=1f31b5ab936f3f83c0b8cdc305a31f442b22977f;hpb=b0ecd0417f8024719107d39e65c9723976069ddb diff --git a/support/builddeb.py b/support/builddeb.py index a280e8a..a739a80 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -1,22 +1,29 @@ #!/usr/bin/python2.5 import os +import sys try: import py2deb except ImportError: import fake_py2deb as py2deb +import constants -__appname__ = "quicknote" +__appname__ = constants.__app_name__ __description__ = "Simple note taking application in a similar vein as PalmOS Memos" __author__ = "Christoph Wurstle" __email__ = "n800@axique.net" -__version__ = "0.7.7" +__version__ = constants.__version__ __build__ = 0 __changelog__ = ''' +0.7.8 + 0.7.7 - * Slight modification to note history dialog to make each note more distinguishable + * 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 0.7.6 * Line-wrap @@ -86,7 +93,7 @@ if __name__ == "__main__": p.arch = "all" p.urgency = "low" p.distribution = "chinook diablo" - p.repository = "extras-devel" + p.repository = "extras" p.changelog = __changelog__ p.postinstall = __postinstall__ p.icon = "26x26-quicknote.png"