Skip to content

Commit

Permalink
Merge branch 'hotfix/3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
sithis993 committed May 4, 2020
2 parents 52a4fde + 3494429 commit 3c2ddb6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Crypter/Crypter/Crypter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'''
@summary: Crypter: Ransomware written entirely in python.
@author: MLS
@version: 3.2
@author: Sithis
@version: 3.3
'''

import json
Expand Down
4 changes: 2 additions & 2 deletions CrypterBuilder/Base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

## VERSION
MAJ_VERSION = "3"
MIN_VERSION = "2"
MIN_VERSION = "3"

# TITLE
TITLE = "Crypter Builder v%s.%s" % (MAJ_VERSION, MIN_VERSION)
Expand Down Expand Up @@ -364,7 +364,7 @@
"delete_shadow_copies"
]

RUNTIME_CONFIG_PATH = os.path.join("CrypterBuilder", "Resources", "runtime.cfg")
RUNTIME_CONFIG_PATH = os.path.join(os.path.dirname(__file__), "Resources", "runtime.cfg")

# ERRORS
ERROR_INVALID_DATA = 13
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='Crypter',
version='3.2',
version='3.3',
install_requires=[
"altgraph==0.17",
"future==0.18.2",
Expand Down

0 comments on commit 3c2ddb6

Please sign in to comment.