21 # Start-of-Header |
21 # Start-of-Header |
22 name = "Base64 Data URI Encoder Wizard Plug-in" |
22 name = "Base64 Data URI Encoder Wizard Plug-in" |
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
24 autoactivate = True |
24 autoactivate = True |
25 deactivateable = True |
25 deactivateable = True |
26 version = "0.3.0" |
26 version = "1.0.0" |
27 className = "WizardDataUriEncoderPlugin" |
27 className = "WizardDataUriEncoderPlugin" |
28 packageName = "WizardDataUriEncoder" |
28 packageName = "WizardDataUriEncoder" |
29 shortDescription = "Wizard for the creation of code for a base64 data URI." |
29 shortDescription = "Wizard for the creation of code for a base64 data URI." |
30 longDescription = \ |
30 longDescription = \ |
31 """This plug-in implements a wizard to generate code for""" \ |
31 """This plug-in implements a wizard to generate code for""" \ |
32 """ base64 encoded data URIs.""" |
32 """ base64 encoded data URIs.""" |
33 needsRestart = False |
33 needsRestart = False |
34 pyqtApi = 2 |
34 pyqtApi = 2 |
|
35 python2Compatible = True |
35 # End-of-Header |
36 # End-of-Header |
36 |
37 |
37 error = "" |
38 error = "" |
38 |
39 |
39 |
40 |