- Removed `clipboard` backend. Enabling the `clipboard` plugin will also enable clipboard monitoring, with no need for an additional backend.
0.23.3
Added
- Added `ntfy` integration (see 219). - Support for a default `config.yaml` if one isn't specified in the default locations.
Changed
- The HTTP server dependencies are now marked as required, since the default `config.yaml` will have the HTTP backend enabled by default in order to allow the creation of a first user. - Updated Vue.js frontend dependencies to the latest version. - Removed bulma from the frontend dependencies, making the frontend much lighter and loading times much faster. - Other UI improvements.
Fixed
- More reliable cronjobs in case of DST change or any clock changes in general (see 217). - Fixed `--redis-queue` argument.
0.23.2
Added
- Support for asynchronous events over GPIO PINs. It is now possible to specify a list of `monitored_pins` in the [`gpio` plugin](https://git.platypush.tech/platypush/platypush/-/blob/master/platypush/plugins/gpio/__init__.py) configuration. A change in the value on those GPIO PINs (caused by e.g. a button, a binary sensor or a probe) will trigger a `platypush.message.event.gpio.GPIOEvent` that you can use in your automation scripts.
- Simplified script API to interact with platform variables (closes [206](https://git.platypush.tech/platypush/platypush/-/issues/206)). You can now read and write stored variables in your Platypush scripts through a much more intuitive interface compared to explicitly using the `variable` plugin explicitly:
- Fixed management of the `CN` field in the `calendar.ical` plugin.
0.22.10
Added
- Refactored the `dbus` integration. The plugin and backend have been merged into a single plugin component, and the ability to subscribe to custom signals has been added.
Fixed
- Proper support for empty payloads on the integrations that trigger a `SensorDataChangeEvent`. - Fixed possible infinite recursion on the Pushbullet integration in case of errors where the error and close handlers keep calling each other in a loop.