replaywebpage 1.7.1 → 1.7.3
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/README.md +8 -1
- package/package.json +4 -4
- package/src/embed-receipt.js +1 -1
- package/sw.js +13 -13
- package/ui.js +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,14 @@ This repository contains:
|
|
|
35
35
|
- Docs hosted at: https://replayweb.page/docs
|
|
36
36
|
- App releases at: https://github.com/webrecorder/replayweb.page/releases
|
|
37
37
|
|
|
38
|
-
##
|
|
38
|
+
## Running ReplayWeb.page
|
|
39
|
+
|
|
40
|
+
To run ReplayWeb.page and view web archives, a regular HTTP server is all that is needed.
|
|
41
|
+
|
|
42
|
+
ReplayWeb.page can run with any HTTP server locally. For example, you can run `http-server -p 9990` or `python -m http.server 9990` to run a static web server in the directory of this repository. Then, simply load `http://localhost:9990/` and you'll have replayweb.page running locally.
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
## Developing ReplayWeb.page
|
|
39
46
|
|
|
40
47
|
ReplayWeb.page is built as a Node package can be installed using yarn:
|
|
41
48
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "replaywebpage",
|
|
3
3
|
"productName": "ReplayWeb.page",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.3",
|
|
5
5
|
"description": "Serverless Web Archive Replay",
|
|
6
6
|
"repository": "https://github.com/webrecorder/replayweb.page",
|
|
7
7
|
"homepage": "https://replayweb.page/",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"license": "AGPL-3.0-or-later",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@fortawesome/fontawesome-free": "^5.15.4",
|
|
12
|
-
"@webrecorder/wabac": "^2.13.
|
|
13
|
-
"auto-js-ipfs": "^1.
|
|
12
|
+
"@webrecorder/wabac": "^2.13.8",
|
|
13
|
+
"auto-js-ipfs": "^1.5.1",
|
|
14
14
|
"bulma": "^0.9.3",
|
|
15
15
|
"electron-log": "^4.4.1",
|
|
16
16
|
"electron-updater": "^4.3.9",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"eslint": "^8.23.1",
|
|
38
38
|
"http-server": "^13.0.2",
|
|
39
39
|
"mini-css-extract-plugin": "^2.3.0",
|
|
40
|
-
"node-sass": "^
|
|
40
|
+
"node-sass": "^8.0.0",
|
|
41
41
|
"raw-loader": "^4.0.2",
|
|
42
42
|
"sass-loader": "^12.1.0",
|
|
43
43
|
"style-loader": "^3.2.1",
|
package/src/embed-receipt.js
CHANGED
|
@@ -229,7 +229,7 @@ export class RWPEmbedReceipt extends LitElement
|
|
|
229
229
|
<p>${software}</p>` : ""}
|
|
230
230
|
${!domain && publicKey ? html`
|
|
231
231
|
<h3 class="mt-2">Observer Public Key:</h3>
|
|
232
|
-
<p class="show-key">${publicKey}</p>` :
|
|
232
|
+
<p class="show-key">${publicKey}</p>` : ""}
|
|
233
233
|
<h3 class="mt-2">Validation:</h3>
|
|
234
234
|
${numValid > 0 || numInvalid > 0 ? html`
|
|
235
235
|
<p>${numValid} hashes verified${numInvalid ? html`, ${numInvalid} invalid` : ""}</p>` : html`
|