You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
michal maxian bfbeb8077a Added script to build iguana package for all platforms. 8 years ago
assets osx komodod updated 8 years ago
buildscripts Added script to build iguana package for all platforms. 8 years ago
gui Revert "Revert "Merge pull request #53 from pbca26/master"" 8 years ago
private debug log (wip #2) 8 years ago
routes fixed wrong var type in shepherd.js 8 years ago
windeps Windows iguana changed to 32bit and DLL Fix batch file included 8 years ago
.gitignore Iguana-application and EasyDEX-GUI not needed in .gitignore anymore 8 years ago
.gitmodules EasyDEX-GUI submodule added 8 years ago
LICENSE fixed js code style 8 years ago
README.md Revert "add root/Administrator notification for problems with electron-packager and electron-prebuilt installation" 8 years ago
check_submodule.sh git submodule command change in parameters 8 years ago
compile-dev.sh added compile-dev.sh 8 years ago
index.html Updated files 8 years ago
main.js fixed main window cloning issue 8 years ago
package.json Revert "Revert "Merge pull request #53 from pbca26/master"" 8 years ago

README.md

Iguana Desktop App

Desktop App for SuperNET DAPPs

For Developers

You must have node.js and npm installed on your machine.

Clone Iguana Desktop App with EasyDEX-GUI submodule

git clone --recursive https://github.com/SuperNETorg/iguana.git
cd gui/EasyDEX-GUI/
git checkout master
git pull
cd ../../

Install Iguana App

cd iguana
npm install

Then start Iguana App

npm start

For end users

The instructions to make production build of Iguana App will be updated soon.

To build the production ready app, install electron-packager and electron-prebuilt packages from npm

npm install electron-packager -g
npm install electron-prebuilt -g

Build the Wallet-App

Refer to the original electron-packager repository for more detailed information.

Linux

Change directory to iguana and execute the following command to build the Linux app

cd iguana
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

OSX

Change directory to iguana and execute the following command to build the OSX app

cd iguana
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

Change directory to iguana and execute the following command to build the Windows app

dir iguana
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
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
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

Troubleshooting Instructions

Windows DLL issues

On Windows it's noticed iguana.exe complains about VCRUNTIME140D.DLL and ucrtbased.dll file.

Please see windeps directory and README file for instructions to install the required DLL files on Windows, and then try again running Iguana App.