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
AgeCommit message (Collapse)Author
2020-03-24Doc: remove MeshTessFace referenceCampbell Barton
2020-03-20fix API doc generation after new `volume` entry in context...Bastien Montagne
2020-03-19PyAPI Docs: Update aud exampleAaron Carlisle
Fixes T74641
2020-03-06API Docs: Point to manual for Operator Cheat SheetAaron Carlisle
2020-03-06Documentation: added bpy.msgbus description and examplesSybren A. Stüvel
The `bpy.msgbus` namespace was not included in the documentation generation. I've added it, and ported Campbell's examples from P563.
2020-03-05Addons: deprecate 'wiki_url'Aaron Carlisle
When running with debug enabled ('-d' argument), warnings are printed for add-ons which are not yet updated. Reminder to name things based on what they do, not the technologies they use :)
2020-02-26PyAPI Doc: Add missing Imbuf documentantionAaron Carlisle
The documentation existed but it was never added to the script.
2020-02-14Fix small typo in BGL API docsIan Karanja
Differential Revision: https://developer.blender.org/D6681
2020-02-11Documentation: add note on altering data from frame change handlersSybren A. Stüvel
Blender can crash while rendering, when scene data is changed from within a `frame_change_pre` or `frame_change_post` callback function. This results in bug reports like T60094, T67627, and T73530. Until this is properly resolved, this limitation should be documented. No functional changes.
2020-02-11Doc: simplify T72883 fixCampbell Barton
Code example made it seem setting the active object was more complex than a single assignment.
2020-02-10Fix T72883: Correct Context UsageAaron Carlisle
2020-02-10PY API doc generation: Add option for multi-tasking sphinx.Bastien Montagne
2020-01-27Fix T68413: gpu module example in docs produces unexpected resultsmano-wii
2020-01-25Docs: update reference to PYTHONPATHCampbell Barton
2020-01-13Fix (unreported) broken PY API doc gen after recent GP changes.Bastien Montagne
As usual... Adding/removing members from context requires updates of the API building script.
2019-12-23Fix Py API doc generation after Mantaflow merge.Bastien Montagne
2019-11-27Clean/Fix remaining cases of props assignments in resgistrable structs def.Bastien Montagne
We still had a few deprecated assignements of `bpy.props.xxx` to class members in our API documentation and one of our py tests. Annotations are to be used now. Also remove the section about `register_module` utils, this has been removed in 2.8. Fix T71877: Python API overview sample code warning: class MyMaterialProps contains a property which should be an annotation! Fix T71876: Python API overview references old bpy.utils.register_module function
2019-11-25Fix API docs build after recent changes in BMesh operators.Bastien Montagne
Note: not sure what 'type' to give for that new `BMO_OP_SLOT_SUBTYPE_PTR_STRUCT`, name sounds generic so used `bpy_struct` for now... :/
2019-11-15API Docs: don't show functions in 'bpy.app.handlers'Campbell Barton
This shows the function and it's memory location, it's not useful for docs so remove it.
2019-11-15API Docs: only document built-in typesCampbell Barton
Some types were documented in bpy.types aren't accessible there. For now, disable documenting types from add-ons and some types from bl_operators, bl_ui... since these are mostly for internal use.
2019-11-01Cleanup: pep8 for examplesCampbell Barton
2019-10-14Py API doc generator: more tweaks to adapt to new release process.Bastien Montagne
Now we also create a 'version' symlink for master.
2019-10-14Py API doc generator: tweak to handle new release process.Bastien Montagne
We need to handle beta stage in a specific way, since it's no longer master, but not yet 'real' rc/release stage... For now, only point to version dir of the API doc, but no need to create any symlink (that way, 'current' remain pointing to 2.80 release, while '2.81' is no longer a symlink to 'master', but its own actual doc).
2019-09-13Docs: update linkCampbell Barton
2019-09-09Cleanup: trailing space, remove tabs, pep8Campbell Barton
2019-08-08API Docs: Correct HotkeyAaron Carlisle
Here we can link to the manual and keep the hotkey updated in the manual rather than the API docs. Fixes T68371
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D3744
2019-07-09API Docs: Change handling of Blender VersionAaron Carlisle
2019-07-09API Docs: Hide Home Icon in Seach AreaAaron Carlisle
2019-07-08API Docs: Fix file nameAaron Carlisle
2019-07-07API Docs: Fix LinksAaron Carlisle
2019-07-07API Docs: Update Changlog for 2.80Aaron Carlisle
2019-07-07API Docs: Fix Update changelog script to python3Aaron Carlisle
2019-07-07API Docs: Use OpensearchAaron Carlisle
2019-07-07API Docs: Theme: Prevent Super Long EnumsAaron Carlisle
2019-07-07Cleanup: API Doc Gen: move copying static dir to own functionAaron Carlisle
2019-07-04Fix T66405: Python API documentationJeroen Bakker
removed glVertex from the Python bgl api documentation as they are deprecated.
2019-07-04API Docs: Update Build DependenciesAaron Carlisle
2019-07-04API Docs: Theme OptionsAaron Carlisle
- Limit Nav depth to 1 - Turn off stick nav - Add canonical_url
2019-06-26PyAPI Doc: Fix presets menu example.Bastien Montagne
2019-06-26PyAPI Doc: Minor updates to UIList examples...Bastien Montagne
2019-06-24Fix errors raised at generating Python API docsCampbell Barton
D5121 by @Nutti
2019-06-21Cleanup: spelling, grammar, and other correctionsCampbell Barton
D5084 by @nBurn with edits
2019-06-06Python API Docs: fix some examplesJacques Lucke
2019-06-04Fix (unreported) missing updates in scripts/docs after `scene.update()` removal.Bastien Montagne
This should really have been done together with API changes, simple usage of grep does the trick to catch most places needing updates.
2019-06-04Docs: update quick-startCampbell Barton
Resolves T64146
2019-05-31Update Python GPU example to latest depsgraph APIDalai Felinto
2019-05-27Fix (unreported) API doc generation script after removal of some ObjectBase ↵Bastien Montagne
ietms from context.
2019-05-25Update "Overriding Context" API exampleDalai Felinto
2019-05-23Fix T64528: error in RenderEngine API docs exampleBrecht Van Lommel