20 # Start-Of-Header |
20 # Start-Of-Header |
21 name = "Color String Plug-in" |
21 name = "Color String Plug-in" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 autoactivate = True |
23 autoactivate = True |
24 deactivateable = True |
24 deactivateable = True |
25 version = "0.2.0" |
25 version = "1.0.0" |
26 className = "ColorStringPlugin" |
26 className = "ColorStringPlugin" |
27 packageName = "ColorString" |
27 packageName = "ColorString" |
28 shortDescription = "Insert color as string" |
28 shortDescription = "Insert color as string" |
29 longDescription = \ |
29 longDescription = \ |
30 """This plug-in implements a tool to select a color via a""" \ |
30 """This plug-in implements a tool to select a color via a""" \ |
31 """ color selection dialog and insert it as a hex string at the""" \ |
31 """ color selection dialog and insert it as a hex string at the""" \ |
32 """ current cursor position. Selected text is used to initialize""" \ |
32 """ current cursor position. Selected text is used to initialize""" \ |
33 """ the dialog and is replaced with the new color.""" |
33 """ the dialog and is replaced with the new color.""" |
34 needsRestart = False |
34 needsRestart = False |
35 pyqtApi = 2 |
35 pyqtApi = 2 |
|
36 python2Compatible = True |
36 # End-Of-Header |
37 # End-Of-Header |
37 |
38 |
38 error = "" |
39 error = "" |
39 |
40 |
40 |
41 |