From a3f92bc3e8fe5687b3474874a90f7dff7aa5965b Mon Sep 17 00:00:00 2001 From: Andrei O Date: Tue, 7 Mar 2023 19:16:55 +0200 Subject: [PATCH] changes for: `1.2.4` --- .gitignore | 1 + CHANGELOG.md | 6 + src/extension/manifest.json | 4 +- src/views/AssetsTab.vue | 793 ++++++++++++++++++++----------- src/views/SettingsTab.vue | 924 ++++++++++++++++++++---------------- 5 files changed, 1041 insertions(+), 687 deletions(-) diff --git a/.gitignore b/.gitignore index 49170dd..21083c2 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ npm-debug.log* /src/extension/webInject.js releases rules.json +docs diff --git a/CHANGELOG.md b/CHANGELOG.md index 00fb635..1b64605 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Manifest Version 1.2.4 + +- updated showing assets page to use new api +- removed yup score from assets page +- change the info modal in settings + ## Manifest Version 1.2.3 - injected stub with chrome feature available in chrome 103 ( register world ) to bypass CSP diff --git a/src/extension/manifest.json b/src/extension/manifest.json index c047960..00cba75 100644 --- a/src/extension/manifest.json +++ b/src/extension/manifest.json @@ -3,8 +3,8 @@ "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", - "version": "1.2.2", - "version_name": "1.2.2", + "version": "1.2.4", + "version_name": "1.2.4", "icons": { "16": "assets/extension-icon/wallet_16.png", "32": "assets/extension-icon/wallet_32.png", diff --git a/src/views/AssetsTab.vue b/src/views/AssetsTab.vue index 68a1981..fc437e6 100644 --- a/src/views/AssetsTab.vue +++ b/src/views/AssetsTab.vue @@ -6,7 +6,6 @@ - - Assests for Account: {{ selectedAccount?.name }} - - -

{{ selectedAccount?.address }}

- -
- - - diff --git a/src/views/SettingsTab.vue b/src/views/SettingsTab.vue index f665354..b8d7046 100644 --- a/src/views/SettingsTab.vue +++ b/src/views/SettingsTab.vue @@ -6,129 +6,180 @@ - - - - Security - -
- - You need at least one account to touch this settings - - - Enable Storage Encryption - - - - This will require to input an encrypto key when storage is locked. - - - - Enable Auto Lock - + + + + Security - - - Auto-lock Period: (2-120) minutes - - - - - - Set Auto-lock - - - - - Permanent Lock - - - Will require decrypt pass before any sign or transaction - - -
-
- - - Theme - -
- +
+ + You need at least one account to touch this settings + + + Enable Storage Encryption + + + + This will require to input an encrypto key when storage is locked. + + + + Enable Auto Lock + + + + + Auto-lock Period: (2-120) minutes + + + + + + Set Auto-lock + + + + + Permanent Lock + + + Will require decrypt pass before any sign or transaction + + +
+ + + + Theme + +
+ - - - System Default - - - - Dark - - - - Light - + + + System Default + + + + Dark + + + + Light + - -
-
- - - About - -
-

Clear EVM Wallet (CLW) is a fully open-source wallet built with Vue, Ionic, and Ethers.

-

It emulates Metamask Wallet and can be used as a drop-in replacement, right now if you have both extensions, CLW will overwrite Metamask.

-

Main philosophy of the wallet is: no trackers, full control, export/import JSONs with accounts, fast generate new accounts, and wipe everything with one click.

-

Github Repo: LINK

-
-

Some Web3 Projects I personally appreciate:

-

YUP - web3 social platform LINK

-

Crypto-Leftists: web3 left-wing crypto community LINK

-

Idena: web3 fully private identity provider blockchain LINK

-

Mirror: web3 publishing platform LINK

-
-
- - - Import / Export Accounts - -
- - Import Additional Accounts - - Import - - - Export All Accounts - Export - -
-
- - - Danger - -
- - WIPE All DATA - PERMA WIPE - -
-
- - +
+
+ + + About + +
+

+ Clear EVM Wallet (CLW) is a fully open-source wallet built with Vue, Ionic, + and Ethers. +

+

+ It emulates Metamask Wallet and can be used as a drop-in replacement, right + now if you have both extensions, CLW will overwrite Metamask. +

+

+ Main philosophy of the wallet is: no trackers, full control, export/import + JSONs with accounts, fast generate new accounts, and wipe everything with + one click. +

+

+ Github Repo: + LINK +

+
+

Places you can check me out:

+

+ Github andrei0x309 - + LINK +

+

+ Mirror Profile + LINK +

+

+ Blog Flashsoft + LINK +

+

+ Crypto-Leftists Discord + LINK +

+
+
+ + + Import / Export Accounts + +
+ + Import Additional Accounts + + Import + + + Export All Accounts + Export + +
+
+ + + Danger + +
+ + WIPE All DATA + PERMA WIPE + +
+
+
+ - - - - Close - - Create Encryption Password - Enter Encryption Password - - - - - - Old Password - - - - -
+ + + + Close + + Create Encryption Password + Enter Encryption Password + + + + + + Old Password + + + + + +
+ + New Password + + + + + + + + Confirm + + + + + +
- New Password - - - - - - - Confirm - - - - -
- - Confirm - -
+ Confirm + +
+ :is-open="alertOpen" + :header="alertHeader" + :message="alertMsg" + :buttons="['OK']" + @didDismiss="alertOpen = false" + >