diff --git a/mihomo/models/combat.py b/mihomo/models/combat.py index ba254806f..d2e0f0b34 100644 --- a/mihomo/models/combat.py +++ b/mihomo/models/combat.py @@ -92,12 +92,21 @@ class TraceTreeNode(BaseModel): Attributes: - id (`int`): The ID of the trace. - level (`int`): The level of the trace. + - max_level (`int`): The max level of the trace. - icon (`str`): The icon of the trace. + - anchor (`str`): The position of the trace tree node. + - parent (`int` | `None`): The preceding node id of trace. """ id: int """The ID of the trace""" level: int """The level of the trace""" + max_level: int + """The max level of the trace""" icon: str """The icon of the trace""" + anchor: str + """The position of the trace tree node""" + parent: int | None = None + """The preceding node id of trace""" diff --git a/pyproject.toml b/pyproject.toml index 1860f43f9..a6d4ed8f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "mihomo" -version = "1.1.5" +version = "1.1.6" authors = [ { name="KT", email="xns77477@gmail.com" }, ]