Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
bl_info = {
"name": "Modular trees",
"author": "Herpin Maxime, Jake Dube",
"version": (2, 6),
"version": (2, 7),
"blender": (2, 77, 0),
"location": "View3D > Tools > Tree > Make Tree",
"description": "Generates an organic tree with correctly modeled branching.",
Expand Down
2 changes: 1 addition & 1 deletion check_for_updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def execute(self, context):
page = parser.get_results()

# "version ": (n, n )
my_regex = re.compile(r'\"version\":\s*\(2,\s*6\)', re.DOTALL)
my_regex = re.compile(r'\"version\":\s*\(2,\s*7\)', re.DOTALL)
# check if version number is on page
if re.search(my_regex, page):
self.report({'ERROR'}, "You have the latest official release.")
Expand Down
2 changes: 1 addition & 1 deletion tree_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ def create_tree(position, is_twig=False):
bpy.ops.object.select_all(action='DESELECT')
obj.select = True
arm.select = True
mtree_props.objects.active = arm
scene.objects.active = arm
bpy.ops.object.parent_set(type='ARMATURE_AUTO')
bpy.ops.object.select_all(action='DESELECT')
clock.stop("armature")
Expand Down