|
|
|
@ -132,8 +132,8 @@ else |
|
|
|
|
LAST_COMMITED_VERSION="`git describe $(git rev-list --tags --max-count=1)`" |
|
|
|
|
if [ "v$VERSION" != "$LAST_COMMITED_VERSION" ]; then |
|
|
|
|
echo creating a tag with the version $VERSION |
|
|
|
|
# git tag -a "v$VERSION" -m "Generated setup for v$VERSION" |
|
|
|
|
# git push origin --tags |
|
|
|
|
git tag -a "v$VERSION" -m "Generated setup for v$VERSION" |
|
|
|
|
git push origin --tags |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
@ -201,13 +201,16 @@ notify "Creating dmg ..." |
|
|
|
|
umount "$VOLUME" 2> /dev/null |
|
|
|
|
$DMGUTIL --open --volume="$NAME" "$DMG" |
|
|
|
|
|
|
|
|
|
cp *.pdf "$VOLUME" |
|
|
|
|
cp -R "$APP" "$VOLUME" |
|
|
|
|
ln -s /Applications "$VOLUME" |
|
|
|
|
|
|
|
|
|
$DMGUTIL --set --iconsize=96 --toolbar=false --icon=resources/macx/UniboardDmg.icns "$VOLUME" |
|
|
|
|
$DMGUTIL --set --x=20 --y=60 --width=580 --height=312 "$VOLUME" |
|
|
|
|
$DMGUTIL --set --x=180 --y=160 "$VOLUME/`basename \"$APP\"`" |
|
|
|
|
$DMGUTIL --set --x=400 --y=160 "$VOLUME/Applications" |
|
|
|
|
$DMGUTIL --set --x=20 --y=60 --width=580 --height=440 "$VOLUME" |
|
|
|
|
$DMGUTIL --set --x=180 --y=120 "$VOLUME/`basename \"$APP\"`" |
|
|
|
|
$DMGUTIL --set --x=400 --y=120 "$VOLUME/Applications" |
|
|
|
|
$DMGUTIL --set --x=180 --y=280 "$VOLUME/ReleaseNotes.pdf" |
|
|
|
|
$DMGUTIL --set --x=400 --y=280 "$VOLUME/JournalDesModifications.pdf" |
|
|
|
|
|
|
|
|
|
$DMGUTIL --close --volume="$NAME" "$DMG" |
|
|
|
|
|
|
|
|
|