summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-12-13 20:42:12 +0100
committerGravatar Stefano <l.stickell@yahoo.it> 2013-12-16 17:06:18 +0100
commit416a8c126cc7940758963108950c8cd5bbed7add (patch)
treef15298e18f2c47df215953b899c539d7b420b3f0
parentFshareVn: fixed lifetime account detect (diff)
downloadpyload-416a8c126cc7940758963108950c8cd5bbed7add.tar.xz
Checksum: disabled by default
(cherry picked from commit 1b282b89f7cfaf5a6ce656dc4ff54529121e0b8c)
-rw-r--r--pyload/plugins/addons/Checksum.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/addons/Checksum.py b/pyload/plugins/addons/Checksum.py
index e1c827167..7f2f63e8f 100644
--- a/pyload/plugins/addons/Checksum.py
+++ b/pyload/plugins/addons/Checksum.py
@@ -54,9 +54,9 @@ def computeChecksum(local_file, algorithm):
class Checksum(Hook):
__name__ = "Checksum"
- __version__ = "0.11"
+ __version__ = "0.12"
__description__ = "Verify downloaded file size and checksum"
- __config__ = [("activated", "bool", "Activated", True),
+ __config__ = [("activated", "bool", "Activated", False),
("check_action", "fail;retry;nothing", "What to do if check fails?", "retry"),
("max_tries", "int", "Number of retries", 2),
("retry_action", "fail;nothing", "What to do if all retries fail?", "fail"),