12 import re |
12 import re |
13 |
13 |
14 from PyQt6.QtCore import QObject, QTranslator |
14 from PyQt6.QtCore import QObject, QTranslator |
15 from PyQt6.QtWidgets import QMenu |
15 from PyQt6.QtWidgets import QMenu |
16 |
16 |
17 from EricWidgets.EricApplication import ericApp |
17 from eric7.EricWidgets.EricApplication import ericApp |
18 |
18 |
19 # Start-Of-Header |
19 # Start-Of-Header |
20 name = "Camel Case Handling Plug-in" |
20 name = "Camel Case Handling Plug-in" |
21 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
21 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
22 autoactivate = True |
22 autoactivate = True |
23 deactivateable = True |
23 deactivateable = True |
24 version = "10.0.0" |
24 version = "10.1.0" |
25 className = "SplitMergeCamelCasePlugin" |
25 className = "SplitMergeCamelCasePlugin" |
26 packageName = "SplitMergeCamelCase" |
26 packageName = "SplitMergeCamelCase" |
27 shortDescription = "Split, merge or convert camel/snake case text" |
27 shortDescription = "Split, merge or convert camel/snake case text" |
28 longDescription = ( |
28 longDescription = ( |
29 """This plug-in implements a tool to split or merge camel case """ |
29 """This plug-in implements a tool to split or merge camel case """ |