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
2018-03-31Docs: doxygen docs for clogCampbell Barton
2018-03-30PyDoc: Merge manual docs for bge.textureAaron Carlisle
https://docs.blender.org/manual/en/dev/game_engine/python_api/videotexture.html Had a few things that this file did not while this file having things the other did not. To fix, I merged both documents into the python api.
2018-03-24PyDoc: Add docutils ref for "registration"Aaron Carlisle
This will be used to link to from the manual.
2018-03-20Memory allocator: Clarify consistency check functionSergey Sharybin
Also make it to return truth when everything is good and false otherwise.
2018-03-19Cleanup: split lattice into own libraryCampbell Barton
Was mixed with object functionality.
2018-03-14Updated bpy.props getter/setter exampleSybren A. Stüvel
- The common name in computer science are 'getters' and 'setters', so by adding these names to the documentation (while 'get' and 'set are still also mentioned) we improve findability. Having 'Getters/Setters' as a title also makes it clearer that this example is not just about getting or setting the property value. - Added a little prefix to each printed value, so that print statement, expected output, and real output can be matched easier.
2018-03-14Fix T54286: bpy.props operator example misses property accessSybren A. Stüvel
The old example had two downsides: - It promoted a blocking UI design, where the user is shown a popup before actually executing the operator. - It didn't show how to actually use the property values. The new code avoids these mistakes. The properties are also shown in the redo panel in the 3D view. Note that I also changed the bl_idname, as this is an example about properties, not about dialogue boxes, and changed the class name to use the standard operator naming convention. I also extended the example to include a panel that sets multiple properties of the operator, since I see questions about this relatively frequently.
2018-03-13API generating script: give better version for releases builds.Bastien Montagne
Was giving '2.62.1 <sha1>' even for releases, now rather giving nicer '2.62a <sha1>' in that case.
2018-03-12Cleanup: typoCampbell Barton
2018-02-26Cleanup: typosCampbell Barton
D3081 by @rjg, with others.
2018-02-01Revert "tmp"Germano
This reverts commit ea31f0ac3b877eb0df4c47d0c908d11d1bff33e4.
2018-02-01tmpGermano
2018-01-26Docs: invoke_search_popup uses bl_propertyCampbell Barton
Also add code example in docs.
2017-10-21Cleanup: use relative imports in bl_uiCampbell Barton
2017-10-04Fix T52923: Circle diameter is in fact radiusCampbell Barton
2017-10-04Docs: remove outdated PyAPI guideCampbell Barton
2017-09-22Remove quicktime supportAaron Carlisle
It has been deprecated since at least macOS 10.9 and fully removed in 10.12. I am unsure if we should remove it only in 2.8. But you cannot build blender with it supported when using a modern xcode version anyway so I would tend towards just removing it also for 2.79 if that ever happens. Reviewers: mont29, dfelinto, juicyfruit, brecht Reviewed By: mont29, brecht Subscribers: Blendify, brecht Maniphest Tasks: T52807 Differential Revision: https://developer.blender.org/D2333
2017-09-15Docs: only show versions in changelog side-barCampbell Barton
2017-09-15Docs: update API changelog to 2.79Campbell Barton
2017-09-04PyDoc: update context_type_mapCampbell Barton
2017-08-012.79 release: update version numbers & readfile versionning code.Bastien Montagne
2017-07-17Py API doc generation: remove reference to "Blender/Python Add-on Tutorial"Bastien Montagne
That one has been moved to wiki!
2017-07-17PyDoc: minor change to recent workaroundCampbell Barton
- Isolate workaround in single string and link to issue. - Quiet unused file warning (since it's an include).
2017-07-17BPY API: Fix broken ref linkAaron Carlisle
2017-07-17BPY API: Fix usless links leading to compile errorsAaron Carlisle
See https://github.com/sphinx-doc/sphinx/issues/3866 for more information
2017-06-17Docs: Fix file:line links in generated API docsCampbell Barton
2017-06-16Fix T51810: Add minimal example of usage of translation API for non-official ↵Bastien Montagne
addons.
2017-06-16PyAPI: Fix changed ref linkAaron Carlisle
2017-06-16PyAPI: Add HTML logo and faviconAaron Carlisle
Differential Revision: https://developer.blender.org/D2621
2017-06-16PyAPI: Remove addon tutorialAaron Carlisle
This page now lives at https://docs.blender.org/manual/en/dev/advanced/scripting/addon_tutorial.html
2017-06-15PyAPI: Add toctree link on parent page of submoduleAaron Carlisle
2017-06-15PyAPI: Proper Solution to bpy.appAaron Carlisle
2017-06-14PYAPI: Fix mathutils doc structureAaron Carlisle
2017-06-14PYAPI: fix documention structure of bpy.appAaron Carlisle
2017-06-14Fix missing toctree for bmesh submodulesAaron Carlisle
2017-06-03PyAPI: Cleanup "Python API Overview" docnBurn
Reword to clean up some odd grammar (mostly dangling modifiers) and improve readability. Differential Revision: https://developer.blender.org/D2699
2017-06-02PyAPI: update to bpy.types.Operator.5.pynBurn
This is a minor update add more information on how Blender handles modal operators. The existing docs provide a good overview, but might not be as helpful to those unfamiliar with modal programming. This patch also corrects a few small grammar issues.
2017-04-29Cleanup: menu exampleCampbell Barton
remove some redundant checks, imports
2017-04-29Implementation of custom python entries in all right click menusThomas Beck
Hi Guys, as one of my clients needs the possibility to have custom menu entries in the general right click menu (all over Blender: in the node editor, properties, toolbars,..) I talked with Campbell about expanding our hard coded menu a bit. This is the outcome. As I only need those two, I support currently a button_prop and a button_pointer. {F540397} I tested the changes with a custom script where I added a custom entry and executed an operator on click - it seems to work exactly how it's intended to. The script: {F540435} As I'm not too experienced in rna stuff I would really appreciate any review. Thanks very much Campbell for his open ears & help on this issue! Reviewers: campbellbarton, mont29 Reviewed By: campbellbarton, mont29 Subscribers: sybren, mont29 Tags: #addons Differential Revision: https://developer.blender.org/D2612
2017-02-28Cleanup: Grey --> GrayAaron Carlisle
2017-02-24Fix some more minor issue with updated py doc generation.Bastien Montagne
2017-02-24Fix stupid mistake in previous commit for release builds of API doc.Bastien Montagne
2017-02-23Update py API doc generation tools to comply to new name scheme on server.Bastien Montagne
- for rc/release: /api/2.79c/, zip file named blender_python_reference_2.79c_release.zip - for dev: /api/master/, zip file named blender_python_reference_2_79_4.zip
2017-01-24Use new manual URLAaron Carlisle
2017-01-23Update script generating/uploading py API doc to new addresses ↵Bastien Montagne
(docs.blender.org).
2017-01-20API: Do not show "Created using Sphinx" in the footerAaron
I talked to Campbell and he said there is no need for this
2017-01-02API: Fix rst syntaxAaron Carlisle
2017-01-02API: Fix redirect in bgl pageAaron Carlisle
2017-01-02API: Update to modern sphinx syntaxAaron Carlisle
2017-01-02API: Fix double slashes in URLsAaron Carlisle