Skip to content

Commit

Permalink
fmk - upping version to 3.5.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 1c8b402 commit 2e20ca4
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 @@ -58,7 +58,7 @@ int main(int argc, char *argv[])
//Setting Core Application Name, Organization and Version
QCoreApplication::setApplicationName("PBE");
QCoreApplication::setOrganizationName("SimCenter");
QCoreApplication::setApplicationVersion("3.4.7");
QCoreApplication::setApplicationVersion("3.5.0");

#ifdef Q_OS_WIN
QApplication::setAttribute(Qt::AA_UseOpenGLES);
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="PBE"
APP_FILE="PBE.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 2e20ca4

Please sign in to comment.