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:
authorMartin Buerbaum <martin.buerbaum@gmx.at>2010-09-01 15:54:47 +0400
committerMartin Buerbaum <martin.buerbaum@gmx.at>2010-09-01 15:54:47 +0400
commit46df840e017374ef501e64c8eab116a947823f5e (patch)
treefa44ac7e973c077eb1db05ffce24617f1f5189d2 /space_view3d_panel_measure.py
parentf823e6c4b5b7f6c1685c8e6e44b238e4227a0a70 (diff)
* Version 0.7.8 - MINOR: Brought the script up-to-date with my local changes.
* Removed some TODO comments * Updated version log
Diffstat (limited to 'space_view3d_panel_measure.py')
-rw-r--r--space_view3d_panel_measure.py18
1 files changed, 8 insertions, 10 deletions
diff --git a/space_view3d_panel_measure.py b/space_view3d_panel_measure.py
index 1b9c5b8a..9451bbf5 100644
--- a/space_view3d_panel_measure.py
+++ b/space_view3d_panel_measure.py
@@ -19,7 +19,7 @@
bl_addon_info = {
"name": "Measure Panel",
"author": "Buerbaum Martin (Pontiac)",
- "version": (0,7,7),
+ "version": (0,7,8),
"blender": (2, 5, 3),
"api": 31667,
"location": "View3D > Properties > Measure",
@@ -58,7 +58,13 @@ It's very helpful to use one or two "Empty" objects with
"Snap during transform" enabled for fast measurement.
Version history:
-v0.7.7 - One more change to he callback registration code.
+v0.7.8 - Various Py API changes by Campbell ...
+ bl_default_closed -> bl_options = {'DEFAULT_CLOSED'}
+ x.verts -> x.vertices
+ @classmethod def poll(cls, context)
+ No "location" in bl_addon_info->name
+ bl_addon_info->api
+v0.7.7 - One more change to the callback registration code.
Now it should finally work as intended.
v0.7.6 - API changes (r885, r886) - register & unregister function
v0.7.5.3 - Small fix for bug in v0.7.5.1
@@ -159,14 +165,6 @@ v0.2 - Distance value is now displayed via a FloatProperty widget (and
Thanks goes to ideasman42 (Campbell Barton) for helping me out on this.
v0.1 - Initial revision. Seems to work fine for most purposes.
-TODO:
-
-There is a random segmentation fault when moving the 3D cursor in edit mode.
-Mainly this happens when clicking inside the white circle of the translation
-manipulator. There may be other cases though.
-
-See the other "todo" comments below.
-
More links:
http://gitorious.org/blender-scripts/blender-measure-panel-script
http://blenderartists.org/forum/showthread.php?t=177800