Skip to content

Commit

Permalink
v0.8.1-rc5
Browse files Browse the repository at this point in the history
pre-release
  • Loading branch information
Igor Lins e Silva committed Jul 8, 2019
1 parent 67bf2c6 commit ce767b1
Show file tree
Hide file tree
Showing 74 changed files with 3,355 additions and 1,162 deletions.
15 changes: 8 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,11 @@ Thumbs.db
node_modules
dist
ng-dist
ng-dist/vendor.js
ng-dist/styles.css
ng-dist/scripts.js
ng-dist/polyfills.js
ng-dist/main.js
ng-dist/index.html
ng-dist/3rdpartylicenses.txt
ng-dist/vendor.js
ng-dist/styles.css
ng-dist/scripts.js
ng-dist/polyfills.js
ng-dist/main.js
ng-dist/index.html
ng-dist/3rdpartylicenses.txt
autoclaim.json
16 changes: 16 additions & 0 deletions build-liberland.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const fs = require('fs');
const conf = require('./package.json');

conf.compilerVersion = "LIBERLAND TESTNET";
conf.name = 'liberland-wallet';
conf.appId = "io.eosrio.liberland-wallet";
conf.productName = 'Liberland Wallet';
conf.description = 'Liberland Blockchain Wallet';
conf.build.appId = 'liberland-wallet';
conf.build.win.icon = "src/assets/liberland_256_LdC_icon.ico";
conf.build.dmg.icon = "src/assets/icons/liberland256x256.icns";
conf.build.mac.icon = "liberland518x518.png";
conf.build.linux.icon = "liberland256x256.png";

fs.writeFileSync('./package.json', JSON.stringify(conf, null, "\t"));

17 changes: 17 additions & 0 deletions build-simpleos.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const fs = require('fs');

const conf = require('./package.json');

conf.compilerVersion = "EOS MAINNET";
conf.name = 'simpleos';
conf.appId = "io.eosrio.simpleos";
conf.productName = 'simpleos';
conf.description = 'EOSIO Blockchain Interface & Wallet';
conf.build.appId = 'simpleos';
conf.build.win.icon = "src/favicon.ico";
conf.build.mac.icon = "icon.png";
conf.build.dmg.icon = "src/assets/icons/256x256.icns";
conf.build.linux.icon = "256x256.png";

fs.writeFileSync('./package.json', JSON.stringify(conf, null, "\t"));

Loading

0 comments on commit ce767b1

Please sign in to comment.