Skip to content

Commit

Permalink
gh action: update action version
Browse files Browse the repository at this point in the history
dependency: update lit to latest
dependency: rollback ipfs-core update, as electron-builder does not yet support node>=15
  • Loading branch information
ikreymer committed Jan 9, 2022
1 parent bda4913 commit 114d5fe
Show file tree
Hide file tree
Showing 8 changed files with 1,188 additions and 668 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
uses: actions/checkout@v2

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: 16
node-version: '16'

- name: Cache Dirs
uses: actions/cache@v2
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ v1.5.7
- Dependencies: update to wabac.js 2.10.0 and wombat 3.3.6
- Dependencies: update to electron 16.0.6 (chromium 96)
- Dependencies: update ruffle to latest nightly (2022-01-08)
- Dependencies: update lit to 2.1.1

v1.5.6
- Fidelity: Fix assignment to local location causing invalid redirect (via wombat 3.3.5)
Expand Down
4 changes: 2 additions & 2 deletions _data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"electron-updater": "^4.3.9",
"fetch-ndjson": "^1.1.6",
"flexsearch": "^0.7.21",
"ipfs-core": "^0.13.0",
"ipfs-core": "^0.10.8",
"keyword-mark-element": "^0.2.0",
"lit": "^2.0.0-rc.4",
"lit": "^2.1.1",
"marked": "^3.0.3",
"mime-types": "^2.1.32",
"minimist": "^1.2.5",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"electron-updater": "^4.3.9",
"fetch-ndjson": "^1.1.6",
"flexsearch": "^0.7.21",
"ipfs-core": "^0.13.0",
"ipfs-core": "^0.10.8",
"keyword-mark-element": "^0.2.0",
"lit": "^2.0.0-rc.4",
"lit": "^2.1.1",
"marked": "^3.0.3",
"mime-types": "^2.1.32",
"minimist": "^1.2.5",
Expand Down
2 changes: 1 addition & 1 deletion sw.js

Large diffs are not rendered by default.

470 changes: 235 additions & 235 deletions ui.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const GDRIVE_CLIENT_ID = "160798412227-tko4c82uopud11q105b2lvbogsj77hlg.apps.goo
const BANNER_TEXT = "'[name].js is part of ReplayWeb.page (https://replayweb.page) Copyright (C) 2020-2021, Webrecorder Software. Licensed under the Affero General Public License v3.'";

// IPFS ipfs-core lib url
const IPFS_CORE_URL = `https://cdn.jsdelivr.net/npm/ipfs-core@${package_json.dependencies["ipfs-core"].replace("^", "")}/index.min.js`;
const IPFS_CORE_URL = `https://cdn.jsdelivr.net/npm/ipfs-core@${package_json.dependencies["ipfs-core"].replace("^", "")}/dist/index.min.js`;


const fallback = {
Expand Down Expand Up @@ -163,7 +163,7 @@ const browserConfig = (/*env, argv*/) => {
new webpack.BannerPlugin(BANNER_TEXT),
new CopyPlugin({
patterns: [
{ from: "node_modules/ipfs-core/index.min.js", to: "ipfs-core.min.js" },
{ from: "node_modules/ipfs-core/dist/index.min.js", to: "ipfs-core.min.js" },
{ from: "package.json", to: "_data/package.json" }
]
}),
Expand Down
Loading

0 comments on commit 114d5fe

Please sign in to comment.