Fri, 25 Nov 2016 19:54:25 +0100
Fixed issues caused by using the pdata structure of the Project class directly.
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginCxFreeze.py | file | annotate | diff | comparison | revisions | |
PluginCxFreeze.zip | file | annotate | diff | comparison | revisions |
--- a/ChangeLog Tue Jul 12 17:29:49 2016 +0200 +++ b/ChangeLog Fri Nov 25 19:54:25 2016 +0100 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 6.0.5: +- bug fixes + Version 6.0.4: - bug fixes
--- a/PluginCxFreeze.py Tue Jul 12 17:29:49 2016 +0200 +++ b/PluginCxFreeze.py Fri Nov 25 19:54:25 2016 +0100 @@ -26,7 +26,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "6.0.4" +version = "6.0.5" className = "CxFreezePlugin" packageName = "CxFreeze" shortDescription = "Show the CxFreeze dialogs." @@ -334,7 +334,7 @@ Private slot to handle the cxfreeze execution. """ project = e5App().getObject("Project") - if len(project.pdata["MAINSCRIPT"]) == 0: + if project.getMainScript() == "": # no main script defined E5MessageBox.critical( self.__ui, @@ -371,6 +371,6 @@ dia = CxfreezeExecDialog("cxfreeze") dia.show() res = dia.start(args, parms, project.ppath, - project.pdata["MAINSCRIPT"][0]) + project.getMainScript()) if res: dia.exec_()