Question Regarding Build Tools – I followed the instructions for blender --command extension build
, and while it worked, the resulting zip file doesn’t contain a subfolder; instead, the Python files are directly in the zip.
This setup works in Blender 4.2 but fails to install in Blender 3.6 because of the missing subfolder. My add-on is compatible with both Blender 3.6 and 4.2, with the only difference being the bl_info
and the manifest.toml
file. The documentation isn’t clear about whether I can include both files together (it states to remove bl_info
).
Since Blender 3.6 is supported until June 2025, this is a relevant concern. Do I really need to maintain two separate releases due to these minor differences? Especially considering one of them completely fails to install if the user downloads the wrong version.
To clarify, I can mix bl_info
and the manifest, manually pack everything into a zip, and it works fine on both Blender 3.6 and 4.2. However, this approach doesn’t follow the guidelines, and there’s no telling what might break in the future.