[Bf-extensions-cvs] [38bdfc03] master: Update wiki_url to new manual pages

Aaron Carlisle noreply at git.blender.org
Mon Jul 15 02:02:42 CEST 2019


Commit: 38bdfc0357feb7d877adc16caca6b23fd13aac79
Author: Aaron Carlisle
Date:   Sun Jul 14 20:02:25 2019 -0400
Branches: master
https://developer.blender.org/rBA38bdfc0357feb7d877adc16caca6b23fd13aac79

Update wiki_url to new manual pages

===================================================================

M	io_anim_bvh/__init__.py
M	io_curve_svg/__init__.py
M	io_mesh_ply/__init__.py
M	io_mesh_stl/__init__.py
M	io_mesh_uv_layout/__init__.py
M	io_scene_fbx/__init__.py
M	io_scene_gltf2/__init__.py
M	io_scene_obj/__init__.py
M	io_scene_x3d/__init__.py
M	render_freestyle_svg.py

===================================================================

diff --git a/io_anim_bvh/__init__.py b/io_anim_bvh/__init__.py
index dd9c2037..b22811fa 100644
--- a/io_anim_bvh/__init__.py
+++ b/io_anim_bvh/__init__.py
@@ -26,10 +26,7 @@ bl_info = {
     "location": "File > Import-Export",
     "description": "Import-Export BVH from armature objects",
     "warning": "",
-    "wiki_url": (
-        "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
-        "Scripts/Import-Export/BVH_Importer_Exporter"
-    ),
+    "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_anim_bvh.html",
     "support": 'OFFICIAL',
     "category": "Import-Export",
 }
diff --git a/io_curve_svg/__init__.py b/io_curve_svg/__init__.py
index c8a9988d..fef8fa4b 100644
--- a/io_curve_svg/__init__.py
+++ b/io_curve_svg/__init__.py
@@ -25,8 +25,7 @@ bl_info = {
     "location": "File > Import > Scalable Vector Graphics (.svg)",
     "description": "Import SVG as curves",
     "warning": "",
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
-                "Scripts/Import-Export/SVG",
+    "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_curve_svg.html",
     "support": 'OFFICIAL',
     "category": "Import-Export",
 }
diff --git a/io_mesh_ply/__init__.py b/io_mesh_ply/__init__.py
index dc23614b..d0713b21 100644
--- a/io_mesh_ply/__init__.py
+++ b/io_mesh_ply/__init__.py
@@ -26,8 +26,7 @@ bl_info = {
     "location": "File > Import-Export",
     "description": "Import-Export PLY mesh data with UV's and vertex colors",
     "warning": "",
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
-                "Scripts/Import-Export/Stanford_PLY",
+    "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_mesh_ply.html",
     "support": 'OFFICIAL',
     "category": "Import-Export",
 }
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index b1807d2a..a5c61d9f 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -26,8 +26,7 @@ bl_info = {
     "location": "File > Import-Export > Stl",
     "description": "Import-Export STL files",
     "warning": "",
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
-                "Scripts/Import-Export/STL",
+    "wiki_url": "https://docs.blender.org/manual/en/latest/addons/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 e7f19c18..be01516f 100644
--- a/io_mesh_uv_layout/__init__.py
+++ b/io_mesh_uv_layout/__init__.py
@@ -26,7 +26,7 @@ bl_info = {
     "location": "Image-Window > UVs > Export UV Layout",
     "description": "Export the UV layout as a 2D graphic",
     "warning": "",
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Import-Export/UV_Layout",
+    "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_mesh_uv_layout.html",
     "support": 'OFFICIAL',
     "category": "Import-Export",
 }
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 2ed54a8a..327210cf 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -26,7 +26,7 @@ bl_info = {
     "location": "File > Import-Export",
     "description": "FBX IO meshes, UV's, vertex colors, materials, textures, cameras, lamps and actions",
     "warning": "",
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Import-Export/Autodesk_FBX",
+    "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_scene_fbx.html",
     "support": 'OFFICIAL',
     "category": "Import-Export",
 }
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 3c158e4d..f3fd36b9 100755
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@ -20,7 +20,7 @@ bl_info = {
     'location': 'File > Import-Export',
     'description': 'Import-Export as glTF 2.0',
     'warning': '',
-    'wiki_url': "https://docs.blender.org/manual/en/latest/addons/io_gltf2.html",
+    'wiki_url': "https://docs.blender.org/manual/en/latest/addons/io_scene_gltf2.html",
     'tracker_url': "https://github.com/KhronosGroup/glTF-Blender-IO/issues/",
     'support': 'OFFICIAL',
     'category': 'Import-Export',
diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 15f2d2a0..ae3780bd 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -26,7 +26,7 @@ bl_info = {
     "location": "File > Import-Export",
     "description": "Import-Export OBJ, Import OBJ mesh, UV's, materials and textures",
     "warning": "",
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Import-Export/Wavefront_OBJ",
+    "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_scene_obj.html",
     "support": 'OFFICIAL',
     "category": "Import-Export"}
 
diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py
index 94ed224a..4af6a652 100644
--- a/io_scene_x3d/__init__.py
+++ b/io_scene_x3d/__init__.py
@@ -26,7 +26,7 @@ bl_info = {
     "location": "File > Import-Export",
     "description": "Import-Export X3D, Import VRML2",
     "warning": "",
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Import-Export/Web3D",
+    "wiki_url": "https://docs.blender.org/manual/en/latest/addons/io_scene_x3d.html",
     "support": 'OFFICIAL',
     "category": "Import-Export",
 }
diff --git a/render_freestyle_svg.py b/render_freestyle_svg.py
index 745aee35..448ae687 100644
--- a/render_freestyle_svg.py
+++ b/render_freestyle_svg.py
@@ -26,7 +26,7 @@ bl_info = {
     "location": "Properties > Render > Freestyle SVG Export",
     "description": "Exports Freestyle's stylized edges in SVG format",
     "warning": "",
-    "wiki_url": "",
+    "wiki_url": "https://docs.blender.org/manual/en/latest/addons/render_freestyle_svg.html",
     "category": "Render",
     }



More information about the Bf-extensions-cvs mailing list