Browse Source

merge upstream

all-modes
pbca26 8 years ago
parent
commit
d99183f0b1
  1. 14
      README.md
  2. BIN
      assets/bin/linux64/iguana
  3. BIN
      assets/bin/linux64/komodo-cli
  4. BIN
      assets/bin/linux64/komodod
  5. BIN
      assets/bin/osx/iguana
  6. BIN
      assets/bin/osx/komodod
  7. 3
      assets/bin/win64/genkmdconf.bat
  8. BIN
      assets/bin/win64/iguana.exe
  9. BIN
      assets/bin/win64/komodo-cli.exe
  10. BIN
      assets/bin/win64/komodod.exe

14
README.md

@ -7,6 +7,10 @@ You must have `node.js` and `npm` installed on your machine.
Clone Iguana Desktop App with EasyDEX-GUI submodule Clone Iguana Desktop App with EasyDEX-GUI submodule
```shell ```shell
git clone --recursive https://github.com/SuperNETorg/iguana.git git clone --recursive https://github.com/SuperNETorg/iguana.git
cd gui/EasyDEX-GUI/
git checkout master
git pull
cd ../../
``` ```
Install Iguana App Install Iguana App
@ -36,7 +40,7 @@ Refer to the original [electron-packager](https://github.com/electron-userland/e
Change directory to iguana and execute the following command to build the Linux app Change directory to iguana and execute the following command to build the Linux app
```shell ```shell
cd iguana cd iguana
electron-packager . --platform=linux --arch=x64 --icon=assets/icons/iguana_app_icon_png/128x128.png --out=build/ --overwrite electron-packager . --platform=linux --arch=x64 --icon=assets/icons/iguana_app_icon_png/128x128.png --out=build/ --buildVersion=VERSION_NUMBER_HERE --ignore=assets/bin/win64 --ignore=assets/bin/osx --overwrite
``` ```
change architecture build parameter to ```--arch=x32``` for 32 bit build change architecture build parameter to ```--arch=x32``` for 32 bit build
@ -44,20 +48,20 @@ change architecture build parameter to ```--arch=x32``` for 32 bit build
Change directory to iguana and execute the following command to build the OSX app Change directory to iguana and execute the following command to build the OSX app
```shell ```shell
cd iguana cd iguana
electron-packager . --platform=darwin --arch=x64 --icon=assets/icons/iguana_app_icon.icns --out=build/ --overwrite electron-packager . --platform=darwin --arch=x64 --icon=assets/icons/iguana_app_icon.icns --out=build/ --buildVersion=VERSION_NUMBER_HERE --ignore=assets/bin/win64 --ignore=assets/bin/linux64 --overwrite
``` ```
##### Windows ##### Windows
Change directory to iguana and execute the following command to build the Windows app Change directory to iguana and execute the following command to build the Windows app
```shell ```shell
dir iguana dir iguana
electron-packager . --platform=win32 --arch=x64 --icon=assets/icons/iguana_app_icon.ico --out=build/ --overwrite electron-packager . --platform=win32 --arch=x64 --icon=assets/icons/iguana_app_icon.ico --out=build/ --buildVersion=VERSION_NUMBER_HERE --ignore=assets/bin/osx --ignore=assets/bin/linux64 --overwrite
# If generating 32bit desktop package # If generating 32bit desktop package
electron-packager . --platform=win32 --arch=ia32 --icon=assets/icons/iguana_app_icon.ico --out=build/ --overwrite electron-packager . --platform=win32 --arch=ia32 --icon=assets/icons/iguana_app_icon.ico --out=build/ --buildVersion=VERSION_NUMBER_HERE --ignore=assets/bin/osx --ignore=assets/bin/linux64 --overwrite
# To build both x64 and x86 desktop package # To build both x64 and x86 desktop package
electron-packager . --platform=win32 --arch=all --icon=assets/icons/iguana_app_icon.ico --out=build/ --overwrite electron-packager . --platform=win32 --arch=all --icon=assets/icons/iguana_app_icon.ico --out=build/ --buildVersion=VERSION_NUMBER_HERE --ignore=assets/bin/osx --ignore=assets/bin/linux64 --overwrite
``` ```
change architecture build parameter to ```--arch=x64``` for 64 bit build change architecture build parameter to ```--arch=x64``` for 64 bit build

BIN
assets/bin/linux64/iguana

Binary file not shown.

BIN
assets/bin/linux64/komodo-cli

Binary file not shown.

BIN
assets/bin/linux64/komodod

Binary file not shown.

BIN
assets/bin/osx/iguana

Binary file not shown.

BIN
assets/bin/osx/komodod

Binary file not shown.

3
assets/bin/win64/genkmdconf.bat

@ -5,9 +5,10 @@ mkdir %AppData%\Komodo
IF NOT EXIST %AppData%\Komodo\komodo.conf ( IF NOT EXIST %AppData%\Komodo\komodo.conf (
( (
echo rpcuser=kmdusr%random%%random% echo rpcuser=kmdusr%random%%random%
echo rpcpashword=kmdpass%random%%random% echo rpcpassword=kmdpass%random%%random%
echo rpcbind=127.0.0.1 echo rpcbind=127.0.0.1
echo txindex=1 echo txindex=1
echo server=1
echo addnode=5.9.102.210 echo addnode=5.9.102.210
echo addnode=78.47.196.146 echo addnode=78.47.196.146
echo addnode=178.63.69.164 echo addnode=178.63.69.164

BIN
assets/bin/win64/iguana.exe

Binary file not shown.

BIN
assets/bin/win64/komodo-cli.exe

Binary file not shown.

BIN
assets/bin/win64/komodod.exe

Binary file not shown.
Loading…
Cancel
Save