Conversation
- Modified CMakeLists.txt to use /O1 optimization for Release builds to reduce false positives from antivirus software. - Updated build-msi.bat to reflect the change from Release to RelWithDebInfo build type. - Enhanced tenbox-manager CMakeLists.txt with additional compile and link options for better security and optimization. - Refactored main.cpp to improve logging and application entry points for better compatibility with Windows desktop applications. - Bumped version to 0.3.3 in version.json and images.json, updating corresponding download URLs and SHA256 hashes.
- Added ownership change for the \$DESKTOP_DIR in both ARM64 and x86_64 root filesystem build scripts to ensure proper permissions for user access.
- Changed the URL and SHA256 hash for the rootfs.qcow2 image in images.json to reflect the latest version with desktop fixes. Updated the file size accordingly.
- Bumped OpenClaw version from 2026.3.7 to 2026.3.8. - Updated the rootfs.qcow2 image URL, SHA256 hash, and file size to reflect the latest version with desktop fixes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request includes several improvements focused on reducing false positives from antivirus heuristics for Windows builds, updating build scripts for improved debugging, and fixing desktop directory permissions in root filesystem scripts. Additionally, it updates release metadata for both application and image versions.
Windows build and application improvements:
CMakeLists.txtto use/O1(minimize size) instead of/O2(maximize speed) for Release builds, mitigating AV heuristic false positives.tenbox-managerbuild options insrc/manager/CMakeLists.txtto add/GL,/Gy,/guard:cf, and related linker flags for cleaner code layout and security metadata, further reducing AV false positives.src/manager/main.cppto use secure versions of file and time functions (_wfopen_s,localtime_s), and added bothmainandwWinMainentry points for standard binary layout. [1] [2] [3] [4]Build script improvements:
scripts/build-msi.batto useRelWithDebInfoinstead ofReleasefor better debugging support.Root filesystem and desktop fixes:
scripts/arm64/make-rootfs-openclaw.shandscripts/x86_64/make-rootfs-openclaw.shto ensure correct permissions for the user. [1] [2]Release metadata updates:
website/public/api/version.jsonto version 0.3.3 with new release notes and download URLs.website/public/api/images.jsonfor OpenClaw 2026.3.8, including new image URLs and checksums. [1] [2]