Skip to content
Snippets Groups Projects
Commit 686f1f14 authored by Aaron Carlisle's avatar Aaron Carlisle
Browse files

Use latest/version number for manual links

We want users to go to the current version for their current version 
when possible if not point to latest.

/dev should really only be for development related work. End users 
should not be browsing /dev unless they are reading about upcoming 
features ahead of time.
parent a6018107
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ bl_info = { ...@@ -20,7 +20,7 @@ bl_info = {
'location': 'File > Import-Export', 'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0', 'description': 'Import-Export as glTF 2.0',
'warning': '', 'warning': '',
'wiki_url': "https://docs.blender.org/manual/en/dev/addons/io_gltf2.html", 'wiki_url': "https://docs.blender.org/manual/en/latest/addons/io_gltf2.html",
'tracker_url': "https://github.com/KhronosGroup/glTF-Blender-IO/issues/", 'tracker_url': "https://github.com/KhronosGroup/glTF-Blender-IO/issues/",
'support': 'OFFICIAL', 'support': 'OFFICIAL',
'category': 'Import-Export', 'category': 'Import-Export',
...@@ -595,4 +595,3 @@ def unregister(): ...@@ -595,4 +595,3 @@ def unregister():
# remove from the export / import menu # remove from the export / import menu
bpy.types.TOPBAR_MT_file_export.remove(menu_func_export) bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
bpy.types.TOPBAR_MT_file_import.remove(menu_func_import) bpy.types.TOPBAR_MT_file_import.remove(menu_func_import)
...@@ -43,7 +43,7 @@ NOTE: logging setup has to be provided by the user in a separate config file ...@@ -43,7 +43,7 @@ NOTE: logging setup has to be provided by the user in a separate config file
as Blender will not try to configure logging by default in an add-on as Blender will not try to configure logging by default in an add-on
The Config File should be in the Blender Config folder > /scripts/startup/config_logging.py The Config File should be in the Blender Config folder > /scripts/startup/config_logging.py
For setting up /location of the config folder see: For setting up /location of the config folder see:
https://docs.blender.org/manual/en/dev/getting_started/ https://docs.blender.org/manual/en/latest/getting_started/
installing/configuration/directories.html installing/configuration/directories.html
For configuring logging itself in the file, general Python documentation should work For configuring logging itself in the file, general Python documentation should work
As the logging calls are not configured, they can be kept in the other modules of this add-on As the logging calls are not configured, they can be kept in the other modules of this add-on
......
...@@ -43,7 +43,7 @@ NOTE: logging setup has to be provided by the user in a separate config file ...@@ -43,7 +43,7 @@ NOTE: logging setup has to be provided by the user in a separate config file
as Blender will not try to configure logging by default in an add-on as Blender will not try to configure logging by default in an add-on
The Config File should be in the Blender Config folder > /scripts/startup/config_logging.py The Config File should be in the Blender Config folder > /scripts/startup/config_logging.py
For setting up /location of the config folder see: For setting up /location of the config folder see:
https://docs.blender.org/manual/en/dev/getting_started/ https://docs.blender.org/manual/en/latest/getting_started/
installing/configuration/directories.html installing/configuration/directories.html
For configuring logging itself in the file, general Python documentation should work For configuring logging itself in the file, general Python documentation should work
As the logging calls are not configured, they can be kept in the other modules of this add-on As the logging calls are not configured, they can be kept in the other modules of this add-on
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment