Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit af6e479

Browse files
Update version number to 6.6.1, with wzyboy's new folder structure.
1 parent 90e822f commit af6e479

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

contrib/macos/DeDRM.app/Contents/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<key>CFBundleExecutable</key>
2525
<string>droplet</string>
2626
<key>CFBundleGetInfoString</key>
27-
<string>DeDRM AppleScript 6.6.0 Written 2010–2018 by Apprentice Alf et al.</string>
27+
<string>DeDRM AppleScript 6.6.1 Written 2010–2018 by Apprentice Alf et al.</string>
2828
<key>CFBundleIconFile</key>
2929
<string>DeDRM</string>
3030
<key>CFBundleIdentifier</key>
@@ -36,7 +36,7 @@
3636
<key>CFBundlePackageType</key>
3737
<string>APPL</string>
3838
<key>CFBundleShortVersionString</key>
39-
<string>6.6.0</string>
39+
<string>6.6.1</string>
4040
<key>CFBundleSignature</key>
4141
<string>dplt</string>
4242
<key>LSRequiresCarbon</key>

contrib/windows/DeDRM_App/DeDRM_lib/DeDRM_App.pyw

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@
3232
# 6.5.4 - PDF float fix.
3333
# 6.5.5 - Kindle for PC/Accented characters in username fix.
3434
# 6.6.0 - Initial KFX support from TomThumb
35+
# 6.6.1 - Standalong app fix from wzyboy
3536

36-
__version__ = '6.6.0'
37+
__version__ = '6.6.1'
3738

3839
import sys
3940
import os, os.path

src/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,15 @@
6565
# 6.5.5 - Finally a fix for the Windows non-ASCII user names.
6666
# 6.6.0 - Add kfx and kfx-zip as supported file types (also invoke this plugin if the original
6767
# imported format was azw8 since that may be converted to kfx)
68+
# 6.6.1 - Thanks to wzyboy for a fix for stand-alone tools, and the new folder structure.
6869

6970

7071
"""
7172
Decrypt DRMed ebooks.
7273
"""
7374

7475
PLUGIN_NAME = u"DeDRM"
75-
PLUGIN_VERSION_TUPLE = (6, 6, 0)
76+
PLUGIN_VERSION_TUPLE = (6, 6, 1)
7677
PLUGIN_VERSION = u".".join([unicode(str(x)) for x in PLUGIN_VERSION_TUPLE])
7778
# Include an html helpfile in the plugin's zipfile with the following name.
7879
RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'

0 commit comments

Comments
 (0)