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:
authormeta-androcto <meta.androcto1@gmail.com>2019-12-12 13:23:33 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-12-12 13:23:33 +0300
commit3ebb4ed57f712c719e35f30690d202bf94e1cd24 (patch)
tree3794c5fe68748077f8b213b55767df42fa0d8326
parentcf530a29dffbae21935bb3ebfef11706bac99dcf (diff)
io addons fix 404 manual links
-rw-r--r--io_anim_nuke_chan/__init__.py4
-rw-r--r--io_curve_svg/__init__.py3
-rw-r--r--io_import_palette/__init__.py2
-rw-r--r--io_mesh_ply/__init__.py3
-rw-r--r--io_mesh_stl/__init__.py3
-rw-r--r--io_mesh_uv_layout/__init__.py3
-rw-r--r--io_scene_obj/__init__.py3
-rw-r--r--io_scene_x3d/__init__.py3
-rw-r--r--io_shape_mdd/__init__.py4
9 files changed, 18 insertions, 10 deletions
diff --git a/io_anim_nuke_chan/__init__.py b/io_anim_nuke_chan/__init__.py
index fe5f4738..8d6cc7c9 100644
--- a/io_anim_nuke_chan/__init__.py
+++ b/io_anim_nuke_chan/__init__.py
@@ -26,8 +26,8 @@ bl_info = {
"location": "File > Import/Export > Nuke (.chan)",
"description": "Import/Export object's animation with nuke",
"warning": "",
- "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/Import-Export/Nuke",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "import_export/anim_nuke_chan.html",
"category": "Import-Export",
}
diff --git a/io_curve_svg/__init__.py b/io_curve_svg/__init__.py
index fef8fa4b..e32223a7 100644
--- a/io_curve_svg/__init__.py
+++ b/io_curve_svg/__init__.py
@@ -25,7 +25,8 @@ bl_info = {
"location": "File > Import > Scalable Vector Graphics (.svg)",
"description": "Import SVG as curves",
"warning": "",
- "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_curve_svg.html",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "import_export/io_curve_svg.html",
"support": 'OFFICIAL',
"category": "Import-Export",
}
diff --git a/io_import_palette/__init__.py b/io_import_palette/__init__.py
index 431179ca..f4f1c454 100644
--- a/io_import_palette/__init__.py
+++ b/io_import_palette/__init__.py
@@ -26,6 +26,8 @@ bl_info = {
"location": "File > Import",
"description": "Import Palettes",
"warning": "",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "import_export/io_palettes.html",
"category": "Import-Export"}
import sys
diff --git a/io_mesh_ply/__init__.py b/io_mesh_ply/__init__.py
index c9a79e1f..cb3afd42 100644
--- a/io_mesh_ply/__init__.py
+++ b/io_mesh_ply/__init__.py
@@ -25,7 +25,8 @@ bl_info = {
"blender": (2, 82, 0),
"location": "File > Import-Export",
"description": "Import-Export PLY mesh data with UVs and vertex colors",
- "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_mesh_ply.html",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "import_export/io_mesh_ply.html",
"support": 'OFFICIAL',
"category": "Import-Export",
}
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 18246d4d..17ff6dec 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -25,7 +25,8 @@ bl_info = {
"blender": (2, 81, 6),
"location": "File > Import-Export",
"description": "Import-Export STL files",
- "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_mesh_stl.html",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "import_export/io_mesh_stl.html",
"support": 'OFFICIAL',
"category": "Import-Export",
}
diff --git a/io_mesh_uv_layout/__init__.py b/io_mesh_uv_layout/__init__.py
index be01516f..d585c005 100644
--- a/io_mesh_uv_layout/__init__.py
+++ b/io_mesh_uv_layout/__init__.py
@@ -26,7 +26,8 @@ bl_info = {
"location": "Image-Window > UVs > Export UV Layout",
"description": "Export the UV layout as a 2D graphic",
"warning": "",
- "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_mesh_uv_layout.html",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "import_export/io_mesh_uv_layout.html",
"support": 'OFFICIAL',
"category": "Import-Export",
}
diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index e121bb66..0c666082 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -26,7 +26,8 @@ bl_info = {
"location": "File > Import-Export",
"description": "Import-Export OBJ, Import OBJ mesh, UV's, materials and textures",
"warning": "",
- "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_scene_obj.html",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "import_export/io_scene_obj.html",
"support": 'OFFICIAL',
"category": "Import-Export"}
diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py
index e64189d5..16eba50a 100644
--- a/io_scene_x3d/__init__.py
+++ b/io_scene_x3d/__init__.py
@@ -26,7 +26,8 @@ bl_info = {
"location": "File > Import-Export",
"description": "Import-Export X3D, Import VRML2",
"warning": "",
- "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_scene_x3d.html",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "import_export/io_scene_x3d.html",
"category": "Import-Export",
}
diff --git a/io_shape_mdd/__init__.py b/io_shape_mdd/__init__.py
index b6f0e734..f934c197 100644
--- a/io_shape_mdd/__init__.py
+++ b/io_shape_mdd/__init__.py
@@ -26,8 +26,8 @@ bl_info = {
"location": "File > Import-Export",
"description": "Import-Export MDD as mesh shape keys",
"warning": "",
- "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/Import-Export/NewTek_OBJ",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "import_export/shape_mdd.html",
"support": 'OFFICIAL',
"category": "Import-Export"}