-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pre-release
- Loading branch information
Igor Lins e Silva
committed
Jul 8, 2019
1 parent
67bf2c6
commit ce767b1
Showing
74 changed files
with
3,355 additions
and
1,162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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")); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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")); | ||
|
Oops, something went wrong.