]> xmof Git - DeDRM.git/commitdiff
Update version number to 6.5.0
authorApprentice Harper <apprenticeharper@gmail.com>
Fri, 5 Aug 2016 16:34:52 +0000 (17:34 +0100)
committerApprentice Harper <apprenticeharper@gmail.com>
Fri, 5 Aug 2016 16:34:52 +0000 (17:34 +0100)
DeDRM_Macintosh_Application/DeDRM.app/Contents/Info.plist
DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/__init__.py
DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/DeDRM_App.pyw
DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/__init__.py
DeDRM_calibre_plugin/DeDRM_plugin/__init__.py
ReadMe_First.txt

index 0ebc6cdc46b5b0492b108bda7f43e9a91c67da9b..a507eb9a9d82246d0dc54e73cb76af085c6404b8 100644 (file)
@@ -24,7 +24,7 @@
        <key>CFBundleExecutable</key>
        <string>droplet</string>
        <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>
        <string>DeDRM</string>
        <key>CFBundleIdentifier</key>
@@ -36,7 +36,7 @@
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleShortVersionString</key>
-       <string>6.4.4</string>
+       <string>6.5.0</string>
        <key>CFBundleSignature</key>
        <string>dplt</string>
        <key>LSRequiresCarbon</key>
index cde2673acb9cef6cfb4e0611b738db8375af194b..dd3da8817a4aaadbbb338ea6ba9247befe26bbee 100644 (file)
@@ -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.3 - Fix for error that only appears when not in debug mode
 #           Also includes fix for Macs with bonded ethernet ports
-#   6.4.4 - Fix for some more 'new' tags in Topaz ebooks.
-#           Also fix an error in wineutils.py
+#   6.5.0 - Big update to Macintosh app
+#           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_VERSION_TUPLE = (6, 4, 4)
+PLUGIN_VERSION_TUPLE = (6, 5, 0)
 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.
 RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'
index 18c9da30bcb83637afb4d9d9fe3307987e12819f..50584764f947a519d932b07e0a93d0e3982a1925 100644 (file)
@@ -25,9 +25,9 @@
 #   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.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 os, os.path
index cde2673acb9cef6cfb4e0611b738db8375af194b..dd3da8817a4aaadbbb338ea6ba9247befe26bbee 100644 (file)
@@ -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.3 - Fix for error that only appears when not in debug mode
 #           Also includes fix for Macs with bonded ethernet ports
-#   6.4.4 - Fix for some more 'new' tags in Topaz ebooks.
-#           Also fix an error in wineutils.py
+#   6.5.0 - Big update to Macintosh app
+#           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_VERSION_TUPLE = (6, 4, 4)
+PLUGIN_VERSION_TUPLE = (6, 5, 0)
 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.
 RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'
index cde2673acb9cef6cfb4e0611b738db8375af194b..dd3da8817a4aaadbbb338ea6ba9247befe26bbee 100644 (file)
@@ -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.3 - Fix for error that only appears when not in debug mode
 #           Also includes fix for Macs with bonded ethernet ports
-#   6.4.4 - Fix for some more 'new' tags in Topaz ebooks.
-#           Also fix an error in wineutils.py
+#   6.5.0 - Big update to Macintosh app
+#           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_VERSION_TUPLE = (6, 4, 4)
+PLUGIN_VERSION_TUPLE = (6, 5, 0)
 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.
 RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'
index ecd65118b22ed5c98716f4e95eb99fcab39fed19..0b9f7a72e842cf0d58d5b5d2a1168d38d86339d3 100644 (file)
@@ -1,7 +1,7 @@
 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: