MooshieUI v2.0.3
·
84 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
One-click installer — just download and run. The app will automatically install ComfyUI, Python, PyTorch, and everything else you need on first launch.
Downloads
| Platform | File |
|---|---|
| Windows | .msi or .exe |
| Linux | .deb or .AppImage |
What's New in v2.0.3
Fixes and maintenance
- Custom node installs could fail on the Linux AppImage build: the bundled AppImage runtime leaks its own
LD_LIBRARY_PATHandLD_PRELOADinto every child process, sogit clonefor a required custom node could link against the AppImage's bundledlibssl/libpcre2instead of the system ones and abort with a version mismatch. Node installs now strip the AppImage-specific environment before spawninggit,pip, anduv. - Wrong Wayland library picked up on Fedora-based distros (Nobara, RHEL, etc.): the search order for the bundled Wayland compatibility library checked
/usr/lib/before/usr/lib64/, which is backwards on Fedora-family systems where/usr/lib/holds 32-bit compat stubs. That could preload a 32-bit library into a 64-bit process and produce a "wrong ELF class" failure. The search now checks the 64-bit path first.