Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Rename radicle.network to radicle.xyz
Sebastian Martinez committed 3 years ago
commit a16814d9c3e162d6b83ec570407756368761cb6b
parent 3d00fc39bb224e51ecf0c353e575cbc9bc4b7c96
4 files changed +8 -8
modified index.html
@@ -8,8 +8,8 @@
    <meta name="theme-color" content="#0e171f">
    <meta property="og:title" content="Radicle Interface" />
    <meta property="og:description" content="Interact with Radicle." />
-
    <meta property="og:url" content="https://app.radicle.network" />
-
    <meta property="og:image" content="https://app.radicle.network/images/app.png" />
+
    <meta property="og:url" content="https://app.radicle.xyz" />
+
    <meta property="og:image" content="https://app.radicle.xyz/images/app.png" />
    <meta property="og:image:width" content="240" />
    <meta property="og:image:height" content="240" />
    <meta property="og:type" content="website" />
modified src/App.svelte
@@ -68,7 +68,7 @@
<svelte:head>
  <title>Radicle</title>
  {#if import.meta.env.PROD}
-
    <script defer data-domain="app.radicle.network" src="https://plausible.io/js/plausible.js"></script>
+
    <script defer data-domain="app.radicle.xyz" src="https://plausible.io/js/plausible.js"></script>
  {/if}
</svelte:head>

modified src/base/projects/CloneButton.svelte
@@ -55,7 +55,7 @@
      <label for="rad-clone-url">
        Use the <a
          target="_blank"
-
          href="https://radicle.network/get-started.html"
+
          href="https://radicle.xyz/get-started.html"
          class="link">Radicle CLI</a> to clone this project.
      </label>
      <br />
modified src/utils.test.ts
@@ -186,8 +186,8 @@ describe("String Assertions", () => {
  });

  test.each([
-
    { url: "https://app.radicle.network", expected: true },
-
    { url: "http://app.radicle.network", expected: true },
+
    { url: "https://app.radicle.xyz", expected: true },
+
    { url: "http://app.radicle.xyz", expected: true },
    { url: "http://app", expected: true },
    { url: "://app", expected: false },
    { url: "//app", expected: false },
@@ -286,8 +286,8 @@ describe("Parse Strings", () => {

describe("Path Manipulation", () => {
  test.each([
-
    { imagePath: "/assets/images/tux.png", base: "/", origin: "https://app.radicle.network", expected: "assets/images/tux.png" },
-
    { imagePath: "assets/images/tux.png", base: "/", origin: "https://app.radicle.network", expected: "assets/images/tux.png" },
+
    { imagePath: "/assets/images/tux.png", base: "/", origin: "https://app.radicle.xyz", expected: "assets/images/tux.png" },
+
    { imagePath: "assets/images/tux.png", base: "/", origin: "https://app.radicle.xyz", expected: "assets/images/tux.png" },
    { imagePath: "assets/images/tux.png", base: "/", origin: "http://localhost:3000", expected: "assets/images/tux.png" },
    { imagePath: "../tux.png", base: "/components/assets/README.md", origin: "http://localhost:3000", expected: "components/tux.png" },
    { imagePath: "../tux.png", base: "/components/assets/", origin: "http://localhost:3000", expected: "components/tux.png" },