no multiprocessing, no subversion bump

This commit is contained in:
Kilian Valkhof 2010-04-05 15:21:54 +02:00
parent 8e781f5409
commit 348f97fabc
4 changed files with 11 additions and 6 deletions

4
debian/changelog vendored
View file

@ -1,6 +1,6 @@
trimage (1.1.0b-0ubuntu1) jaunty; urgency=low trimage (1.0.1b-0ubuntu1) jaunty; urgency=low
* use multiprocessing for images * use a threadpool for images
* more robust file handling * more robust file handling
* re-adding images now results in recompressing them * re-adding images now results in recompressing them
* compressing message now shows filename * compressing message now shows filename

View file

@ -3,7 +3,7 @@
from distutils.core import setup from distutils.core import setup
setup(name = "trimage", setup(name = "trimage",
version = "1.1.0b", version = "1.0.1b",
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.1.0b" VERSION = "1.0.1b"
class StartQT4(QMainWindow): class StartQT4(QMainWindow):

View file

@ -69,7 +69,7 @@
<body> <body>
<div id="wrap"> <div id="wrap">
<h1><img src="trimage-icon.png" alt=""> Trimage image compressor &ndash; 1.1.0b (beta)</h1> <h1><img src="trimage-icon.png" alt=""> Trimage image compressor &ndash; 1.0.1b (beta)</h1>
<span class="subtitle">A cross-platform tool for losslessly optimizing PNG and JPG files.</span> <span class="subtitle">A cross-platform tool for losslessly optimizing PNG and JPG files.</span>
<p class="tri">Trimage is a cross-platform GUI and command-line interface to optimize image <p class="tri">Trimage is a cross-platform GUI and command-line interface to optimize image
files via <a href="http://optipng.sourceforge.net/">optipng</a>, files via <a href="http://optipng.sourceforge.net/">optipng</a>,
@ -165,12 +165,17 @@
</div> </div>
<h2>Planned features</h2> <h2>Planned features</h2>
<p>Version 1.1.0 final:</p> <p>Version 1.0.0 final:</p>
<ul> <ul>
<li>Expand command line options</li> <li>Expand command line options</li>
<li>Make sure a compressed file is always smaller than the original one, or don't compress</li> <li>Make sure a compressed file is always smaller than the original one, or don't compress</li>
<li>General refactoring</li> <li>General refactoring</li>
</ul> </ul>
<p>Version 1.1.0 final:</p>
<ul>
<li>Use multiprocessing</li>
</ul>
<p>Beyond that</p> <p>Beyond that</p>
<ul> <ul>
<li>Deletion of rows in the table view</li> <li>Deletion of rows in the table view</li>