mirror of
https://github.com/andrei0x309/clear-wallet.git
synced 2024-11-18 23:41:10 +00:00
chore: changes for 1.3.8
This commit is contained in:
parent
7d978eada1
commit
80892fbfa9
@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Manifest Version 1.3.8
|
||||||
|
|
||||||
|
- improved sign message display to better accomodate SIWE & other messages
|
||||||
|
|
||||||
## Manifest Version 1.3.7
|
## Manifest Version 1.3.7
|
||||||
|
|
||||||
- improved add Network pages
|
- improved add Network pages
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
"name": "__MSG_appName__",
|
"name": "__MSG_appName__",
|
||||||
"description": "__MSG_appDesc__",
|
"description": "__MSG_appDesc__",
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"version": "1.3.7",
|
"version": "1.3.8",
|
||||||
"version_name": "1.3.7",
|
"version_name": "1.3.8",
|
||||||
"icons": {
|
"icons": {
|
||||||
"16": "assets/extension-icon/wallet_16.png",
|
"16": "assets/extension-icon/wallet_16.png",
|
||||||
"32": "assets/extension-icon/wallet_32.png",
|
"32": "assets/extension-icon/wallet_32.png",
|
||||||
|
@ -524,8 +524,8 @@ const mainListner = (message: RequestArguments, sender:any, sendResponse: (a: an
|
|||||||
|
|
||||||
await new Promise((resolve, reject) => {
|
await new Promise((resolve, reject) => {
|
||||||
chrome.windows.create({
|
chrome.windows.create({
|
||||||
height: 450,
|
height: 510,
|
||||||
width: 400,
|
width: 480,
|
||||||
url: chrome.runtime.getURL(`index.html?route=sign-msg¶m=${strToHex(signMsgData)}&rid=${String(message?.resId ?? '')}`),
|
url: chrome.runtime.getURL(`index.html?route=sign-msg¶m=${strToHex(signMsgData)}&rid=${String(message?.resId ?? '')}`),
|
||||||
type: 'popup'
|
type: 'popup'
|
||||||
}).then((win) => {
|
}).then((win) => {
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
<ion-label>Message to Sign</ion-label>
|
<ion-label>Message to Sign</ion-label>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
<ion-item>
|
<ion-item>
|
||||||
<ion-text>{{ signMsg }}</ion-text>
|
<div style="white-space: pre-wrap" disabled>{{ signMsg }}</div>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
<ion-item>
|
<ion-item>
|
||||||
<ion-button @click="onCancel">Cancel</ion-button>
|
<ion-button @click="onCancel">Cancel</ion-button>
|
||||||
@ -49,7 +49,6 @@ import {
|
|||||||
IonLabel,
|
IonLabel,
|
||||||
IonButton,
|
IonButton,
|
||||||
IonAlert,
|
IonAlert,
|
||||||
IonText,
|
|
||||||
IonLoading,
|
IonLoading,
|
||||||
modalController,
|
modalController,
|
||||||
onIonViewWillEnter,
|
onIonViewWillEnter,
|
||||||
@ -72,7 +71,6 @@ export default defineComponent({
|
|||||||
IonLabel,
|
IonLabel,
|
||||||
IonButton,
|
IonButton,
|
||||||
IonAlert,
|
IonAlert,
|
||||||
IonText,
|
|
||||||
IonLoading,
|
IonLoading,
|
||||||
},
|
},
|
||||||
setup: () => {
|
setup: () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user