Add eui neo 0.5.5 - #154
Merged
Merged
Conversation
added 2 commits
August 5, 2026 11:15
Upstream 0.5.5 grew a Shadertoy subsystem that is mandatory, not optional: render_backend.h and include/eui/types.h include core/render/shadertoy.h unconditionally and opengl_backend.cpp calls releaseShaderToys(), so the old 20-TU recipe fails to link. Add shadertoy.cpp / shadertoy_json.cpp / shadertoy_primitive.cpp + opengl_shadertoy.cpp to the base sources and vulkan_shadertoy.cpp to the vulkan feature (24 base TUs). - Add 0.5.5 xpm entries (linux/macosx/windows); 0.5.3 retained. sha256 cf0da91d...eb98, computed twice. CN mirror pending mcpp-res write access, so 0.5.5 uses the plain-string fallback url (lint-exempt). - Bump all six tests/examples/eui-neo* members to 0.5.5. - Design doc: .agents/docs/2026-08-05-add-eui-neo-0.5.5-plan.md
0.5.5's Shadertoy subsystem and resolveResourcePath() return path::u8string() as std::string on every platform, so the char8_t break is no longer Windows-only. CI (linux+macos, mcpp 2026.8.3.3) failed to build with 'no viable conversion from basic_string<char8_t> to basic_string<char>'. -fno-char8_t moves from the windows profile to the base cxxflags; the rest of the package stays at c++23.
Contributor
Author
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.
Summary
Bump
compat.eui-neofrom 0.5.3 to 0.5.5. Upstream 0.5.4/0.5.5 are hotfixreleases, but 0.5.5 grew a Shadertoy subsystem that is mandatory in the
core library — so this is more than a version-entry bump.
Changes
Descriptor (
pkgs/e/compat.eui-neo.lua):0.5.5xpm entries on linux/macosx/windows (0.5.3 retained).sha256
cf0da91d…eb98, computed twice from the GLOBAL tarball.core/render/shadertoy.cpp,shadertoy_json.cpp,shadertoy_primitive.cpp,core/render/opengl/opengl_shadertoy.cpp.Required, not optional:
render_backend.handinclude/eui/types.hinclude
core/render/shadertoy.hunconditionally, andopengl_backend.cppcalls
releaseShaderToys()— the old 20-TU recipe fails to link.vulkanfeature gainsvulkan_shadertoy.cpp.-fno-char8_tmoved from the windows profile to package-widecxxflags:0.5.5's
resolveResourcePath()(platform.cpp:616) and the Shadertoy TUsreturn
path::u8string()asstd::stringon every platform. The 0.5.3char8_t break was Windows-only; CI caught the all-platform regression on
linux + macos.
Test members: all six
tests/examples/eui-neo*bumped to 0.5.5 so thewhole feature surface (markdown / vulkan / sdl2+network / app-main / window)
exercises the new version.
Docs:
.agents/docs/2026-08-05-add-eui-neo-0.5.5-plan.md.CN mirror
0.5.5 uses the plain-string (GLOBAL) url fallback per
docs/cn-mirror.md—no
mcpp-reswrite access to publish the gitcode release from this fork yet.Flip to
{ GLOBAL, CN }once the mirror exists (sha256 unchanged).Verification
mcpp xpkg parseOK: 0.5.3+0.5.5 on all platforms, sources 24, features 6.3rd/deps confirmed unchanged vs the descriptor pins (freetype2.13.3, glfw 3.4, libpng 1.6.43, zlib-1.3.1, yyjson-0.12.0).
eui-neo members build and pass on all three platforms (selective member
testing, not a full-workspace run).