Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2018-08-14 00:37:09 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2018-08-14 03:51:31 +0300
commitd0acfba937b3816a555b2ded145f27930bd3c6dc (patch)
tree16bedad8810ecb24af088a0b7e0e9a22968a1615 /doc/python_api
parent27be340616c6e33dd2f6466eebf83d0fb647fdf5 (diff)
PyAPI Docs: Move change log link to top with info docs
Diffstat (limited to 'doc/python_api')
-rw-r--r--doc/python_api/sphinx_doc_gen.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 443ec514e1d..fe2279e9671 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -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()