Skip to content

Commit

Permalink
readme changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Schimansky committed Feb 11, 2021
1 parent bb61bfb commit 2e8afcb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 2e8afcb

Please sign in to comment.