fix: patcher.py properly disable crash reporters.

fix: revert_patch now works correctly.
It was because of me forgetting to merge the game data name with the game directory
I hope my crash log wasn't uploaded to mHY since I blocked their hosts...
This commit is contained in:
2022-06-26 01:53:37 +07:00
parent d4773bc38d
commit 23980276ee
2 changed files with 14 additions and 12 deletions

View File

@ -9,7 +9,7 @@ README = (HERE / "README.md").read_text()
setup(
name='worthless',
version='2.0.1',
version='2.1.0',
packages=['worthless', 'worthless.classes', 'worthless.classes.launcher', 'worthless.classes.installer'],
url='https://git.froggi.es/tretrauit/worthless-launcher',
license='MIT License',
@ -23,5 +23,5 @@ setup(
"Programming Language :: Python :: 3"
],
include_package_data=True,
install_requires=["aiohttp", "appdirs", "aiopath", "aiofiles"]
install_requires=["aiohttp", "appdirs", "aiopath"]
)