mirror of
https://github.com/onyx-and-iris/q3rcon-cli.git
synced 2026-07-29 16:54:29 +00:00
host short flag updated from -h to -H.
bump clypi dep version. patch bump.
This commit is contained in:
@@ -80,7 +80,7 @@ Usage: q3rcon-cli [OPTIONS] COMMAND
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
┏━ Connection options ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃ -h, --host <HOST> The host to connect to ┃
|
||||
┃ -H, --host <HOST> The host to connect to ┃
|
||||
┃ -p, --port <PORT> The port to connect to ┃
|
||||
┃ -P, --password <PASSWORD> The password for authentication ┃
|
||||
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
||||
|
||||
@@ -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"]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# SPDX-FileCopyrightText: 2026-present onyx-and-iris <code@onyxandiris.online>
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
__version__ = '0.4.0'
|
||||
__version__ = '0.4.1'
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user