diff --git a/README.md b/README.md index 5db7455..91a2a25 100644 --- a/README.md +++ b/README.md @@ -187,6 +187,7 @@ A gateway device (that was asigned to variable 'm') has the following methods an | ------------------------------- | ------------ | ---------------- | ---------------------------------------------------------------------------------- | | "m.GetDeviceList()" | - | - | Get the device list from the Motion Gateway and update the properties listed below | | "m.Update()" | - | - | Get the status of the Motion Gateway and update the properties listed below | +| "m.Check_gateway_multicast()" | - | - | Check if multicast messages can be received with the configured multicast listener | | "m.Register_callback("1", func) | id, callback | string, function | Register a external callback function for updates of the gateway | | "m.Remove_callback("1") | id | string | Remove a external callback using its id | | "m.Clear_callbacks() | - | - | Remove all external registered callbacks for updates of the gateway | diff --git a/motionblinds/__init__.py b/motionblinds/__init__.py index 8c860e9..4f3791b 100644 --- a/motionblinds/__init__.py +++ b/motionblinds/__init__.py @@ -11,7 +11,7 @@ logging.getLogger(__name__) __title__ = "motion-blinds" -__version__ = "0.6.3" +__version__ = "0.6.4" # Import motion_blinds module from .motion_blinds import MotionGateway diff --git a/setup.py b/setup.py index 173b68f..abba44e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ README = (HERE / "README.md").read_text() setup(name='motionblinds', - version='0.6.3', + version='0.6.4', description='Python library for interfacing with Motion Blinds', long_description=README, long_description_content_type="text/markdown",