Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeffii <tetha.z@gmail.com>2018-12-21 16:08:53 +0300
committerzeffii <tetha.z@gmail.com>2018-12-21 16:08:53 +0300
commitcded330df441082cdc5844dfb61e1555880ed538 (patch)
treee90d0d7e3e90ab3415b485af8b965e5bfe0df4b0 /mesh_tiny_cad/__init__.py
parent0457976a872000993202763abe7503c76b461122 (diff)
update to 2.80
Diffstat (limited to 'mesh_tiny_cad/__init__.py')
-rw-r--r--mesh_tiny_cad/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/mesh_tiny_cad/__init__.py b/mesh_tiny_cad/__init__.py
index d614ddcd..8905baa8 100644
--- a/mesh_tiny_cad/__init__.py
+++ b/mesh_tiny_cad/__init__.py
@@ -22,8 +22,8 @@
bl_info = {
"name": "tinyCAD Mesh tools",
"author": "zeffii (aka Dealga McArdle)",
- "version": (1, 3, 1),
- "blender": (2, 7, 7),
+ "version": (1, 3, 2),
+ "blender": (2, 80, 0),
"category": "Mesh",
"location": "View3D > EditMode > (w) Specials",
"wiki_url": "http://zeffii.github.io/mesh_tiny_cad/",
@@ -59,7 +59,7 @@ def menu_func(self, context):
self.layout.menu("VIEW3D_MT_edit_mesh_tinycad")
self.layout.separator()
-classes = (
+classes = [
TinyCADProperties, VIEW3D_MT_edit_mesh_tinycad,
VTX.TCAutoVTX,
XALL.TCIntersectAllEdges,
@@ -67,7 +67,7 @@ classes = (
E2F.TCEdgeToFace,
CCEN.TCCallBackCCEN, CCEN.TCCircleCenter,
BIX.TCLineOnBisection
-)
+]
def register():
register_icons()