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.
This commit is contained in:
Aaron Carlisle 2019-07-04 18:24:44 -04:00
parent a6018107b1
commit 686f1f149e
3 changed files with 3 additions and 4 deletions

View File

@ -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/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/",
'support': 'OFFICIAL',
'category': 'Import-Export',
@ -595,4 +595,3 @@ def unregister():
# remove from the export / import menu
bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
bpy.types.TOPBAR_MT_file_import.remove(menu_func_import)

View 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
The Config File should be in the Blender Config folder > /scripts/startup/config_logging.py
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
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

View 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
The Config File should be in the Blender Config folder > /scripts/startup/config_logging.py
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
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