From f13b412e1222cb5fc6568dfac0a7ce7ea3d1efbf Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Sun, 20 Sep 2020 21:55:26 +0200 Subject: [PATCH] Fix a few mac related issues. --- osx/Info.plist | 3 ++- .../hook-openlp.plugins.presentations.presentationplugin.py | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/osx/Info.plist b/osx/Info.plist index 6fdc63c..820e7c9 100755 --- a/osx/Info.plist +++ b/osx/Info.plist @@ -142,7 +142,8 @@ OpenLP.help CFBundleHelpBookName org.openlp.OpenLP.help + diff --git a/pyinstaller-hooks/hook-openlp.plugins.presentations.presentationplugin.py b/pyinstaller-hooks/hook-openlp.plugins.presentations.presentationplugin.py index 4e30c94..e7e6fe2 100644 --- a/pyinstaller-hooks/hook-openlp.plugins.presentations.presentationplugin.py +++ b/pyinstaller-hooks/hook-openlp.plugins.presentations.presentationplugin.py @@ -20,8 +20,10 @@ # along with this program. If not, see . # ########################################################################## -hiddenimports = ['openlp.plugins.presentations.lib.impresscontroller', +hiddenimports = ['openlp.plugins.presentations.lib.applescriptbasecontroller', + 'openlp.plugins.presentations.lib.impresscontroller', + 'openlp.plugins.presentations.lib.keynoteontroller', 'openlp.plugins.presentations.lib.maclocontroller', 'openlp.plugins.presentations.lib.pdfcontroller', 'openlp.plugins.presentations.lib.powerpointcontroller', - 'openlp.plugins.presentations.lib.pptviewcontroller'] + 'openlp.plugins.presentations.lib.powerpointmaccontroller']