diff -r 8d34da4deb33 -r 187406bcc8ae PluginMqttMonitor.py --- a/PluginMqttMonitor.py Thu Aug 01 11:30:02 2024 +0200 +++ b/PluginMqttMonitor.py Thu Aug 01 11:30:50 2024 +0200 @@ -35,24 +35,27 @@ from MqttMonitor.MqttProtocols import MqttProtocols # Start-Of-Header -name = "MQTT Monitor Plugin" -author = "Detlev Offenbach <detlev@die-offenbachs.de>" -autoactivate = True -deactivateable = True -version = "11.0.1" -className = "MqttMonitorPlugin" -packageName = "MqttMonitor" -shortDescription = "Plug-in implementing a tool to connect to a MQTT broker" -longDescription = ( - """Plug-in implementing a tool to connect to a MQTT broker, subscribe""" - """ to topics, present received messages and publish messages.""" - """ It displays broker statistics (the $SYS/# topic tree) and""" - """ log messages of the underlying paho-mqtt client. This tool""" - """ supports unencrypted connections (port 1883) as well as encrypted""" - """ SSL/TLS connections (port 8883).""" -) -needsRestart = False -pyqtApi = 2 +__header__ = { + "name": "MQTT Monitor Plugin", + "author": "Detlev Offenbach <detlev@die-offenbachs.de>", + "autoactivate": True, + "deactivateable": True, + "version": "11.0.1", + "className": "MqttMonitorPlugin", + "packageName": "MqttMonitor", + "shortDescription": "Plug-in implementing a tool to connect to a MQTT broker", + "longDescription": ( + "Plug-in implementing a tool to connect to a MQTT broker, subscribe" + " to topics, present received messages and publish messages." + " It displays broker statistics (the $SYS/# topic tree) and" + " log messages of the underlying paho-mqtt client. This tool" + " supports unencrypted connections (port 1883) as well as encrypted" + " SSL/TLS connections (port 8883)." + ), + "needsRestart": False, + "hasCompiledForms": True, + "pyqtApi": 2, +} # End-Of-Header error = ""