Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Site Links and Branding #375

Merged
merged 5 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,25 @@
## CHANGES

v2.2.4

- Loading: Fix for loading nested WACZ files (via wabac.js 2.20.7)
- Embeds: Support full reload on embeds via fullReload() call on embed web component

v2.2.3

- Fidelity: Update to wabac.js 2.20.6, wombat 3.8.7, improved support for localStorage replay, if available
- Fidelity: Improved upport for FB video replay (via wabac.js 2.20.6)

v2.2.2

- Fidelity: Update to wabac.js 2.20.3, wombat 3.8.6 for cache-override and worker rewrite improvements

v2.2.1

- Fidelity: Update to wabac.js 2.20.1 for document.write() comment frame detection improvement

v2.2.0

- Extensability: additional override options for AWP, make location toolbar more extensible
- Extensability: support importing as module via dist/index.js, separate from ui.js
- Deps: update to wabac.js 2.20.0, typescript support
Expand Down
12 changes: 6 additions & 6 deletions src/appmain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ export class ReplayWebApp extends LitElement {
<i
><a
target="_blank"
href="./docs/#archives-repositories-and-other-projects-using-replaywebpage"
>(See Examples)</a
href="https://webrecorder.net/replaywebpage/"
>(Learn More)</a
></i
>
</p>
Expand Down Expand Up @@ -771,13 +771,13 @@ export class ReplayWebApp extends LitElement {
}
</div>

<p>Full source code is available at:
<a href="https://github.com/webrecorder/replayweb.page" target="_blank">https://github.com/webrecorder/replayweb.page</a>
<p>Full source code is available
<a href="https://github.com/webrecorder/replayweb.page" target="_blank">on GitHub</a>.
</p>

<p>See the <a target="_blank" href="./docs">User Docs</a> or the GitHub README for more info on how it works.</p>
<p>See the <a target="_blank" href="./docs">documentation</a> for more info on how it works.</p>

<p>ReplayWeb.page is part of the <a href="https://webrecorder.net/" target="_blank">Webrecorder Project</a>.</p>
<p>ReplayWeb.page is developed by <a href="https://webrecorder.net/" target="_blank">Webrecorder</a>.</p>

<h3>Privacy</h3>
<p><b>No data is uploaded anywhere and no information is collected.</b></p>
Expand Down
1 change: 1 addition & 0 deletions src/assets/brand/webrecorder-lockup-color.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 9 additions & 8 deletions src/embed-receipt.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import rwpLogo from "~assets/brand/replaywebpage-icon-color.svg";
import brandLockupColor from "~assets/brand/replaywebpage-lockup-color.svg";
import webrecorderLockupColor from "~assets/brand/webrecorder-lockup-color.svg";
import btAngleDoubleDown from "~assets/icons/chevron-double-down.svg";
import btAngleDoubleUp from "~assets/icons/chevron-double-up.svg";
import fabGithub from "@fortawesome/fontawesome-free/svgs/brands/github.svg";
Expand Down Expand Up @@ -232,7 +232,7 @@ export class RWPEmbedReceipt extends LitElement {
style="white-space: nowrap;"
target="_blank"
href="https://replayweb.page"
>replayweb.page</a
>ReplayWeb.page</a
>.
</p>
${sourceUrl
Expand Down Expand Up @@ -310,16 +310,17 @@ export class RWPEmbedReceipt extends LitElement {
<div>
<a
target="_blank"
href="https://replayweb.page"
aria-label="ReplayWeb.page Home"
href="https://webrecorder.net/"
aria-label="Webrecorder"
>
<fa-icon
size=""
height="1.5rem"
width="12rem"
.svg=${brandLockupColor}
height="1rem"
width="10rem"
.svg=${webrecorderLockupColor}
aria-label=""
aria-hidden="true"
style="color:#001219;"
></fa-icon>
</a>
</div>
Expand All @@ -332,7 +333,7 @@ export class RWPEmbedReceipt extends LitElement {
>Source Code
<fa-icon
class="menu-logo ml-1"
size="1.0rem"
size="1rem"
aria-hidden="true"
.svg=${fabGithub}
></fa-icon>
Expand Down
Loading