-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
2,615 additions
and
1,562 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
LICENSE.md | ||
src/static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"runem.lit-plugin", | ||
"streetsidesoftware.code-spell-checker" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"cSpell.languageSettings": [ | ||
{ | ||
"languageId": "typescript", | ||
"allowCompoundWords": true, | ||
"dictionaries": ["typescript", "node", "html", "fonts", "css"] | ||
}, | ||
{ | ||
"languageId": "javascript", | ||
"allowCompoundWords": true, | ||
"dictionaries": ["typescript", "node", "html", "fonts", "css"] | ||
}, | ||
{ | ||
"languageId": "markdown", | ||
"allowCompoundWords": true, | ||
"dictionaries": ["typescript", "node", "html", "fonts", "css"] | ||
} | ||
], | ||
"cSpell.words": [ | ||
"authed", | ||
"autoipfs", | ||
"browsertrix", | ||
"btrix", | ||
"Bulma", | ||
"canonicalization", | ||
"cdxj", | ||
"Collec", | ||
"colls", | ||
"electronuserland", | ||
"flexsearch", | ||
"gapi", | ||
"gauth", | ||
"gdrive", | ||
"iframes", | ||
"indexeddb", | ||
"inited", | ||
"ipfs", | ||
"ival", | ||
"kiwix", | ||
"ndjson", | ||
"pmarsceill", | ||
"popd", | ||
"pushd", | ||
"pywb", | ||
"reauth", | ||
"recalc", | ||
"replaybase", | ||
"replayweb.page", | ||
"sesh", | ||
"Strs", | ||
"surt", | ||
"svgs", | ||
"swmanager", | ||
"swonly", | ||
"Unfullscreen", | ||
"unrewriting", | ||
"wabac", | ||
"WACZ", | ||
"WARC", | ||
"warcio", | ||
"webrecorder", | ||
"wrlogo" | ||
], | ||
"cSpell.ignorePaths": ["node_modules", ".git", "*.lock", "package.json"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,29 @@ | ||
const { notarize } = require('electron-notarize'); | ||
const { notarize } = require("electron-notarize"); | ||
|
||
exports.default = async function notarizing(context) { | ||
const { electronPlatformName, appOutDir } = context; | ||
if (electronPlatformName !== 'darwin') { | ||
const { electronPlatformName, appOutDir } = context; | ||
if (electronPlatformName !== "darwin") { | ||
return; | ||
} | ||
|
||
if (process.env.CSC_IDENTITY_AUTO_DISCOVERY === "false") { | ||
console.log('Skipped signing and notarizing'); | ||
console.log("Skipped signing and notarizing"); | ||
return; | ||
} | ||
|
||
if (!process.env.APPLE_ID || !process.env.APPLE_ID_PASSWORD) { | ||
console.log('Notarize credentials missing, skipping'); | ||
console.log("Notarize credentials missing, skipping"); | ||
return; | ||
} | ||
|
||
console.log('Notarizing...'); | ||
console.log("Notarizing..."); | ||
|
||
const appName = context.packager.appInfo.productFilename; | ||
|
||
return await notarize({ | ||
appBundleId: 'net.webrecorder.archiveweb.page', | ||
appBundleId: "net.webrecorder.archiveweb.page", | ||
appPath: `${appOutDir}/${appName}.app`, | ||
appleId: process.env.APPLE_ID, | ||
appleIdPassword: process.env.APPLE_ID_PASSWORD, | ||
}); | ||
}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
export { ArchiveWebApp } from './src/ui/app.js'; | ||
export { RecordEmbed } from './src/ui/recordembed.js'; | ||
|
||
export { ArchiveWebApp } from "./src/ui/app.js"; | ||
export { RecordEmbed } from "./src/ui/recordembed.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
|
||
export const BEHAVIOR_WAIT_LOAD = "wait_load"; | ||
export const BEHAVIOR_READY_START = "ready"; | ||
export const BEHAVIOR_PAUSED = "paused"; | ||
export const BEHAVIOR_RUNNING = "running"; | ||
export const BEHAVIOR_DONE = "done"; | ||
export const BEHAVIOR_DONE = "done"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.