mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-18 13:40:27 +02:00
v1.1.0
This commit is contained in:
+1
-1
@@ -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.
|
||||
|
||||
+2
-2
@@ -1777,7 +1777,7 @@ class abogen(QWidget):
|
||||
# Build HTML summary for better styling
|
||||
summary_html = "<html><body>"
|
||||
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>"
|
||||
)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user