chore: changes for 1.3.8

This commit is contained in:
Andrei O 2024-06-04 07:40:30 +03:00
parent 7d978eada1
commit 80892fbfa9
No known key found for this signature in database
GPG Key ID: B961E5B68389457E
4 changed files with 9 additions and 7 deletions

View File

@ -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

View File

@ -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",

View File

@ -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&param=${strToHex(signMsgData)}&rid=${String(message?.resId ?? '')}`),
type: 'popup'
}).then((win) => {

View File

@ -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: () => {