Sun, 09 Sep 2018 17:43:35 +0200
Added some TODO comments to note some enhancement ideas.
diff -r 40582e448c4b -r a71e5b294ebf MqttMonitor/MqttConnectionOptionsDialog.py --- a/MqttMonitor/MqttConnectionOptionsDialog.py Sun Sep 09 17:32:54 2018 +0200 +++ b/MqttMonitor/MqttConnectionOptionsDialog.py Sun Sep 09 17:43:35 2018 +0200 @@ -24,7 +24,6 @@ """ Class implementing a dialog to enter MQTT connection options. """ - # TODO: add 'Clear Will' def __init__(self, client, options=None, parent=None): """ Constructor
diff -r 40582e448c4b -r a71e5b294ebf MqttMonitor/MqttConnectionProfilesDialog.py --- a/MqttMonitor/MqttConnectionProfilesDialog.py Sun Sep 09 17:32:54 2018 +0200 +++ b/MqttMonitor/MqttConnectionProfilesDialog.py Sun Sep 09 17:43:35 2018 +0200 @@ -28,7 +28,6 @@ """ Class implementing a dialog to edit the MQTT connection profiles. """ - # TODO: add 'Clear Will' def __init__(self, client, profiles, parent=None): """ Constructor
diff -r 40582e448c4b -r a71e5b294ebf MqttMonitor/MqttMonitorWidget.py --- a/MqttMonitor/MqttMonitorWidget.py Sun Sep 09 17:32:54 2018 +0200 +++ b/MqttMonitor/MqttMonitorWidget.py Sun Sep 09 17:43:35 2018 +0200 @@ -33,6 +33,18 @@ import Utilities +# TODO: change messages display to use a tree widget +# first row topic +# second row qos and message +# +# include capability to filter on topic + +# TODO: change log display to a tree widget +# two columns with log level and message +# colorize entries depending on log level + +# TODO: add log level entry to disable logging + class MqttMonitorWidget(QWidget, Ui_MqttMonitorWidget): """ Class implementing the MQTT Monitor widget.