From 5588ad9250aebf58b233797df07eb1a6e6228a02 Mon Sep 17 00:00:00 2001 From: James Kerrane Date: Sat, 11 Mar 2023 00:21:15 -0700 Subject: [PATCH 1/2] Updates GUI text for new Homebrew version --- kindlecomicconverter/KCC_gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index b45b6ee..9a18681 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -788,7 +788,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow): if sys.platform.startswith('win'): self.addMessage('Download it and place EXE in KCC directory.', 'error') elif sys.platform.startswith('darwin'): - self.addMessage('Install it using Brew.', 'error') + self.addMessage('Install it using Homebrew.', 'error') else: self.addMessage('Download it and place executable in /usr/local/bin directory.', 'error') self.needClean = True @@ -899,7 +899,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow): if sys.platform.startswith('win'): self.addMessage('Download it and place EXE in KCC directory.', 'error') elif sys.platform.startswith('darwin'): - self.addMessage('Install it using Brew: brew cask install kindle-c' + self.addMessage('Install it using Homebrew: brew install --cask kindle-c' 'omic-creator', 'error') else: self.addMessage('Download it and place executable in /usr/local/bin directory.', 'error') From dfd15ab572fb4044f0db06455226d5c6c7325c73 Mon Sep 17 00:00:00 2001 From: darodi <4682830+darodi@users.noreply.github.com> Date: Tue, 28 Mar 2023 00:45:07 +0200 Subject: [PATCH 2/2] Updates GUI text for new Homebrew version --- kindlecomicconverter/KCC_gui.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index 9a18681..affeaef 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -899,8 +899,9 @@ class KCCGUI(KCC_ui.Ui_mainWindow): if sys.platform.startswith('win'): self.addMessage('Download it and place EXE in KCC directory.', 'error') elif sys.platform.startswith('darwin'): - self.addMessage('Install it using Homebrew: brew install --cask kindle-c' - 'omic-creator', 'error') + self.addMessage('Install it using Homebrew: ' + 'brew install --cask kindle-comic-creator or ' + 'brew install --cask kindle-previewer', 'error') else: self.addMessage('Download it and place executable in /usr/local/bin directory.', 'error')