[Bf-extensions-cvs] [d76acfa9] blender-v2.93-release: PDT: Update version to 1.5.1

Rune Morling noreply at git.blender.org
Mon May 17 23:30:32 CEST 2021


Commit: d76acfa90c1b74e81c8a9360c2932cd66c6a4758
Author: Rune Morling
Date:   Mon May 17 23:29:03 2021 +0200
Branches: blender-v2.93-release
https://developer.blender.org/rBAd76acfa90c1b74e81c8a9360c2932cd66c6a4758

PDT: Update version to 1.5.1

Fix a few speling issues in comments.

===================================================================

M	precision_drawing_tools/__init__.py
M	precision_drawing_tools/pdt_design.py

===================================================================

diff --git a/precision_drawing_tools/__init__.py b/precision_drawing_tools/__init__.py
index a50f32c8..5e333969 100644
--- a/precision_drawing_tools/__init__.py
+++ b/precision_drawing_tools/__init__.py
@@ -29,7 +29,7 @@
 bl_info = {
     "name": "Precision Drawing Tools (PDT)",
     "author": "Alan Odom (Clockmender), Rune Morling (ermo)",
-    "version": (1, 5, 0),
+    "version": (1, 5, 1),
     "blender": (2, 90, 0),
     "location": "View3D > UI > PDT",
     "description": "Precision Drawing Tools for Acccurate Modelling",
diff --git a/precision_drawing_tools/pdt_design.py b/precision_drawing_tools/pdt_design.py
index ac983579..d8caa455 100644
--- a/precision_drawing_tools/pdt_design.py
+++ b/precision_drawing_tools/pdt_design.py
@@ -184,7 +184,7 @@ class PDT_OT_PlacementDelta(Operator):
                 f",{str(round(pg.cartesian_coords.z, decimal_places))}"
             )
         elif operation == "EV":
-            # Extrue Vertices
+            # Extrude Vertices
             pg.command = (
                 f"vd{str(round(pg.cartesian_coords.x, decimal_places))}"
                 f",{str(round(pg.cartesian_coords.y, decimal_places))}"
@@ -198,7 +198,7 @@ class PDT_OT_PlacementDelta(Operator):
                 f",{str(round(pg.cartesian_coords.z, decimal_places))}"
             )
         elif operation == "EG":
-            # Extrue Geometry
+            # Extrude Geometry
             pg.command = (
                 f"ed{str(round(pg.cartesian_coords.x, decimal_places))}"
                 f",{str(round(pg.cartesian_coords.y, decimal_places))}"
@@ -355,7 +355,7 @@ class PDT_OT_PlacementView(Operator):
                 f"nn{str(round(pg.distance, decimal_places))}"
             )
         elif operation == "EV":
-            # Extrue Vertices
+            # Extrude Vertices
             pg.command = (
                 f"vn{str(round(pg.distance, decimal_places))}"
             )
@@ -365,7 +365,7 @@ class PDT_OT_PlacementView(Operator):
                 f"dn{str(round(pg.distance, decimal_places))}"
             )
         elif operation == "EG":
-            # Extrue Geometry
+            # Extrude Geometry
             pg.command = (
                 f"en{str(round(pg.distance, decimal_places))}"
             )



More information about the Bf-extensions-cvs mailing list