From e67633298e49435f047b2d4699f09ecd8e383bb5 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 19 Jul 2023 10:06:57 -0700 Subject: [PATCH] docs: :truck: new website --- README.md | 18 +-- animated.svg | 153 ++++++++++++++++++ chart/Chart.yaml | 2 +- chart/README.md | 2 +- packages/backend/src/server/nodeinfo.ts | 2 +- packages/backend/test/mfm.ts | 26 +-- packages/client/src/components/MkSample.vue | 2 +- packages/client/src/components/MkSignup.vue | 2 +- packages/client/src/pages/about-firefish.vue | 2 +- packages/client/src/pages/mfm-cheat-sheet.vue | 2 +- packages/client/src/scripts/helpMenu.ts | 2 +- packages/client/src/ui/visitor/a.vue | 2 +- packages/client/src/ui/visitor/b.vue | 2 +- packages/client/src/ui/visitor/kanban.vue | 2 +- title.svg | 39 +++++ title_float.svg | 64 -------- 16 files changed, 225 insertions(+), 97 deletions(-) create mode 100644 animated.svg create mode 100644 title.svg delete mode 100644 title_float.svg diff --git a/README.md b/README.md index d63e43f0ab..def87279b1 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@
- - Firefish logo + + Firefish logo -**๐ŸŒŽ **[Firefish](https://firefish.org/)** is an open source, decentralized social media platform that's free forever! ๐Ÿš€** +**๐ŸŒŽ **[Firefish](https://joinfirefish.org/)** is an open source, decentralized social media platform that's free forever! ๐Ÿš€** [![no github badge](https://nogithub.codeberg.page/badge.svg)](https://nogithub.codeberg.page/) [![status badge](https://ci.codeberg.org/api/badges/firefish/firefish/status.svg)](https://ci.codeberg.org/firefish/firefish) @@ -18,7 +18,7 @@
-Calc (the Firefish mascot) smoking a fat dart + # โœจ About Firefish @@ -54,11 +54,11 @@ - If you have the means to, [donations](https://opencollective.com/Firefish) are a great way to keep us going. - If you know how to program in TypeScript, Vue, or Rust, read the [contributing](./CONTRIBUTING.md) document. - If you know a non-English language, translating Firefish on [Weblate](https://hosted.weblate.org/engage/firefish/) help bring Firefish to more people. No technical experience needed! -- Want to write/report about us, have any professional inquiries, or just have questions to ask? Contact us [here!](https://firefish.org/contact/) +- Want to write/report about us, have any professional inquiries, or just have questions to ask? Contact us [here!](https://joinfirefish.org/contact/) ### All links -- ๐ŸŒ Homepage: +- ๐ŸŒ Homepage: - ๐Ÿ’ธ Donations: - OpenCollective: - Liberapay: @@ -66,15 +66,15 @@ - ๐Ÿšข Flagship server: - ๐Ÿ’ Matrix support room: - ๐Ÿ“ฃ Official account: -- ๐Ÿ“œ Server list: +- ๐Ÿ“œ Server list: - โœ๏ธ Weblate: -- ๏ธ๏ธ๐Ÿ“ฌ Contact: +- ๏ธ๏ธ๐Ÿ“ฌ Contact: # ๐ŸŒ  Getting started Want to just join a Firefish server? View the list here, pick one, and join: -### https://firefish.org/join +### https://joinfirefish.org/join --- diff --git a/animated.svg b/animated.svg new file mode 100644 index 0000000000..7b36f4d77e --- /dev/null +++ b/animated.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 3bcd2adeaa..8b58323865 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: firefish -description: A fun, new, open way to experience social media https://firefish.org +description: A fun, new, open way to experience social media https://joinfirefish.org # A chart can be either an 'application' or a 'library' chart. # diff --git a/chart/README.md b/chart/README.md index 235c3c5c6c..0833eb9a83 100644 --- a/chart/README.md +++ b/chart/README.md @@ -2,7 +2,7 @@ ![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: rc](https://img.shields.io/badge/AppVersion-rc-informational?style=flat-square) -A fun, new, open way to experience social media https://firefish.org +A fun, new, open way to experience social media https://joinfirefish.org ## Requirements diff --git a/packages/backend/src/server/nodeinfo.ts b/packages/backend/src/server/nodeinfo.ts index 595d0a101c..2d01446522 100644 --- a/packages/backend/src/server/nodeinfo.ts +++ b/packages/backend/src/server/nodeinfo.ts @@ -53,7 +53,7 @@ const nodeinfo2 = async () => { name: "firefish", version: config.version, repository: meta.repositoryUrl, - homepage: "https://firefish.org/", + homepage: "https://joinfirefish.org/", }, protocols: ["activitypub"], services: { diff --git a/packages/backend/test/mfm.ts b/packages/backend/test/mfm.ts index 1fc521c3db..926bdd259d 100644 --- a/packages/backend/test/mfm.ts +++ b/packages/backend/test/mfm.ts @@ -55,33 +55,33 @@ describe("fromHtml", () => { it("link with different text", () => { assert.deepStrictEqual( - fromHtml('

a c d

'), - "a [c](https://firefish.org/b) d", + fromHtml('

a c d

'), + "a [c](https://joinfirefish.org/b) d", ); }); it("link with different text, but not encoded", () => { assert.deepStrictEqual( - fromHtml('

a c d

'), - "a [c]() d", + fromHtml('

a c d

'), + "a [c]() d", ); }); it("link with same text", () => { assert.deepStrictEqual( fromHtml( - '

a https://firefish.org/b d

', + '

a https://joinfirefish.org/b d

', ), - "a https://firefish.org/b d", + "a https://joinfirefish.org/b d", ); }); it("link with same text, but not encoded", () => { assert.deepStrictEqual( fromHtml( - '

a https://firefish.org/รค d

', + '

a https://joinfirefish.org/รค d

', ), - "a d", + "a d", ); }); @@ -98,8 +98,8 @@ describe("fromHtml", () => { it("link without text", () => { assert.deepStrictEqual( - fromHtml('

a d

'), - "a https://firefish.org/b d", + fromHtml('

a d

'), + "a https://joinfirefish.org/b d", ); }); @@ -110,15 +110,15 @@ describe("fromHtml", () => { it("mention", () => { assert.deepStrictEqual( fromHtml( - '

a @user d

', + '

a @user d

', ), - "a @user@firefish.org d", + "a @user@joinfirefish.org d", ); }); it("hashtag", () => { assert.deepStrictEqual( - fromHtml('

a #a d

', [ + fromHtml('

a #a d

', [ "#a", ]), "a #a d", diff --git a/packages/client/src/components/MkSample.vue b/packages/client/src/components/MkSample.vue index 7d1705c645..6d87494488 100644 --- a/packages/client/src/components/MkSample.vue +++ b/packages/client/src/components/MkSample.vue @@ -55,7 +55,7 @@ export default defineComponent({ this.$i ? this.$i.username : "guest" }.\nAlso, here is ${config.url} and [example link](${ config.url - }). for more details, see https://firefish.org.\nAs you know #misskey is open-source software.`, + }). for more details, see https://joinfirefish.org.\nAs you know #misskey is open-source software.`, }; }, diff --git a/packages/client/src/components/MkSignup.vue b/packages/client/src/components/MkSignup.vue index ab08569148..c597858da2 100644 --- a/packages/client/src/components/MkSignup.vue +++ b/packages/client/src/components/MkSignup.vue @@ -1,7 +1,7 @@