Skip to content

Commit

Permalink
Version, npm run tasks for signing key
Browse files Browse the repository at this point in the history
  • Loading branch information
chill117 committed Jul 18, 2018
1 parent e853725 commit ea13063
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

* TBD:
* v1.1.0:
* Added a guided setup after first installing the app
* Added recommended mobile wallets page
* Added support for more display currencies
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crypto-terminal",
"version": "1.0.4",
"version": "1.1.0",
"description": "An open-source terminal application with which merchants can accept in-person cryptocurrency payments",
"private": true,
"app": {
Expand All @@ -15,7 +15,8 @@
"gh-pages-commit": "grunt build:homepage && { git checkout gh-pages || git checkout -b gh-pages upstream/gh-pages; } && rm -r css fonts images index.html && cp -r build/homepage/www/* ./ && git add . && git commit -a",
"build-signed-apk": "grunt build && ./scripts/build-signed-apk.sh",
"android-generate-signing-key": "keytool -keystore android.keystore -genkey -v -alias cryptoterminal -keyalg RSA -keysize 2048 -validity 10000",
"android-export-public-signing-key": "keytool -keystore android.keystore -list -rfc -alias cryptoterminal"
"android-export-signing-certificate": "keytool -keystore android.keystore -alias cryptoterminal -exportcert -rfc -file cryptoterminal.crt",
"android-export-public-signing-key": "rm -rf cryptoterminal.crt; npm run android-export-signing-certificate | openssl x509 -pubkey -noout -in cryptoterminal.crt"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit ea13063

Please sign in to comment.