10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import QObject, QTranslator |
12 from PyQt6.QtCore import QObject, QTranslator |
13 from PyQt6.QtWidgets import QDialog |
13 from PyQt6.QtWidgets import QDialog |
14 |
14 |
15 from EricWidgets.EricApplication import ericApp |
15 from eric7.EricGui.EricAction import EricAction |
16 from EricGui.EricAction import EricAction |
16 from eric7.EricWidgets import EricMessageBox |
17 from EricWidgets import EricMessageBox |
17 from eric7.EricWidgets.EricApplication import ericApp |
18 |
18 |
19 # Start-of-Header |
19 # Start-of-Header |
20 name = "Base64 Data URI Encoder Wizard Plug-in" |
20 name = "Base64 Data URI Encoder Wizard 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 = "WizardDataUriEncoderPlugin" |
25 className = "WizardDataUriEncoderPlugin" |
26 packageName = "WizardDataUriEncoder" |
26 packageName = "WizardDataUriEncoder" |
27 shortDescription = "Wizard for the creation of code for a base64 data URI." |
27 shortDescription = "Wizard for the creation of code for a base64 data URI." |
28 longDescription = ( |
28 longDescription = ( |
29 """This plug-in implements a wizard to generate code for""" |
29 """This plug-in implements a wizard to generate code for""" |