File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
windows/DeDRM_App/DeDRM_lib Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 24
24
<key >CFBundleExecutable </key >
25
25
<string >droplet </string >
26
26
<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 >
28
28
<key >CFBundleIconFile </key >
29
29
<string >DeDRM </string >
30
30
<key >CFBundleIdentifier </key >
36
36
<key >CFBundlePackageType </key >
37
37
<string >APPL </string >
38
38
<key >CFBundleShortVersionString </key >
39
- <string >6.6.0 </string >
39
+ <string >6.6.1 </string >
40
40
<key >CFBundleSignature </key >
41
41
<string >dplt </string >
42
42
<key >LSRequiresCarbon </key >
Original file line number Diff line number Diff line change 32
32
# 6.5.4 - PDF float fix.
33
33
# 6.5.5 - Kindle for PC/Accented characters in username fix.
34
34
# 6.6.0 - Initial KFX support from TomThumb
35
+ # 6.6.1 - Standalong app fix from wzyboy
35
36
36
- __version__ = '6.6.0 '
37
+ __version__ = '6.6.1 '
37
38
38
39
import sys
39
40
import os , os .path
Original file line number Diff line number Diff line change 65
65
# 6.5.5 - Finally a fix for the Windows non-ASCII user names.
66
66
# 6.6.0 - Add kfx and kfx-zip as supported file types (also invoke this plugin if the original
67
67
# 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.
68
69
69
70
70
71
"""
71
72
Decrypt DRMed ebooks.
72
73
"""
73
74
74
75
PLUGIN_NAME = u"DeDRM"
75
- PLUGIN_VERSION_TUPLE = (6 , 6 , 0 )
76
+ PLUGIN_VERSION_TUPLE = (6 , 6 , 1 )
76
77
PLUGIN_VERSION = u"." .join ([unicode (str (x )) for x in PLUGIN_VERSION_TUPLE ])
77
78
# Include an html helpfile in the plugin's zipfile with the following name.
78
79
RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'
You can’t perform that action at this time.
0 commit comments