patcher: switch to Krock branch

This commit is contained in:
tretrauit 2022-09-29 12:11:32 +07:00
parent e0f3fadc9d
commit abdf19bc16
Signed by: tretrauit
GPG Key ID: CDDE1C97EE305DAF
3 changed files with 5 additions and 3 deletions

View File

@ -2,4 +2,6 @@
A worthless CLI launcher written in Python. A worthless CLI launcher written in Python.
Check out its website at https://tretrauit.gitlab.io/worthless-launcher for more information. Check out its website at https://tretrauit.gitlab.io/worthless-launcher for more information.
> The current branch will enter maintenance mode, for the latest development please check `refactor` branch

View File

@ -9,7 +9,7 @@ README = (HERE / "README.md").read_text()
setup( setup(
name='worthless', name='worthless',
version='2.2.4', version='2.2.5',
packages=['worthless', 'worthless.classes', 'worthless.classes.launcher', 'worthless.classes.installer'], packages=['worthless', 'worthless.classes', 'worthless.classes.launcher', 'worthless.classes.installer'],
url='https://git.froggi.es/tretrauit/worthless-launcher', url='https://git.froggi.es/tretrauit/worthless-launcher',
license='MIT License', license='MIT License',

View File

@ -29,7 +29,7 @@ except ImportError:
class Patcher: class Patcher:
def __init__(self, gamedir: Path | AsyncPath | str = AsyncPath.cwd(), data_dir: str | Path | AsyncPath = None, def __init__(self, gamedir: Path | AsyncPath | str = AsyncPath.cwd(), data_dir: str | Path | AsyncPath = None,
patch_url: str = None, overseas=True, patch_provider="y0soro"): patch_url: str = None, overseas=True, patch_provider="Krock"):
if isinstance(gamedir, str | Path): if isinstance(gamedir, str | Path):
gamedir = AsyncPath(gamedir) gamedir = AsyncPath(gamedir)
self._gamedir = gamedir self._gamedir = gamedir