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-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-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-07-09API Docs: Change handling of Blender VersionAaron 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-04API Docs: Theme OptionsAaron Carlisle
- Limit Nav depth to 1 - Turn off stick nav - Add canonical_url
2019-06-24Fix errors raised at generating Python API docsCampbell Barton
D5121 by @Nutti
2019-05-27Fix (unreported) API doc generation script after removal of some ObjectBase ↵Bastien Montagne
ietms from context.
2019-05-01UV Sculpt: improve tool-system integrationCampbell Barton
In 2.7x UV sculpt was a kind of sub-mode (a toggle with it's own key-map & drawing code). Move this to an operator that uses the tool-system, this simplifies internal logic, especially brush selection which now matches sculpt and other paint modes. - Remove toggle used to enable uv sculpt. - Expose the brush, which was already used but there was no way to select different brushes. - Make UV sculpt use paint paint tool slots (using brushes how all other paint mode currently do). - Move UV Sculpt keymap to the tools keymap. - Remove Q to toggle UV sculpt mode, S/P/G keys to switch tools.
2019-03-18Fix (unreported) broken Py API doc after adding gpencil to buttons_context...Bastien Montagne
2019-03-12Context: add pose_objectCampbell Barton
Needed for UI scripts to detect mixed weight paint + pose mode.
2019-02-05Cleanup: remove contributors for Python filesCampbell Barton
Following removal from C source code. See: 8c68ed6df16d8893
2018-12-21RNA: naming, user-preferences -> preferencesCampbell Barton
2018-12-17Context: add objects_in_mode(_unique_data)Campbell Barton
Needed for Python to easily support multi-object edit/pose modes.
2018-12-17Context: remove active_gpencil_brushCampbell Barton
We don't have this for other painting modes, no need for a special case here.
2018-12-14Merge branch 'master' into blender2.8Campbell Barton
2018-12-14Fix typo in context docs.Campbell Barton
2018-11-27Python API: Fix partial buildJacques Lucke
`gpu_extras` was always visible
2018-11-26Timer: Generic BLI_timer with Python wrapperJacques Lucke
There is a new `bpy.app.timers` api. For more details, look in the Python API documentation. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D3994
2018-11-21Python API Docs: better titles.Brecht Van Lommel
The HTML title did not make it clear that these are docs for the API rather than a general Blender documentation. Some of the page titles were also too long and redundant.
2018-11-07Py API Docs: show gpu_extras moduleJacques Lucke
2018-10-19Fix py API docgen script for new context members.Bastien Montagne
2018-09-15PyDoc: add gpu.shaderCampbell Barton
Also some syntax corrections.
2018-09-13PyDoc: add bpy.app.icons to docsCampbell Barton
2018-09-13Merge branch 'master' into blender2.8Campbell Barton
2018-09-13PyDoc: replace use of deprecated API callCampbell Barton
2018-09-06Join the python modules `gpu` and `_gpu` into one.mano-wii
Maybe it's still early to set the new drawing api for python. But joining these two modules is an initial step. ``` >>> gpu. matrix select types ``` ``` >>> gpu.types.GPU Batch( OffScreen( VertBuf( VertFormat( ``` The creation of a new offscreen object is now done by the `GPUOffscreen.__new__` method. Reviewers: campbellbarton, dfelinto Reviewed By: campbellbarton, dfelinto Tags: #bf_blender_2.8 Differential Revision: https://developer.blender.org/D3667
2018-09-03Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/blenkernel/intern/collision.c
2018-09-03Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3668
2018-08-28Cleanup: pep8Campbell Barton
2018-08-16Documentation: fixes for building w/ 2.8Campbell Barton
Note, bpy.app.icons needs to be supported eventually.
2018-08-14Correct error in py doc generationCampbell Barton
2018-08-14PyDoc: remove old undocumented messageAaron Carlisle
2018-08-14PyDoc: Remove "API" from versionAaron Carlisle
2018-08-14Pydoc: Switch theme to sphinx_rtd_themeAaron Carlisle
2018-08-14PyDoc: Add missing application icons linkAaron Carlisle
2018-08-14Cleanup: copy paste error in tooltipAaron Carlisle
2018-08-14PyDoc: Various fixes to generation processAaron Carlisle
2018-08-14PyAPI Docs: Fix syntax errorAaron Carlisle
2018-08-14PyDoc: Remove hack to rename main doc from 'contents' to 'index'Aaron Carlisle
2018-08-14PyAPI: Docs: Remove old Blender.org themeAaron Carlisle
This also makes the generator script only allow one theme. Having this be an argument does not make sense, just over complicating things.
2018-08-14PyDoc: Use captions for section headersAaron Carlisle
2018-08-14PyAPI Docs: Move change log link to top with info docsAaron Carlisle
2018-08-14PyAPI Docs: Remove large note about changing modulesAaron Carlisle
These are stable now. We may want another note about new 2.8 modules
2018-08-14PyAPI Docs: Remove BGE related documenationAaron Carlisle
2018-08-14PyAPI Docs: Fix Space in URL NameAaron Carlisle
2018-07-15Gizmo: update Python templatesCampbell Barton