Mon, 24 Oct 2022 16:45:54 +0200
Adapted the import statements to the new structure.
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginPySide2PyQt.py | file | annotate | diff | comparison | revisions | |
PluginPySide2PyQt.zip | file | annotate | diff | comparison | revisions |
--- a/ChangeLog Wed Sep 21 10:52:53 2022 +0200 +++ b/ChangeLog Mon Oct 24 16:45:54 2022 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 10.1.0 +- adapted the import statements to the new structure + Version 10.0.0: - first release of the eric7 variant
--- a/PluginPySide2PyQt.py Wed Sep 21 10:52:53 2022 +0200 +++ b/PluginPySide2PyQt.py Mon Oct 24 16:45:54 2022 +0200 @@ -13,14 +13,14 @@ from PyQt6.QtCore import QObject, QTranslator from PyQt6.QtWidgets import QMenu -from EricWidgets.EricApplication import ericApp +from eric7.EricWidgets.EricApplication import ericApp # Start-Of-Header name = "PySide to PyQt (and vice versa) Plug-in" author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "10.0.0" +version = "10.1.0" className = "PySide2PyQtPlugin" packageName = "PySide2PyQt" shortDescription = "Convert PySide file to PyQt and vice versa"