diff --git a/README.md b/README.md index e84342f..6603ced 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Usage: q3rcon-cli [OPTIONS] COMMAND ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ ┏━ Connection options ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ -┃ -h, --host The host to connect to ┃ +┃ -H, --host The host to connect to ┃ ┃ -p, --port The port to connect to ┃ ┃ -P, --password The password for authentication ┃ ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ diff --git a/pyproject.toml b/pyproject.toml index 9f8c400..3b36833 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] -dependencies = ["aio-q3-rcon>=1.0.1", "clypi>=1.8.2"] +dependencies = ["aio-q3-rcon>=1.0.1", "clypi>=1.9.1"] [project.scripts] q3rcon-cli = "q3rcon_cli.cli:main" @@ -34,7 +34,7 @@ Source = "https://github.com/onyx-and-iris/q3rcon-cli" path = "src/q3rcon_cli/__about__.py" [tool.hatch.envs.default] -workspace.members = [{ path = "../aio-q3-rcon" }] +workspace.members = [{ path = "../aio-q3-rcon" }] #, { path = "../clypi" }] [tool.hatch.envs.types] extra-dependencies = ["mypy>=1.0.0"] diff --git a/src/q3rcon_cli/__about__.py b/src/q3rcon_cli/__about__.py index 41669d7..c2e37f9 100644 --- a/src/q3rcon_cli/__about__.py +++ b/src/q3rcon_cli/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2026-present onyx-and-iris # # SPDX-License-Identifier: MIT -__version__ = '0.4.0' +__version__ = '0.4.1' diff --git a/src/q3rcon_cli/cli.py b/src/q3rcon_cli/cli.py index 76ac6a0..1602577 100644 --- a/src/q3rcon_cli/cli.py +++ b/src/q3rcon_cli/cli.py @@ -13,7 +13,7 @@ class Q3rconCli(Command): subcommand: Subcommands | None = None host: str = arg( 'localhost', - short='h', + short='H', help='The host to connect to', env='Q3RCON_CLI_HOST', group='Connection',