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
parent181da6cf251af0782e3e874ddf54a62743bc2d2a (diff)
bl_addon_info -> bl_info
-rw-r--r--add_curve_aceous_galore.py2
-rw-r--r--add_curve_torus_knots.py2
-rw-r--r--add_mesh_3d_function_surface.py4
-rw-r--r--add_mesh_BoltFactory/__init__.py2
-rw-r--r--add_mesh_ant_landscape.py2
-rw-r--r--add_mesh_extras.py2
-rw-r--r--add_mesh_gears.py2
-rw-r--r--add_mesh_gemstones.py2
-rw-r--r--add_mesh_pipe_joint.py6
-rw-r--r--add_mesh_solid.py2
-rw-r--r--add_mesh_twisted_torus.py2
-rw-r--r--animation_add_corrective_shape_key.py2
-rw-r--r--animation_rotobezier.py2
-rw-r--r--curve_simplify.py2
-rw-r--r--game_engine_save_as_runtime.py2
-rw-r--r--io_anim_camera.py3
-rw-r--r--io_coat3D/__init__.py2
-rw-r--r--io_convert_image_to_mesh_img/__init__.py2
-rw-r--r--io_export_directx_x.py2
-rw-r--r--io_export_pc2.py2
-rw-r--r--io_export_unreal_psk_psa.py4
-rw-r--r--io_import_gimp_image_to_scene.py2
-rw-r--r--io_import_images_as_planes.py2
-rw-r--r--io_import_scene_dxf.py4
-rw-r--r--io_import_scene_lwo.py2
-rw-r--r--io_import_scene_mhx.py2
-rw-r--r--io_import_scene_unreal_psk.py2
-rw-r--r--io_mesh_raw/__init__.py2
-rw-r--r--io_mesh_stl/__init__.py2
-rw-r--r--io_scene_m3/__init__.py2
-rw-r--r--mesh_relax.py2
-rw-r--r--mesh_surface_sketch.py2
-rw-r--r--object_add_chain.py2
-rw-r--r--object_animrenderbake.py2
-rw-r--r--object_cloud_gen.py2
-rw-r--r--object_fracture/__init__.py2
-rw-r--r--render_povray/__init__.py2
-rw-r--r--render_renderfarmfi.py4
-rw-r--r--rigify/__init__.py2
-rw-r--r--space_view3d_3d_navigation.py2
-rw-r--r--space_view3d_align_tools.py2
-rw-r--r--space_view3d_copy_attributes.py2
-rw-r--r--space_view3d_materials_utils.py2
-rw-r--r--space_view3d_math_vis/__init__.py3
-rw-r--r--space_view3d_panel_measure.py10
-rw-r--r--space_view3d_spacebar_menu.py2
-rw-r--r--system_blend_info.py2
-rw-r--r--system_icon_get.py2
-rw-r--r--system_property_chart.py2
-rw-r--r--text_editor_api_navigator.py2
50 files changed, 62 insertions, 60 deletions
diff --git a/add_curve_aceous_galore.py b/add_curve_aceous_galore.py
index e64fd523..ceb669e1 100644
--- a/add_curve_aceous_galore.py
+++ b/add_curve_aceous_galore.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
'name': 'Curveaceous Galore!',
'author': 'Jimmy Hazevoet, testscreenings',
'version': (0,2),
diff --git a/add_curve_torus_knots.py b/add_curve_torus_knots.py
index 79d7b731..53c0afed 100644
--- a/add_curve_torus_knots.py
+++ b/add_curve_torus_knots.py
@@ -17,7 +17,7 @@
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Torus Knots",
"author": "testscreenings",
"version": (0,1),
diff --git a/add_mesh_3d_function_surface.py b/add_mesh_3d_function_surface.py
index 6590dfca..da670631 100644
--- a/add_mesh_3d_function_surface.py
+++ b/add_mesh_3d_function_surface.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "3D Function Surfaces",
"author": "Buerbaum Martin (Pontiac)",
"version": (0, 3, 6),
@@ -82,7 +82,7 @@ v0.3 - X,Y,Z Function Surface (by Ed Mackey & tuga3d).
Renamed old function to "Z Function Surface".
Align the geometry to the view if the user preference says so.
Store recall properties in newly created object.
-v0.2.3 - Use bl_addon_info for Add-On information.
+v0.2.3 - Use bl_info for Add-On information.
v0.2.2 - Fixed Add-On registration text.
v0.2.1 - Fixed some new API stuff.
Mainly we now have the register/unregister functions.
diff --git a/add_mesh_BoltFactory/__init__.py b/add_mesh_BoltFactory/__init__.py
index b9071eca..1c22f574 100644
--- a/add_mesh_BoltFactory/__init__.py
+++ b/add_mesh_BoltFactory/__init__.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "BoltFactory",
"author": "Aaron Keith",
"version": (3,9),
diff --git a/add_mesh_ant_landscape.py b/add_mesh_ant_landscape.py
index bfbf1cd9..6ce66975 100644
--- a/add_mesh_ant_landscape.py
+++ b/add_mesh_ant_landscape.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "ANT Landscape",
"author": "Jimmy Hazevoet",
"version": (0,1,0),
diff --git a/add_mesh_extras.py b/add_mesh_extras.py
index 13e1728d..ab5292b5 100644
--- a/add_mesh_extras.py
+++ b/add_mesh_extras.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Extras",
"author": "Pontiac, Fourmadmen, meta-androcto",
"version": (0,4),
diff --git a/add_mesh_gears.py b/add_mesh_gears.py
index b3e60cf0..72d00796 100644
--- a/add_mesh_gears.py
+++ b/add_mesh_gears.py
@@ -19,7 +19,7 @@
#
# ***** END GPL LICENCE BLOCK *****
-bl_addon_info = {
+bl_info = {
"name": "Gears",
"author": "Michel J. Anders (varkenvarken)",
"version": (2,4,1),
diff --git a/add_mesh_gemstones.py b/add_mesh_gemstones.py
index ee0bfeaf..9dd147a1 100644
--- a/add_mesh_gemstones.py
+++ b/add_mesh_gemstones.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Gemstones",
"author": "Pontiac, Fourmadmen, Dreampainter",
"version": (0,3),
diff --git a/add_mesh_pipe_joint.py b/add_mesh_pipe_joint.py
index f7578349..83eec159 100644
--- a/add_mesh_pipe_joint.py
+++ b/add_mesh_pipe_joint.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Pipe Joints",
"author": "Buerbaum Martin (Pontiac)",
"version": (0, 10, 6),
@@ -47,7 +47,7 @@ v0.10.6 - Removed "recall properties" from all functions.
API: mathutils.RotationMatrix -> mathutils.Matrix.Rotation
API: xxx.selected -> xxx.select
API: "invoke" function for each operator.
- Updated for new bl_addon_info structure.
+ Updated for new bl_info structure.
New code for the "align_matrix".
made script PEP8 compatible.
v0.10.5 - createFaces can now create fan/star like faces.
@@ -61,7 +61,7 @@ v0.10.2 - API change Mathutils -> mathutils (r557)
v0.10.1 - Use hidden "edit" property for "recall" operator.
v0.10 - Store "recall" properties in the created objects.
Align the geometry to the view if the user preference says so.
-v0.9.10 - Use bl_addon_info for Add-On information.
+v0.9.10 - Use bl_info for Add-On information.
v0.9.9 - Changed the script so it can be managed from the "Add-Ons" tab in
the user preferences.
Added dummy "PLUGIN" icon.
diff --git a/add_mesh_solid.py b/add_mesh_solid.py
index c9d3416f..63f657e1 100644
--- a/add_mesh_solid.py
+++ b/add_mesh_solid.py
@@ -17,7 +17,7 @@
#
# ***** END GPL LICENCE BLOCK *****
-bl_addon_info = {
+bl_info = {
"name": "Regular Solids",
"author": "DreamPainter",
"version": (1,),
diff --git a/add_mesh_twisted_torus.py b/add_mesh_twisted_torus.py
index 76e95c25..d50fb20e 100644
--- a/add_mesh_twisted_torus.py
+++ b/add_mesh_twisted_torus.py
@@ -20,7 +20,7 @@
#
# ***** END GPL LICENCE BLOCK *****
-bl_addon_info = {
+bl_info = {
"name": "Twisted Torus",
"author": "Paulo_Gomes",
"version": (0,11),
diff --git a/animation_add_corrective_shape_key.py b/animation_add_corrective_shape_key.py
index 66ee8b52..49967b10 100644
--- a/animation_add_corrective_shape_key.py
+++ b/animation_add_corrective_shape_key.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
'name': 'Corrective shape keys',
'author': 'Ivo Grigull (loolarge), Tal Trachtman',
'version': (1, 0),
diff --git a/animation_rotobezier.py b/animation_rotobezier.py
index f63c7f4c..f8387e09 100644
--- a/animation_rotobezier.py
+++ b/animation_rotobezier.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
'name': 'RotoBezier',
'author': 'Daniel Salazar <zanqdo@gmail.com>',
'version': (0, 8),
diff --git a/curve_simplify.py b/curve_simplify.py
index f30c961c..69ace753 100644
--- a/curve_simplify.py
+++ b/curve_simplify.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Simplify curves",
"author": "testscreenings",
"version": (1,),
diff --git a/game_engine_save_as_runtime.py b/game_engine_save_as_runtime.py
index 3f48e0be..beacbbc2 100644
--- a/game_engine_save_as_runtime.py
+++ b/game_engine_save_as_runtime.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
'name': 'Save As Runtime',
'author': 'Mitchell Stokes (Moguri)',
'version': (0, 3, 0),
diff --git a/io_anim_camera.py b/io_anim_camera.py
index 0814ae68..bd0e884e 100644
--- a/io_anim_camera.py
+++ b/io_anim_camera.py
@@ -18,7 +18,7 @@
# <pep8 compliant>
-bl_addon_info = {
+bl_info = {
"name": "Export Camera Animation",
"author": "Campbell Barton",
"version": (0, 1),
@@ -31,6 +31,7 @@ bl_addon_info = {
"Scripts/Import-Export/Camera_Animation",
"tracker_url": "https://projects.blender.org/tracker/index.php?"\
"func=detail&aid=22835",
+ "support": 'OFFICIAL',
"category": "Import-Export"}
diff --git a/io_coat3D/__init__.py b/io_coat3D/__init__.py
index 85425a0f..1ecb520a 100644
--- a/io_coat3D/__init__.py
+++ b/io_coat3D/__init__.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "3D-Coat Applink",
"author": "Kalle-Samuli Riihikoski (haikalle)",
"version": (1, 61),
diff --git a/io_convert_image_to_mesh_img/__init__.py b/io_convert_image_to_mesh_img/__init__.py
index 92d3572c..f6e5f522 100644
--- a/io_convert_image_to_mesh_img/__init__.py
+++ b/io_convert_image_to_mesh_img/__init__.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "HiRISE DTM from PDS IMG",
"author": "Tim Spriggs (tims@uahirise.org)",
"version": (0, 1, 2),
diff --git a/io_export_directx_x.py b/io_export_directx_x.py
index d586a847..20739fa5 100644
--- a/io_export_directx_x.py
+++ b/io_export_directx_x.py
@@ -15,7 +15,7 @@
# All rights reserved.
# ***** GPL LICENSE BLOCK *****
-bl_addon_info = {
+bl_info = {
"name": "Export DirectX Model Format (.x)",
"author": "Chris Foster (Kira Vakaan)",
"version": (2, 0),
diff --git a/io_export_pc2.py b/io_export_pc2.py
index 76eaec44..80359e67 100644
--- a/io_export_pc2.py
+++ b/io_export_pc2.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Export Pointcache (.pc2)",
"author": "Florian Meyer (tstscr)",
"version": (1, 0),
diff --git a/io_export_unreal_psk_psa.py b/io_export_unreal_psk_psa.py
index 4f26af8f..c8e7fbd6 100644
--- a/io_export_unreal_psk_psa.py
+++ b/io_export_unreal_psk_psa.py
@@ -15,7 +15,7 @@
# All rights reserved.
# ***** GPL LICENSE BLOCK *****
-bl_addon_info = {
+bl_info = {
"name": "Export Skeleletal Mesh/Animation Data",
"author": "Darknet/Optimus_P-Fat/Active_Trash/Sinsoft",
"version": (2, 0),
@@ -1604,7 +1604,7 @@ def fs_callback(filename, context):
print ("No Animations (.psa file) to Export")
print ('PSK/PSA Export Script finished in %.2f seconds' % (time.clock() - start_time))
- print( "Current Script version: ",bl_addon_info['version'])
+ print( "Current Script version: ",bl_info['version'])
#MSG BOX EXPORT COMPLETE
#...
diff --git a/io_import_gimp_image_to_scene.py b/io_import_gimp_image_to_scene.py
index b44b9d4b..de1f0686 100644
--- a/io_import_gimp_image_to_scene.py
+++ b/io_import_gimp_image_to_scene.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Import GIMP Image to Scene (.xcf, .xjt)",
"author": "Daniel Salazar (ZanQdo)",
"version": (2, 0, 0),
diff --git a/io_import_images_as_planes.py b/io_import_images_as_planes.py
index a6563793..0180e474 100644
--- a/io_import_images_as_planes.py
+++ b/io_import_images_as_planes.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Import Images as Planes",
"author": "Florian Meyer (tstscr)",
"version": (1, 0),
diff --git a/io_import_scene_dxf.py b/io_import_scene_dxf.py
index e3a4d336..d0c5544d 100644
--- a/io_import_scene_dxf.py
+++ b/io_import_scene_dxf.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
'name': 'Import Autocad DXF (.dxf)',
'author': 'Thomas Larsson',
'version': (0, 1, 3),
@@ -73,7 +73,7 @@ ver 0.1.1 - 2010.09.07 by migius
ver 0.1 - 2010.06.10 by Thomas Larsson
"""
-__version__ = '.'.join([str(s) for s in bl_addon_info['version']])
+__version__ = '.'.join([str(s) for s in bl_info['version']])
import os
import codecs
diff --git a/io_import_scene_lwo.py b/io_import_scene_lwo.py
index 4cfa40f5..cba18f94 100644
--- a/io_import_scene_lwo.py
+++ b/io_import_scene_lwo.py
@@ -18,7 +18,7 @@
# <pep8 compliant>
-bl_addon_info= {
+bl_info= {
"name": "Import LightWave Objects",
"author": "Ken Nign (Ken9)",
"version": (1, 2),
diff --git a/io_import_scene_mhx.py b/io_import_scene_mhx.py
index 50afc9a3..ac2a960a 100644
--- a/io_import_scene_mhx.py
+++ b/io_import_scene_mhx.py
@@ -19,7 +19,7 @@ Version 1.0.3
"""
-bl_addon_info = {
+bl_info = {
'name': 'Import: MakeHuman (.mhx)',
'author': 'Thomas Larsson',
'version': (1, 0, 3),
diff --git a/io_import_scene_unreal_psk.py b/io_import_scene_unreal_psk.py
index d8d62f92..2fcb70d1 100644
--- a/io_import_scene_unreal_psk.py
+++ b/io_import_scene_unreal_psk.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Import Unreal Skeleton Mesh(.psk)",
"author": "Darknet",
"version": (2, 0),
diff --git a/io_mesh_raw/__init__.py b/io_mesh_raw/__init__.py
index a8d95b31..fb0cbc1b 100644
--- a/io_mesh_raw/__init__.py
+++ b/io_mesh_raw/__init__.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Raw mesh",
"author": "Anthony D,Agostino (Scorpius), Aurel Wildfellner",
"version": (0, 2),
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index f1880f8d..87750eca 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "STL format",
"author": "Guillaume Bouchard (Guillaum)",
"version": (1, ),
diff --git a/io_scene_m3/__init__.py b/io_scene_m3/__init__.py
index 6fc62b8e..2b72b9d6 100644
--- a/io_scene_m3/__init__.py
+++ b/io_scene_m3/__init__.py
@@ -20,7 +20,7 @@ MAJOR_VERSION = 0
MINOR_VERSION = 2
BLENDER_VERSION = (2, 54, 0)
__version__ = "%d.%d.0" % (MAJOR_VERSION, MINOR_VERSION)
-bl_addon_info = {
+bl_info = {
'name': 'Import: M3 (.m3)',
'author': 'Cory Perry',
'version': (0, 2, 0),
diff --git a/mesh_relax.py b/mesh_relax.py
index 9c96e216..a4823e4e 100644
--- a/mesh_relax.py
+++ b/mesh_relax.py
@@ -21,7 +21,7 @@
#
# ***** END GPL LICENCE BLOCK *****
-bl_addon_info = {
+bl_info = {
"name": "Relax",
"author": "Fabian Fricke",
"version": (1,1),
diff --git a/mesh_surface_sketch.py b/mesh_surface_sketch.py
index 1992dcf8..c0b6b3eb 100644
--- a/mesh_surface_sketch.py
+++ b/mesh_surface_sketch.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Surface Sketch",
"author": "Eclectiel",
"version": (0,8),
diff --git a/object_add_chain.py b/object_add_chain.py
index d93f5df5..a6c5e449 100644
--- a/object_add_chain.py
+++ b/object_add_chain.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Add Chain",
"author": "Brian Hinton (Nichod)",
"version": (0,1),
diff --git a/object_animrenderbake.py b/object_animrenderbake.py
index 6d69e543..6a7e223e 100644
--- a/object_animrenderbake.py
+++ b/object_animrenderbake.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Animated Render Baker",
"author": "Janne Karhu (jahka)",
"version": (1, 0),
diff --git a/object_cloud_gen.py b/object_cloud_gen.py
index d957b29a..554f5180 100644
--- a/object_cloud_gen.py
+++ b/object_cloud_gen.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Cloud Generator",
"author": "Nick Keeline(nrk)",
"version": (1,0),
diff --git a/object_fracture/__init__.py b/object_fracture/__init__.py
index b7a965ae..824f5b51 100644
--- a/object_fracture/__init__.py
+++ b/object_fracture/__init__.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Fracture Tools",
"author": "pildanovak",
"version": (2,0),
diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index 1606535c..5eb6d7f6 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "PovRay 3.7",
"author": "Campbell Barton, Silvio Falcinelli, Maurice Raybaud",
"version": (0, 0, 3),
diff --git a/render_renderfarmfi.py b/render_renderfarmfi.py
index e1e5c93e..dd6000e3 100644
--- a/render_renderfarmfi.py
+++ b/render_renderfarmfi.py
@@ -16,7 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Renderfarm.fi",
"author": "Nathan Letwory <nathan@letworyinteractive.com>, Jesse Kaukonen <jesse.kaukonen@gmail.com>",
"version": (5,),
@@ -45,7 +45,7 @@ from os.path import abspath, isabs, join, isfile
from bpy.props import PointerProperty, StringProperty, BoolProperty, EnumProperty, IntProperty, CollectionProperty
-bpy.CURRENT_VERSION = bl_addon_info["version"][0]
+bpy.CURRENT_VERSION = bl_info["version"][0]
bpy.found_newer_version = False
bpy.up_to_date = False
bpy.download_location = 'http://www.renderfarm.fi/blender'
diff --git a/rigify/__init__.py b/rigify/__init__.py
index 52ef75fd..f1dcabe3 100644
--- a/rigify/__init__.py
+++ b/rigify/__init__.py
@@ -16,7 +16,7 @@
#
#======================= END GPL LICENSE BLOCK ========================
-bl_addon_info = {
+bl_info = {
"name": "Rigify",
"author": "Nathan Vegdahl",
"version": (0, 5),
diff --git a/space_view3d_3d_navigation.py b/space_view3d_3d_navigation.py
index 48e82dcf..1f2e4f8c 100644
--- a/space_view3d_3d_navigation.py
+++ b/space_view3d_3d_navigation.py
@@ -21,7 +21,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "3D Navigation",
"author": "Demohero, uriel",
"version": (1, 2),
diff --git a/space_view3d_align_tools.py b/space_view3d_align_tools.py
index 1986c523..96ace576 100644
--- a/space_view3d_align_tools.py
+++ b/space_view3d_align_tools.py
@@ -19,7 +19,7 @@
#
# ***** END GPL LICENCE BLOCK *****
-bl_addon_info = {
+bl_info = {
"name": "Align Tools",
"author": "Gabriel Beaudin (gabhead)",
"version": (0,1),
diff --git a/space_view3d_copy_attributes.py b/space_view3d_copy_attributes.py
index 450252f0..0c67b1e5 100644
--- a/space_view3d_copy_attributes.py
+++ b/space_view3d_copy_attributes.py
@@ -18,7 +18,7 @@
# <pep8 compliant>
-bl_addon_info = {
+bl_info = {
'name': 'Copy Attributes Menu',
'author': 'Bassam Kurdali, Fabian Fricke, wiseman303',
'version': (0, 41),
diff --git a/space_view3d_materials_utils.py b/space_view3d_materials_utils.py
index 125a071f..0c832d43 100644
--- a/space_view3d_materials_utils.py
+++ b/space_view3d_materials_utils.py
@@ -22,7 +22,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Material Utils",
"author": "michaelw",
"version": (1,3),
diff --git a/space_view3d_math_vis/__init__.py b/space_view3d_math_vis/__init__.py
index e38ab72b..e4c8e15c 100644
--- a/space_view3d_math_vis/__init__.py
+++ b/space_view3d_math_vis/__init__.py
@@ -16,7 +16,7 @@
#
#======================= END GPL LICENSE BLOCK ========================
-bl_addon_info = {
+bl_info = {
"name": "Math Vis (Console)",
"author": "Campbell Barton",
"version": (0, 1),
@@ -28,6 +28,7 @@ bl_addon_info = {
"Scripts/3D_interaction/Math_Viz",
"tracker_url": "http://projects.blender.org/tracker/index.php?"\
"func=detail&aid=25545",
+ "support": "OFFICIAL",
"category": "3D View"}
if "bpy" in locals():
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
diff --git a/space_view3d_spacebar_menu.py b/space_view3d_spacebar_menu.py
index 12442817..49257a0c 100644
--- a/space_view3d_spacebar_menu.py
+++ b/space_view3d_spacebar_menu.py
@@ -22,7 +22,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-bl_addon_info = {
+bl_info = {
"name": "Dynamic Spacebar Menu",
"author": "JayDez, sim88, meta-androcto, sam",
"version": (1, 6, 1),
diff --git a/system_blend_info.py b/system_blend_info.py
index 4e01ebf1..55dbe508 100644
--- a/system_blend_info.py
+++ b/system_blend_info.py
@@ -20,7 +20,7 @@
#
# ***** END GPL LICENCE BLOCK *****
-bl_addon_info = {
+bl_info = {
"name": "Scene Information",
"author": "uselessdreamer",
"version": (0,3),
diff --git a/system_icon_get.py b/system_icon_get.py
index 79cac230..c07246ae 100644
--- a/system_icon_get.py
+++ b/system_icon_get.py
@@ -19,7 +19,7 @@
# <pep8 compliant>
-bl_addon_info = {
+bl_info = {
'name': 'Icons',
'author': 'Crouch, N.tox, PKHG, Campbell Barton, Dany Lebel',
'version': (1, 4, 2),
diff --git a/system_property_chart.py b/system_property_chart.py
index cfc10f1e..c816c56e 100644
--- a/system_property_chart.py
+++ b/system_property_chart.py
@@ -18,7 +18,7 @@
#
# ***** END GPL LICENCE BLOCK *****
-bl_addon_info = {
+bl_info = {
"name": "Object Property Chart",
"author": "Campbell Barton (ideasman42)",
"version": (0, 1),
diff --git a/text_editor_api_navigator.py b/text_editor_api_navigator.py
index 323fa276..87e1bc85 100644
--- a/text_editor_api_navigator.py
+++ b/text_editor_api_navigator.py
@@ -19,7 +19,7 @@
#
# ***** END GPL LICENCE BLOCK *****
-bl_addon_info = {
+bl_info = {
"name": "API Navigator",
"author": "Dany Lebel (Axon_D)",
"version": (1, 0),