From f15c3e613efafce623d63b2dcab599d2006fb35f Mon Sep 17 00:00:00 2001 From: Msk Date: Wed, 1 Apr 2026 12:28:35 -0700 Subject: [PATCH 1/2] SM and desc fixes (EN) --- docusaurus.config.ts | 44 ++++++++++++++++++++++++++++++++++++-------- i18n/en/code.json | 16 ++++++++-------- 2 files changed, 44 insertions(+), 16 deletions(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 8525772..0e4bed2 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -6,7 +6,7 @@ import type * as Preset from '@docusaurus/preset-classic'; const config: Config = { title: 'ReadyM Docs', - tagline: 'Develop multiplayer experiences in your favourite games', + tagline: 'Build multiplayer experiences in your favourite games', favicon: 'img/favicon.ico', markdown: { @@ -92,7 +92,7 @@ const config: Config = { respectPrefersColorScheme: true, }, navbar: { - title: 'Developer', + title: 'Dev Portal', logo: { alt: 'ReadyM Logo', src: 'img/logo-dark.png', @@ -132,22 +132,42 @@ const config: Config = { label: 'WukongMP SDK', to: '/docs/wukongmp-docs/what-is-wukong-mp', }, + { + label: 'ReadyM FAQ', + href: 'https://www.ready.mp/faq', + } ], }, { title: 'Community', items: [ { - label: 'Discord', - href: 'https://discord.gg/wukongmp-readym-1278355057330618533', + label: 'WukongMP Discord', + href: 'https://discord.gg/wukongmp', + }, + { + label: 'OblivionMP Discord', + href: 'https://discord.gg/obmp', }, { - label: 'Youtube', + label: 'YouTube', href: 'https://www.youtube.com/@readymultiplayer', }, { - label: 'Instagram', - href: 'https://www.instagram.com/ready_multiplayer', + label: 'BiliBili', + href: 'https://space.bilibili.com/3546825837513480', + }, + { + label: 'TikTok', + href: 'https://www.tiktok.com/@ready.mp', + }, + { + label: 'X', + href: 'https://x.com/readymod', + }, + { + label: 'QQ', + href: 'https://pd.qq.com/g/pd30575984', } ], }, @@ -162,10 +182,18 @@ const config: Config = { label: 'GitHub', href: 'https://github.com/readycodeio', }, + { + label: 'WukongMP', + href: 'https://wukong.mp', + }, + { + label: 'OblivionMP', + href: 'https://oblivion.mp', + } ], }, ], - copyright: `Copyright © ${new Date().getFullYear()} ReadyCode, Inc.`, + copyright: `Copyright © ${new Date().getFullYear()} ReadyCode Ltd (ReadyM team)`, }, prism: { theme: prismThemes.github, diff --git a/i18n/en/code.json b/i18n/en/code.json index 079dd1d..3317e5c 100644 --- a/i18n/en/code.json +++ b/i18n/en/code.json @@ -330,27 +330,27 @@ "message": "SDK Documentation" }, "readym.readym-docs": { - "message": "ReadyM Docs" + "message": "ReadyM Dev Portal" }, "readym.tagline": { - "message": "Develop multiplayer experiences in your favourite games" + "message": "Build multiplayer experiences in your favourite games." }, "readym.feature1.title": { - "message": "Unified play - single account" + "message": "ReadyM SDK" }, "readym.feature1.description": { - "message": "Access all ReadyM games with a single account, ensuring a seamless gaming experience." + "message": "We believe that server owners and their communities deserve better – better performance, better tools, and better experiences. Our goal is to empower you to create the gaming worlds you've always dreamed of, free from the technical limitations and frustrations that have held you back." }, "readym.feature2.title": { - "message": "Gateway to the ReadyM world" + "message": "Made by modders, for modders" }, "readym.feature2.description": { - "message": "Explore the vast universe of ReadyM games and connect with a global community of players." + "message": "Create complex, interacting mods using our C#-based scripting engine. This is the foundation of everything you'd want to build: roleplaying servers, survival modes, custom arenas, boss rush leagues, or PvP tournaments with custom rulesets." }, "readym.feature3.title": { - "message": "Custom game modes" + "message": "Build it, run it, own it" }, "readym.feature3.description": { - "message": "Create and enjoy unique game modes tailored to your preferences, enhancing your gaming experience." + "message": "Server binaries are the deployable package you run on your own hardware or with a hosting provider. Drop it on a machine, configure it, point players at it. Your server, your rules." } } From ca2292069a00b6a5802a8ac134021b203c87b9ab Mon Sep 17 00:00:00 2001 From: Jakub Janaszkiewicz Date: Thu, 2 Apr 2026 13:23:23 +0200 Subject: [PATCH 2/2] Fix GitHub link --- docusaurus.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 0e4bed2..014e53a 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -112,7 +112,7 @@ const config: Config = { label: 'API Reference', }, { - href: 'https://github.com/readycodeio/readymp-docs', + href: 'https://github.com/readycodeio', label: 'GitHub', position: 'right', },