PyAPI Docs: Move change log link to top with info docs

This commit is contained in:
Aaron Carlisle 2018-08-13 17:37:09 -04:00
parent 27be340616
commit d0acfba937
1 changed files with 1 additions and 6 deletions

View File

@ -365,6 +365,7 @@ INFO_DOCS = (
"Tips and Tricks: Hints to help you while writing scripts for Blender"),
("info_gotcha.rst",
"Gotcha's: some of the problems you may come up against when writing scripts"),
("change_log.rst", "List of changes since last Blender release"),
)
# only support for properties atm.
@ -1772,12 +1773,6 @@ def write_rst_contents(basepath):
if "bmesh.ops" not in EXCLUDE_MODULES:
execfile(os.path.join(SCRIPT_DIR, "rst_from_bmesh_opdefines.py"))
# rna generated change log
fw(title_string("API Info", "=", double=True))
fw(".. toctree::\n")
fw(" :maxdepth: 1\n\n")
fw(" change_log.rst\n\n")
file.close()