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:
authorCampbell Barton <ideasman42@gmail.com>2011-01-14 19:09:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-14 19:09:46 +0300
commitc7c6d6d879875a3734a73eafee652488d2d10534 (patch)
tree493650b69c4c2310f2f70b445afb7d997dd2f4ea /space_view3d_panel_measure.py
parent181da6cf251af0782e3e874ddf54a62743bc2d2a (diff)
bl_addon_info -> bl_info
Diffstat (limited to 'space_view3d_panel_measure.py')
-rw-r--r--space_view3d_panel_measure.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/space_view3d_panel_measure.py b/space_view3d_panel_measure.py
index 381798fd..b8249cd7 100644
--- a/space_view3d_panel_measure.py
+++ b/space_view3d_panel_measure.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Measure Panel",
"author": "Buerbaum Martin (Pontiac)",
"version": (0, 7, 12),
@@ -79,8 +79,8 @@ 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
+ No "location" in bl_info->name
+ bl_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
@@ -103,7 +103,7 @@ v0.7.2 - Merged changes from trunk (scripts_addons r847):
* obj.matrix -> obj.matrix_world
* vert.selected -> vert.select
* face.selected -> face.select
- * bl_addon_info: warning, wiki_url, tracker_url
+ * bl_info: warning, wiki_url, tracker_url
* removed __bpydoc__
* Use fontid=0 for blf functions. 0 is the default font.
v0.7.1 - Merged changes by Campbell:
@@ -116,7 +116,7 @@ v0.7 - Initial support for drawing lines.
The distance value (in BUs) is also drawn in the 3D view now.
Also fixed some wrong calculations of global/local distances.
Now it's really "what you see is what is calculated".
- Use bl_addon_info for Add-On information.
+ Use bl_info for Add-On information.
Use "3D View" in category & name
Renamed reenter_editmode to view3d.reenter_editmode.
Renamed panel_measure.py into space_view3d_panel_measure.py