From 7e8d1ec7ac224e727e4a72b5bb67ffb7bc41b726 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 15 Jul 2019 18:55:47 -0700 Subject: [PATCH] Clean up changelog and Makefile --- CHANGELOG.md | 6 ++++-- Makefile | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5476c36..53630fb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,13 @@ In this document, Mod is Ctrl on Windows/Linux and Cmd on Mac. -### 1.2.0 (in development) -- Enable app notarization on Mac, removing the "Apple cannot check for malicious software" message on launch. +### 1.1.2 (in development) +- Add app notarization on Mac, which removes the "Apple cannot check for malicious software" message on launch. - Re-enable JACK MIDI driver on Linux. - Fix scroll speed for mice and trackpads on Mac. - Fix undo history bug when dragging patch file to the Rack window. +- Fix crash when pasting presets to an empty rack space with Mod-V. +- Fix module expanders being assigned incorrectly when loading presets. - Add check for duplicate port IDs for modules. ### 1.1.1 (2019-07-01) diff --git a/Makefile b/Makefile index 2bf6f2da..ce956c39 100644 --- a/Makefile +++ b/Makefile @@ -130,7 +130,6 @@ ifdef ARCH_MAC # This will only work if you have the private key to my certificate codesign --verbose --sign "Developer ID Application: Andrew Belt (VRF26934X5)" --options runtime --entitlements Entitlements.plist --deep dist/$(TARGET).app codesign --verify --deep --strict --verbose=2 dist/$(TARGET).app -# spctl --assess --type execute --ignore-cache --no-cache -vv dist/$(TARGET).app # Make ZIP cd dist && zip -q -9 -r Rack-$(VERSION)-$(ARCH).zip $(TARGET).app endif @@ -171,6 +170,7 @@ ifdef ARCH_MAC xcrun altool --notarize-app -f dist/Rack-$(VERSION)-$(ARCH).zip --primary-bundle-id=com.vcvrack.rack -u "andrewpbelt@gmail.com" -p @keychain:notarize --output-format xml > dist/UploadInfo.plist # Wait for Apple's servers to approve the app while true; do \ + echo "Waiting on Apple servers..." ; \ xcrun altool --notarization-info `/usr/libexec/PlistBuddy -c "Print :notarization-upload:RequestUUID" dist/UploadInfo.plist` -u "andrewpbelt@gmail.com" -p @keychain:notarize --output-format xml > dist/RequestInfo.plist ; \ if [ "`/usr/libexec/PlistBuddy -c "Print :notarization-info:Status" dist/RequestInfo.plist`" != "in progress" ]; then \ break ; \