diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-12-08 06:34:15 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-12-17 02:44:52 +0800 |
commit | 8819475a2ed2ee7c34e983ebb5ab12661be1a961 (patch) | |
tree | 6d410c35aca5bae541481d96cb492597d7470826 /development/states | |
parent | d5569781ba2668df78ab7cf0f20ac93f84cafadb (diff) | |
download | tangerine-wallet-browser-8819475a2ed2ee7c34e983ebb5ab12661be1a961.tar tangerine-wallet-browser-8819475a2ed2ee7c34e983ebb5ab12661be1a961.tar.gz tangerine-wallet-browser-8819475a2ed2ee7c34e983ebb5ab12661be1a961.tar.bz2 tangerine-wallet-browser-8819475a2ed2ee7c34e983ebb5ab12661be1a961.tar.lz tangerine-wallet-browser-8819475a2ed2ee7c34e983ebb5ab12661be1a961.tar.xz tangerine-wallet-browser-8819475a2ed2ee7c34e983ebb5ab12661be1a961.tar.zst tangerine-wallet-browser-8819475a2ed2ee7c34e983ebb5ab12661be1a961.zip |
Add ability to show notices to user & get confirmation.
Implement generation of markdown for notice files.
Create npm command. Enhance notice generation.
Add test files to test multiple notices.
Add basic markdown support to notices.
Interval checks for updates.
Add extensionizer and linker
Add terms and conditions state file
Add link support to disclaimer.
Changelog addition.
Diffstat (limited to 'development/states')
-rw-r--r-- | development/states/notice.json | 63 | ||||
-rw-r--r-- | development/states/terms-and-conditions.json | 40 |
2 files changed, 103 insertions, 0 deletions
diff --git a/development/states/notice.json b/development/states/notice.json new file mode 100644 index 000000000..d8f1f0abe --- /dev/null +++ b/development/states/notice.json @@ -0,0 +1,63 @@ +{ + "metamask": { + "isInitialized": true, + "isUnlocked": true, + "rpcTarget": "https://rawtestrpc.metamask.io/", + "identities": { + "0x24a1d059462456aa332d6da9117aa7f91a46f2ac": { + "address": "0x24a1d059462456aa332d6da9117aa7f91a46f2ac", + "name": "Account 1" + } + }, + "unconfTxs": {}, + "currentFiat": "USD", + "conversionRate": 8.3533002, + "conversionDate": 1481671082, + "noActiveNotices": false, + "lastUnreadNotice": { + "read": false, + "date": "Tue Dec 13 2016", + "title": "MultiVault Support", + "body": "# Multi\n# Line\n## Support\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi tincidunt dapibus justo a auctor. Sed luctus metus non mi laoreet, sit amet placerat nibh ultricies. Cras fringilla, urna sit amet sodales porttitor, lacus risus lacinia lorem, non euismod magna felis id ex. Nam iaculis, ante nec imperdiet suscipit, nisi quam fringilla nisl, sed fringilla turpis lectus et nibh. Pellentesque sed neque pretium nulla elementum lacinia eu eget felis. Nulla facilisi. Pellentesque id mi tempor, tempus sapien id, ultricies nibh. Integer faucibus elit non orci dapibus porttitor. Pellentesque rutrum hendrerit sapien ut lacinia. Nunc elementum eget arcu eu volutpat. Integer ullamcorper aliquam metus, eu malesuada tellus vestibulum a.\n", + "id": 0 + }, + "network": "3", + "accounts": { + "0x24a1d059462456aa332d6da9117aa7f91a46f2ac": { + "code": "0x", + "nonce": "0x0", + "balance": "0x0", + "address": "0x24a1d059462456aa332d6da9117aa7f91a46f2ac" + } + }, + "transactions": [], + "provider": { + "type": "testnet" + }, + "selectedAccount": "0x24a1d059462456aa332d6da9117aa7f91a46f2ac", + "seedWords": null, + "isDisclaimerConfirmed": true, + "unconfMsgs": {}, + "messages": [], + "shapeShiftTxList": [], + "keyringTypes": [ + "Simple Key Pair", + "HD Key Tree" + ] + }, + "appState": { + "menuOpen": false, + "currentView": { + "name": "accountDetail", + "detailView": null, + "context": "0x24a1d059462456aa332d6da9117aa7f91a46f2ac" + }, + "accountDetail": { + "subview": "transactions" + }, + "transForward": true, + "isLoading": false, + "warning": null + }, + "identities": {} +} diff --git a/development/states/terms-and-conditions.json b/development/states/terms-and-conditions.json new file mode 100644 index 000000000..b20f819ed --- /dev/null +++ b/development/states/terms-and-conditions.json @@ -0,0 +1,40 @@ +{ + "metamask": { + "isInitialized": false, + "isUnlocked": false, + "rpcTarget": "https://rawtestrpc.metamask.io/", + "identities": {}, + "unconfTxs": {}, + "currentFiat": "USD", + "conversionRate": 8.18703468, + "conversionDate": 1481755832, + "network": "3", + "accounts": {}, + "transactions": [], + "provider": { + "type": "testnet" + }, + "isDisclaimerConfirmed": false, + "unconfMsgs": {}, + "messages": [], + "shapeShiftTxList": [], + "keyringTypes": [ + "Simple Key Pair", + "HD Key Tree" + ] + }, + "appState": { + "menuOpen": false, + "currentView": { + "name": "accounts", + "detailView": null + }, + "accountDetail": { + "subview": "transactions" + }, + "transForward": true, + "isLoading": false, + "warning": null + }, + "identities": {} +}
\ No newline at end of file |