Update version number to 6.5.0
This commit is contained in:
parent
4d7556e919
commit
908ebc5c58
|
@ -24,7 +24,7 @@
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
<string>droplet</string>
|
<string>droplet</string>
|
||||||
<key>CFBundleGetInfoString</key>
|
<key>CFBundleGetInfoString</key>
|
||||||
<string>DeDRM AppleScript 6.4.4 Written 2010–2016 by Apprentice Alf et al.</string>
|
<string>DeDRM AppleScript 6.5.0 Written 2010–2016 by Apprentice Alf et al.</string>
|
||||||
<key>CFBundleIconFile</key>
|
<key>CFBundleIconFile</key>
|
||||||
<string>DeDRM</string>
|
<string>DeDRM</string>
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>6.4.4</string>
|
<string>6.5.0</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>dplt</string>
|
<string>dplt</string>
|
||||||
<key>LSRequiresCarbon</key>
|
<key>LSRequiresCarbon</key>
|
||||||
|
|
|
@ -51,8 +51,9 @@ __docformat__ = 'restructuredtext en'
|
||||||
# 6.4.2 - Fix for more new tags in Topaz ebooks and very small Topaz ebooks
|
# 6.4.2 - Fix for more new tags in Topaz ebooks and very small Topaz ebooks
|
||||||
# 6.4.3 - Fix for error that only appears when not in debug mode
|
# 6.4.3 - Fix for error that only appears when not in debug mode
|
||||||
# Also includes fix for Macs with bonded ethernet ports
|
# Also includes fix for Macs with bonded ethernet ports
|
||||||
# 6.4.4 - Fix for some more 'new' tags in Topaz ebooks.
|
# 6.5.0 - Big update to Macintosh app
|
||||||
# Also fix an error in wineutils.py
|
# Fix for some more 'new' tags in Topaz ebooks.
|
||||||
|
# Fix an error in wineutils.py
|
||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -60,7 +61,7 @@ Decrypt DRMed ebooks.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
PLUGIN_NAME = u"DeDRM"
|
PLUGIN_NAME = u"DeDRM"
|
||||||
PLUGIN_VERSION_TUPLE = (6, 4, 4)
|
PLUGIN_VERSION_TUPLE = (6, 5, 0)
|
||||||
PLUGIN_VERSION = u".".join([unicode(str(x)) for x in PLUGIN_VERSION_TUPLE])
|
PLUGIN_VERSION = u".".join([unicode(str(x)) for x in PLUGIN_VERSION_TUPLE])
|
||||||
# Include an html helpfile in the plugin's zipfile with the following name.
|
# Include an html helpfile in the plugin's zipfile with the following name.
|
||||||
RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'
|
RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'
|
||||||
|
|
|
@ -25,9 +25,9 @@
|
||||||
# 6.4.1 - Fix for new tags in Topaz ebooks
|
# 6.4.1 - Fix for new tags in Topaz ebooks
|
||||||
# 6.4.2 - Fix for new tags in Topaz ebooks, and very small Topaz ebooks
|
# 6.4.2 - Fix for new tags in Topaz ebooks, and very small Topaz ebooks
|
||||||
# 6.4.3 - Version bump to match plugin & Mac app
|
# 6.4.3 - Version bump to match plugin & Mac app
|
||||||
# 6.4.4 - Fix for some new tags in Topaz ebooks
|
# 6.5.0 - Fix for some new tags in Topaz ebooks
|
||||||
|
|
||||||
__version__ = '6.4.4'
|
__version__ = '6.5.0'
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os, os.path
|
import os, os.path
|
||||||
|
|
|
@ -51,8 +51,9 @@ __docformat__ = 'restructuredtext en'
|
||||||
# 6.4.2 - Fix for more new tags in Topaz ebooks and very small Topaz ebooks
|
# 6.4.2 - Fix for more new tags in Topaz ebooks and very small Topaz ebooks
|
||||||
# 6.4.3 - Fix for error that only appears when not in debug mode
|
# 6.4.3 - Fix for error that only appears when not in debug mode
|
||||||
# Also includes fix for Macs with bonded ethernet ports
|
# Also includes fix for Macs with bonded ethernet ports
|
||||||
# 6.4.4 - Fix for some more 'new' tags in Topaz ebooks.
|
# 6.5.0 - Big update to Macintosh app
|
||||||
# Also fix an error in wineutils.py
|
# Fix for some more 'new' tags in Topaz ebooks.
|
||||||
|
# Fix an error in wineutils.py
|
||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -60,7 +61,7 @@ Decrypt DRMed ebooks.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
PLUGIN_NAME = u"DeDRM"
|
PLUGIN_NAME = u"DeDRM"
|
||||||
PLUGIN_VERSION_TUPLE = (6, 4, 4)
|
PLUGIN_VERSION_TUPLE = (6, 5, 0)
|
||||||
PLUGIN_VERSION = u".".join([unicode(str(x)) for x in PLUGIN_VERSION_TUPLE])
|
PLUGIN_VERSION = u".".join([unicode(str(x)) for x in PLUGIN_VERSION_TUPLE])
|
||||||
# Include an html helpfile in the plugin's zipfile with the following name.
|
# Include an html helpfile in the plugin's zipfile with the following name.
|
||||||
RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'
|
RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'
|
||||||
|
|
|
@ -51,8 +51,9 @@ __docformat__ = 'restructuredtext en'
|
||||||
# 6.4.2 - Fix for more new tags in Topaz ebooks and very small Topaz ebooks
|
# 6.4.2 - Fix for more new tags in Topaz ebooks and very small Topaz ebooks
|
||||||
# 6.4.3 - Fix for error that only appears when not in debug mode
|
# 6.4.3 - Fix for error that only appears when not in debug mode
|
||||||
# Also includes fix for Macs with bonded ethernet ports
|
# Also includes fix for Macs with bonded ethernet ports
|
||||||
# 6.4.4 - Fix for some more 'new' tags in Topaz ebooks.
|
# 6.5.0 - Big update to Macintosh app
|
||||||
# Also fix an error in wineutils.py
|
# Fix for some more 'new' tags in Topaz ebooks.
|
||||||
|
# Fix an error in wineutils.py
|
||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -60,7 +61,7 @@ Decrypt DRMed ebooks.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
PLUGIN_NAME = u"DeDRM"
|
PLUGIN_NAME = u"DeDRM"
|
||||||
PLUGIN_VERSION_TUPLE = (6, 4, 4)
|
PLUGIN_VERSION_TUPLE = (6, 5, 0)
|
||||||
PLUGIN_VERSION = u".".join([unicode(str(x)) for x in PLUGIN_VERSION_TUPLE])
|
PLUGIN_VERSION = u".".join([unicode(str(x)) for x in PLUGIN_VERSION_TUPLE])
|
||||||
# Include an html helpfile in the plugin's zipfile with the following name.
|
# Include an html helpfile in the plugin's zipfile with the following name.
|
||||||
RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'
|
RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Welcome to the tools!
|
Welcome to the tools!
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
This ReadMe_First.txt is meant to give users a quick overview of what is available and how to get started. This document is part of the Tools v6.4.4 archive from Apprentice Alf's Blog: http://apprenticealf.wordpress.com/
|
This ReadMe_First.txt is meant to give users a quick overview of what is available and how to get started. This document is part of the Tools v6.5.0 archive from Apprentice Alf's Blog: http://apprenticealf.wordpress.com/
|
||||||
|
|
||||||
The is archive includes tools to remove DRM from:
|
The is archive includes tools to remove DRM from:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue