Skip to content

Commit

Permalink
Merge pull request #123 from aionnetwork/dev
Browse files Browse the repository at this point in the history
v1.0.0
  • Loading branch information
qoire authored Jul 5, 2018
2 parents a8ff53c + dc7e911 commit e446419
Show file tree
Hide file tree
Showing 187 changed files with 7,808 additions and 999 deletions.
6 changes: 3 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<javac
debuglevel="source,lines,vars"
includeantruntime="false"
release="9"
release="10"
srcdir="${src.test}"
destdir="${out.test}"
includes="**/*Test.java"
Expand Down Expand Up @@ -102,7 +102,7 @@
<javac
debuglevel="source,lines,vars"
includeantruntime="false"
release="9"
release="10"
srcdir="./"
destdir="${out.main}"
excludes="src/main/java/org/aion/connector/api/**/*.java"
Expand Down Expand Up @@ -136,7 +136,7 @@
<javac
debuglevel="source,lines,vars"
includeantruntime="false"
release="9"
release="10"
srcdir="./"
destdir="${out.main}"
excludes="src/main/java/org/aion/wallet/connector/core/**/*.java"
Expand Down
Binary file added lib/BIP39-0.1.9.jar
Binary file not shown.
Binary file added lib/SHA256-0.0.1.jar
Binary file not shown.
Binary file added lib/ToRuntime-0.9.0.jar
Binary file not shown.
Binary file added lib/core-3.3.3.jar
Binary file not shown.
Binary file added lib/jsr305-3.0.2.jar
Binary file not shown.
Binary file removed lib/modAionApi-v0.1.5.7095c5f-2018-04-16.jar
Binary file not shown.
Binary file added lib/modAionApi-v0.1.9.75f2e8c-2018-06-14.jar
Binary file not shown.
Binary file modified mod/modCrypto.jar
Binary file not shown.
Binary file modified mod/modMcf.jar
100644 → 100755
Binary file not shown.
1 change: 1 addition & 0 deletions module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
requires javafx.base;
requires javafx.graphics;
requires javafx.controls;
requires javafx.swing;
requires java.desktop;
requires slf4j.api;
requires guava;
Expand Down
8 changes: 5 additions & 3 deletions scripts/aion_ui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

SCRIPT_PATH=$(dirname $(realpath $0))

pushd ${SCRIPT_PATH}
cd ${SCRIPT_PATH}

java -cp "${SCRIPT_PATH}/mod/*:${SCRIPT_PATH}/lib/*" org.aion.wallet.WalletApplication
MOD_DIR=${SCRIPT_PATH}/mod/*
LIB_DIR=${SCRIPT_PATH}/lib/*
STORAGE_DIR=${HOME}/.aion

popd
java -cp "${MOD_DIR}:${LIB_DIR}" -Dlocal.storage.dir=${STORAGE_DIR} -Xms300m -Xmx500m org.aion.wallet.WalletApplication
Loading

0 comments on commit e446419

Please sign in to comment.