This commit is contained in:
Deniz Şafak
2025-07-11 11:06:12 +03:00
parent 33361275fe
commit efe0c48877
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# v1.1.0 (pre-release) # v1.1.0
- Added queue system for processing multiple items, allowing users to add multiple files and process them in a queue, mentioned by @jborza in #30 (Special thanks to @jborza for implementing this feature in PR #35) - Added queue system for processing multiple items, allowing users to add multiple files and process them in a queue, mentioned by @jborza in #30 (Special thanks to @jborza for implementing this feature in PR #35)
- Added a feature that allows selecting multiple items in book handler (in right click menu) by @jborza in #31, that fixes #28 - Added a feature that allows selecting multiple items in book handler (in right click menu) by @jborza in #31, that fixes #28
- Added dark theme support, allowing users to switch between light and dark themes in the settings. - Added dark theme support, allowing users to switch between light and dark themes in the settings.
+2 -2
View File
@@ -1777,7 +1777,7 @@ class abogen(QWidget):
# Build HTML summary for better styling # Build HTML summary for better styling
summary_html = "<html><body>" summary_html = "<html><body>"
summary_html += ( summary_html += (
f"<h2 style='color:{COLORS['LIGHT_BG']};'>Queue completed</h2>" f"<h2 style='color:{COLORS['LIGHT_BG']};'>Queue finished</h2>"
f"Processed {len(self.queued_items)} items:<br><br>" f"Processed {len(self.queued_items)} items:<br><br>"
) )
@@ -1800,7 +1800,7 @@ class abogen(QWidget):
dialog = QDialog(self) dialog = QDialog(self)
dialog.setWindowTitle("Queue Summary") dialog.setWindowTitle("Queue Summary")
dialog.resize(600, 500) # Make window resizable and larger dialog.resize(550, 650) # Make window resizable and larger
layout = QVBoxLayout(dialog) layout = QVBoxLayout(dialog)
text_edit = QTextEdit(dialog) text_edit = QTextEdit(dialog)