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:
-rw-r--r--add_advanced_objects_menu/add_mesh_aggregate.py2
-rw-r--r--add_advanced_objects_menu/arrange_on_curve.py2
-rw-r--r--add_advanced_objects_menu/circle_array.py2
-rw-r--r--add_advanced_objects_menu/rope_alpha.py2
-rw-r--r--add_advanced_objects_panels/__init__.py2
-rw-r--r--add_advanced_objects_panels/delaunay_voronoi.py2
-rw-r--r--add_mesh_extra_objects/geodesic_domes/__init__.py2
-rw-r--r--archimesh/__init__.py2
-rw-r--r--development_iskeyfree.py2
-rw-r--r--io_online_sketchfab/__init__.py2
-rw-r--r--materials_library_vx/__init__.py2
-rw-r--r--mesh_auto_mirror.py2
-rw-r--r--mesh_extra_tools/mesh_edge_roundifier.py2
-rw-r--r--mesh_extra_tools/mesh_edges_length.py2
-rw-r--r--mesh_extra_tools/mesh_fastloop.py2
-rw-r--r--mesh_extra_tools/pkhg_faces.py2
-rw-r--r--mesh_extra_tools/random_vertices.py2
-rw-r--r--mesh_extra_tools/split_solidify.py2
-rw-r--r--mesh_extra_tools/vertex_align.py2
-rw-r--r--mesh_tissue/__init__.py2
-rw-r--r--mesh_tissue/colors_groups_exchanger.py2
-rw-r--r--mesh_tissue/dual_mesh.py2
-rw-r--r--mesh_tissue/lattice.py2
-rw-r--r--mesh_tissue/uv_to_mesh.py2
-rw-r--r--object_skinify.py2
-rw-r--r--space_view3d_display_tools/__init__.py2
-rw-r--r--space_view3d_display_tools/select_tools.py2
-rw-r--r--space_view3d_display_tools/shading_menu.py2
-rw-r--r--space_view3d_stored_views/__init__.py2
29 files changed, 29 insertions, 29 deletions
diff --git a/add_advanced_objects_menu/add_mesh_aggregate.py b/add_advanced_objects_menu/add_mesh_aggregate.py
index b2ea399e..122e4d96 100644
--- a/add_advanced_objects_menu/add_mesh_aggregate.py
+++ b/add_advanced_objects_menu/add_mesh_aggregate.py
@@ -25,7 +25,7 @@ bl_info = {
"name": "Aggregate Mesh",
"author": "liero",
"version": (0, 0, 5),
- "blender": (2, 7, 0),
+ "blender": (2, 70, 0),
"location": "View3D > Tool Shelf",
"description": "Adds geometry to a mesh like in DLA aggregators",
"category": "Object"}
diff --git a/add_advanced_objects_menu/arrange_on_curve.py b/add_advanced_objects_menu/arrange_on_curve.py
index 17c14b57..2e1ff4bd 100644
--- a/add_advanced_objects_menu/arrange_on_curve.py
+++ b/add_advanced_objects_menu/arrange_on_curve.py
@@ -4,7 +4,7 @@ bl_info = {
"name": "Arrange on Curve",
"author": "Mano-Wii",
"version": (6, 3, 0),
- "blender": (2, 7, 7),
+ "blender": (2, 77, 0),
"location": "3D View > Toolshelf > Create > Arrange on Curve",
"description": "Arrange objects along a curve",
"warning": "Select curve",
diff --git a/add_advanced_objects_menu/circle_array.py b/add_advanced_objects_menu/circle_array.py
index af5a6a0a..818e513c 100644
--- a/add_advanced_objects_menu/circle_array.py
+++ b/add_advanced_objects_menu/circle_array.py
@@ -6,7 +6,7 @@ bl_info = {
"name": "Circle Array",
"author": "Antonis Karvelas",
"version": (1, 0, 1),
- "blender": (2, 6, 7),
+ "blender": (2, 67, 0),
"location": "View3D > Object > Circle_Array",
"description": "Uses an existing array and creates an empty, "
"rotates it properly and makes a Circle Array",
diff --git a/add_advanced_objects_menu/rope_alpha.py b/add_advanced_objects_menu/rope_alpha.py
index 03692412..b7d6d8dd 100644
--- a/add_advanced_objects_menu/rope_alpha.py
+++ b/add_advanced_objects_menu/rope_alpha.py
@@ -25,7 +25,7 @@ bl_info = {
"description": "Dynamic rope (with cloth) creator",
"author": "Jorge Hernandez - Melenedez",
"version": (0, 2, 2),
- "blender": (2, 7, 3),
+ "blender": (2, 73, 0),
"location": "Left Toolbar > ClothRope",
"warning": "",
"wiki_url": "",
diff --git a/add_advanced_objects_panels/__init__.py b/add_advanced_objects_panels/__init__.py
index 8acf398e..9cc2e6fc 100644
--- a/add_advanced_objects_panels/__init__.py
+++ b/add_advanced_objects_panels/__init__.py
@@ -26,7 +26,7 @@ bl_info = {
"name": "Add Advanced Object Panels",
"author": "meta-androcto",
"version": (1, 1, 5),
- "blender": (2, 7, 7),
+ "blender": (2, 77, 0),
"description": "Individual Create Panel Activation List",
"location": "Addons Preferences",
"warning": "",
diff --git a/add_advanced_objects_panels/delaunay_voronoi.py b/add_advanced_objects_panels/delaunay_voronoi.py
index 1219a2ab..4494b5d5 100644
--- a/add_advanced_objects_panels/delaunay_voronoi.py
+++ b/add_advanced_objects_panels/delaunay_voronoi.py
@@ -24,7 +24,7 @@ bl_info = {
"(suitable for terrain modelling) or Voronoi diagram in 2D",
"author": "Domlysz, Oscurart",
"version": (1, 3),
- "blender": (2, 7, 0),
+ "blender": (2, 70, 0),
"location": "3D View > Toolshelf > Create > Delaunay Voronoi",
"warning": "",
"wiki_url": "https://github.com/domlysz/BlenderGIS/wiki",
diff --git a/add_mesh_extra_objects/geodesic_domes/__init__.py b/add_mesh_extra_objects/geodesic_domes/__init__.py
index d4b19fee..54ad464a 100644
--- a/add_mesh_extra_objects/geodesic_domes/__init__.py
+++ b/add_mesh_extra_objects/geodesic_domes/__init__.py
@@ -20,7 +20,7 @@ bl_info = {
"name": "Geodesic Domes2",
"author": "Noctumsolis, PKHG, Meta Androcto, Andy Houston",
"version": (0, 3, 2),
- "blender": (2, 7, 1),
+ "blender": (2, 71, 0),
"location": "Toolshelf > Create Tab",
"description": "Create geodesic dome type objects.",
"warning": "",
diff --git a/archimesh/__init__.py b/archimesh/__init__.py
index bb8f1da2..533dc8bc 100644
--- a/archimesh/__init__.py
+++ b/archimesh/__init__.py
@@ -30,7 +30,7 @@ bl_info = {
"author": "Antonio Vazquez (antonioya)",
"location": "View3D > Add > Mesh > Archimesh",
"version": (1, 1, 4),
- "blender": (2, 6, 8),
+ "blender": (2, 68, 0),
"description": "Generate rooms, doors, windows, and other architecture objects",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Add_Mesh/Archimesh",
"category": "Add Mesh"
diff --git a/development_iskeyfree.py b/development_iskeyfree.py
index 1cb44659..8fddbb3e 100644
--- a/development_iskeyfree.py
+++ b/development_iskeyfree.py
@@ -22,7 +22,7 @@ bl_info = {
"name": "Is key Free",
"author": "Antonio Vazquez (antonioya)",
"version": (1, 1, 1),
- "blender": (2, 6, 9),
+ "blender": (2, 69, 0),
"location": "Text Editor > Props Shelf (Ctrl/t > IsKeyFree Tools",
"description": "Find free shortcuts, inform about used and print a key list",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6"
diff --git a/io_online_sketchfab/__init__.py b/io_online_sketchfab/__init__.py
index 222be113..72920255 100644
--- a/io_online_sketchfab/__init__.py
+++ b/io_online_sketchfab/__init__.py
@@ -20,7 +20,7 @@ bl_info = {
"name": "Sketchfab Exporter",
"author": "Bart Crouch",
"version": (1, 2, 3),
- "blender": (2, 7, 0),
+ "blender": (2, 70, 0),
"location": "Tools > File I/O tab",
"description": "Upload your model to Sketchfab",
"warning": "",
diff --git a/materials_library_vx/__init__.py b/materials_library_vx/__init__.py
index 3569370e..626f5e3f 100644
--- a/materials_library_vx/__init__.py
+++ b/materials_library_vx/__init__.py
@@ -22,7 +22,7 @@ bl_info = {
"name": "Material Library",
"author": "Mackraken (mackraken2023@hotmail.com)",
"version": (0, 5, 8),
- "blender": (2, 7, 8),
+ "blender": (2, 78, 0),
"api": 60995,
"location": "Properties > Material",
"description": "Material Library VX",
diff --git a/mesh_auto_mirror.py b/mesh_auto_mirror.py
index fa0663af..f9a8aa49 100644
--- a/mesh_auto_mirror.py
+++ b/mesh_auto_mirror.py
@@ -10,7 +10,7 @@ bl_info = {
"description": "Super fast cutting and mirroring for Mesh objects",
"author": "Lapineige",
"version": (2, 4, 2),
- "blender": (2, 7, 1),
+ "blender": (2, 71, 0),
"location": "View 3D > Toolbar > Tools tab > AutoMirror (panel)",
"warning": "",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
diff --git a/mesh_extra_tools/mesh_edge_roundifier.py b/mesh_extra_tools/mesh_edge_roundifier.py
index 0ab20a69..c42375dd 100644
--- a/mesh_extra_tools/mesh_edge_roundifier.py
+++ b/mesh_extra_tools/mesh_edge_roundifier.py
@@ -21,7 +21,7 @@ bl_info = {
"category": "Mesh",
"author": "Piotr Komisarczyk (komi3D), PKHG",
"version": (1, 0, 1),
- "blender": (2, 7, 3),
+ "blender": (2, 73, 0),
"location": "SPACE > Edge Roundifier or CTRL-E > "
"Edge Roundifier or Tools > Addons > Edge Roundifier",
"description": "Mesh editing script allowing edge rounding",
diff --git a/mesh_extra_tools/mesh_edges_length.py b/mesh_extra_tools/mesh_edges_length.py
index eac31a2f..f0056d04 100644
--- a/mesh_extra_tools/mesh_edges_length.py
+++ b/mesh_extra_tools/mesh_edges_length.py
@@ -5,7 +5,7 @@ bl_info = {
"description": "Edges length",
"author": "Giuseppe De Marco [BlenderLab] inspired by NirenYang",
"version": (0, 1, 0),
- "blender": (2, 7, 1),
+ "blender": (2, 71, 0),
"location": "Toolbar > Tools > Mesh Tools: set Length(Shit+Alt+E)",
"warning": "",
"wiki_url": "",
diff --git a/mesh_extra_tools/mesh_fastloop.py b/mesh_extra_tools/mesh_fastloop.py
index 6fd08de2..b52a3507 100644
--- a/mesh_extra_tools/mesh_fastloop.py
+++ b/mesh_extra_tools/mesh_fastloop.py
@@ -21,7 +21,7 @@ bl_info = {
"description": "Add loops fast",
"author": "Andy Davies (metalliandy)",
"version": (0, 1, 7),
- "blender": (2, 5, 6),
+ "blender": (2, 56, 0),
"location": "Tool Shelf",
"warning": "",
"wiki_url": "",
diff --git a/mesh_extra_tools/pkhg_faces.py b/mesh_extra_tools/pkhg_faces.py
index 52ecdbc9..b1fd0035 100644
--- a/mesh_extra_tools/pkhg_faces.py
+++ b/mesh_extra_tools/pkhg_faces.py
@@ -4,7 +4,7 @@ bl_info = {
"name": "PKHG faces",
"author": "PKHG",
"version": (0, 0, 6),
- "blender": (2, 7, 1),
+ "blender": (2, 71, 0),
"location": "View3D > Tools > PKHG (tab)",
"description": "Faces selected will become added faces of different style",
"warning": "",
diff --git a/mesh_extra_tools/random_vertices.py b/mesh_extra_tools/random_vertices.py
index bd878218..b21534dc 100644
--- a/mesh_extra_tools/random_vertices.py
+++ b/mesh_extra_tools/random_vertices.py
@@ -4,7 +4,7 @@ bl_info = {
"name": "Random Vertices",
"author": "Oscurart, Greg",
"version": (1, 3),
- "blender": (2, 6, 3),
+ "blender": (2, 63, 0),
"location": "Object > Transform > Random Vertices",
"description": "Randomize selected components of active object",
"warning": "",
diff --git a/mesh_extra_tools/split_solidify.py b/mesh_extra_tools/split_solidify.py
index 4f4aaedf..03930e16 100644
--- a/mesh_extra_tools/split_solidify.py
+++ b/mesh_extra_tools/split_solidify.py
@@ -22,7 +22,7 @@ bl_info = {
"name": "Split Solidify",
"author": "zmj100, updated by zeffii to BMesh",
"version": (0, 1, 2),
- "blender": (2, 7, 7),
+ "blender": (2, 77, 0),
"location": "View3D > Tool Shelf",
"description": "",
"warning": "",
diff --git a/mesh_extra_tools/vertex_align.py b/mesh_extra_tools/vertex_align.py
index 6b9d2a51..59aecfac 100644
--- a/mesh_extra_tools/vertex_align.py
+++ b/mesh_extra_tools/vertex_align.py
@@ -24,7 +24,7 @@ bl_info = {
"name": "Vertex Align",
"author": "",
"version": (0, 1, 7),
- "blender": (2, 6, 1),
+ "blender": (2, 61, 0),
"location": "View3D > Tool Shelf",
"description": "",
"warning": "",
diff --git a/mesh_tissue/__init__.py b/mesh_tissue/__init__.py
index 68921506..d2fbb989 100644
--- a/mesh_tissue/__init__.py
+++ b/mesh_tissue/__init__.py
@@ -34,7 +34,7 @@ bl_info = {
"name": "Tissue",
"author": "Alessandro Zomparelli (Co-de-iT)",
"version": (0, 3, 4),
- "blender": (2, 7, 9),
+ "blender": (2, 79, 0),
"location": "",
"description": "Tools for Computational Design",
"warning": "",
diff --git a/mesh_tissue/colors_groups_exchanger.py b/mesh_tissue/colors_groups_exchanger.py
index a511e951..77c26d7e 100644
--- a/mesh_tissue/colors_groups_exchanger.py
+++ b/mesh_tissue/colors_groups_exchanger.py
@@ -37,7 +37,7 @@ bl_info = {
"name": "Colors/Groups Exchanger",
"author": "Alessandro Zomparelli (Co-de-iT)",
"version": (0, 3, 2),
- "blender": (2, 7, 8),
+ "blender": (2, 78, 0),
"location": "",
"description": ("Convert vertex colors channels to vertex groups and vertex"
" groups to colors"),
diff --git a/mesh_tissue/dual_mesh.py b/mesh_tissue/dual_mesh.py
index 97f0123e..92ee7562 100644
--- a/mesh_tissue/dual_mesh.py
+++ b/mesh_tissue/dual_mesh.py
@@ -33,7 +33,7 @@ bl_info = {
"name": "Dual Mesh",
"author": "Alessandro Zomparelli (Co-de-iT)",
"version": (0, 3),
- "blender": (2, 7, 8),
+ "blender": (2, 78, 0),
"location": "",
"description": "Convert a generic mesh to its dual",
"warning": "",
diff --git a/mesh_tissue/lattice.py b/mesh_tissue/lattice.py
index 73f4c33c..e2235305 100644
--- a/mesh_tissue/lattice.py
+++ b/mesh_tissue/lattice.py
@@ -31,7 +31,7 @@ bl_info = {
"name": "Lattice",
"author": "Alessandro Zomparelli (Co-de-iT)",
"version": (0, 3),
- "blender": (2, 7, 8),
+ "blender": (2, 78, 0),
"location": "",
"description": "Generate a Lattice based on a grid mesh",
"warning": "",
diff --git a/mesh_tissue/uv_to_mesh.py b/mesh_tissue/uv_to_mesh.py
index 928fa3f5..273b3a6a 100644
--- a/mesh_tissue/uv_to_mesh.py
+++ b/mesh_tissue/uv_to_mesh.py
@@ -32,7 +32,7 @@ bl_info = {
"name": "UV to Mesh",
"author": "Alessandro Zomparelli (Co-de-iT)",
"version": (0, 1, 1),
- "blender": (2, 7, 9),
+ "blender": (2, 79, 0),
"location": "",
"description": "Create a new Mesh based on active UV",
"warning": "",
diff --git a/object_skinify.py b/object_skinify.py
index 83b3fd11..010ebdbf 100644
--- a/object_skinify.py
+++ b/object_skinify.py
@@ -20,7 +20,7 @@ bl_info = {
"name": "Skinify Rig",
"author": "Albert Makac (karab44)",
"version": (0, 11, 0),
- "blender": (2, 7, 9),
+ "blender": (2, 79, 0),
"location": "Properties > Bone > Skinify Rig (visible on pose mode only)",
"description": "Creates a mesh object from selected bones",
"warning": "",
diff --git a/space_view3d_display_tools/__init__.py b/space_view3d_display_tools/__init__.py
index 693fca44..a36ff95b 100644
--- a/space_view3d_display_tools/__init__.py
+++ b/space_view3d_display_tools/__init__.py
@@ -26,7 +26,7 @@ bl_info = {
"name": "Display Tools",
"author": "Jordi Vall-llovera Medina, Jhon Wallace",
"version": (1, 6, 4),
- "blender": (2, 7, 0),
+ "blender": (2, 70, 0),
"location": "Toolshelf",
"description": "Display tools for fast navigation/interaction with the viewport",
"warning": "",
diff --git a/space_view3d_display_tools/select_tools.py b/space_view3d_display_tools/select_tools.py
index 18f93185..fbd8f57c 100644
--- a/space_view3d_display_tools/select_tools.py
+++ b/space_view3d_display_tools/select_tools.py
@@ -21,7 +21,7 @@ bl_info = {
"name": "Select Tools",
"author": "Jakub Belcik",
"version": (1, 0, 2),
- "blender": (2, 7, 3),
+ "blender": (2, 73, 0),
"location": "3D View > Tools",
"description": "Selection Tools",
"warning": "",
diff --git a/space_view3d_display_tools/shading_menu.py b/space_view3d_display_tools/shading_menu.py
index c537f54b..894feff5 100644
--- a/space_view3d_display_tools/shading_menu.py
+++ b/space_view3d_display_tools/shading_menu.py
@@ -23,7 +23,7 @@ bl_info = {
"name": "shade Tools",
"author": "Jordi Vall-llovera Medina, Jhon Wallace",
"version": (1, 6, 0),
- "blender": (2, 7, 0),
+ "blender": (2, 70, 0),
"location": "Toolshelf",
"description": "Display tools for fast navigate/interact with the viewport",
"warning": "",
diff --git a/space_view3d_stored_views/__init__.py b/space_view3d_stored_views/__init__.py
index 74124517..aae9add7 100644
--- a/space_view3d_stored_views/__init__.py
+++ b/space_view3d_stored_views/__init__.py
@@ -21,7 +21,7 @@ bl_info = {
"description": "Save and restore User defined views, pov, layers and display configs",
"author": "nfloyd, Francesco Siddi",
"version": (0, 3, 7),
- "blender": (2, 7, 8),
+ "blender": (2, 78, 0),
"location": "View3D > Properties > Stored Views",
"warning": "",
"wiki_url": "https://wiki.blender.org/index.php/Extensions:2.5/"