diff --git a/mesh_extra_tools/mesh_bump.py b/mesh_extra_tools/mesh_bump.py index 05402ecbdc5b1e63d0837e2c446b6f7751a644e5..8c0a7d5933e8ace3de504aebda2d2f4778a4e64f 100644 --- a/mesh_extra_tools/mesh_bump.py +++ b/mesh_extra_tools/mesh_bump.py @@ -22,19 +22,18 @@ # ***** END GPL LICENCE BLOCK ***** bl_info = { - "name": "Bump", - "author": "Dolf Veenvliet", - "version": 1, - "blender": (2, 5, 6), - "api": 31847, - "location": "View3D > Specials > Bump", - "description": "Extrude and translate/rotate/scale multiple times", - "warning": "", - "wiki_url": "", - "tracker_url": "", - "category": "Mesh"} - - + "name": "Bump", + "author": "Dolf Veenvliet", + "version": 1, + "blender": (2, 5, 6), + "api": 31847, + "location": "View3D > Specials > Bump", + "description": "Extrude and translate/rotate/scale multiple times", + "warning": "", + "wiki_url": "", + "tracker_url": "", + "category": "Mesh"} + """ Usage: diff --git a/mesh_extra_tools/mesh_filletplus.py b/mesh_extra_tools/mesh_filletplus.py index 7d660c0fd22d2a08f7d3b8e86ed426e81e93e414..fc025b145573500584279985fe9f1467a1454ad3 100644 --- a/mesh_extra_tools/mesh_filletplus.py +++ b/mesh_extra_tools/mesh_filletplus.py @@ -21,17 +21,17 @@ # ------ ------ bl_info = { - "name": "FilletPlus", - "author": "Gert De Roost - original by zmj100", - "version": (0, 4, 2), - "blender": (2, 6, 1), - "api": 43085, - "location": "View3D > Tool Shelf", - "description": "", - "warning": "", - "wiki_url": "", - "tracker_url": "", - "category": "Mesh"} + "name": "FilletPlus", + "author": "Gert De Roost - original by zmj100", + "version": (0, 4, 2), + "blender": (2, 6, 1), + "api": 43085, + "location": "View3D > Tool Shelf", + "description": "", + "warning": "", + "wiki_url": "", + "tracker_url": "", + "category": "Mesh"} # ------ ------ import bpy diff --git a/mesh_extra_tools/mesh_polyredux.py b/mesh_extra_tools/mesh_polyredux.py index c0d2cf842c3372d838e74dd8d0fa056d6071e900..6a802300627a05a57484a0f1287040e315a0f6d1 100644 --- a/mesh_extra_tools/mesh_polyredux.py +++ b/mesh_extra_tools/mesh_polyredux.py @@ -19,17 +19,17 @@ # ***** END GPL LICENCE BLOCK ***** # -------------------------------------------------------------------------- bl_info = { - "name": "PolyRedux", - "author": "Campbell J Barton - updated by Gert De Roost", - "version": (2, 0, 4), - "blender": (2, 6, 3), - "location": "View3D > Tools", - "description": "predictable mesh simplifaction maintaining face loops", - "warning": "", - "wiki_url": "", - "tracker_url": "", - "category": "Mesh"} - + "name": "PolyRedux", + "author": "Campbell J Barton - updated by Gert De Roost", + "version": (2, 0, 4), + "blender": (2, 6, 3), + "location": "View3D > Tools", + "description": "predictable mesh simplifaction maintaining face loops", + "warning": "", + "wiki_url": "", + "tracker_url": "", + "category": "Mesh"} + if "bpy" in locals(): import imp diff --git a/mesh_select_tools/mesh_select_by_direction.py b/mesh_select_tools/mesh_select_by_direction.py index 9e2b10a434db265bce8048a21a1d956419c26e92..af1544431b3ab6253065ec38bdc2c58ce63cf2c2 100644 --- a/mesh_select_tools/mesh_select_by_direction.py +++ b/mesh_select_tools/mesh_select_by_direction.py @@ -22,18 +22,18 @@ # ***** END GPL LICENCE BLOCK ***** ''' bl_info = { - "name": "Select by direction", - "author": "Dolf Veenvliet", - "version": 1, - "blender": (2, 5, 6), - "api": 31847, - "location": "View3D > Select", - "description": "Select all items whose normals face a certain direction", - "warning": "", - "wiki_url": "", - "tracker_url": "", - "category": "Mesh"} - + "name": "Select by direction", + "author": "Dolf Veenvliet", + "version": 1, + "blender": (2, 5, 6), + "api": 31847, + "location": "View3D > Select", + "description": "Select all items whose normals face a certain direction", + "warning": "", + "wiki_url": "", + "tracker_url": "", + "category": "Mesh"} + """ Usage: diff --git a/mesh_select_tools/mesh_select_by_edge_length.py b/mesh_select_tools/mesh_select_by_edge_length.py index af25e0e1427c989e11aa2c7ca62f1f1435cd00e1..e89f6e85ea25d6a923293d1bf57e2e237f5447dc 100644 --- a/mesh_select_tools/mesh_select_by_edge_length.py +++ b/mesh_select_tools/mesh_select_by_edge_length.py @@ -22,18 +22,18 @@ # ***** END GPL LICENCE BLOCK ***** ''' bl_info = { - "name": "Select by edge length", - "author": "Dolf Veenvliet", - "version": 1, - "blender": (2, 5, 6), - "api": 31847, - "location": "View3D > Select", - "description": "Select all items whose scale/length/surface matches a certain edge length", - "warning": "", - "wiki_url": "", - "tracker_url": "", - "category": "Mesh"} - + "name": "Select by edge length", + "author": "Dolf Veenvliet", + "version": 1, + "blender": (2, 5, 6), + "api": 31847, + "location": "View3D > Select", + "description": "Select all items whose scale/length/surface matches a certain edge length", + "warning": "", + "wiki_url": "", + "tracker_url": "", + "category": "Mesh"} + """ Usage: diff --git a/mesh_select_tools/mesh_select_by_pi.py b/mesh_select_tools/mesh_select_by_pi.py index 2019118f0fd63a0e9657970cf2e569f12fd6276c..380ed96907e02cacabedf66f9c4863224f486c7b 100644 --- a/mesh_select_tools/mesh_select_by_pi.py +++ b/mesh_select_tools/mesh_select_by_pi.py @@ -22,18 +22,18 @@ # ***** END GPL LICENCE BLOCK ***** ''' bl_info = { - "name": "Select by pi", - "author": "Dolf Veenvliet", - "version": 1, - "blender": (2, 5, 6), - "api": 31847, - "location": "View3D > Select", - "description": "Select fake random based on pi", - "warning": "", - "wiki_url": "", - "tracker_url": "", - "category": "Mesh"} - + "name": "Select by pi", + "author": "Dolf Veenvliet", + "version": 1, + "blender": (2, 5, 6), + "api": 31847, + "location": "View3D > Select", + "description": "Select fake random based on pi", + "warning": "", + "wiki_url": "", + "tracker_url": "", + "category": "Mesh"} + """ Usage: diff --git a/mesh_select_tools/mesh_select_checkered.py b/mesh_select_tools/mesh_select_checkered.py index f8ee204677caa87a90faf34e9ab004a9247da6e9..d35bad85fd5b9562d8ef425289b970388cdbf30f 100644 --- a/mesh_select_tools/mesh_select_checkered.py +++ b/mesh_select_tools/mesh_select_checkered.py @@ -22,18 +22,18 @@ # ***** END GPL LICENCE BLOCK ***** bl_info = { - "name": "Select checkered", - "author": "Dolf Veenvliet", - "version": 1, - "blender": (2, 5, 6), - "api": 31847, - "location": "View3D > Select", - "description": "Select checkered", - "warning": "", - "wiki_url": "", - "tracker_url": "", - "category": "Mesh"} - + "name": "Select checkered", + "author": "Dolf Veenvliet", + "version": 1, + "blender": (2, 5, 6), + "api": 31847, + "location": "View3D > Select", + "description": "Select checkered", + "warning": "", + "wiki_url": "", + "tracker_url": "", + "category": "Mesh"} + """ Usage: diff --git a/mesh_select_tools/mesh_select_connected_faces.py b/mesh_select_tools/mesh_select_connected_faces.py index da3e612f0721353eca1da5943a6acd23b9ec97de..71ccd94c1d8434ae78be4de8ba3c98ed08653445 100644 --- a/mesh_select_tools/mesh_select_connected_faces.py +++ b/mesh_select_tools/mesh_select_connected_faces.py @@ -21,19 +21,19 @@ # # ***** END GPL LICENCE BLOCK ***** ''' -bl_info = { - "name": "Select connected faces", - "author": "Dolf Veenvliet", - "version": 1, - "blender": (2, 5, 6), - "api": 31847, - "location": "View3D > Select", - "description": "Select all faces connected to the current selection", - "warning": "", - "wiki_url": "", - "tracker_url": "", - "category": "Mesh"} - + bl_info = { + "name": "Select connected faces", + "author": "Dolf Veenvliet", + "version": 1, + "blender": (2, 5, 6), + "api": 31847, + "location": "View3D > Select", + "description": "Select all faces connected to the current selection", + "warning": "", + "wiki_url": "", + "tracker_url": "", + "category": "Mesh"} + """ Usage: diff --git a/mesh_select_tools/mesh_select_innermost.py b/mesh_select_tools/mesh_select_innermost.py index a16241dd7512669b538bbefbd053ac792dddf6e3..1cad59d3e2f497f7872ca2a9cb50dd9a6430fe44 100644 --- a/mesh_select_tools/mesh_select_innermost.py +++ b/mesh_select_tools/mesh_select_innermost.py @@ -22,17 +22,17 @@ # ***** END GPL LICENCE BLOCK ***** ''' bl_info = { - "name": "Select innermost", - "author": "Dolf Veenvliet", - "version": (0,3), - "blender": (2, 5, 7), - "api": 35851, - "location": "Select > Innermost", - "description": "Select the innermost faces", - "warning": "", - "wiki_url": "", - "tracker_url": "", - "category": "Mesh"} + "name": "Select innermost", + "author": "Dolf Veenvliet", + "version": (0,3), + "blender": (2, 5, 7), + "api": 35851, + "location": "Select > Innermost", + "description": "Select the innermost faces", + "warning": "", + "wiki_url": "", + "tracker_url": "", + "category": "Mesh"} """ Usage: diff --git a/text_intellisense.py b/text_intellisense.py index 167a94054faffe7e8ea20728171fa8ac4d809c34..858e910ac577bde067cd307d14486029519209ba 100644 --- a/text_intellisense.py +++ b/text_intellisense.py @@ -18,17 +18,17 @@ # ***** END GPL LICENCE BLOCK ***** bl_info = { - "name": "Intellisense for Text Editor", - "author": "Mackraken", - "version": (0, 2), - "blender": (2, 6, 0), - "api": 41851, - "location": "Ctrl + Space at Text Editor", - "description": "Adds intellense to the Text Editor", - "warning": "Only works with 2.57 intellisense", - "wiki_url": "", - "tracker_url": "", - "category": "Development"} + "name": "Intellisense for Text Editor", + "author": "Mackraken", + "version": (0, 2), + "blender": (2, 6, 0), + "api": 41851, + "location": "Ctrl + Space at Text Editor", + "description": "Adds intellense to the Text Editor", + "warning": "Only works with 2.57 intellisense", + "wiki_url": "", + "tracker_url": "", + "category": "Development"} import bpy