diff --git a/README.md b/README.md index 99cfd12..9cf1e12 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ This is a simple **guitar tuner** program written in Python with Tkinter, PyAudio and NumPy. The played note is automatically recognized through the microphone, and an acoustic signal is heard when the tuning is correct. If you want you can also change the reference-tone to another -frequency. Besides this, the app also supports macOS dark-mode. +frequency. ### Functionality @@ -34,4 +34,4 @@ To keep application size as small as possible, make sure you create a virtual en only the necessary libraries. The macOS dark-mode currently **only** works with the **anaconda python** Version. If you compile the app with a python.org version, you have to disable the dark-mode by deleting the ```'NSRequiresAquaSystemAppearance': False```entry in setup.py, which causes the application window to go -into dark-mode. +into dark-mode. \ No newline at end of file diff --git a/setup.py b/setup.py index 8c63027..ee77d35 100644 --- a/setup.py +++ b/setup.py @@ -24,12 +24,14 @@ "assets/images/mutedBell.png"] OPTIONS = {'argv_emulation': False, + 'includes': '', + 'excludes': '', 'iconfile': 'assets/images/GuitarTunerDesign.icns', 'plist': { 'CFBundleName': Settings.APP_NAME, 'CFBundleDisplayName': Settings.APP_NAME, 'CFBundleExecutable': Settings.APP_NAME, - 'CFBundleGetInfoString': "Tune your guitar the most simplest way.", + 'CFBundleGetInfoString': "Tune your instrument with {}".format(Settings.APP_NAME), 'CFBundleIdentifier': Settings.CF_BUNDLE_IDENTIFIER, 'CFBundleVersion': Settings.VERSION, 'CFBundleShortVersionString': Settings.VERSION,