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:
authorBrendon Murphy <meta.androcto1@gmail.com>2010-04-01 22:59:17 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2010-04-01 22:59:17 +0400
commit3b812189621ecc2ba979c40f16b7a4286ed705eb (patch)
treeeb57d8aba35aee5404181d0fda760c4e67e036a1
parent12223b635d8eeaa077a510e2bcb22afa393af327 (diff)
modify all scripts to include 1 line description in line with new patch committ
commit 27934 by DingTo: Improved Addons in User Prefs by Keith Boshoff (wahooney) This adds a "description" field to addons (ideally a small 1 liner, with basic info) [[Split portion of a mixed commit.]]
-rw-r--r--add_mesh_3d_function_surface.py1
-rw-r--r--add_mesh_diamond.py1
-rw-r--r--add_mesh_gears.py1
-rw-r--r--add_mesh_gem.py1
-rw-r--r--add_mesh_pipe_joint.py1
-rw-r--r--add_mesh_star.py1
-rw-r--r--add_mesh_twisted_torus.py1
-rw-r--r--io_anim_camera.py1
-rw-r--r--io_mesh_raw/__init__.py1
-rw-r--r--space_view3d_cursor_menu.py1
-rwxr-xr-xspace_view3d_edit_object_parameters.py1
-rw-r--r--space_view3d_panel_measure.py1
12 files changed, 12 insertions, 0 deletions
diff --git a/add_mesh_3d_function_surface.py b/add_mesh_3d_function_surface.py
index 29343dd8..92741666 100644
--- a/add_mesh_3d_function_surface.py
+++ b/add_mesh_3d_function_surface.py
@@ -28,6 +28,7 @@ bl_addon_info = {
'blender': (2, 5, 3),
'location': 'View3D > Add > Mesh > Z Function Surface &' \
' XYZ Function Surface',
+ 'Description': 'Create Objects using Math Formulas',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/Add_Mesh/Add_3d_Function_Surface',
'category': 'Add Mesh'}
diff --git a/add_mesh_diamond.py b/add_mesh_diamond.py
index 58acdbc0..18a0036a 100644
--- a/add_mesh_diamond.py
+++ b/add_mesh_diamond.py
@@ -28,6 +28,7 @@ bl_addon_info = {
'version': '2.0',
'blender': (2, 5, 3),
'location': 'View3D > Add > Mesh ',
+ 'description': 'Adds a mesh Diamond to the Add Mesh menu',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/Add_Mesh/Add_Diamond',
'category': 'Add Mesh'}
diff --git a/add_mesh_gears.py b/add_mesh_gears.py
index 58fe1005..19ca3494 100644
--- a/add_mesh_gears.py
+++ b/add_mesh_gears.py
@@ -30,6 +30,7 @@ bl_addon_info = {
'version': '2.1',
'blender': (2, 5, 3),
'location': 'View3D > Add > Mesh ',
+ 'description': 'Adds a mesh Gear to the Add Mesh menu',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/Add_Mesh/Add_Gear',
'category': 'Add Mesh'}
diff --git a/add_mesh_gem.py b/add_mesh_gem.py
index 4efe68e4..7070d93f 100644
--- a/add_mesh_gem.py
+++ b/add_mesh_gem.py
@@ -26,6 +26,7 @@ bl_addon_info = {
'version': '1.1',
'blender': (2, 5, 3),
'location': 'View3D > Add > Mesh ',
+ 'description': 'Adds a mesh Gem to the Add Mesh menu',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/Add_Mesh/Add_Gem',
'category': 'Add Mesh'}
diff --git a/add_mesh_pipe_joint.py b/add_mesh_pipe_joint.py
index a943bf46..8a4024d2 100644
--- a/add_mesh_pipe_joint.py
+++ b/add_mesh_pipe_joint.py
@@ -27,6 +27,7 @@ bl_addon_info = {
'version': '0.10.1',
'blender': (2, 5, 3),
'location': 'View3D > Add > Mesh > Pipe Joint',
+ 'description': 'Adds 5 pipe Joint types to the Add Mesh menu',
'url':
'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/Add_Mesh/Add_Pipe_Joints',
diff --git a/add_mesh_star.py b/add_mesh_star.py
index 851c6d64..31ce2ccc 100644
--- a/add_mesh_star.py
+++ b/add_mesh_star.py
@@ -26,6 +26,7 @@ bl_addon_info = {
'version': '2.0',
'blender': (2, 5, 3),
'location': 'View3D > Add > Mesh ',
+ 'description': 'Adds a mesh Star to the Add Mesh menu',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/Add_Mesh/Add_Star',
'category': 'Add Mesh'}
diff --git a/add_mesh_twisted_torus.py b/add_mesh_twisted_torus.py
index a6c284dc..58fdeea1 100644
--- a/add_mesh_twisted_torus.py
+++ b/add_mesh_twisted_torus.py
@@ -26,6 +26,7 @@ bl_addon_info = {
'version': '0.10',
'blender': (2, 5, 3),
'location': 'View3D > Add > Mesh ',
+ 'description': 'Adds a mesh Twisted Torus to the Add Mesh menu',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/Add_Mesh/Add_Twisted_Torus',
'category': 'Add Mesh'}
diff --git a/io_anim_camera.py b/io_anim_camera.py
index 3fefac1c..ed5469dc 100644
--- a/io_anim_camera.py
+++ b/io_anim_camera.py
@@ -24,6 +24,7 @@ bl_addon_info = {
'version': '0.1',
'blender': (2, 5, 3),
'location': 'File > Export > Camera Animation',
+ 'description': 'Export Cameras & Markers',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/File_I-O/Camera_Animation',
'category': 'Import/Export'}
diff --git a/io_mesh_raw/__init__.py b/io_mesh_raw/__init__.py
index 96147612..eb54b718 100644
--- a/io_mesh_raw/__init__.py
+++ b/io_mesh_raw/__init__.py
@@ -22,6 +22,7 @@ bl_addon_info = {
'version': '0.2',
'blender': '2.5.3',
'location': 'File > Import/Export > Raw faces ',
+ 'Description': 'Import Raw Faces (.raw format)',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/File_I-O/Raw_Mesh_IO',
'category': 'Import/Export'}
diff --git a/space_view3d_cursor_menu.py b/space_view3d_cursor_menu.py
index 70762f38..b9688c64 100644
--- a/space_view3d_cursor_menu.py
+++ b/space_view3d_cursor_menu.py
@@ -57,6 +57,7 @@ bl_addon_info = {
'version': '2.4',
'blender': (2, 5, 3),
'location': 'View3D > Mouse > Menu ',
+ 'description': 'This adds a 3D Cursor Menu in the 3D View',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/3D_interaction/Cursor_Menu',
'category': '3D View'}
diff --git a/space_view3d_edit_object_parameters.py b/space_view3d_edit_object_parameters.py
index 6ca0934d..1b6bfd3e 100755
--- a/space_view3d_edit_object_parameters.py
+++ b/space_view3d_edit_object_parameters.py
@@ -27,6 +27,7 @@ bl_addon_info = {
'version': '0.1.3',
'blender': (2, 5, 3),
'location': 'View3D > Tool Shelf > Edit Object Parameters',
+ 'description': 're-call an object menu that was created with a Add Mesh operator',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/3D_interaction/Edit_Object_Parameters',
'category': '3D View'}
diff --git a/space_view3d_panel_measure.py b/space_view3d_panel_measure.py
index a559113f..f3473a4f 100644
--- a/space_view3d_panel_measure.py
+++ b/space_view3d_panel_measure.py
@@ -28,6 +28,7 @@ bl_addon_info = {
'version': '0.6.3',
'blender': (2, 5, 3),
'location': 'View3D > Properties > Measure',
+ 'description': 'Measure distances between objects',
'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
'Scripts/3D_interaction/Panel_Measure',
'category': '3D View'}