20 # Start-Of-Header |
18 # Start-Of-Header |
21 name = "Camel Case Handling Plug-in" |
19 name = "Camel Case Handling Plug-in" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 autoactivate = True |
21 autoactivate = True |
24 deactivateable = True |
22 deactivateable = True |
25 version = "2.1.1" |
23 version = "3.0.0" |
26 className = "SplitMergeCamelCasePlugin" |
24 className = "SplitMergeCamelCasePlugin" |
27 packageName = "SplitMergeCamelCase" |
25 packageName = "SplitMergeCamelCase" |
28 shortDescription = "Split, merge or convert camel case text" |
26 shortDescription = "Split, merge or convert camel case text" |
29 longDescription = \ |
27 longDescription = ( |
30 """This plug-in implements a tool to split, merge or convert""" \ |
28 """This plug-in implements a tool to split, merge or convert""" |
31 """ camel case text. It works with the text of the current""" \ |
29 """ camel case text. It works with the text of the current""" |
32 """ editor. The menu entries will only be selectable, if the""" \ |
30 """ editor. The menu entries will only be selectable, if the""" |
33 """ current editor has some selected text.""" |
31 """ current editor has some selected text.""" |
|
32 ) |
34 needsRestart = False |
33 needsRestart = False |
35 pyqtApi = 2 |
34 pyqtApi = 2 |
36 python2Compatible = True |
|
37 # End-Of-Header |
35 # End-Of-Header |
38 |
36 |
39 error = "" |
37 error = "" |
40 |
38 |
41 |
39 |