-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update macos icon fixes #78 fix red icon not showing fixes #42 tidy settings padding fixes #79 fix badge count fixes #80 Share credentials instead of copy on iOS resolves #48 enable bg mode modes
- Loading branch information
Showing
61 changed files
with
425 additions
and
253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
npm install --global create-dmg | ||
|
||
mkdir dmg/ | ||
create-dmg build/macos/Build/Products/Release/notifi.app dmg/ | ||
mv dmg/* notifi.dmg | ||
|
||
dmg_path="notifi.dmg" | ||
|
||
/usr/bin/codesign --force --deep --strict --options runtime -s "Z28DW76Y3W" "$dmg_path" | ||
|
||
echo "notarizing..." | ||
notarize=$(xcrun altool -t osx --primary-bundle-id it.notifi.notifi --output-format json --notarize-app -f "$dmg_path" --username "$APPLE_USERNAME" --password "$APPLE_PASSWORD") | ||
uuid=$(echo "$notarize" | python3 -c "import sys, json; print(json.load(sys.stdin)['notarization-upload']['RequestUUID'])") | ||
echo "$uuid" | ||
|
||
# wait for apple to notarize | ||
sleep 60 | ||
|
||
while true; do | ||
check=$(xcrun altool --notarization-info "$uuid" --output-format json --username "$APPLE_USERNAME" --password "$APPLE_PASSWORD") | ||
echo $check | ||
status=$(echo "$check" | python3 -c "import sys, json; print(json.load(sys.stdin)['notarization-info']['Status'])") | ||
echo $status | ||
if [ "$status" != "in progress" ]; then | ||
echo "staple dmg..." | ||
xcrun stapler staple -v "$dmg_path" | ||
exit | ||
fi | ||
done |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.