Skip to content

Commit

Permalink
Change Version to 1.4.2 for Blender 2.90
Browse files Browse the repository at this point in the history
This version will not work with 2.8x due to Blender API changes in 2.90.

Version number changed to 1.4.2 as this is only a bug fix over 2.83LTS version (1.4.1).
  • Loading branch information
Clockmender authored and ermo committed Sep 28, 2020
1 parent 85eaae4 commit 213e246
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
bl_info = {
"name": "Precision Drawing Tools (PDT)",
"author": "Alan Odom (Clockmender), Rune Morling (ermo)",
"version": (1, 4, 1),
"blender": (2, 80, 0),
"version": (1, 4, 2),
"blender": (2, 90, 0),
"location": "View3D > UI > PDT",
"description": "Precision Drawing Tools for Acccurate Modelling",
"warning": "",
"wiki_url": "https://github.com/Clockmender/Precision-Drawing-Tools/wiki",
"doc_url": "https://github.com/Clockmender/Precision-Drawing-Tools/wiki",
"category": "3D View",
}

Expand Down Expand Up @@ -430,7 +430,7 @@ class PDTSceneProperties(PropertyGroup):

# Was filletrad
fillet_radius: FloatProperty(
name="Fillet Radius", min=0.0, default=1.0, unit="LENGTH", description=PDT_DES_FILLETRAD
name="Fillet Radius", min=0.0, default=1.0, description=PDT_DES_FILLETRAD
)
# Was filletnum
fillet_segments: IntProperty(
Expand All @@ -454,10 +454,10 @@ class PDTSceneProperties(PropertyGroup):
name="Coordst2", default=(0.0, 0.0, 0.0), subtype="XYZ", description=PDT_DES_TANCEN2
)
tangent_radius0: FloatProperty(
name="Arc Radius 1", min=0.00001, default=1, unit="LENGTH", description=PDT_DES_RADIUS1
name="Arc Radius 1", min=0.00001, default=1, description=PDT_DES_RADIUS1
)
tangent_radius1: FloatProperty(
name="Arc Radius 2", min=0.00001, default=1, unit="LENGTH", description=PDT_DES_RADIUS2
name="Arc Radius 2", min=0.00001, default=1, description=PDT_DES_RADIUS2
)
tangent_point2: FloatVectorProperty(
name="Coordst3", default=(0.0, 0.0, 0.0), subtype="XYZ", description=PDT_DES_TANCEN3
Expand Down Expand Up @@ -501,7 +501,7 @@ class PDTSceneProperties(PropertyGroup):
description="Number of Vertices per Cycle (180 Degrees)")
trig_tanmax : FloatProperty(name="Tangent Max", default=10, min=0.1,
description="Maximum Permitted Tangent Value")
trig_off : FloatVectorProperty(name="Start Loc", default=(0,0,0),
trig_off : FloatVectorProperty(name="Start Location", default=(0,0,0),
description="Location in World Space for Origin of Wave")
trig_abs : BoolProperty(name="Absolute", default=False,
description="Use Absolute Values Only")
Expand Down

0 comments on commit 213e246

Please sign in to comment.