[Bf-extensions-cvs] [5c755ab5] master: Update 'bl_info' use 'doc_url' instead of 'wiki_url'

Campbell Barton noreply at git.blender.org
Thu Mar 5 02:26:26 CET 2020


Commit: 5c755ab594e728e91f2c7d47b3825c75eb05a016
Author: Campbell Barton
Date:   Thu Mar 5 12:24:24 2020 +1100
Branches: master
https://developer.blender.org/rBAC5c755ab594e728e91f2c7d47b3825c75eb05a016

Update 'bl_info' use 'doc_url' instead of 'wiki_url'

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

M	add_dimension.py
M	add_mesh_clusters/__init__.py
M	animation_motion_trail.py
M	automat/__init__.py
M	camera_overscan.py
M	development_class_viewer.py
M	development_ui_classes.py
M	exact_edit/__init__.py
M	io_export_after_effects.py
M	io_import_BrushSet.py
M	io_import_sound_to_anim.py
M	io_online_sketchfab/__init__.py
M	io_scene_3ds/__init__.py
M	io_scene_open_street_map.py
M	io_vector/__init__.py
M	lighting_hdri_shortcut/__init__.py
M	mesh_easy_lattice.py
M	mesh_selectbuffer.py
M	mesh_show_vgroup_weights.py
M	mocap/__init__.py
M	netrender/__init__.py
M	np_station/__init__.py
M	np_station/np_float_box.py
M	np_station/np_float_poly.py
M	np_station/np_float_rectangle.py
M	np_station/np_point_align.py
M	np_station/np_point_array.py
M	np_station/np_point_copy.py
M	np_station/np_point_dimension.py
M	np_station/np_point_distance.py
M	np_station/np_point_instance.py
M	np_station/np_point_move.py
M	np_station/np_point_scale.py
M	np_station/np_roto_move.py
M	np_station/np_shader_brush.py
M	object_animrenderbake.py
M	object_batch_rename_datablocks.py
M	object_creaprim.py
M	object_facemap_auto/__init__.py
M	object_fracture_crack/__init__.py
M	object_mesh_versions.py
M	render_auto_save.py
M	render_cube_map.py
M	render_renderslot.py
M	render_time.py
M	render_to_print.py
M	space_clip_editor_autotracker.py
M	space_view3d_render_settings.py
M	system_keyboard_svg.py
M	system_project_folder.py
M	text_editor_hastebin.py

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

diff --git a/add_dimension.py b/add_dimension.py
index cfdbbb4b..bb512d4f 100644
--- a/add_dimension.py
+++ b/add_dimension.py
@@ -24,7 +24,7 @@ bl_info = {
     'location': 'View3D > Add > Curve',
     'description': 'Adds Dimension',
     'warning': '', # used for warning icon and text in addons panel
-    'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Curve/Dimension',
+    'doc_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Curve/Dimension',
     "tracker_url": "https://developer.blender.org/maniphest/task/edit/form/2/",
     'category': 'Add Curve'}
 
diff --git a/add_mesh_clusters/__init__.py b/add_mesh_clusters/__init__.py
index 3ecd64ae..c1a17ab1 100644
--- a/add_mesh_clusters/__init__.py
+++ b/add_mesh_clusters/__init__.py
@@ -45,7 +45,7 @@ bl_info = {
     "blender": (2, 80, 0),
     "location": "Panel: View 3D - Tools (right side)",
     "warning": "",
-    "wiki_url": "... will be updated asap ...",
+    "doc_url": "... will be updated asap ...",
     "category": "Add Mesh"}
 
 import os
diff --git a/animation_motion_trail.py b/animation_motion_trail.py
index e32758db..52ed950f 100644
--- a/animation_motion_trail.py
+++ b/animation_motion_trail.py
@@ -27,10 +27,11 @@ bl_info = {
     "location": "View3D > Toolbar > Motion Trail tab",
     "warning": "Needs bgl draw update",
     "description": "Display and edit motion trails in the 3D View",
-    "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
-                "Scripts/Animation/Motion_Trail",
+    "doc_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
+               "Scripts/Animation/Motion_Trail",
     "tracker_url": "https://developer.blender.org/maniphest/task/edit/form/2/",
-    "category": "Animation"}
+    "category": "Animation",
+}
 
 
 import bgl
diff --git a/automat/__init__.py b/automat/__init__.py
index 7c7f8a42..d5884cc6 100644
--- a/automat/__init__.py
+++ b/automat/__init__.py
@@ -8,7 +8,7 @@ bl_info = {
 	"location": "Space > Automatic / Adjustable Material from Image",
 	"description": "One-click material setup from texture for Cycles. Blur from b°wide node pack.",
 	"warning": "Still a work in progress",
-	"wiki_url": "",
+	"doc_url": "",
 	"tracker_url": "mailto:theo.friberg at gmail.com?subject="
 	"Bug report for Cycles Automatic Materials addon&body="
 	"I have come across the following error while using the Cycles automatic"
@@ -17,7 +17,8 @@ bl_info = {
 	" action of yours is related to the error, please include a description"
 	" of it too.):",
 	"support": "COMMUNITY",
-	"category": "Render"}
+	"category": "Render"
+}
 
 if "bpy" in locals():
 	import importlib
diff --git a/camera_overscan.py b/camera_overscan.py
index 859fecae..ce6518d0 100644
--- a/camera_overscan.py
+++ b/camera_overscan.py
@@ -24,7 +24,7 @@ bl_info = {
     "location": "Render Settings > Camera Overscan",
     "description": "Render Overscan",
     "warning": "",
-    "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Render/Camera_Overscan",
+    "doc_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Render/Camera_Overscan",
     "tracker_url": "",
     "category": "Render"}
 
diff --git a/development_class_viewer.py b/development_class_viewer.py
index 725c48cf..841f81a8 100644
--- a/development_class_viewer.py
+++ b/development_class_viewer.py
@@ -24,7 +24,7 @@ bl_info = {
     "location": "Text Editor > Toolbar, Text Editor > Right Click",
     "warning": "",
     "description": "List classes and definitions of a text block",
-    "wiki_url": "https://sites.google.com/site/aleonserra/home/scripts/class-viewer",
+    "doc_url": "https://sites.google.com/site/aleonserra/home/scripts/class-viewer",
     "tracker_url": "https://developer.blender.org/maniphest/task/edit/form/2/",
     "category": "Development"}
 
diff --git a/development_ui_classes.py b/development_ui_classes.py
index 68adc583..65160980 100644
--- a/development_ui_classes.py
+++ b/development_ui_classes.py
@@ -26,10 +26,10 @@ bl_info = {
     "location": "Text Editor > Properties",
     "description": "Print the UI classes in a text-block",
     "warning": "",
-    "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
-                "Py/Scripts/Development/Classes_Overview",
-    "category": "Development"
-    }
+    "doc_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
+               "Py/Scripts/Development/Classes_Overview",
+    "category": "Development",
+}
 
 import bpy
 from bpy.types import (
diff --git a/exact_edit/__init__.py b/exact_edit/__init__.py
index 607e75ff..a5a386cb 100644
--- a/exact_edit/__init__.py
+++ b/exact_edit/__init__.py
@@ -25,7 +25,7 @@ bl_info = {
     "blender": (2, 80, 0),
     "location": "View3D",
     "description": "Tool for precisely setting distance, scale, and rotation",
-    "wiki_url": "https://github.com/n-Burn/Exact_Edit/wiki",
+    "doc_url": "https://github.com/n-Burn/Exact_Edit/wiki",
     "category": "Object"
 }
 
diff --git a/io_export_after_effects.py b/io_export_after_effects.py
index cf7c72d5..71bb5fc9 100644
--- a/io_export_after_effects.py
+++ b/io_export_after_effects.py
@@ -27,8 +27,8 @@ bl_info = {
     "blender": (2, 80, 0),
     "location": "File > Export > Adobe After Effects (.jsx)",
     "warning": "",
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
-                "Scripts/Import-Export/Adobe_After_Effects",
+    "doc_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
+               "Scripts/Import-Export/Adobe_After_Effects",
     "category": "Import-Export",
 }
 
diff --git a/io_import_BrushSet.py b/io_import_BrushSet.py
index 933135eb..0c788fcb 100644
--- a/io_import_BrushSet.py
+++ b/io_import_BrushSet.py
@@ -37,13 +37,13 @@ bl_info = {
     "author": "Daniel Grauer (kromar), CansecoGPC",
     "version": (1, 2, 2),
     "blender": (2, 80, 0),
-    "category": "Import-Export",
     "location": "File > Import > BrushSet",
     "description": "Imports all image files from a folder.",
     "warning": '',    # used for warning icon and text in addons panel
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Import-Export/BrushSet",
+    "doc_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Import-Export/BrushSet",
     "tracker_url": "https://developer.blender.org/maniphest/task/edit/form/2/",
-    }
+    "category": "Import-Export",
+}
 
 #---------------------------------------------#
 
diff --git a/io_import_sound_to_anim.py b/io_import_sound_to_anim.py
index 29e5984b..eb67c2ff 100644
--- a/io_import_sound_to_anim.py
+++ b/io_import_sound_to_anim.py
@@ -26,7 +26,7 @@ bl_info = {
     "location": "Select a object > View3D > Tool Shelf > Import Movement From .Wav File",
     "description": "Extract movement from .wav sound file.",
     "warning": "",
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
+    "doc_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
         "Scripts/Import-Export/Import_Movement_From_Audio_File",
     "tracker_url": "https://developer.blender.org/maniphest/task/edit/form/2/",
     "category": "Import-Export"}
diff --git a/io_online_sketchfab/__init__.py b/io_online_sketchfab/__init__.py
index 5448d470..d32691e7 100644
--- a/io_online_sketchfab/__init__.py
+++ b/io_online_sketchfab/__init__.py
@@ -24,7 +24,7 @@ bl_info = {
     "location": "Tools > File I/O tab",
     "description": "Upload your model to Sketchfab",
     "warning": "",
-    "wiki_url": "",
+    "doc_url": "",
     "category": "Import-Export"
 }
 
diff --git a/io_scene_3ds/__init__.py b/io_scene_3ds/__init__.py
index 9c6bfe1e..b6f8b4c0 100644
--- a/io_scene_3ds/__init__.py
+++ b/io_scene_3ds/__init__.py
@@ -27,9 +27,10 @@ bl_info = {
     "description": "Import 3DS, meshes, uvs, materials, textures, "
                    "cameras & lamps",
     "warning": "Images must be in file folder",
-    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
-                "Scripts/Import-Export/Autodesk_3DS",
-    "category": "Import-Export"}
+    "doc_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
+               "Scripts/Import-Export/Autodesk_3DS",
+    "category": "Import-Export",
+}
 
 if "bpy" in locals():
     import importlib
diff --git a/io_scene_open_street_map.py b/io_scene_open_street_map.py
index 82683441..204f41a5 100644
--- a/io_scene_open_street_map.py
+++ b/io_scene_open_street_map.py
@@ -25,7 +25,7 @@ bl_info = {
     "blender": (2, 63, 0),
     "location": "File > Import",
     "description": "Load Open Street Map File",
-    "wiki_url": "",
+    "doc_url": "",
     "tracker_url": "https://developer.blender.org/maniphest/task/edit/form/2/",
     "category": "Import-Export"}
 
diff --git a/io_vector/__init__.py b/io_vector/__init__.py
index 84e8c9a4..6abf2d50 100644
--- a/io_vector/__init__.py
+++ b/io_vector/__init__.py
@@ -26,7 +26,7 @@ bl_info = {
   "location": "File > Import-Export > Vector files (.ai, .pdf, .svg)",
   "description": "Import Adobe Illustrator, PDF, and SVG",
   "warning": "",
-  "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
+  "doc_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
       "Scripts/Import-Export/AI_PDF_SVG",
   "category": "Import-Export"}
 
diff --git a/lighting_hdri_shortcut/__init__.py b/lighting_hdri_shortcut/__init__.py
index 2afa27d9..7eaf3505 100644
--- a/lighting_hdri_shortcut/__init__.py
+++ b/lighting_hdri_shortcut/__init__.py
@@ -6,12 +6,13 @@ bl_info = {
     "author": "Nicolas Priniotakis (Nikos)",
     "version": (1, 3, 2, 0),
     "blender": (2, 80, 0),
-    "category": "Lighting",
     "location": "Properties > World",
     "description": "Easy setup for HDRI global lightings",
     "warning": "",
-    "wiki_url": "",
-    "tracker_url": "", }
+    "doc_url": "",
+    "tracker_url": "",
+    "category": "Lighting",
+}
 
 import bpy
 from bpy.types import Operator, AddonPreferences
diff --git a/mesh_easy_lattice.py b/mesh_easy_lattice.py
index d7c744eb..17995bea 100644
--- a/mesh_easy_lattice.py
+++ b/mesh_easy_lattice.py
@@ -25,7 +25,7 @@ bl_info = {
             "location": "View3D > EZ Lattice",
  

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-extensions-cvs mailing list