diff --git a/Dockerfile b/Dockerfile
index bf763f6..484ff89 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -19,11 +19,11 @@ FROM oven/bun:1.1.24-alpine AS final
COPY --from=builder /app/.output/ /app
LABEL org.opencontainers.image.authors="Gaspard Wierzbinski (https://cpluspatch.com)"
-LABEL org.opencontainers.image.source="https://github.com/lysand-org/frontend"
-LABEL org.opencontainers.image.vendor="Lysand Org"
+LABEL org.opencontainers.image.source="https://github.com/versia-pub/frontend"
+LABEL org.opencontainers.image.vendor="Versia"
LABEL org.opencontainers.image.licenses="AGPL-3.0"
-LABEL org.opencontainers.image.title="Lysand-FE"
-LABEL org.opencontainers.image.description="Frontend for the Lysand Project"
+LABEL org.opencontainers.image.title="Versia-FE"
+LABEL org.opencontainers.image.description="Frontend for the Versia Server Project"
WORKDIR /app
CMD ["bun", "run", "server/index.mjs"]
\ No newline at end of file
diff --git a/README.md b/README.md
index f78ae12..908437a 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
-
+
-lysand-fe
+versia-fe
-**Lysand-FE** is a beautiful, fast and responsive front-end for the Lysand project.
+**Versia-FE** is a beautiful, fast and responsive front-end for the Versia Server project.
## Features
@@ -18,7 +18,7 @@
- [x] Following
- [x] Multiple accounts
- [x] Custom Emojis
-- [x] Lysand Permissions support
+- [x] Versia Server Permissions support
- [x] Note editing
- [x] Alt text support everywhere
- [x] Media uploads
@@ -55,31 +55,31 @@ Benchmarks are due to be conducted soon™.
## Installation
-Lysand-FE is included in the provided `docker-compose` file during [Lysand Server installation](https://github.com/lysand-org/lysand/blob/main/docs/installation.md).
+Versia-FE is included in the provided `docker-compose` file during [Versia Server installation](https://github.com/versia-pub/server/blob/main/docs/installation.md).
-To have Lysand-FE and Lysand Server running on the same domain, edit the Lysand Server configuration to point to the Lysand-FE container's address (`frontend` category inside config).
+To have Versia-FE and Versia Server running on the same domain, edit the Versia Server configuration to point to the Versia-FE container's address (`frontend` category inside config).
### Manual Installation
-Here are the steps to install Lysand-FE manually:
+Here are the steps to install Versia-FE manually:
#### Docker/Podman
```yaml
services:
fe:
- image: ghcr.io/lysand-org/frontend:main
- container_name: lysand-fe
+ image: ghcr.io/versia-pub/frontend:main
+ container_name: versia-fe
restart: unless-stopped
networks:
- - lysand-net
+ - versia-net
environment:
NUXT_PUBLIC_API_HOST: https://yourserver.com
# For Tor users, set the following environment variable in addition to the above
# NUXT_PUBLIC_ONION_API_HOST: http://youronionserver.onion
```
-Then, the frontend will be available at `http://localhost:3000` inside the container. To link it to a Lysand Server, set the `NUXT_PUBLIC_API_HOST` environment variable to the server's URL.
+Then, the frontend will be available at `http://localhost:3000` inside the container. To link it to a Versia Server, set the `NUXT_PUBLIC_API_HOST` environment variable to the server's URL.
## License
@@ -94,4 +94,4 @@ This project is licensed under the AGPL 3.0 - see the [LICENSE](LICENSE) file fo
### People
-- [**April John**](https://github.com/cutestnekoaqua): Creator and maintainer of the Lysand Server ActivityPub bridge.
\ No newline at end of file
+- [**April John**](https://github.com/cutestnekoaqua): Creator and maintainer of the Versia Server ActivityPub bridge.
\ No newline at end of file
diff --git a/app.vue b/app.vue
index 4121896..3272e9c 100644
--- a/app.vue
+++ b/app.vue
@@ -30,7 +30,7 @@ const customCss = useSetting(SettingIds.CustomCSS);
useSeoMeta({
titleTemplate: (titleChunk) => {
- return titleChunk ? `${titleChunk} · Lysand` : "Lysand";
+ return titleChunk ? `${titleChunk} · Versia` : "Versia";
},
title: computed(() => instance.value?.title ?? ""),
ogImage: computed(() => instance.value?.banner.url),
@@ -41,7 +41,7 @@ useSeoMeta({
twitterImage: computed(() => instance.value?.banner.url),
description: computed(() => convert(description.value?.content ?? "")),
ogDescription: computed(() => convert(description.value?.content ?? "")),
- ogSiteName: "Lysand",
+ ogSiteName: "Versia",
colorScheme: "dark",
themeColor: "#f9a8d4",
});
diff --git a/bun.lockb b/bun.lockb
index bb4dacc..c5e5abe 100755
Binary files a/bun.lockb and b/bun.lockb differ
diff --git a/components/composer/composer.vue b/components/composer/composer.vue
index 378d9fb..1dade8b 100644
--- a/components/composer/composer.vue
+++ b/components/composer/composer.vue
@@ -45,7 +45,7 @@