From 183e7d8c938070f3950396df9a877f49d99ada8b Mon Sep 17 00:00:00 2001 From: Vitaly Turovsky Date: Wed, 26 Mar 2025 01:10:43 +0300 Subject: [PATCH 1/3] add modal --- src/react/AboutModal.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/react/AboutModal.tsx diff --git a/src/react/AboutModal.tsx b/src/react/AboutModal.tsx new file mode 100644 index 00000000..ef24259e --- /dev/null +++ b/src/react/AboutModal.tsx @@ -0,0 +1,15 @@ +export default () => { + return ( +
+

Minecraft Open Source Edition

+ What if Minecraft was an online game? +

+ Hi! You are on the safest and fast modern Minecraft clone rewritten in JS. A huge work was done in the project, however many features would not be possible without these awesome people: +

+

+ - Everyone who provided awesome mods for the game + - Gen for rewriting the physics engine to be Grim-compliant +

+
+ ) +} From bafb8b2f6c9c0274efa13456010d79f16a594052 Mon Sep 17 00:00:00 2001 From: Vitaly Date: Tue, 6 May 2025 17:16:40 +0300 Subject: [PATCH 2/3] Update AboutModal.tsx --- src/react/AboutModal.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/react/AboutModal.tsx b/src/react/AboutModal.tsx index ef24259e..2f829bd5 100644 --- a/src/react/AboutModal.tsx +++ b/src/react/AboutModal.tsx @@ -4,11 +4,19 @@ export default () => {

Minecraft Open Source Edition

What if Minecraft was an online game?

- Hi! You are on the safest and fast modern Minecraft clone rewritten in JS. A huge work was done in the project, however many features would not be possible without these awesome people: + Hey! You are on the safest and fast modern Minecraft clone rewritten in JS. A huge work was done in the project, however many features would not be possible without these awesome projects:

- Everyone who provided awesome mods for the game - Gen for rewriting the physics engine to be Grim-compliant +- ViaVersion for providing reliable sound id mappings +- Bluemap for providing block entity models like chest +- Deepslate for rendering 3d blocks in GUI (inventory) +- Skin3dview for rendering skins & player geometry +some cpp project starting with p for providing fast & accurate server light implementation +- todo add links for projects above + +Major contributors:

) From 97f1d18a44e91420c53cc25384b110f373ab8181 Mon Sep 17 00:00:00 2001 From: Vitaly Turovsky Date: Thu, 8 May 2025 21:03:43 +0300 Subject: [PATCH 3/3] add links --- src/react/AboutModal.tsx | 23 ----------------------- src/react/CreditsAboutModal.tsx | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 23 deletions(-) delete mode 100644 src/react/AboutModal.tsx create mode 100644 src/react/CreditsAboutModal.tsx diff --git a/src/react/AboutModal.tsx b/src/react/AboutModal.tsx deleted file mode 100644 index 2f829bd5..00000000 --- a/src/react/AboutModal.tsx +++ /dev/null @@ -1,23 +0,0 @@ -export default () => { - return ( -
-

Minecraft Open Source Edition

- What if Minecraft was an online game? -

- Hey! You are on the safest and fast modern Minecraft clone rewritten in JS. A huge work was done in the project, however many features would not be possible without these awesome projects: -

-

- - Everyone who provided awesome mods for the game - - Gen for rewriting the physics engine to be Grim-compliant -- ViaVersion for providing reliable sound id mappings -- Bluemap for providing block entity models like chest -- Deepslate for rendering 3d blocks in GUI (inventory) -- Skin3dview for rendering skins & player geometry -some cpp project starting with p for providing fast & accurate server light implementation -- todo add links for projects above - -Major contributors: -

-
- ) -} diff --git a/src/react/CreditsAboutModal.tsx b/src/react/CreditsAboutModal.tsx new file mode 100644 index 00000000..78271203 --- /dev/null +++ b/src/react/CreditsAboutModal.tsx @@ -0,0 +1,22 @@ +export default () => { + return ( +
+

Minecraft Open Source Edition

+ What if Minecraft was an online game? +

+ Hey! You are on the safest and fast modern Minecraft clone rewritten in JS. A huge work was done in the project, however many features would not be possible without these awesome projects: +

+

+ - Everyone who provided awesome mods for the game + - [Gen](https://discord.com/users/gen6442) for rewriting the physics engine to be Grim-compliant + - [ViaVersion](https://viaversion.com/) for providing reliable sound id mappings + - [Bluemap](https://github.com/BlueMap-Minecraft/BlueMap) for providing block entity models like chest + - [Deepslate](https://github.com/misode/deepslate) for rendering 3d blocks in GUI (inventory) + - [skinview3d](https://www.npmjs.com/package/skinview3d) for rendering skins & player geometry + - [Polymer](https://github.com/atxi/Polymer) (c++ project) for providing fast & accurate server light implementation + + Major contributors: +

+
+ ) +}