From 06826ca53dd54e73169514b3de2f81f2a7ca31f4 Mon Sep 17 00:00:00 2001 From: SulfurNitride Date: Thu, 12 Mar 2026 07:20:42 -0500 Subject: Add native Root Builder and OMOD Installer plugins - libs/rootbuilder_native/: Native C++ port of rootbuilder.py (IPluginTool) - Root/ dir scanning, copy (reflink/CoW) and symlink modes - JSON manifest tracking, backup/restore, auto-deploy hooks - Legacy migration and third-party conflict detection - libs/installer_omod_native/: Native C++ port of installer_omod.py - Handles .omod archives (Oblivion Mod Manager format) - Binary config parsing, .NET string format, CRC file parsing - zlib raw deflate and LZMA decompression - Repackages to zip for MO2's installation manager - Added both to build-inner.sh plugin packaging Co-Authored-By: Claude Opus 4.6 --- docker/build-inner.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'docker') diff --git a/docker/build-inner.sh b/docker/build-inner.sh index 0bcb8b0..d4d3755 100755 --- a/docker/build-inner.sh +++ b/docker/build-inner.sh @@ -71,7 +71,9 @@ find build/libs -type f \( \ -name "libform43_checker_native.so" -o \ -name "libscript_extender_checker_native.so" -o \ -name "libpreview_dds_native.so" -o \ - -name "libbasic_games_native.so" \ + -name "libbasic_games_native.so" -o \ + -name "librootbuilder_native.so" -o \ + -name "libinstaller_omod_native.so" \ \) -exec cp -f {} "${OUT_DIR}/plugins/" \; # Python plugin loader (small — kept for optional Python support). -- cgit v1.3.1