diff --git a/debian/changelog b/debian/changelog index 53a8fc6..fbabc57 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,7 @@ -trimage (1.0.1b2-0ubuntu1) jaunty; urgency=low +trimage (1.0.2-0ubuntu1) jaunty; urgency=low - * use a threadpool for images - * more robust file handling - * re-adding images now results in recompressing them - * compressing message now shows filename - * wider array of status messages in the table - * add a notification area icon - * remove BOM + * save window geomity and file directory upon closing + * prettier systray menu - -- Kilian Valkhof Mon, 29 Mar 2010 13:08:18 +0200 + -- Kilian Valkhof Mon, 31 May 2010 13:08:18 +0200 diff --git a/resources/todo b/resources/todo index e4693af..e05e650 100644 --- a/resources/todo +++ b/resources/todo @@ -15,8 +15,6 @@ todo app wise - find a way to specify the version once for everywhere - notification area drag/drop widget -> probably need gtk for gnome -- save chosen directory and geometry/screen position using QSettings - -> for 1.0.2 todo else - figure out how to make mac and win versions (someone else :) <- via gui2exe diff --git a/setup.py b/setup.py index 7a16867..5f11ff7 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ if win: from distutils.core import setup setup(name = "trimage", - version = "1.0.1b", + version = "1.0.2", description = "Trimage image compressor - A cross-platform tool for optimizing PNG and JPG files", author = "Kilian Valkhof, Paul Chaplin", author_email = "help@trimage.org", @@ -28,7 +28,7 @@ setup(name = "trimage", #for py2exe windows=[r'src\trimage\trimage.py'], - zipfile=None, + zipfile=None, options={"py2exe":{ "optimize":2, "compressed":1, diff --git a/src/trimage/trimage.py b/src/trimage/trimage.py index 1b67723..726e8fc 100755 --- a/src/trimage/trimage.py +++ b/src/trimage/trimage.py @@ -18,7 +18,7 @@ from multiprocessing import cpu_count from ui import Ui_trimage -VERSION = "1.0.1b2" +VERSION = "1.0.2" class StartQT4(QMainWindow):