From 98350bbd24582d95796dcfe5058bee43a1be3e50 Mon Sep 17 00:00:00 2001 From: Wyvest Date: Thu, 4 Jan 2024 07:12:03 -0500 Subject: add easeify as excluded mod --- apps/website/src/pages/about.astro | 10 +++++----- apps/website/src/pages/mods.astro | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/website/src/pages/about.astro b/apps/website/src/pages/about.astro index 9398793..0126542 100644 --- a/apps/website/src/pages/about.astro +++ b/apps/website/src/pages/about.astro @@ -24,7 +24,7 @@ import Layout from '@layouts/Layout.astro'; October, 2021 - We began as a small development team aimlessly trying to build something beyond us. Joining forces with W-OVERFLOW in June of 2022, Polyfrost finally had the resources to achieve our dream of unified mod configs. + We began as a small development team trying to build ambitious projects beyond us. Joining forces with W-OVERFLOW (a modding organization formerly owned by one of the current owners), Polyfrost finally had the resources to achieve our dream of a unified config for all mods. @@ -50,10 +50,10 @@ import Layout from '@layouts/Layout.astro';
- Hey look, OneConfig's a hit + Hey look, OneConfig's a hit!
- In the coming months, our little baby would independently surpass 200,000 views and our community grew by around 300%. Shortly after, our first major update releases, bringing substantial customization, new animations, design overhauls, and many bug fixes. + In the coming months, our little baby would independently surpass 200,000 views on YouTube and our community grew by around 300%. Shortly after, our first major update releases, bringing substantial customization, new animations, design overhauls, and many bug fixes.
@@ -61,10 +61,10 @@ import Layout from '@layouts/Layout.astro';
- Finally, it's ready for all + Finally, it's ready for release
- It's been a long journey, with many bugs, hotfixes, mod incompatibilities, support tickets, list goes on. However, after two years of development, we finally announced the complete release of OneConfig + It's been a long journey, with many bugs, hotfixes, mod incompatibilities, support tickets, list goes on. However, after two years of development, we finally announced the complete release of OneConfig. In November 2023, we released all our OneConfig mods out of beta and into the world.
diff --git a/apps/website/src/pages/mods.astro b/apps/website/src/pages/mods.astro index cf231d5..1bdb2ed 100644 --- a/apps/website/src/pages/mods.astro +++ b/apps/website/src/pages/mods.astro @@ -12,7 +12,7 @@ import { Code } from 'astro:components'; const res = await fetch('https://api.modrinth.com/v2/user/Wyvest/projects'); const data = await res.json(); const mods = data.filter((mod: any) => { - return mod.slug !== 'oneconfig'; + return mod.slug !== 'oneconfig' || mod.slug !== 'easeify'; }); --- -- cgit