bug fixes release-1.1.2

Sun, 20 Jan 2019 16:08:38 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 20 Jan 2019 16:08:38 +0100
changeset 64
9d714a6cdfaf
parent 63
1004a9b850a9
child 65
1ab66b28c1e6

bug fixes

ChangeLog file | annotate | diff | comparison | revisions
MqttMonitor/MqttClient.py file | annotate | diff | comparison | revisions
MqttMonitor/MqttMonitorWidget.py file | annotate | diff | comparison | revisions
PluginMqttMonitor.py file | annotate | diff | comparison | revisions
PluginMqttMonitor.zip file | annotate | diff | comparison | revisions
diff -r 1004a9b850a9 -r 9d714a6cdfaf ChangeLog
--- a/ChangeLog	Thu Jan 10 14:21:01 2019 +0100
+++ b/ChangeLog	Sun Jan 20 16:08:38 2019 +0100
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 1.1.2
+- bug fixes
+
 Version 1.1.1
 - bug fixes
 
diff -r 1004a9b850a9 -r 9d714a6cdfaf MqttMonitor/MqttClient.py
--- a/MqttMonitor/MqttClient.py	Thu Jan 10 14:21:01 2019 +0100
+++ b/MqttMonitor/MqttClient.py	Sun Jan 20 16:08:38 2019 +0100
@@ -8,6 +8,10 @@
 """
 
 from __future__ import unicode_literals
+try:
+    str = unicode       # __IGNORE_EXCEPTION__
+except NameError:
+    pass
 
 from PyQt5.QtCore import pyqtSignal, pyqtSlot, QObject, QCoreApplication, \
     QTimer
diff -r 1004a9b850a9 -r 9d714a6cdfaf MqttMonitor/MqttMonitorWidget.py
--- a/MqttMonitor/MqttMonitorWidget.py	Thu Jan 10 14:21:01 2019 +0100
+++ b/MqttMonitor/MqttMonitorWidget.py	Sun Jan 20 16:08:38 2019 +0100
@@ -8,7 +8,6 @@
 """
 
 from __future__ import unicode_literals
-
 try:
     str = unicode       # __IGNORE_EXCEPTION__
 except NameError:
diff -r 1004a9b850a9 -r 9d714a6cdfaf PluginMqttMonitor.py
--- a/PluginMqttMonitor.py	Thu Jan 10 14:21:01 2019 +0100
+++ b/PluginMqttMonitor.py	Sun Jan 20 16:08:38 2019 +0100
@@ -26,7 +26,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "1.1.1"
+version = "1.1.2"
 className = "MqttMonitorPlugin"
 packageName = "MqttMonitor"
 shortDescription = "Plug-in implementing a tool to connect to a MQTT broker"
diff -r 1004a9b850a9 -r 9d714a6cdfaf PluginMqttMonitor.zip
Binary file PluginMqttMonitor.zip has changed

eric ide

mercurial