Skip to content

Commit

Permalink
fmk - upping version to 3.6.0, adding shell script for notatizatio
Browse files Browse the repository at this point in the history
  • Loading branch information
fmckenna committed Jun 30, 2024
1 parent 00aefd0 commit 62cf10c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ int main(int argc, char *argv[])
//Setting Core Application Name, Organization, and Version
QCoreApplication::setApplicationName("EE-UQ");
QCoreApplication::setOrganizationName("SimCenter");
QCoreApplication::setApplicationVersion("3.5.5");
QCoreApplication::setApplicationVersion("3.6.0");

//Init resources from static libraries (e.g. SimCenterCommonQt or s3hark)
Q_INIT_RESOURCE(images1);
Expand Down
17 changes: 17 additions & 0 deletions notarize.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# remove & rebuild app and macdeploy it

APP_NAME="EE_UQ"
APP_FILE="EE_UQ.app"
DMG_FILENAME="${APP_NAME}_Mac_Download.dmg"

userID="userID.sh"

source $userID

echo "xcrun notarytool submit ./$DMG_FILENAME --apple-id $appleID --team-id $appleCredential --password $appleAppPassword"
echo "xcrun notarytool log ID --apple-id $appleID --team-id $appleCredential --password $appleAppPassword"
echo ""
echo "NO MORE EMAILS .. have to check the log file"
echo ""
echo "Finally staple the dmg"
echo "xcrun stapler staple \"$APP_NAME\" $DMG_FILENAME"

0 comments on commit 62cf10c

Please sign in to comment.