- Take
bl_parent_id
into account when ordering classes for registration in Blender.
- New
blender.addon.moduleName
setting. It controls the name if the generated symlink into the addon directory. By default, the original addon folder name is used.
- Fix detection for possibly bad addon folder names.
- Addon templates did not contain
version
field inbl_info
.
- New
Blender: Open Scripts Folder
command. - New
CTX
variable that is passed into scripts to make overwriting the context easier. It can be used when calling operators (e.g.bpy.ops.object.join(CTX)
). This will hopefully be replaced as soon as I find a more automatic reliable solution.
- Scripts were debugged in new readonly documents on some platforms.
- Addon package was put in
sys.path
in subprocesses for installation. - Warn user when new addon folder name is not a valid Python module name.
- Path to Blender executable can contain spaces.
- Support for multiple addon templates.
- Addon template with automatic class registration.
- Initial
Blender: New Operator
command.
- Handle path to
.app
file on MacOS correctly (#5). - Better error handling when there is no internet connection.