qr-secure-send 1.7.1 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.html +7 -4
- package/package.json +1 -1
package/index.html
CHANGED
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
<header>
|
|
160
160
|
<h1>QR Secure Send</h1>
|
|
161
161
|
<p>Encrypt and transfer secrets via QR code</p>
|
|
162
|
-
<p style="font-size:0.7rem;color:#484f58;margin-top:0.2rem">v1.7.
|
|
162
|
+
<p style="font-size:0.7rem;color:#484f58;margin-top:0.2rem">v1.7.2</p>
|
|
163
163
|
</header>
|
|
164
164
|
|
|
165
165
|
<div class="tabs">
|
|
@@ -189,8 +189,11 @@
|
|
|
189
189
|
Encrypt with crypto wallet (MetaMask)
|
|
190
190
|
</label>
|
|
191
191
|
<div id="send-wallet-fields" class="wallet-fields">
|
|
192
|
-
<p class="info" style="text-align:left;margin-bottom:0.5rem">
|
|
193
|
-
|
|
192
|
+
<p class="info" style="text-align:left;margin-bottom:0.5rem;line-height:1.5">
|
|
193
|
+
MetaMask will sign a fixed message using your private key.
|
|
194
|
+
The resulting signature becomes the encryption key — only the same wallet can reproduce it.
|
|
195
|
+
Your private key never leaves MetaMask.
|
|
196
|
+
You can also set a passphrase above for extra security (both will be needed to decrypt).
|
|
194
197
|
</p>
|
|
195
198
|
<button class="wallet-btn" id="send-wallet-connect-btn">Connect MetaMask</button>
|
|
196
199
|
<div id="send-wallet-status" class="wallet-address" style="display:none"></div>
|
|
@@ -1016,7 +1019,7 @@
|
|
|
1016
1019
|
// PAYLOAD HELPERS
|
|
1017
1020
|
// =========================================================================
|
|
1018
1021
|
|
|
1019
|
-
const APP_VERSION = "1.7.
|
|
1022
|
+
const APP_VERSION = "1.7.2";
|
|
1020
1023
|
const GH_PAGES_URL = "https://degenddy.github.io/qr-secure-send/?v=" + APP_VERSION;
|
|
1021
1024
|
const METAMASK_DEEP_URL = "https://link.metamask.io/dapp/degenddy.github.io/qr-secure-send/?v=" + APP_VERSION;
|
|
1022
1025
|
|