From 5ae226bbf2201771916557a757d0a5f8aea47f02 Mon Sep 17 00:00:00 2001 From: kayjaydee Date: Tue, 28 Apr 2026 19:23:18 +0200 Subject: [PATCH] feat(hytale): add Gitea support for Hytale demos - Updated HytaleDemoGrid.vue to include a button for Gitea links, enhancing visibility for users. - Modified hytaleDemos.ts to add Gitea URLs for existing demos, providing additional access options. - Updated projects.ts to include Gitea links for GravityFlip and ChainLightning projects, improving resource accessibility. This commit expands the integration of Gitea within the Hytale demo offerings, promoting alternative hosting options for users. --- app/components/HytaleDemoGrid.vue | 10 ++++++++++ app/data/hytaleDemos.ts | 6 ++++++ app/data/projects.ts | 16 ++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/app/components/HytaleDemoGrid.vue b/app/components/HytaleDemoGrid.vue index 81ac81a..6d38fa9 100644 --- a/app/components/HytaleDemoGrid.vue +++ b/app/components/HytaleDemoGrid.vue @@ -120,6 +120,16 @@ const { t } = useI18n() size="sm" icon="i-simple-icons-github" /> + diff --git a/app/data/hytaleDemos.ts b/app/data/hytaleDemos.ts index ea38264..038be62 100644 --- a/app/data/hytaleDemos.ts +++ b/app/data/hytaleDemos.ts @@ -4,6 +4,7 @@ export interface HytaleDemo { id: string image: string github?: string + gitea?: string curseforge?: string modtale?: string website?: string @@ -28,6 +29,8 @@ export const hytaleDemos: HytaleDemo[] = [ image: '/images/projects/gravityflip.png', modtale: 'https://modtale.net/mod/gravity-flip', curseforge: 'https://curseforge.com/hytale/mods/gravity-flip', + github: 'https://github.com/Mr-KayJayDee/hytale-gravity-flip', + gitea: 'https://gitea.kamisama.ovh/kayjaydee/hytale-gravity-flip', tech: ['Java 25', 'Gradle Shadow', 'Hytale API'], status: 'live', }, @@ -37,6 +40,7 @@ export const hytaleDemos: HytaleDemo[] = [ modtale: 'https://modtale.net/mod/async', curseforge: 'https://www.curseforge.com/hytale/mods/async', github: 'https://github.com/Mr-KayJayDee/async', + gitea: 'https://gitea.kamisama.ovh/kayjaydee/async', tech: ['Kotlin 2.2', 'Coroutines', 'JDK 25', 'Hytale API'], status: 'live', featured: true, @@ -46,6 +50,8 @@ export const hytaleDemos: HytaleDemo[] = [ image: '/images/projects/chain-lightning.png', modtale: 'https://modtale.net/mod/chain-lightning-sceptre', curseforge: 'https://www.curseforge.com/hytale/mods/chain-lightning-sceptre', + github: 'https://github.com/Mr-KayJayDee/hytale-chain-lightning', + gitea: 'https://gitea.kamisama.ovh/kayjaydee/hytale-chain-lightning', tech: ['Java 25', 'JUnit 5', 'Hytale API'], status: 'live', }, diff --git a/app/data/projects.ts b/app/data/projects.ts index 6fd411f..310a43b 100644 --- a/app/data/projects.ts +++ b/app/data/projects.ts @@ -45,6 +45,14 @@ export const projects: Omit