From 83f59e428cfabcc47e2126bc0c3afc0606823f07 Mon Sep 17 00:00:00 2001 From: phase <64127681+phasephasephase@users.noreply.github.com> Date: Sat, 20 Dec 2025 14:45:51 -0700 Subject: [PATCH 1/3] update including entt version example to demonstrate cloning commit hash with CPM --- wiki/entities/entt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/entities/entt.md b/wiki/entities/entt.md index 0343700..f47a91b 100644 --- a/wiki/entities/entt.md +++ b/wiki/entities/entt.md @@ -42,7 +42,7 @@ include(FetchContent) FetchContent_Declare( EnTT GIT_REPOSITORY https://github.com/skypjack/entt.git - GIT_TAG 2909e7ab1f1e73a36f778319070695611e3fa47b # v3.13.1 + GIT_TAG fe8d7d78c4823e8a66a050bf86f5c6318cf76ce7 # Minecraft 1.21.90+ ) FetchContent_MakeAvailable(EnTT) @@ -52,7 +52,7 @@ target_link_libraries(MyTarget PRIVATE EnTT::EnTT) Or, if you have a CMake project using CPM ([setup](/beginners-guide/your-first-hook#cpm)): ```CMake -CPMAddPackage("gh:skypjack/entt@v3.13.1") +CPMAddPackage("gh:skypjack/entt#fe8d7d78c4823e8a66a050bf86f5c6318cf76ce7") ``` Or, if a package repository is configured in your environment, `find_package` can be used as a less verbose From 51b4bbdeb373f9a360e77d68e43da0407e04b06d Mon Sep 17 00:00:00 2001 From: phase <64127681+phasephasephase@users.noreply.github.com> Date: Sat, 21 Feb 2026 12:22:29 -0700 Subject: [PATCH 2/3] add discord link + fix format --- .vitepress/config.mts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.vitepress/config.mts b/.vitepress/config.mts index b97a067..5ab2a49 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -43,9 +43,9 @@ export default defineConfig({ text: 'Reverse Engineering', collapsed: true, items: [ - {text: 'Introduction', link:'/reverse-engineering/introduction'}, - {text: 'Using IDA', link: '/reverse-engineering/using-ida'}, - {text: 'Microsoft STL', link: '/reverse-engineering/microsoft-stl'} + { text: 'Introduction', link: /reverse-engineering/introduction' }, + { text: 'Using IDA', link: '/reverse-engineering/using-ida' }, + { text: 'Microsoft STL', link: '/reverse-engineering/microsoft-stl' } ] }, { @@ -60,12 +60,13 @@ export default defineConfig({ text: 'Entities', collapsed: true, items: [ - {text: 'EnTT', link:'/entities/entt'}, + { text: 'EnTT', link: '/entities/entt' } ] } ], socialLinks: [ - { icon: 'github', link: 'https://github.com/bedrock-native-modding/wiki' } + { icon: 'github', link: 'https://github.com/bedrock-native-modding/wiki' }, + { icon: 'discord', link: 'https://discord.gg/eJXZbQkwnz' } ], search: { provider: 'local' From 4c668f5cdca09bfb31ba170501d47197264c34cc Mon Sep 17 00:00:00 2001 From: phase <64127681+phasephasephase@users.noreply.github.com> Date: Sat, 21 Feb 2026 12:24:05 -0700 Subject: [PATCH 3/3] oops --- .vitepress/config.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vitepress/config.mts b/.vitepress/config.mts index 5ab2a49..99d7b8f 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -43,7 +43,7 @@ export default defineConfig({ text: 'Reverse Engineering', collapsed: true, items: [ - { text: 'Introduction', link: /reverse-engineering/introduction' }, + { text: 'Introduction', link: '/reverse-engineering/introduction' }, { text: 'Using IDA', link: '/reverse-engineering/using-ida' }, { text: 'Microsoft STL', link: '/reverse-engineering/microsoft-stl' } ]