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
2020-06-01Fix py api doc gen script after recent versionning changes.Bastien Montagne
2020-05-29Blender: change bugfix release versioning from a/b/c to .1/.2/.3Brecht Van Lommel
The file subversion is no longer used in the Python API or user interface, and is now internal to Blender. User interface, Python API and file I/O metadata now use more consistent formatting for version numbers. Official releases use "2.83.0", "2.83.1", and releases under development use "2.90.0 Alpha", "2.90.0 Beta". Some Python add-ons may need to lower the Blender version in bl_info to (2, 83, 0) or (2, 90, 0) if they used a subversion number higher than 0. https://wiki.blender.org/wiki/Reference/Release_Notes/2.83/Python_API#Compatibility This change is in preparation of LTS releases, and also brings us more in line with semantic versioning. Fixes T76058. Differential Revision: https://developer.blender.org/D7748
2020-05-12API Docs: Fix broken url markupAaron Carlisle
2020-04-06usual PY API doc gen fix after adding a new member to Context...Bastien Montagne
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-13Merge branch 'blender-v2.82-release'Bastien Montagne
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.
2020-01-10Docs: roll version to 2.83 for masterNathan Letwory
2019-12-23Fix Py API doc generation after Mantaflow merge.Bastien Montagne
2019-12-16Mantaflow [Part 12]: Updated docsSebastián Barschkis
Updated diff with latest changes from fluid-mantaflow branch Reviewed By: sergey Maniphest Tasks: T59995 Differential Revision: https://developer.blender.org/D5620
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-15Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-15Merge branch 'blender-v2.81-release'Campbell Barton
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-01Merge branch 'blender-v2.81-release'Antonio Vazquez
2019-11-01Cleanup: pep8 for examplesCampbell Barton
2019-10-23Merge branch 'blender-v2.81-release'Campbell Barton
2019-10-23Doxygen: update configurationCampbell Barton
Quiet warnings when generating docs.
2019-10-14Merge branch 'blender-v2.81-release'Bastien Montagne
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-14Merge branch 'blender-v2.81-release'Bastien Montagne
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-10-11Revert "Merge branch 'master' into blender-v2.81-release"Brecht Van Lommel
This reverts commit 20b2acf336cb8f6965fd39728a746922d1b8ae42, reversing changes made to f185cc0ca55c8c817903d53bf5c107f3efd4e0db. Merges should only go form the release branch to master. For backporting commits, use cherry-pick.
2019-10-11Version bump to 2.82 alpha, master is now open for new features and changesBrecht Van Lommel
2019-09-19Manpage gen script: fix for python < 3.7, and missing Blender build info.Bastien Montagne
Python3.7 is still fairly recent, not all distro use it as system python yet, fallback to code compatible up to py3.5. Also, often distro builds of Blender do not have the buildinfo, in that case fallback to `SOURCE_DATE_EPOCH` envvar, and as last resort to current time, as in orig patch D5756 (we still use blender builddate when available). Issues raised in recent own rBcd5c70630318.
2019-09-19Cleanup: Manpage: use 'https' blender.org URL instead of 'http' one.Bastien Montagne
2019-09-19Blender manpage generator: use blender build date instead of current time.Bastien Montagne
It makes much more sense to use the build timestamp of the Blender binary used to generate that manpage, than the current time. As a bonus, when Blender building makes use of the SOURCE_DATE_EPOCH envvar (through CMake, since previous commit), this also propagate automatically to that man page. Inspired by D5756 by Bernhard M. Wiedemann (@bmwiedemann), thanks.
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-29Doxygen: update version number to 2.81Brecht Van Lommel
2019-07-25Doxygen: update version numberCampbell Barton
2019-07-09API Docs: Change handling of Blender VersionAaron Carlisle
2019-07-09API Docs: Hide Home Icon in Seach AreaAaron Carlisle