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
2022-06-02Cleanup: remove "<pep8 compliant>" from headersCampbell Barton
It can be assumed that all scripts comply with basic pep8 formatting regarding white-space, indentation etc. Also remove note in best practices page & update `tests/python/pep8.py`. If we want to exclude some scripts from make format, this can be done by adding them to `ignore_files` in: source/tools/utils_maintenance/autopep8_format_paths.py Or using `# nopep8` for to ignore for individual lines. Ref T98554
2022-05-19Python API: warn that the bgl module is deprecated in the docsBrecht Van Lommel
This was already mentioned in the release notes but not the API docs. Ref T80730
2022-04-19Cleanup: Use correct capitalization of "F-Curve"Aaron Carlisle
2022-02-07Cleanup: Grammar in doc/python_apiMyles Walcott
* Its -> It's * Scripts -> Script's * then -> than Several phrasing grammar fixes. Reviewed By: Blendify Differential Revision: https://developer.blender.org/D14021
2022-01-24Cleanup: Grammar: its self vs. itselfHans Goudey
2021-11-23Merge branch 'blender-v3.0-release'Clément Foucault
2021-11-23Documentation: Remove deprecated glColor* from bgl module.Jeroen Bakker
glColor isn't supported but still part of the documentation. This patch removes the glColor from the documentation. Ref {T93315}
2021-11-17cleanup: fix typos in comments and docsluzpaz
Followup to https://developer.blender.org/D10288 Reviewed By: Blendify Differential Revision: https://developer.blender.org/D10346
2021-04-20PyAPI: update docs to include poll_message_set referenceCampbell Barton
Part of D9738
2021-02-12Py Doc: Fix rst syntax errorsAaron Carlisle
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
2020-10-12Pydoc: BGL: update linksAaron Carlisle
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: 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-02Cleanup: trailing spaceCampbell Barton
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-24API Docs: Update Changelog from 2.83Aaron Carlisle
2020-07-06Docs: reference bl_rna_get_subclass_py instead of bl_rna_get_subclassCampbell Barton
bl_rna_get_subclass only works for Nodes at the moment.
2020-06-24API Docs: Small edits to recent commitAaron Carlisle
- Revert string formatting change - Add missing text edit
2020-06-23API docs: intro overhaulTobias Heinke
- Update terminology, spelling, formatting. - Rename screen to workspace. - Update for 2.8 UI changes.
2020-05-11Docs: update API docs, adding reference to bl_rna_get_subclass.Campbell Barton
2020-03-24Doc: remove MeshTessFace referenceCampbell Barton
2020-03-06API Docs: Point to manual for Operator Cheat SheetAaron Carlisle
2020-02-14Fix small typo in BGL API docsIan Karanja
Differential Revision: https://developer.blender.org/D6681
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-01-25Docs: update reference to PYTHONPATHCampbell Barton
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-09-13Docs: update linkCampbell 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-07API Docs: Fix LinksAaron Carlisle
2019-07-07API Docs: Update Changlog for 2.80Aaron Carlisle
2019-07-04Fix T66405: Python API documentationJeroen Bakker
removed glVertex from the Python bgl api documentation as they are deprecated.
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-04-04Fix T60891: bgl docs still include deprecated opengl functionsJacques Lucke
In a separate step, all new functions should be added. However, the best way to do this, is not clear yet. A list of functions, that have to be added is available in D4280. Differential Revision: https://developer.blender.org/D4280
2019-03-12API Doc: Gotcha: add section about 'exceptions to the rules' known crashing ↵Bastien Montagne
cases. As exposed in T62406, we can have some rare cases of crashes due to memory re-allocation happening outside of expected scenarii. Ideally this should be re-designed, but at least keep track of those known exceptions to general rules...
2019-02-18API doc: info_gotcha: extend description of issues related to memory changes.Bastien Montagne
* Added a TL;DR first paragraph summarizing that one shall not keep any reference to Blender data when modifying its container. * Added some info about fact that adding items to some data containers (like Collection) can also invalidate existing items (due to array re-allocation). * Added a Do/Don't example which shows a crash after adding some items to a collection. Related to T61297.
2019-02-18Cleanup: API doc 'info_gotcha': typos.Bastien Montagne
2018-11-30Docs: rename group -> collectionCampbell Barton
2018-11-30Docs: update quickstart for 2.8Campbell Barton
2018-11-30Merge branch 'master' into blender2.8Campbell Barton
2018-11-30Cleanup: trailing spaceCampbell Barton
2018-10-10Python API: add loop triangles access, remove tessfaces.Brecht Van Lommel
Loop triangles are tessellated triangles create from polygons, for renderers or exporters that need to match Blender's polygon tesselation exactly. These are a read-only runtime cache. Tessfaces are a legacy data structure from before Blender supported n-gons, and were already mostly removed from the C code. Details on porting code to loop triangles is in the release notes. Differential Revision: https://developer.blender.org/D3539