Skip to content

Commit

Permalink
Hotfix v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Vega committed Jun 12, 2024
1 parent 94b68e7 commit 423b81a
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 1.0.2 (Jun 12, 2024)

## Hotfix
Fixed files not found error when launching the tool after update.

###

# 1.0.1 (Jun 12, 2024)

## Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center"> 🧨 MCPTool v1.0.1
<h1 align="center"> 🧨 MCPTool v1.0.2
<h3 align="center"> Pentesting tool for Minecraft </h2>
<img align="center" src="https://i.imgur.com/GqkwN7v.png" alt="MCPTool" title="MCPTool" style="max-width: 100%; height: auto;">

Expand Down
2 changes: 1 addition & 1 deletion msi.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class AppSettings:
PYTHON_SCRIPT = './src/exe.py'
UPDATER_SCRIPT = './src/updater_exe.py'
PRODUCT_NAME = 'MCPTool'
PRODUCT_VERSION = '1.0.1'
PRODUCT_VERSION = '1.0.2'
COMPANY_NAME = 'MCPTool'
PRODUCT_DESCRIPTION = 'A tool for Minecraft pentesting'
UPGRADE_CODE = '{2d2b8940-8bc9-41e6-b5d4-c4a51174c313}'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mcptool",
"version": "1.0.1",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "MCPTool"
description = "A tool for Minecraft pentesting"
version = "1.0.1"
version = "1.0.2"
readme = "README.md"
requires-python = ">=3.6"
keywords = ["minecraft", "pentesting", "tool", "security"]
Expand Down
2 changes: 1 addition & 1 deletion settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"seeker": "https://discord.com/oauth2/authorize?client_id=1087083964432404590&response_type=code&redirect_uri=https%3A%2F%2Fapi.serverseeker.net%2Flocal_redirect&scope=identify&state=MCPtool:7637",
"seekerAPI": "https://api.serverseeker.net"
},
"version": "1.0.1",
"version": "1.0.2",
"waterfallVersion": "",
"velocityVersion": ""
}
2 changes: 1 addition & 1 deletion src/mcptool/modules/utilities/constants/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .constants_utilities import ConstantsUtilities

VERSION: str = '1.0.1' # This is the version of the local tool
VERSION: str = '1.0.2' # This is the version of the local tool
PREFIX: str = ConstantsUtilities.get_prefix()
SPACES: str = ' ' * ConstantsUtilities.get_spaces()
OS_NAME: str = ConstantsUtilities.get_os_name()
Expand Down
4 changes: 4 additions & 0 deletions src/mcptool/modules/utilities/path/mcptool_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ def _get_urls(self) -> dict:
'url': f'{GITHUB_REPOSITORY}languages/en.json',
'path': os.path.abspath(os.path.join(self.get(), 'languages', 'en.json'))
},
'language_tr': {
'url': f'{GITHUB_REPOSITORY}languages/tr.json',
'path': os.path.abspath(os.path.join(self.get(), 'languages', 'tr.json'))
},
# Scripts
'bot_script': {
'url': f'{GITHUB_REPOSITORY}scripts/bot.mjs',
Expand Down

0 comments on commit 423b81a

Please sign in to comment.