--- a/PluginSelectionEncloser.py Sat Dec 23 18:14:27 2023 +0100 +++ b/PluginSelectionEncloser.py Sat Oct 26 16:29:19 2024 +0200 @@ -19,21 +19,24 @@ from eric7.EricWidgets.EricApplication import ericApp # Start-Of-Header -name = "Selection Encloser Plug-in" -author = "Detlev Offenbach <detlev@die-offenbachs.de>" -autoactivate = True -deactivateable = True -version = "10.1.0" -className = "SelectionEncloserPlugin" -packageName = "SelectionEncloser" -shortDescription = "Enclose the selection with a string." -longDescription = ( - """This plug-in implements a tool to enclose the selection of""" - """ the current editor with a string. The enclosing string is""" - """ selectable via a configurable menu hierarchy.""" -) -needsRestart = False -pyqtApi = 2 +__header__ = { + "name": "Selection Encloser Plug-in", + "author": "Detlev Offenbach <detlev@die-offenbachs.de>", + "autoactivate": True, + "deactivateable": True, + "version": "10.1.1", + "className": "SelectionEncloserPlugin", + "packageName": "SelectionEncloser", + "shortDescription": "Enclose the selection with a string.", + "longDescription": ( + """This plug-in implements a tool to enclose the selection of""" + """ the current editor with a string. The enclosing string is""" + """ selectable via a configurable menu hierarchy.""" + ), + "needsRestart": False, + "hasCompiledForms": True, + "pyqtApi": 2, +} # End-Of-Header error = ""