From 428c41bdd3ee2fb58039f028613623182719bc88 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 13 Aug 2023 17:06:22 +0200 Subject: [PATCH] Added the MCDash software --- .../pages/tools/linux/InstallSoftware/software.jsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/client/src/pages/tools/linux/InstallSoftware/software.jsx b/client/src/pages/tools/linux/InstallSoftware/software.jsx index b525fce..b66c773 100644 --- a/client/src/pages/tools/linux/InstallSoftware/software.jsx +++ b/client/src/pages/tools/linux/InstallSoftware/software.jsx @@ -2,6 +2,7 @@ import UpdateImage from "./images/update.webp"; import MySpeedImage from "./images/myspeed.webp"; import DockerImage from "./images/docker.webp"; import NextCloudImage from "./images/nextcloud.webp"; +import MCDashImage from "./images/mcdash.webp"; import PterodactylImage from "./images/pterodactyl.webp"; import { faBox, faEnvelope, @@ -31,6 +32,19 @@ export default [ value: "Stabil"} ] }, + { + name: "MCDash", + icon: MCDashImage, + configuration: [ + {type: "text", id: "text", text: <>Ältere Versionen verfügbar im Creator, 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", icon: DockerImage,