depth move - UI cahnge and changelog file

1.2.0:

- feat: New depth move operator that handle both perspective and orthographic cam
- feat: Realign, added drawing plane checkbox to autoset to Front after realign
- UI: Reorganised realign panel
- UI: Switched part of the sidebar items to columns intead of basic layout to gain space
- doc: Added changelog file (moved list from readme)
- doc: relative link to changelog and FR_readme in main readme
This commit is contained in:
Pullusb
2021-05-09 01:26:37 +02:00
parent bf85582f28
commit 3594c4812d
7 changed files with 467 additions and 301 deletions
+4 -1
View File
@@ -15,7 +15,7 @@ bl_info = {
"name": "GP toolbox",
"description": "Set of tools for Grease Pencil in animation production",
"author": "Samuel Bernou",
"version": (1, 1, 0),
"version": (1, 2, 0),
"blender": (2, 91, 0),
"location": "sidebar (N menu) > Gpencil > Toolbox / Gpencil properties",
"warning": "",
@@ -45,6 +45,7 @@ from . import OP_file_checker
from . import OP_render
from . import OP_copy_paste
from . import OP_realign
from . import OP_depth_move
from . import keymaps
from .OP_pseudo_tint import GPT_OT_auto_tint_gp_layers
@@ -444,6 +445,7 @@ def register():
OP_render.register()
OP_copy_paste.register()
OP_realign.register()
OP_depth_move.register()
UI_tools.register()
keymaps.register()
bpy.types.Scene.gptoolprops = bpy.props.PointerProperty(type = GP_PG_ToolsSettings)
@@ -465,6 +467,7 @@ def unregister():
for cls in reversed(classes):
bpy.utils.unregister_class(cls)
UI_tools.unregister()
OP_depth_move.unregister()
OP_realign.unregister()
OP_copy_paste.unregister()
OP_render.unregister()