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
path: root/doc
AgeCommit message (Collapse)Author
2021-02-12Py Doc: Update Sphinx and theme versionsAaron Carlisle
2021-01-29Tests, docs: Use sanitizer options from environment too.Ankit Meel
Don't overwrite environment variables that may contain options like suppression files, symboliser etc. It's similar to rBa181b156399a13fa429159112e30c8005d5e8a59 and rBA589d13408a60cbec34a8bc3cc798c586043743ae . For Blender Add-ons repo, see the equivalent in D9816. Reviewed By: Blendify Differential Revision: https://developer.blender.org/D9815
2021-01-13Blender 2.93 bcon1 - alphaDalai Felinto
Bump the version number for the new release cycle.
2021-01-07PyAPI Docs: Terminal instructions for Windows incorrectAaron Carlisle
Fixes T84498
2021-01-07PyAPI Docs: Link to user docs instead of describing in API docAaron Carlisle
2021-01-07PyAPI Docs: Update Indirect Data Access docsAaron Carlisle
Fixes T84432
2021-01-07PyAPI Docs: Fix wrong modifier path usageAaron Carlisle
Fixes T84430
2021-01-07PyAPI Docs: Clarify quick start guide tipsAaron Carlisle
Some of the text here was outdated with 2.8x. See T84427
2021-01-05Fix T84388: Invalid operator reference in the quick-startCampbell Barton
2021-01-03API Docs: CSS: Fix long enum listAaron Carlisle
This commit makes some adjustments to a previous fix which broke with new versions of sphinx/theme. Fixes T76453
2020-12-15Asset System: "Mark Asset" & "Clear Asset" operators and UI integrationJulian Eisel
This makes it possible to turn data-blocks into assets and back into normal data-blocks. A core design decision made for the asset system is that not every data-block should be an asset, because not every data-block is made for reuse. Users have to explicitly mark data-blocks as assets. Exposes "Mark Asset" and "Clear Asset" in Outliner context menus (currently ID Data submenu) and button context menus. We are still not too happy with the names, they may change. This uses the new context members to pass data-blocks to operators, added in af008f553293 and 0c1d4769235c. Part of the first Asset Browser milestone. Check the #asset_browser_milestone_1 project milestone on developer.blender.org. Differential Revision: https://developer.blender.org/D9717 Reviewed by: Brecht Van Lommel
2020-12-08PyDoc: expanded documentation for bpy_struct.is_property_setCampbell Barton
This patch expands on the `is_property_set` doc-string, detailing the purpose of the `ghost` argument added in d3bcbe10c20e8b418659d8fdca98fd6b4bfecdfe. Reviewed By: sybren Ref D9780
2020-12-08PyDoc: avoid blank lines at the beginning of code-examplesCampbell Barton
2020-12-06Doxygen: Increase lookup cacheAaron Carlisle
I could not measure any major speedup/memory usage but this resolves a message while running doxygen.
2020-12-06Doxygen: Disable HTMLHELPAaron Carlisle
This feature is intended to generate Microsoft Compiled HTML Help files which is not something we use/need. This also fixes an error in generation because the executable cannot be found.
2020-11-20Fix T82493: PyDoc generation throws exception on exitCampbell Barton
Since add-ons now unregister on exit (as of fa566157a5c351775d082b05b180c630665b4afc) clearing functions in `bpy.app.handlers` caused an error on exit. Resolve by restoring handlers before exiting.
2020-10-21Bump version to 2.92 alphaDalai Felinto
2020-10-16Correct last commitCampbell Barton
2020-10-16PyDoc: update to account for new context memberCampbell Barton
2020-10-14PyDocs: GPU Module: Examples: convert all gl_FragColor variables to FragColorAaron Carlisle
Based on D6425 by @robbott Differential Revision: https://developer.blender.org/D6425
2020-10-12Pydoc: BGL: update linksAaron Carlisle
2020-10-12Pydoc: Fix bpy.utils submodule showing in main toctreeAaron Carlisle
2020-10-12Pydoc: Move builtin GPU shader information to codeAaron Carlisle
This fixes a compile warning for sphinx. This commit includes some reformating of the information.
2020-10-12Pydoc: Cleanup: Rename functionAaron Carlisle
The new name makes more sense as the file is called index and we are not writing the contents of all rst files
2020-10-11Pydoc: Add index and genindex to main indexAaron Carlisle
2020-10-11Pydoc: Remove old note about new module in 2.65Aaron Carlisle
2020-10-11Pydoc: Add submodule heading to submodule listsAaron Carlisle
2020-10-09PyDoc: Set max width to 1000pxAaron Carlisle
While not full width this gives a nice trade off between improved screen use space and readibility. The old value was 80 so this gives 25% more screen space. See T73223
2020-10-09Cleanup: operator execution types didn't read well on one lineCampbell Barton
2020-10-09PyDoc: resolve duplicate module warningsCampbell Barton
Remove submodule listings from the module docstring, as this information already exists in the generator.
2020-10-08PyDoc: fix most of the sphinx-build warningsAaron Carlisle
Use `.. currentmodule::` instead of `.. module::` for `bpy.types` and `bpy.ops`. This change fixes most of the errors. Ref D9139
2020-10-08PyDoc: support building without sphinx_rtd_themeCampbell Barton
This is no longer bundled with sphinx, support building without it.
2020-10-08Fix recent update to sphinx_doc_gen.shCampbell Barton
2f1a0f6f0eabe090d3ea95c4f508ef72454369a2 copied Makefile syntax into a shell script. Use sphinx-builds 'auto' command to set the number of jobs to run.
2020-10-08PyDoc: Use explicit class names to refence classAaron Carlisle
This fixes the link and makes it more clear which class the note is talking about
2020-10-08PyDoc: Render in text class name using class link syntaxAaron Carlisle
2020-10-07PyDoc: Fix sphinx warnign from missing newlineAaron Carlisle
2020-10-07PyDoc: Multithread sphinx-buildAaron Carlisle
Compile times went from over 5min to under 2 on my laptop.
2020-10-07PyDoc: Remove workaround for slow sphinx buildsAaron Carlisle
Tesing with newer versions of sphinx to directory `sphinx-build` is executed has no affect on the build time. Testing even gave a 2-3% speed boost.
2020-10-05API Doc Gen: Do not ignore objects fileAaron Carlisle
This is used by the Blender manual or other sphinx website that would like to link to Blender's API documentation.
2020-10-02Cleanup: pep8 (indentation, spacing, long lines)Campbell Barton
2020-10-02Cleanup: pep8, blank linesCampbell Barton
2020-10-02Cleanup: trailing spaceCampbell Barton
2020-09-29Cleanup: Python API Docs: Text formatingAaron Carlisle
2020-09-29API Docs: Minor text improvementsAaron Carlisle
2020-09-25API Docs: Fix xref urlsMax Schlecht
Fully revert D7913 "Fix T77276: Generating Python API docs raises many warnings" {D7913} broke xrefs/links to other types and permalinks in the docs. This makes the python api docs for 2.90 and 2.91 completely unusable. It got partially reverted in commit e893430a6306ded059270e7df9d78180cdc0d9e3. That didn't fix those two issues though, so it should be fully reverted. As you can see here, i'm not able to click `bpy_struct.id_data`, because no <a> tag got generated in the html. {F8889934} Here you can see a working, but wrong permalink, generated by clicking the little chain. (It should be `bpy.types.MeshVertices`, not `bpy.types.MeshVertices.MeshVertices`) {F8889938} Reviewed By: Blendify Differential Revision: https://developer.blender.org/D8913
2020-09-14API doc: Gotcha's: Add section about abusing RNA properties callbacks.Bastien Montagne
Especially with new undo/redo it is even less recommended to perform complex operations in those callbacks, they should remain as fast and localized as possible. Also updated the section about undo/redo a bit.
2020-08-24Merge branch 'blender-v2.90-release'Aaron Carlisle
2020-08-24API Docs: Update Changelog from 2.83Aaron Carlisle
2020-08-12Merge branch 'blender-v2.90-release'Brecht Van Lommel
2020-08-12CMake: clarify that the modules are licensed BSD 3-ClauseBrecht Van Lommel
Many of these are derived from similar modules in the CMake project, which have this license. Fixes T79715