This commit is contained in:
Salad Dais
2021-05-08 01:44:13 +00:00
parent 28dfe2f1b2
commit 0d9593e14c
3 changed files with 5 additions and 2 deletions

View File

@@ -95,6 +95,9 @@ agent's session, you can do `(Meta.AgentID == None || Meta.AgentID == "d929385f-
Vectors can also be compared. This will get any ObjectUpdate variant that occurs within a certain range:
`(*ObjectUpdate*.ObjectData.*Data.Position > (110, 50, 100) && *ObjectUpdate*.ObjectData.*Data.Position < (115, 55, 105))`
If you want to compare against an enum or a flag class in defined in `templates.py`, you can just specify its name:
`ViewerEffect.Effect.Type == ViewerEffectType.EFFECT_BEAM`
### Logging
Decoded messages are displayed in the log pane, clicking one will show the request and

View File

@@ -25,7 +25,7 @@ from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
version = '0.3.2'
version = '0.4.0'
with open(path.join(here, 'README.md')) as readme_fh:
readme = readme_fh.read()

View File

@@ -111,7 +111,7 @@ executables = [
setup(
name="hippolyzer_gui",
version="0.3.2",
version="0.4.0",
description="Hippolyzer GUI",
options=options,
executables=executables,