5 |
5 |
6 """ |
6 """ |
7 Module implementing the MQTT Monitor plug-in. |
7 Module implementing the MQTT Monitor plug-in. |
8 """ |
8 """ |
9 |
9 |
|
10 import json |
10 import os |
11 import os |
11 import json |
12 |
12 |
13 from PyQt6.QtCore import QCoreApplication, QObject, Qt, QTranslator |
13 from PyQt6.QtCore import Qt, QObject, QTranslator, QCoreApplication |
|
14 from PyQt6.QtGui import QKeySequence |
14 from PyQt6.QtGui import QKeySequence |
15 |
15 |
16 from eric7 import Preferences |
16 from eric7 import Preferences |
17 from eric7.EricGui.EricAction import EricAction |
17 from eric7.EricGui.EricAction import EricAction |
18 from eric7.EricWidgets.EricApplication import ericApp |
18 from eric7.EricWidgets.EricApplication import ericApp |
27 # Start-Of-Header |
27 # Start-Of-Header |
28 name = "MQTT Monitor Plugin" |
28 name = "MQTT Monitor Plugin" |
29 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
29 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
30 autoactivate = True |
30 autoactivate = True |
31 deactivateable = True |
31 deactivateable = True |
32 version = "10.3.0" |
32 version = "10.4.0" |
33 className = "MqttMonitorPlugin" |
33 className = "MqttMonitorPlugin" |
34 packageName = "MqttMonitor" |
34 packageName = "MqttMonitor" |
35 shortDescription = "Plug-in implementing a tool to connect to a MQTT broker" |
35 shortDescription = "Plug-in implementing a tool to connect to a MQTT broker" |
36 longDescription = ( |
36 longDescription = ( |
37 """Plug-in implementing a tool to connect to a MQTT broker, subscribe""" |
37 """Plug-in implementing a tool to connect to a MQTT broker, subscribe""" |