Further branding cleanup

This commit is contained in:
Laura Hausmann 2023-07-21 18:03:46 +02:00
parent 1687568a08
commit c2b8d5bdb5
Signed by: zotan
GPG key ID: D044E84C5BE01605
2 changed files with 4 additions and 114 deletions

View file

@ -1216,8 +1216,7 @@ _registry:
domain: "Domain"
createKey: "Create key"
_aboutIceshrimp:
about: "Iceshrimp is a fork of Iceshrimp made by ThatOneCalculator, which has been in
development since 2022."
about: "Iceshrimp is yet another fork of Misskey, bringing you no-nonsense fixes, features & improvements you actually want since 2023."
contributors: "Main contributors"
allContributors: "All contributors"
source: "Source code"

View file

@ -43,7 +43,7 @@
</div>
<div class="_formBlock" style="text-align: center">
{{ i18n.ts._aboutFirefish.about }}<br /><a
href="https://joinfirefish.org/"
href="https://iceshrimp.dev/"
target="_blank"
class="_link"
>{{ i18n.ts.learnMore }}</a
@ -57,118 +57,17 @@
<FormSection>
<div class="_formLinks">
<FormLink
to="https://git.ztn.sh/e2net/iceshrimp"
to="https://iceshrimp.dev/iceshrimp/iceshrimp"
external
>
<template #icon
><i class="ph-code ph-bold ph-lg"></i
></template>
{{ i18n.ts._aboutFirefish.source }}
<template #suffix>zotan's git</template>
</FormLink>
<FormLink
to="https://opencollective.com/firefish"
external
>
<template #icon
><i class="ph-money ph-bold ph-lg"></i
></template>
{{ i18n.ts._aboutFirefish.donate }}
<template #suffix>Donate</template>
</FormLink>
<FormLink
to="https://hosted.weblate.org/engage/firefish/"
external
>
<template #icon
><i class="ph-translate ph-bold ph-lg"></i
></template>
{{ i18n.ts._aboutFirefish.translation }}
<template #suffix>Translate</template>
<template #suffix>Iceshrimp development</template>
</FormLink>
</div>
</FormSection>
<FormSection>
<template #label>{{
i18n.ts._aboutFirefish.contributors
}}</template>
<div class="_formLinks">
<FormLink to="/@kainoa@firefish.social"
><Mfm
:text="'$[sparkle @kainoa@firefish.social] (Main developer)'"
/></FormLink>
<FormLink to="/@freeplay@firefish.social"
><Mfm
:text="'@freeplay@firefish.social (UI/UX)'"
/></FormLink>
<FormLink to="/@namekuji@firefish.social"
><Mfm
:text="'@namekuji@firefish.social (Backend)'"
/></FormLink>
<FormLink to="/@dev@post.naskya.net"
><Mfm :text="'@dev@post.naskya.net (Backend)'"
/></FormLink>
<FormLink to="/@panos@firefish.social"
><Mfm
:text="'@panos@firefish.social (Project Coordinator)'"
/></FormLink>
<FormLink
to="https://www.youtube.com/c/Henkiwashere"
external
>Henki (error images artist)</FormLink
>
</div>
<template #caption
><MkLink
url="https://codeberg.org/firefish/firefish/activity"
>{{
i18n.ts._aboutFirefish.allContributors
}}</MkLink
></template
>
</FormSection>
<FormSection>
<template #label
><Mfm
:text="`$[x2 $[jelly ❤] ${i18n.ts._aboutFirefish.sponsors}]`"
/>
</template>
<MkSparkle>
<span
v-for="sponsor in sponsors"
:key="sponsor"
style="
margin-bottom: 0.5rem;
margin-right: 0.5rem;
font-size: 1.7rem;
"
>
<Mfm :text="`${sponsor}`" />
</span>
</MkSparkle>
</FormSection>
<FormSection>
<template #label
><Mfm text="$[jelly ❤]" />
{{ i18n.ts._aboutFirefish.patrons }}</template
>
<p>
{{ i18n.ts._aboutFirefish.patronsList }}
</p>
<MkSparkle>
<span
v-for="patron in patrons"
:key="patron"
style="
margin-bottom: 0.5rem;
margin-right: 0.5rem;
"
>
<Mfm :text="`${patron}`" />
</span>
</MkSparkle>
<p>{{ i18n.ts._aboutFirefish.morePatrons }}</p>
</FormSection>
</div>
</MkSpacer>
</div>
@ -189,14 +88,6 @@ import { defaultStore } from "@/store";
import * as os from "@/os";
import { definePageMetadata } from "@/scripts/page-metadata";
let patrons = [];
let sponsors = [];
const patronsResp = await os.api("patrons", { forceUpdate: true });
patrons = patronsResp.patrons;
sponsors = patronsResp.sponsors;
patrons = patrons.filter((patron) => !sponsors.includes(patron));
let easterEggReady = false;
let easterEggEmojis = $ref([]);
let easterEggEngine = $ref(null);