Mention scripting in README, added example script

This commit is contained in:
2024-12-19 20:28:53 -05:00
parent 2142dbad7e
commit 4ec15d0eb3
11 changed files with 633 additions and 267 deletions

View File

@@ -323,9 +323,10 @@ class MainWindow(QMainWindow, Ui_MainWindow):
msg_box.setIcon(QMessageBox.Icon.Warning)
msg_box.setStandardButtons(QMessageBox.StandardButton.Ok)
msg_box.setDefaultButton(QMessageBox.StandardButton.Ok)
msg_box.setWindowTitle("Script Issues Occurred")
msg_box.setText("Some issues occurred while running the download script.")
msg_box.setInformativeText("Check the log for more details about what issues were encountered.")
msg_box.setWindowTitle(app.translate("MainWindow", "Script Issues Occurred"))
msg_box.setText(app.translate("MainWindow", "Some issues occurred while running the download script."))
msg_box.setInformativeText(
app.translate("MainWindow", "Check the log for more details about what issues were encountered."))
msg_box.exec()
self.log_text = ""
if result.failed_titles: