5ae226bbf2
- 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.
59 lines
1.9 KiB
TypeScript
59 lines
1.9 KiB
TypeScript
// Live Hytale plugins shipped publicly — featured on /hytale#demos
|
|
// Each entry has corresponding i18n keys at hytale.demos.{id}.*
|
|
export interface HytaleDemo {
|
|
id: string
|
|
image: string
|
|
github?: string
|
|
gitea?: string
|
|
curseforge?: string
|
|
modtale?: string
|
|
website?: string
|
|
tech: string[]
|
|
status: 'live' | 'pending' | 'soon'
|
|
featured?: boolean
|
|
}
|
|
|
|
export const hytaleDemos: HytaleDemo[] = [
|
|
{
|
|
id: 'votepipe',
|
|
image: '/images/projects/votepipe.svg',
|
|
website: 'https://votepipe.com',
|
|
modtale: 'https://modtale.net/mod/votepipe',
|
|
curseforge: 'https://www.curseforge.com/hytale/mods/votepipe',
|
|
tech: ['Java 25', 'SaaS', 'Webhooks', 'Votifier'],
|
|
status: 'live',
|
|
featured: true,
|
|
},
|
|
{
|
|
id: 'gravity-flip',
|
|
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',
|
|
},
|
|
{
|
|
id: 'async',
|
|
image: '/images/projects/async.png',
|
|
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,
|
|
},
|
|
{
|
|
id: 'chain-lightning',
|
|
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',
|
|
},
|
|
]
|