qr-secure-send 1.6.3 → 1.6.5

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.
Files changed (2) hide show
  1. package/index.html +7 -3
  2. package/package.json +1 -1
package/index.html CHANGED
@@ -3,6 +3,9 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
7
+ <meta http-equiv="Pragma" content="no-cache">
8
+ <meta http-equiv="Expires" content="0">
6
9
  <title>QR Secure Send</title>
7
10
  <style>
8
11
  * { box-sizing: border-box; margin: 0; padding: 0; }
@@ -156,7 +159,7 @@
156
159
  <header>
157
160
  <h1>QR Secure Send</h1>
158
161
  <p>Encrypt and transfer secrets via QR code</p>
159
- <p style="font-size:0.7rem;color:#484f58;margin-top:0.2rem">v1.6.3</p>
162
+ <p style="font-size:0.7rem;color:#484f58;margin-top:0.2rem">v1.6.5</p>
160
163
  </header>
161
164
 
162
165
  <div class="tabs">
@@ -1008,8 +1011,9 @@
1008
1011
  // PAYLOAD HELPERS
1009
1012
  // =========================================================================
1010
1013
 
1011
- const GH_PAGES_URL = "https://degenddy.github.io/qr-secure-send/";
1012
- const METAMASK_DEEP_URL = "https://link.metamask.io/dapp/degenddy.github.io/qr-secure-send/";
1014
+ const APP_VERSION = "1.6.5";
1015
+ const GH_PAGES_URL = "https://degenddy.github.io/qr-secure-send/?v=" + APP_VERSION;
1016
+ const METAMASK_DEEP_URL = "https://link.metamask.io/dapp/degenddy.github.io/qr-secure-send/?v=" + APP_VERSION;
1013
1017
 
1014
1018
  function buildKeyInput(passphrase, walletAddress) {
1015
1019
  return walletAddress ? passphrase + ':' + walletAddress.toLowerCase() : passphrase;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qr-secure-send",
3
- "version": "1.6.3",
3
+ "version": "1.6.5",
4
4
  "description": "Encrypt and transfer secrets via QR code",
5
5
  "keywords": ["qr", "qrcode", "encryption", "password", "secure", "transfer"],
6
6
  "author": "",