Skip to content

Commit

Permalink
Release Data Preparation Tool 3.4.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
olivergoetze committed May 28, 2021
1 parent abe6f2b commit f5237d5
Show file tree
Hide file tree
Showing 19 changed files with 53,796 additions and 52,582 deletions.
2 changes: 2 additions & 0 deletions gui_components/get_module_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ def get_module_description(provider_module, provider_isil):
logger.debug("Beschreibung für Modul {} konnte nicht ausgelesen werden, da die dort verwendete Bibliothek '{}' nicht installiert ist.".format(module_path, e.name))
except ImportError as e:
logger.debug("Beschreibung für Modul {} konnte nicht ausgelesen werden, da das Python-Modul '{}' nicht importiert werden kann.".format(module_path, e.name))
except SyntaxError as e:
logger.debug("Beschreibung für Modul {} konnte nicht ausgelesen werden, da es Syntaxfehler enthält: {}".format(module_path, e))

return module_desc

Expand Down
14 changes: 9 additions & 5 deletions gui_components/ui_templates/provider_scripts_save_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Form implementation generated from reading ui file 'provider_scripts_save_dialog.ui'
#
# Created by: PyQt5 UI code generator 5.15.1
# Created by: PyQt5 UI code generator 5.15.2
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
Expand Down Expand Up @@ -34,15 +34,18 @@ def setupUi(self, providerScriptsSaveDialog):
self.label = QtWidgets.QLabel(self.groupBox_providerscript_set_description)
self.label.setObjectName("label")
self.gridLayout_2.addWidget(self.label, 0, 0, 1, 1)
self.plainTextEdit_providerscript_set_description = QtWidgets.QPlainTextEdit(self.groupBox_providerscript_set_description)
self.plainTextEdit_providerscript_set_description.setObjectName("plainTextEdit_providerscript_set_description")
self.gridLayout_2.addWidget(self.plainTextEdit_providerscript_set_description, 3, 0, 1, 1)
self.label_2 = QtWidgets.QLabel(self.groupBox_providerscript_set_description)
self.label_2.setObjectName("label_2")
self.gridLayout_2.addWidget(self.label_2, 2, 0, 1, 1)
self.checkBox_overwrite_current_workflow = QtWidgets.QCheckBox(self.groupBox_providerscript_set_description)
self.checkBox_overwrite_current_workflow.setObjectName("checkBox_overwrite_current_workflow")
self.gridLayout_2.addWidget(self.checkBox_overwrite_current_workflow, 4, 0, 1, 1)
self.plainTextEdit_providerscript_set_description = QtWidgets.QPlainTextEdit(self.groupBox_providerscript_set_description)
self.plainTextEdit_providerscript_set_description.setObjectName("plainTextEdit_providerscript_set_description")
self.gridLayout_2.addWidget(self.plainTextEdit_providerscript_set_description, 3, 0, 1, 1)
self.checkBox_providerscript_set_is_global = QtWidgets.QCheckBox(self.groupBox_providerscript_set_description)
self.checkBox_providerscript_set_is_global.setObjectName("checkBox_providerscript_set_is_global")
self.gridLayout_2.addWidget(self.checkBox_providerscript_set_is_global, 5, 0, 1, 1)
self.gridLayout.addWidget(self.groupBox_providerscript_set_description, 0, 0, 1, 1)

self.retranslateUi(providerScriptsSaveDialog)
Expand All @@ -56,9 +59,10 @@ def retranslateUi(self, providerScriptsSaveDialog):
self.groupBox_providerscript_set_description.setTitle(_translate("providerScriptsSaveDialog", "Angaben zum Workflow"))
self.lineEdit_providerscript_set_name.setPlaceholderText(_translate("providerScriptsSaveDialog", "Name, z.B. \"Vorprozessierung\""))
self.label.setText(_translate("providerScriptsSaveDialog", "Name: "))
self.plainTextEdit_providerscript_set_description.setPlaceholderText(_translate("providerScriptsSaveDialog", "Beschreibung (optional)"))
self.label_2.setText(_translate("providerScriptsSaveDialog", "Beschreibung: "))
self.checkBox_overwrite_current_workflow.setText(_translate("providerScriptsSaveDialog", "Aktuell ausgewählten Workflow überschreiben"))
self.plainTextEdit_providerscript_set_description.setPlaceholderText(_translate("providerScriptsSaveDialog", "Beschreibung (optional)"))
self.checkBox_providerscript_set_is_global.setText(_translate("providerScriptsSaveDialog", "Diesen Workflow für alle Provider verfügbar machen"))


if __name__ == "__main__":
Expand Down
21 changes: 14 additions & 7 deletions gui_components/ui_templates/provider_scripts_save_dialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,6 @@
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QPlainTextEdit" name="plainTextEdit_providerscript_set_description">
<property name="placeholderText">
<string>Beschreibung (optional)</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
Expand All @@ -71,6 +64,20 @@
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QPlainTextEdit" name="plainTextEdit_providerscript_set_description">
<property name="placeholderText">
<string>Beschreibung (optional)</string>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QCheckBox" name="checkBox_providerscript_set_is_global">
<property name="text">
<string>Diesen Workflow für alle Provider verfügbar machen</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
Expand Down
3 changes: 2 additions & 1 deletion gui_components/ui_templates/resources/html/thirdparty.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<script defer src="lib/fontawesome/all.js"></script>
</head>
<body>
<section class="hero is-light is-bold">
<section class="hero is-info">
<div class="hero-body">
<div class="container">
<h1 class="title">
Expand Down Expand Up @@ -69,6 +69,7 @@ <h2 class="subtitle">
<p>"Contract" von <a href="https://www.flaticon.com/authors/smashicons">Smashicons</a>, verfügbar auf <a href="https://www.flaticon.com/free-icon/contract_362056">www.flaticon.com</a></p>
<p>"List" von <a href="https://www.flaticon.com/authors/smashicons">Smashicons</a>, verfügbar auf <a href="https://www.flaticon.com/free-icon/list_138839">www.flaticon.com</a></p>
<p>"Database" von <a href="https://www.flaticon.com/authors/smashicons">Smashicons</a>, verfügbar auf <a href="https://www.flaticon.com/free-icon/database_138928">www.flaticon.com</a></p>
<p>"Pin" von <a href="https://www.flaticon.com/authors/pixel-perfect">Pixel perfect</a>, verfügbar auf <a href="https://www.flaticon.com/free-icon/pin_889647">www.flaticon.com</a> </p>
<p>Material icons von <a href="http://www.google.com">Google</a>, verfügbar auf <a href="https://material.io/icons/">www.material.io</a> (Apache 2.0)</p>
<p>Inverse Theme Wallpaper von <a href="https://github.com/yeyushengfan258">yeyushengfan258</a>, verfügbar auf <a href="https://github.com/yeyushengfan258/Inverse-dark-kde">GitHub</a> (GPL v3)</p>
</div>
Expand Down
1 change: 1 addition & 0 deletions gui_components/ui_templates/resources/resources.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<file>ddb-logo.png</file>
</qresource>
<qresource prefix="provider-scripts-dialog">
<file>workflow_global.png</file>
<file>workflow_background.png</file>
<file>delete.png</file>
<file>workflow.png</file>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f5237d5

Please sign in to comment.