Browse Source

Clean up changelog and Makefile

tags/v1.1.2
Andrew Belt 5 years ago
parent
commit
7e8d1ec7ac
2 changed files with 5 additions and 3 deletions
  1. +4
    -2
      CHANGELOG.md
  2. +1
    -1
      Makefile

+ 4
- 2
CHANGELOG.md View File

@@ -2,11 +2,13 @@


In this document, Mod is Ctrl on Windows/Linux and Cmd on Mac. 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. - Re-enable JACK MIDI driver on Linux.
- Fix scroll speed for mice and trackpads on Mac. - Fix scroll speed for mice and trackpads on Mac.
- Fix undo history bug when dragging patch file to the Rack window. - 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. - Add check for duplicate port IDs for modules.


### 1.1.1 (2019-07-01) ### 1.1.1 (2019-07-01)


+ 1
- 1
Makefile View File

@@ -130,7 +130,6 @@ ifdef ARCH_MAC
# This will only work if you have the private key to my certificate # 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 --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 codesign --verify --deep --strict --verbose=2 dist/$(TARGET).app
# spctl --assess --type execute --ignore-cache --no-cache -vv dist/$(TARGET).app
# Make ZIP # Make ZIP
cd dist && zip -q -9 -r Rack-$(VERSION)-$(ARCH).zip $(TARGET).app cd dist && zip -q -9 -r Rack-$(VERSION)-$(ARCH).zip $(TARGET).app
endif 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 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 # Wait for Apple's servers to approve the app
while true; do \ 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 ; \ 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 \ if [ "`/usr/libexec/PlistBuddy -c "Print :notarization-info:Status" dist/RequestInfo.plist`" != "in progress" ]; then \
break ; \ break ; \


Loading…
Cancel
Save