From aa7c0ffc078675eb971d31b2a19b369619d412d1 Mon Sep 17 00:00:00 2001 From: Sithis Date: Thu, 7 Dec 2017 13:39:47 +0000 Subject: [PATCH] CRYPTER 2.35 - Added button to open the containing folder where the Crypter binary was produced - Added label to show the configuration file, if any, that is currently being worked from - Added some button tooltips --- Crypter/Main.py | 2 +- build/ExeBuilder/Base.py | 2 +- build/ExeBuilder/__init__.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Crypter/Main.py b/Crypter/Main.py index f6c1807..79b04e1 100644 --- a/Crypter/Main.py +++ b/Crypter/Main.py @@ -1,7 +1,7 @@ ''' @summary: Crypter: Ransomware written entirely in python. @author: MLS -@version: 2.31 +@version: 2.35 ''' # Import libs diff --git a/build/ExeBuilder/Base.py b/build/ExeBuilder/Base.py index 54c177b..3393155 100644 --- a/build/ExeBuilder/Base.py +++ b/build/ExeBuilder/Base.py @@ -10,7 +10,7 @@ ## VERSION MAJ_VERSION = "2" -MIN_VERSION = "31" +MIN_VERSION = "35" # TITLE TITLE = "Crypter Builder v%s.%s" % (MAJ_VERSION, MIN_VERSION) diff --git a/build/ExeBuilder/__init__.py b/build/ExeBuilder/__init__.py index 504ad13..6ddd742 100644 --- a/build/ExeBuilder/__init__.py +++ b/build/ExeBuilder/__init__.py @@ -1,12 +1,12 @@ ''' @summary: Crypter ExeBuilder(Package): ExeBuilder with GUI for building Crypter ransomware @author: MLS -@version: 2.31 +@version: 2.35 ''' # ABOUT __author__ = "MLS" -__version__ = "2.31" +__version__ = "2.35" __summary__ = "Provides a GUI for building the Crypter ransomware" # Import package modules