From 85481ad119d0a3946077f63e5dd02ff409edd81f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deniz=20=C5=9Eafak?= Date: Sat, 10 May 2025 00:28:15 +0300 Subject: [PATCH] Update changelog and shortcut text --- CHANGELOG.md | 2 +- abogen/gui.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b28286..74c40d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ - Added `Save in a project folder with metadata` option in the book handler, allowing users to save the converted items in a project folder with available metadata files. Useful if you want to work with the converted files in the future, issue mentioned by @Darthagnon in #15 - Added `Go to folder` button in input box, allowing users to open the folder containing the converted file. - Added `.opus` as output format for generated audio files, which is a more efficient format for audio files. -- Added `Add desktop shortcut` option to Linux version, allowing users to create a shortcut on their desktop for easy access. +- Added `Create desktop shortcut & install` option to Linux version, allowing users to create a shortcut and install - Added "Playing..." indicator for "Preview" button in the voice mixer. # v1.0.6 diff --git a/abogen/gui.py b/abogen/gui.py index f1b40f1..e386ce4 100644 --- a/abogen/gui.py +++ b/abogen/gui.py @@ -1807,7 +1807,9 @@ class abogen(QWidget): # Add shortcut to desktop (Windows or Linux) if platform.system() == "Windows" or platform.system() == "Linux": - add_shortcut_action = QAction("Create desktop shortcut", self) + # Use extended label on Linux + label = "Create desktop shortcut & install" if platform.system() == "Linux" else "Create desktop shortcut" + add_shortcut_action = QAction(label, self) add_shortcut_action.triggered.connect(self.add_shortcut_to_desktop) menu.addAction(add_shortcut_action)