Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions BUILD-MAC.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ git clone https://github.com/sonic-pi-net/sonic-pi.git ~/Development/sonic-pi
```

If you don't have Git installed you should be able to download a `.zip`
file of the latest commit or specific release (v3.3+) you'd like to
file of the latest commit or specific release you'd like to
build:

https://github.com/sonic-pi-net/sonic-pi/archive/main.zip
https://github.com/sonic-pi-net/sonic-pi/archive/refs/heads/stable.zip

From now on these instructions will assume you downloaded the source
into `~/Development/sonic-pi`. If you used a different location be sure to
Expand Down Expand Up @@ -138,7 +138,7 @@ Finally, you can run your newly compiled `Sonic Pi` app within the new `build`
directly either by double clicking it in the Finder or via the terminal:

```
./build/Sonic\ Pi.app/Contents/MacOS/Sonic\ Pi
./build/gui/qt/Sonic\ Pi.app/Contents/MacOS/Sonic\ Pi

```

Expand Down
2 changes: 1 addition & 1 deletion app/gui/qt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ if (APPLE)
add_custom_command(
TARGET ${APP_NAME}
POST_BUILD
COMMAND plutil -replace NSHighResolutionCapable -bool true ${MACOS_APP_NAME}.app/Contents/Info.plist
COMMAND chmod +w ${MACOS_APP_NAME}.app/Contents/Info.plist && plutil -replace NSHighResolutionCapable -bool true ${MACOS_APP_NAME}.app/Contents/Info.plist
)
endif()

Expand Down