From efe0c48877e6b92541a9f534b204685d848c625c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deniz=20=C5=9Eafak?= Date: Fri, 11 Jul 2025 11:06:12 +0300 Subject: [PATCH] v1.1.0 --- CHANGELOG.md | 2 +- abogen/gui.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ffc7f0..ff8bb2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 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. diff --git a/abogen/gui.py b/abogen/gui.py index 6ebb5f9..ff22794 100644 --- a/abogen/gui.py +++ b/abogen/gui.py @@ -1777,7 +1777,7 @@ class abogen(QWidget): # Build HTML summary for better styling summary_html = "" summary_html += ( - f"

Queue completed

" + f"

Queue finished

" f"Processed {len(self.queued_items)} items:

" ) @@ -1800,7 +1800,7 @@ class abogen(QWidget): dialog = QDialog(self) 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) text_edit = QTextEdit(dialog)