Skip to content

Commit d73d94c

Browse files
committed
fidelity: fix eval replay edge-case (via wombat), http->https redirect via (wabac.js)
ui update: update to latest search, ui libraries (via replaywebpage) app: fix auto-updating dependencies: update to replayweb.page 1.5.3 / wabac.js 2.9.2 bump to 0.7.2
1 parent c0b6361 commit d73d94c

File tree

11 files changed

+442
-753
lines changed

11 files changed

+442
-753
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
22
"name": "archiveweb.page",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"main": "index.js",
55
"description": "Create Web Archives directly in your browser",
66
"repository": "https://github.com/webrecorder/archiveweb.page",
77
"author": "Webrecorder Software",
88
"license": "AGPL-3.0-or-later",
99
"dependencies": {
1010
"@fortawesome/fontawesome-free": "^5.13.0",
11-
"@webrecorder/wabac": "^2.9.1",
11+
"@webrecorder/wabac": "^2.9.2",
1212
"browsertrix-behaviors": "^0.2.3",
1313
"btoa": "^1.2.1",
1414
"bulma": "^0.9.3",
1515
"hash-wasm": "^4.9.0",
1616
"http-status-codes": "^2.1.4",
17-
"ipfs-core": "^0.10.6",
18-
"ipfs-http-client": "^52.0.3",
19-
"jszip": "^3.7.0",
17+
"ipfs-core": "^0.10.8",
18+
"ipfs-http-client": "^52.0.5",
19+
"jszip": "^3.7.1",
2020
"keyword-mark-element": "^0.1.2",
2121
"node-fetch": "2.6.2",
2222
"pretty-bytes": "^5.6.0",
23-
"replaywebpage": "^1.5.2",
23+
"replaywebpage": "^1.5.3",
2424
"uuid": "^8.3.2",
2525
"warcio": "^1.4.7"
2626
},

src/electron/electron-recorder-app.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*eslint-env node */
22

3-
import {app, session, BrowserWindow, ipcMain, dialog, autoUpdater} from "electron";
3+
import {app, session, BrowserWindow, ipcMain, dialog } from "electron";
44
import { ElectronRecorder } from "./electron-recorder";
55

66
import { ElectronReplayApp, STATIC_PREFIX } from "replaywebpage/src/electron-replay-app";
@@ -140,11 +140,6 @@ class ElectronRecorderApp extends ElectronReplayApp
140140
return recWindow;
141141
}
142142

143-
checkUpdates() {
144-
autoUpdater.allowPrerelease = true;
145-
super.checkUpdates();
146-
}
147-
148143
async initRecorder(recWindow, recWebContents, url, collId, startRec, autorun, popupView = null) {
149144
const id = recWebContents.id;
150145

src/popup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { LitElement, html, css, unsafeCSS } from "lit-element";
2-
import { unsafeSVG } from "lit-html/directives/unsafe-svg";
1+
import { LitElement, html, css, unsafeCSS } from "lit";
2+
import { unsafeSVG } from "lit/directives/unsafe-svg.js";
33
import bulma from "bulma/bulma.sass";
44

55
import fasPlus from "@fortawesome/fontawesome-free/svgs/solid/plus.svg";

webpack.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ const moduleSettings = {
3232
rules: [
3333
{
3434
test: /\.svg$/,
35-
loader: "svg-inline-loader"
35+
use: "svg-inline-loader"
3636
},
3737
{
3838
test: /\.s(a|c)ss$/,
39-
loaders: ["to-string-loader", "css-loader", "sass-loader"]
39+
use: ["to-string-loader", "css-loader", "sass-loader"]
4040
},
4141
{
4242
test: /(dist\/wombat.js|src\/wombatWorkers.js|behaviors.js|extractPDF.js|ruffle.js)$/i,
43-
loaders: "raw-loader",
43+
use: "raw-loader",
4444
}
4545
]};
4646

wr-ext/bg.js

Lines changed: 15 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wr-ext/ipfs-core.min.js

Lines changed: 32 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wr-ext/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Webrecorder ArchiveWeb.page",
33
"description": "Create high-fidelity web archives directly in your browser",
4-
"version": "0.7.1",
4+
"version": "0.7.2",
55
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
66
"permissions": [
77
"debugger",

wr-ext/popup.js

Lines changed: 57 additions & 222 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wr-ext/replay/sw.js

Lines changed: 26 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wr-ext/replay/ui.js

Lines changed: 153 additions & 345 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)