Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.39 KB

CHANGELOG.md

File metadata and controls

38 lines (27 loc) · 1.39 KB

Changelog

Unreleased

Fixed

  • Take bl_parent_id into account when ordering classes for registration in Blender.

[0.0.12] - 2019-04-24

Added

  • 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.

Fixed

  • Fix detection for possibly bad addon folder names.
  • Addon templates did not contain version field in bl_info.

[0.0.11] - 2019-03-06

Added

  • 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.

Fixed

  • 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.

[0.0.10] - 2018-12-02

Added

  • Support for multiple addon templates.
  • Addon template with automatic class registration.
  • Initial Blender: New Operator command.

Fixed

  • Handle path to .app file on MacOS correctly (#5).
  • Better error handling when there is no internet connection.