Skip to content

Commit 2f798ee

Browse files
Shrinks99ikreymer
andauthored
Update Site Links and Branding (#375)
Partially addresses webrecorder/website#133 - Adds link to ReplayWeb.page marketing site instead of the docs on the homepage to better explain the product to new users - Updates embed receipt with company logo - Minor capitalization fixes and copy updates. ### Screenshots <img width="677" alt="Screenshot 2024-11-23 at 2 10 38 AM" src="https://github.com/user-attachments/assets/1f1fef82-12fb-460c-9757-cf0cb70bc281"> <img width="696" alt="Screenshot 2024-11-23 at 2 15 20 AM" src="https://github.com/user-attachments/assets/2991bd43-d563-492e-9575-5201ff31a91e"> --------- Co-authored-by: Ilya Kreymer <[email protected]> Co-authored-by: Ilya Kreymer <[email protected]>
1 parent 9fa008b commit 2f798ee

File tree

4 files changed

+21
-14
lines changed

4 files changed

+21
-14
lines changed

CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,25 @@
33
## CHANGES
44

55
v2.2.4
6+
67
- Loading: Fix for loading nested WACZ files (via wabac.js 2.20.7)
78
- Embeds: Support full reload on embeds via fullReload() call on embed web component
89

910
v2.2.3
11+
1012
- Fidelity: Update to wabac.js 2.20.6, wombat 3.8.7, improved support for localStorage replay, if available
1113
- Fidelity: Improved upport for FB video replay (via wabac.js 2.20.6)
1214

1315
v2.2.2
16+
1417
- Fidelity: Update to wabac.js 2.20.3, wombat 3.8.6 for cache-override and worker rewrite improvements
1518

1619
v2.2.1
20+
1721
- Fidelity: Update to wabac.js 2.20.1 for document.write() comment frame detection improvement
1822

1923
v2.2.0
24+
2025
- Extensability: additional override options for AWP, make location toolbar more extensible
2126
- Extensability: support importing as module via dist/index.js, separate from ui.js
2227
- Deps: update to wabac.js 2.20.0, typescript support

src/appmain.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,8 @@ export class ReplayWebApp extends LitElement {
416416
<i
417417
><a
418418
target="_blank"
419-
href="./docs/#archives-repositories-and-other-projects-using-replaywebpage"
420-
>(See Examples)</a
419+
href="https://webrecorder.net/replaywebpage/"
420+
>(Learn More)</a
421421
></i
422422
>
423423
</p>
@@ -771,13 +771,13 @@ export class ReplayWebApp extends LitElement {
771771
}
772772
</div>
773773
774-
<p>Full source code is available at:
775-
<a href="https://github.com/webrecorder/replayweb.page" target="_blank">https://github.com/webrecorder/replayweb.page</a>
774+
<p>Full source code is available
775+
<a href="https://github.com/webrecorder/replayweb.page" target="_blank">on GitHub</a>.
776776
</p>
777777
778-
<p>See the <a target="_blank" href="./docs">User Docs</a> or the GitHub README for more info on how it works.</p>
778+
<p>See the <a target="_blank" href="./docs">documentation</a> for more info on how it works.</p>
779779
780-
<p>ReplayWeb.page is part of the <a href="https://webrecorder.net/" target="_blank">Webrecorder Project</a>.</p>
780+
<p>ReplayWeb.page is developed by <a href="https://webrecorder.net/" target="_blank">Webrecorder</a>.</p>
781781
782782
<h3>Privacy</h3>
783783
<p><b>No data is uploaded anywhere and no information is collected.</b></p>
Loading

src/embed-receipt.ts

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import rwpLogo from "~assets/brand/replaywebpage-icon-color.svg";
2-
import brandLockupColor from "~assets/brand/replaywebpage-lockup-color.svg";
2+
import webrecorderLockupColor from "~assets/brand/webrecorder-lockup-color.svg";
33
import btAngleDoubleDown from "~assets/icons/chevron-double-down.svg";
44
import btAngleDoubleUp from "~assets/icons/chevron-double-up.svg";
55
import fabGithub from "@fortawesome/fontawesome-free/svgs/brands/github.svg";
@@ -232,7 +232,7 @@ export class RWPEmbedReceipt extends LitElement {
232232
style="white-space: nowrap;"
233233
target="_blank"
234234
href="https://replayweb.page"
235-
>replayweb.page</a
235+
>ReplayWeb.page</a
236236
>.
237237
</p>
238238
${sourceUrl
@@ -310,16 +310,17 @@ export class RWPEmbedReceipt extends LitElement {
310310
<div>
311311
<a
312312
target="_blank"
313-
href="https://replayweb.page"
314-
aria-label="ReplayWeb.page Home"
313+
href="https://webrecorder.net/"
314+
aria-label="Webrecorder"
315315
>
316316
<fa-icon
317317
size=""
318-
height="1.5rem"
319-
width="12rem"
320-
.svg=${brandLockupColor}
318+
height="1rem"
319+
width="10rem"
320+
.svg=${webrecorderLockupColor}
321321
aria-label=""
322322
aria-hidden="true"
323+
style="color:#001219;"
323324
></fa-icon>
324325
</a>
325326
</div>
@@ -332,7 +333,7 @@ export class RWPEmbedReceipt extends LitElement {
332333
>Source Code
333334
<fa-icon
334335
class="menu-logo ml-1"
335-
size="1.0rem"
336+
size="1rem"
336337
aria-hidden="true"
337338
.svg=${fabGithub}
338339
></fa-icon>

0 commit comments

Comments
 (0)