diff --git a/README.md b/README.md index 9bd7426..339f534 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ ## Downloads -- [Mangle Version 3.0.0](https://github.com/catmanjan/mangle/releases/download/3/mangle_3.zip) (2013-10-11) +- [Mangle for Windows](ftp://foosoft.net/releases/mangle/mangle_win.zip) +- [Mangle for MacOS (Old)](ftp://foosoft.net/releases/mangle/mangle_osx.zip) ## For Developers - [Python 2.7](http://www.python.org/download/releases/2.7/) @@ -8,3 +9,10 @@ - [ReportLab](https://pypi.python.org/pypi/reportlab) - [natsort](https://pypi.python.org/pypi/natsort/3.0.1) - [py2exe](http://www.py2exe.org/) (optional, for Windows distribution only) + +## Notice +I'm no longer actively maintaining this project; many of the recent changes +have been contributed by other developers. Significant contributors are: +- [Jan](https://github.com/catmanjan/) +- [Jonathan Leaders](https://github.com/jleaders/) +- [Marek Kubica](https://github.com/Leonidas-from-XIV/) diff --git a/mangle/book.py b/mangle/book.py index 38a8ba1..1bc8c28 100644 --- a/mangle/book.py +++ b/mangle/book.py @@ -266,7 +266,7 @@ class MainWindowBook(QtGui.QMainWindow): def onHelpHomepage(self): services = QtGui.QDesktopServices() - services.openUrl(QtCore.QUrl('https://github.com/catmanjan/mangle')) + services.openUrl(QtCore.QUrl('http://foosoft.net/mangle')) def onHelpAbout(self): diff --git a/mangle/image.py b/mangle/image.py index 00301a5..edf2928 100644 --- a/mangle/image.py +++ b/mangle/image.py @@ -81,7 +81,8 @@ class KindleData: 'Kindle 5': ((600, 800), Palette15b), 'Kindle DX': ((824, 1200), Palette15a), 'Kindle DXG': ((824, 1200), Palette15a), - 'Kindle Paperwhite': ((758, 1024), Palette15b) + 'Kindle Touch': ((600, 800), Palette15a), + 'Kindle Paperwhite': ((758, 1024), Palette15b) # resolution given in manual, see http://kindle.s3.amazonaws.com/Kindle_Paperwhite_Users_Guide.pdf } diff --git a/mangle/ui/about.ui b/mangle/ui/about.ui index f89c313..104b3de 100644 --- a/mangle/ui/about.ui +++ b/mangle/ui/about.ui @@ -51,7 +51,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:14pt;">Mangle</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans';">Version 3</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans';"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans';">Manga processor for the Kindle e-book reader. Please see </span><span style=" font-family:'Sans'; font-style:italic;">license.txt</span><span style=" font-family:'Sans';"> for licensing information. Visit the homepage at </span><a href="https://github.com/catmanjan/mangle"><span style=" font-family:'Sans'; text-decoration: underline; color:#0000ff;">https://github.com/catmanjan/mangle</span></a><span style=" font-family:'Sans';">.</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans';">Manga processor for the Kindle e-book reader. Please see </span><span style=" font-family:'Sans'; font-style:italic;">license.txt</span><span style=" font-family:'Sans';"> for licensing information. Visit the homepage at </span><a href="http://foosoft.net/mangle"><span style=" font-family:'Sans'; text-decoration: underline; color:#0000ff;">http://foosoft.net/mangle/</span></a><span style=" font-family:'Sans';">.</span></p></body></html> true diff --git a/mangle/ui/options.ui b/mangle/ui/options.ui index f07b4a9..1c903ae 100644 --- a/mangle/ui/options.ui +++ b/mangle/ui/options.ui @@ -91,6 +91,11 @@ Kindle DXG + + + Kindle Touch + + Kindle Paperwhite diff --git a/setup.py b/setup.py index 7d42ed4..701ca74 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,7 @@ from distutils.core import setup +import py2exe import sys