Thu, 30 Dec 2021 13:58:08 +0100
Updated version info to indicate relation to eric7.
diff -r 2d49cd593939 -r d9cd58b1e0c8 ChangeLog --- a/ChangeLog Thu Dec 30 11:20:09 2021 +0100 +++ b/ChangeLog Thu Dec 30 13:58:08 2021 +0100 @@ -1,6 +1,6 @@ ChangeLog --------- -Version 1.0.0: +Version 10.0.0: - first release of the eric7 variant ************************************************************
diff -r 2d49cd593939 -r d9cd58b1e0c8 PluginWizardDataUriEncoder.py --- a/PluginWizardDataUriEncoder.py Thu Dec 30 11:20:09 2021 +0100 +++ b/PluginWizardDataUriEncoder.py Thu Dec 30 13:58:08 2021 +0100 @@ -21,7 +21,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "1.0.0" +version = "10.0.0" className = "WizardDataUriEncoderPlugin" packageName = "WizardDataUriEncoder" shortDescription = "Wizard for the creation of code for a base64 data URI."
diff -r 2d49cd593939 -r d9cd58b1e0c8 PluginWizardDataUriEncoder.zip Binary file PluginWizardDataUriEncoder.zip has changed
diff -r 2d49cd593939 -r d9cd58b1e0c8 WizardDataUriEncoder/DataUriEncoderWizardDialog.py --- a/WizardDataUriEncoder/DataUriEncoderWizardDialog.py Thu Dec 30 11:20:09 2021 +0100 +++ b/WizardDataUriEncoder/DataUriEncoderWizardDialog.py Thu Dec 30 13:58:08 2021 +0100 @@ -59,6 +59,7 @@ "QML": "Image {{ source: {0} }} " } + class DataUriEncoderWizardDialog(QDialog, Ui_DataUriEncoderWizardDialog): """ Class implementing the base64 data URI encoder wizard dialog. @@ -207,9 +208,9 @@ @return entered mime type @rtype str """ - mimetypesList = [""] + list(sorted( + mimetypesList = [""] + sorted( set(mimetypes.types_map.values()).union( - set(mimetypes.common_types.values())))) + set(mimetypes.common_types.values()))) try: index = mimetypesList.index("application/octet-stream") except ValueError:
diff -r 2d49cd593939 -r d9cd58b1e0c8 WizardDataUriEncoder/Documentation/source/Plugin_Wizard_DataUriEncoder.PluginWizardDataUriEncoder.html --- a/WizardDataUriEncoder/Documentation/source/Plugin_Wizard_DataUriEncoder.PluginWizardDataUriEncoder.html Thu Dec 30 11:20:09 2021 +0100 +++ b/WizardDataUriEncoder/Documentation/source/Plugin_Wizard_DataUriEncoder.PluginWizardDataUriEncoder.html Thu Dec 30 13:58:08 2021 +0100 @@ -2,21 +2,7 @@ <html><head> <title>Plugin_Wizard_DataUriEncoder.PluginWizardDataUriEncoder</title> <meta charset="UTF-8"> -<style> -body { - background: #EDECE6; - margin: 0em 1em 10em 1em; - color: black; -} - -h1 { color: white; background: #85774A; } -h2 { color: white; background: #85774A; } -h3 { color: white; background: #9D936E; } -h4 { color: white; background: #9D936E; } - -a { color: #BA6D36; } - -</style> +<link rel="stylesheet" href="styles.css"> </head> <body> <a NAME="top" ID="top"></a>
diff -r 2d49cd593939 -r d9cd58b1e0c8 WizardDataUriEncoder/Documentation/source/Plugin_Wizard_DataUriEncoder.WizardDataUriEncoder.DataUriEncoderWizardDialog.html --- a/WizardDataUriEncoder/Documentation/source/Plugin_Wizard_DataUriEncoder.WizardDataUriEncoder.DataUriEncoderWizardDialog.html Thu Dec 30 11:20:09 2021 +0100 +++ b/WizardDataUriEncoder/Documentation/source/Plugin_Wizard_DataUriEncoder.WizardDataUriEncoder.DataUriEncoderWizardDialog.html Thu Dec 30 13:58:08 2021 +0100 @@ -2,21 +2,7 @@ <html><head> <title>Plugin_Wizard_DataUriEncoder.WizardDataUriEncoder.DataUriEncoderWizardDialog</title> <meta charset="UTF-8"> -<style> -body { - background: #EDECE6; - margin: 0em 1em 10em 1em; - color: black; -} - -h1 { color: white; background: #85774A; } -h2 { color: white; background: #85774A; } -h3 { color: white; background: #9D936E; } -h4 { color: white; background: #9D936E; } - -a { color: #BA6D36; } - -</style> +<link rel="stylesheet" href="styles.css"> </head> <body> <a NAME="top" ID="top"></a>
diff -r 2d49cd593939 -r d9cd58b1e0c8 WizardDataUriEncoder/Documentation/source/index-Plugin_Wizard_DataUriEncoder.WizardDataUriEncoder.html --- a/WizardDataUriEncoder/Documentation/source/index-Plugin_Wizard_DataUriEncoder.WizardDataUriEncoder.html Thu Dec 30 11:20:09 2021 +0100 +++ b/WizardDataUriEncoder/Documentation/source/index-Plugin_Wizard_DataUriEncoder.WizardDataUriEncoder.html Thu Dec 30 13:58:08 2021 +0100 @@ -2,21 +2,7 @@ <html><head> <title>Plugin_Wizard_DataUriEncoder.WizardDataUriEncoder</title> <meta charset="UTF-8"> -<style> -body { - background: #EDECE6; - margin: 0em 1em 10em 1em; - color: black; -} - -h1 { color: white; background: #85774A; } -h2 { color: white; background: #85774A; } -h3 { color: white; background: #9D936E; } -h4 { color: white; background: #9D936E; } - -a { color: #BA6D36; } - -</style> +<link rel="stylesheet" href="styles.css"> </head> <body> <h1>Plugin_Wizard_DataUriEncoder.WizardDataUriEncoder</h1>
diff -r 2d49cd593939 -r d9cd58b1e0c8 WizardDataUriEncoder/Documentation/source/index-Plugin_Wizard_DataUriEncoder.html --- a/WizardDataUriEncoder/Documentation/source/index-Plugin_Wizard_DataUriEncoder.html Thu Dec 30 11:20:09 2021 +0100 +++ b/WizardDataUriEncoder/Documentation/source/index-Plugin_Wizard_DataUriEncoder.html Thu Dec 30 13:58:08 2021 +0100 @@ -2,21 +2,7 @@ <html><head> <title>Plugin_Wizard_DataUriEncoder</title> <meta charset="UTF-8"> -<style> -body { - background: #EDECE6; - margin: 0em 1em 10em 1em; - color: black; -} - -h1 { color: white; background: #85774A; } -h2 { color: white; background: #85774A; } -h3 { color: white; background: #9D936E; } -h4 { color: white; background: #9D936E; } - -a { color: #BA6D36; } - -</style> +<link rel="stylesheet" href="styles.css"> </head> <body> <h1>Plugin_Wizard_DataUriEncoder</h1>
diff -r 2d49cd593939 -r d9cd58b1e0c8 WizardDataUriEncoder/Documentation/source/index.html --- a/WizardDataUriEncoder/Documentation/source/index.html Thu Dec 30 11:20:09 2021 +0100 +++ b/WizardDataUriEncoder/Documentation/source/index.html Thu Dec 30 13:58:08 2021 +0100 @@ -2,21 +2,7 @@ <html><head> <title>Table of contents</title> <meta charset="UTF-8"> -<style> -body { - background: #EDECE6; - margin: 0em 1em 10em 1em; - color: black; -} - -h1 { color: white; background: #85774A; } -h2 { color: white; background: #85774A; } -h3 { color: white; background: #9D936E; } -h4 { color: white; background: #9D936E; } - -a { color: #BA6D36; } - -</style> +<link rel="stylesheet" href="styles.css"> </head> <body> <h1>Table of contents</h1>
diff -r 2d49cd593939 -r d9cd58b1e0c8 WizardDataUriEncoder/Documentation/source/styles.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WizardDataUriEncoder/Documentation/source/styles.css Thu Dec 30 13:58:08 2021 +0100 @@ -0,0 +1,12 @@ +body { + color: black; + background: #EDECE6; + margin: 0em 1em 10em 1em; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; }