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
|
||||
|
||||
## Manifest Version 1.3.8
|
||||
|
||||
- improved sign message display to better accomodate SIWE & other messages
|
||||
|
||||
## Manifest Version 1.3.7
|
||||
|
||||
- improved add Network pages
|
||||
|
@ -3,8 +3,8 @@
|
||||
"name": "__MSG_appName__",
|
||||
"description": "__MSG_appDesc__",
|
||||
"default_locale": "en",
|
||||
"version": "1.3.7",
|
||||
"version_name": "1.3.7",
|
||||
"version": "1.3.8",
|
||||
"version_name": "1.3.8",
|
||||
"icons": {
|
||||
"16": "assets/extension-icon/wallet_16.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) => {
|
||||
chrome.windows.create({
|
||||
height: 450,
|
||||
width: 400,
|
||||
height: 510,
|
||||
width: 480,
|
||||
url: chrome.runtime.getURL(`index.html?route=sign-msg¶m=${strToHex(signMsgData)}&rid=${String(message?.resId ?? '')}`),
|
||||
type: 'popup'
|
||||
}).then((win) => {
|
||||
|
@ -11,7 +11,7 @@
|
||||
<ion-label>Message to Sign</ion-label>
|
||||
</ion-item>
|
||||
<ion-item>
|
||||
<ion-text>{{ signMsg }}</ion-text>
|
||||
<div style="white-space: pre-wrap" disabled>{{ signMsg }}</div>
|
||||
</ion-item>
|
||||
<ion-item>
|
||||
<ion-button @click="onCancel">Cancel</ion-button>
|
||||
@ -49,7 +49,6 @@ import {
|
||||
IonLabel,
|
||||
IonButton,
|
||||
IonAlert,
|
||||
IonText,
|
||||
IonLoading,
|
||||
modalController,
|
||||
onIonViewWillEnter,
|
||||
@ -72,7 +71,6 @@ export default defineComponent({
|
||||
IonLabel,
|
||||
IonButton,
|
||||
IonAlert,
|
||||
IonText,
|
||||
IonLoading,
|
||||
},
|
||||
setup: () => {
|
||||
|
Loading…
Reference in New Issue
Block a user