update version to 1.0.2

This commit is contained in:
Kilian Valkhof 2010-05-31 19:01:22 +02:00
parent e4a7a1a254
commit c243524eaa
4 changed files with 7 additions and 14 deletions

13
debian/changelog vendored
View file

@ -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 * save window geomity and file directory upon closing
* more robust file handling * prettier systray menu
* 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
-- Kilian Valkhof <kilian@kdesktop> Mon, 29 Mar 2010 13:08:18 +0200 -- Kilian Valkhof <kilian@kdesktop> Mon, 31 May 2010 13:08:18 +0200

View file

@ -15,8 +15,6 @@ todo app wise
- find a way to specify the version once for everywhere - find a way to specify the version once for everywhere
- notification area drag/drop widget - notification area drag/drop widget
-> probably need gtk for gnome -> probably need gtk for gnome
- save chosen directory and geometry/screen position using QSettings
-> for 1.0.2
todo else todo else
- figure out how to make mac and win versions (someone else :) <- via gui2exe - figure out how to make mac and win versions (someone else :) <- via gui2exe

View file

@ -9,7 +9,7 @@ if win:
from distutils.core import setup from distutils.core import setup
setup(name = "trimage", 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", description = "Trimage image compressor - A cross-platform tool for optimizing PNG and JPG files",
author = "Kilian Valkhof, Paul Chaplin", author = "Kilian Valkhof, Paul Chaplin",
author_email = "help@trimage.org", author_email = "help@trimage.org",

View file

@ -18,7 +18,7 @@ from multiprocessing import cpu_count
from ui import Ui_trimage from ui import Ui_trimage
VERSION = "1.0.1b2" VERSION = "1.0.2"
class StartQT4(QMainWindow): class StartQT4(QMainWindow):