Skip to content

Commit

Permalink
preparation for v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasluis committed Sep 18, 2018
1 parent 3481ab4 commit aa5e994
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Binary file modified bin/main/images/anon.icns
Binary file not shown.
12 changes: 6 additions & 6 deletions build-mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
############################################

# set up your app name, version number, and background image file name
APP_NAME="AnonymousDesktopWallet"
APP_DISPLAY_NAME="Anonymous Desktop Wallet"
VERSION="0.1.1"
APP_NAME="AnonDesktopWallet"
APP_DISPLAY_NAME="Anon Desktop Wallet"
VERSION="1.0.0"
APP_EXE="${APP_DISPLAY_NAME}.app/Contents/MacOS/JavaAppLauncher"
VOL_NAME="${APP_NAME}_${VERSION}"
DMG_TMP="${VOL_NAME}-temp.dmg"
Expand Down Expand Up @@ -88,8 +88,8 @@ mv "${APP_NAME}-${VERSION}.app" "${APP_DISPLAY_NAME}.app"
plutil -replace NSSupportsAutomaticGraphicsSwitching -bool true "${APP_DISPLAY_NAME}.app"/Contents/Info.plist

#create copies for link modification
cp ./anond ./anond-dylib
cp ./anon-cli ./anon-cli-dylib
cp ~/anon/src/anond ./anond-dylib
cp ~/anon/src/anon-cli ./anon-cli-dylib

#ensure permissions allow for execution
chmod +x "./anond-dylib"
Expand Down Expand Up @@ -123,7 +123,7 @@ cp -rpf "${APP_DISPLAY_NAME}.app" "${STAGING_DIR}"
# figure out how big our DMG needs to be
# assumes our contents are at least 5M!
SIZE=`du -sh "${STAGING_DIR}" | sed 's/\([0-9]*\)M\(.*\)/\1/'`
SIZE=`echo "${SIZE} + 5.0" | bc | awk '{print int($1+0.5)}'`
SIZE=`echo "${SIZE} + 15.0" | bc | awk '{print int($1+0.5)}'`

if [ $? -ne 0 ]; then
echo "Error: Cannot compute size of staging dir"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* This Java source file was generated by the Gradle 'init' task.
*/
public class ANONWalletUI extends JFrame {
private static final String VERSION = "0.1.1";
private static final String VERSION = "1.0.0";
private ANONInstallationObserver installationObserver;
private ANONClientCaller clientCaller;
private StatusUpdateErrorReporter errorReporter;
Expand Down

0 comments on commit aa5e994

Please sign in to comment.