Added the MCDash software

This commit is contained in:
Mathias Wagner 2023-08-13 17:06:22 +02:00
parent ca471a864a
commit 428c41bdd3
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -2,6 +2,7 @@ import UpdateImage from "./images/update.webp";
import MySpeedImage from "./images/myspeed.webp"; import MySpeedImage from "./images/myspeed.webp";
import DockerImage from "./images/docker.webp"; import DockerImage from "./images/docker.webp";
import NextCloudImage from "./images/nextcloud.webp"; import NextCloudImage from "./images/nextcloud.webp";
import MCDashImage from "./images/mcdash.webp";
import PterodactylImage from "./images/pterodactyl.webp"; import PterodactylImage from "./images/pterodactyl.webp";
import { import {
faBox, faEnvelope, faBox, faEnvelope,
@ -31,6 +32,19 @@ export default [
value: "Stabil"} value: "Stabil"}
] ]
}, },
{
name: "MCDash",
icon: MCDashImage,
configuration: [
{type: "text", id: "text", text: <>Ältere Versionen verfügbar im <a href="https://create.mcdash.gnmyt.dev" target="_blank">Creator</a></>, icon: faInfoCircle},
{type: "select", id: "software", text: "Software", icon: faBox, options: ["Spigot", "Paper", "Purpur"],
value: "Paper"},
{type: "input", id: "port", text: "Port", icon: faGlobe, value: "25565"},
{type: "input", id: "panel", text: "Panel", icon: faGlobe, value: "7867"},
{type: "input", id: "username", text: "Name", icon: faUser, value: "CONSOLE"},
{type: "input", id: "password", text: "Passwort", icon: faKey, value: () => Math.random().toString(36).slice(-8)},
]
},
{ {
name: "Docker", name: "Docker",
icon: DockerImage, icon: DockerImage,