Sat, 28 Jul 2018 19:04:08 +0200
PluginCxFreeze: modified the check for a defined project main script to make it more robust.
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginCxFreeze.py | file | annotate | diff | comparison | revisions | |
PluginCxFreeze.zip | file | annotate | diff | comparison | revisions |
--- a/ChangeLog Sun Apr 22 14:29:08 2018 +0200 +++ b/ChangeLog Sat Jul 28 19:04:08 2018 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 6.0.11: +- bug fixes + Version 6.0.10: - added a separator to the project packagers menu
--- a/PluginCxFreeze.py Sun Apr 22 14:29:08 2018 +0200 +++ b/PluginCxFreeze.py Sat Jul 28 19:04:08 2018 +0200 @@ -26,7 +26,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "6.0.10" +version = "6.0.11" className = "CxFreezePlugin" packageName = "CxFreeze" shortDescription = "Show the CxFreeze dialogs." @@ -342,7 +342,7 @@ Private slot to handle the cxfreeze execution. """ project = e5App().getObject("Project") - if project.getMainScript() == "": + if not project.getMainScript(): # no main script defined E5MessageBox.critical( self.__ui,