From 0d9593e14c3de985e314b0bb485a30e0a8eead4d Mon Sep 17 00:00:00 2001 From: Salad Dais Date: Sat, 8 May 2021 01:44:13 +0000 Subject: [PATCH] v0.4.0 --- README.md | 3 +++ setup.py | 2 +- setup_cxfreeze.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9010bac..8bda70f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/setup.py b/setup.py index f47b464..67f0298 100644 --- a/setup.py +++ b/setup.py @@ -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() diff --git a/setup_cxfreeze.py b/setup_cxfreeze.py index f73544d..65acedb 100644 --- a/setup_cxfreeze.py +++ b/setup_cxfreeze.py @@ -111,7 +111,7 @@ executables = [ setup( name="hippolyzer_gui", - version="0.3.2", + version="0.4.0", description="Hippolyzer GUI", options=options, executables=executables,