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--blender_id/__init__.py4
-rw-r--r--magic_uv/__init__.py4
-rw-r--r--paint_palette.py4
-rw-r--r--render_auto_tile_size.py4
-rw-r--r--render_copy_settings/__init__.py4
-rw-r--r--render_freestyle_svg.py2
-rw-r--r--render_povray/__init__.py4
-rw-r--r--rigify/__init__.py4
-rw-r--r--system_blend_info.py4
-rw-r--r--system_demo_mode/__init__.py4
-rw-r--r--system_property_chart.py4
11 files changed, 21 insertions, 21 deletions
diff --git a/blender_id/__init__.py b/blender_id/__init__.py
index 4790b86f..cdd0b223 100644
--- a/blender_id/__init__.py
+++ b/blender_id/__init__.py
@@ -28,8 +28,8 @@ bl_info = {
'location': 'Add-on preferences',
'description':
'Stores your Blender ID credentials for usage with other add-ons',
- 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/'
- 'Scripts/System/BlenderID',
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "system/blender_id.html",
'category': 'System',
'support': 'OFFICIAL',
}
diff --git a/magic_uv/__init__.py b/magic_uv/__init__.py
index 045ba216..714f852b 100644
--- a/magic_uv/__init__.py
+++ b/magic_uv/__init__.py
@@ -35,8 +35,8 @@ bl_info = {
"description": "UV Toolset. See Add-ons Preferences for details",
"warning": "",
"support": "COMMUNITY",
- "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
- "Py/Scripts/UV/Magic_UV",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "uv/magic_uv.html",
"tracker_url": "https://github.com/nutti/Magic-UV",
"category": "UV"
}
diff --git a/paint_palette.py b/paint_palette.py
index 1460a965..a8cd904c 100644
--- a/paint_palette.py
+++ b/paint_palette.py
@@ -27,8 +27,8 @@ bl_info = {
"location": "Image Editor and 3D View > Any Paint mode > Color Palette or Weight Palette panel",
"description": "Palettes for color and weight paint modes",
"warning": "",
- "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/Paint/Palettes",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "paint_palettes.html",
"category": "Paint",
}
diff --git a/render_auto_tile_size.py b/render_auto_tile_size.py
index 7029b4b3..d39f72d6 100644
--- a/render_auto_tile_size.py
+++ b/render_auto_tile_size.py
@@ -24,8 +24,8 @@ bl_info = {
"blender": (2, 80, 0),
"location": "Render Settings > Performance",
"warning": "",
- "wiki_url": "https://wiki.blender.org/index.php?title=Extensions:2.6/Py/"
- "Scripts/Render/Auto_Tile_Size",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "render/auto_tile_size.html",
"category": "Render",
}
diff --git a/render_copy_settings/__init__.py b/render_copy_settings/__init__.py
index 8c57f68f..c40f41b7 100644
--- a/render_copy_settings/__init__.py
+++ b/render_copy_settings/__init__.py
@@ -26,8 +26,8 @@ bl_info = {
"location": "Render buttons (Properties window)",
"description": "Allows to copy a selection of render settings "
"from current scene to others.",
- "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/Render/Copy Settings",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "render/copy_settings.html",
"category": "Render",
}
diff --git a/render_freestyle_svg.py b/render_freestyle_svg.py
index 45d36790..0061cc56 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": "https://docs.blender.org/manual/en/latest/addons/render_freestyle_svg.html",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/render/render_freestyle_svg.html",
"support": 'OFFICIAL',
"category": "Render",
}
diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index c68ddf07..d172d1d5 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -30,8 +30,8 @@ bl_info = {
"blender": (2, 81, 0),
"location": "Render Properties > Render Engine > Persistence of Vision",
"description": "Persistence of Vision integration for blender",
- "wiki_url": "https://archive.blender.org/wiki/index.php/"
- "Extensions:2.6/Py/Scripts/Render/POV-Ray/",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "render/povray.html",
"category": "Render",
}
diff --git a/rigify/__init__.py b/rigify/__init__.py
index 8363d037..3504abbd 100644
--- a/rigify/__init__.py
+++ b/rigify/__init__.py
@@ -25,8 +25,8 @@ bl_info = {
"blender": (2, 81, 0),
"description": "Automatic rigging from building-block components",
"location": "Armature properties, Bone properties, View3d tools panel, Armature Add menu",
- "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
- "Scripts/Rigging/Rigify",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "rigging/rigify.html",
"category": "Rigging"}
import importlib
diff --git a/system_blend_info.py b/system_blend_info.py
index e49748e3..8c181dd4 100644
--- a/system_blend_info.py
+++ b/system_blend_info.py
@@ -28,8 +28,8 @@ bl_info = {
"location": "Properties > Scene > Blend Info Panel",
"description": "Show information about the .blend",
"warning": "",
- "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/System/Blend Info",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "system/blend_info.html",
"category": "System",
}
diff --git a/system_demo_mode/__init__.py b/system_demo_mode/__init__.py
index dee808a2..d6b56560 100644
--- a/system_demo_mode/__init__.py
+++ b/system_demo_mode/__init__.py
@@ -25,8 +25,8 @@ bl_info = {
"location": "File > Demo Menu",
"description": "Demo mode lets you select multiple blend files and loop over them.",
"warning": "",
- "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/System/Demo_Mode#Running_Demo_Mode",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "system/demo_mode.html",
"support": 'OFFICIAL',
"category": "System",
}
diff --git a/system_property_chart.py b/system_property_chart.py
index 1aefb643..c7065608 100644
--- a/system_property_chart.py
+++ b/system_property_chart.py
@@ -27,8 +27,8 @@ bl_info = {
"description": ("Edit arbitrary selected properties for "
"objects/sequence strips of the same type"),
"warning": "",
- "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/System/Object Property Chart",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "system/property_chart.html",
"category": "System",
}