mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 01:58:41 -05:00
update version to 1.0.2
This commit is contained in:
parent
e4a7a1a254
commit
c243524eaa
4 changed files with 7 additions and 14 deletions
13
debian/changelog
vendored
13
debian/changelog
vendored
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -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",
|
||||||
|
|
@ -28,7 +28,7 @@ setup(name = "trimage",
|
||||||
|
|
||||||
#for py2exe
|
#for py2exe
|
||||||
windows=[r'src\trimage\trimage.py'],
|
windows=[r'src\trimage\trimage.py'],
|
||||||
zipfile=None,
|
zipfile=None,
|
||||||
options={"py2exe":{
|
options={"py2exe":{
|
||||||
"optimize":2,
|
"optimize":2,
|
||||||
"compressed":1,
|
"compressed":1,
|
||||||
|
|
|
||||||
|
|
@ -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):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue