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-04-16Merge branch 'master' into blender2.8Campbell Barton
2018-04-15Pydoc: Fix multiple bpy.type modulesAaron Carlisle
2018-04-15Merge branch 'master' into blender2.8Campbell Barton
2018-04-15Pydocs: Expand bge.contraint docsAaron Carlisle
Takes information from the manual and dumps it here.
2018-04-02Merge branch 'master' into blender2.8Campbell Barton
2018-04-02Cleanup: move undo into it's own directoryCampbell Barton
Split out undo API from ED_util.h into ED_undo.h
2018-04-01Merge branch 'master' into blender2.8Campbell Barton
- Undo that changes modes currently asserts, since undo is now screen data. Most likely we will change how object mode and workspaces work since it's not practical/maintainable at the moment. - Removed view_layer from particle settings (wasn't needed and complicated undo).
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-26Merge branch 'master' into blender2.8Sergey Sharybin
2018-03-24PyDoc: Add docutils ref for "registration"Aaron Carlisle
This will be used to link to from the manual.
2018-03-20Merge branch 'master' into blender2.8Sergey Sharybin
2018-03-20Memory allocator: Clarify consistency check functionSergey Sharybin
Also make it to return truth when everything is good and false otherwise.
2018-03-19Merge branch 'master' into blender2.8Campbell Barton
2018-03-19Cleanup: split lattice into own libraryCampbell Barton
Was mixed with object functionality.
2018-03-14Merge branch 'master' into blender2.8Bastien Montagne
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-14Merge branch 'master' into blender2.8Campbell Barton
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-12Merge branch 'master' into 28Campbell Barton
2018-03-12Cleanup: typoCampbell Barton
2018-02-27merge from masterGaia Clary
2018-02-26Cleanup: typosCampbell Barton
D3081 by @rjg, with others.
2018-02-01Merge branch 'master' into blender2.8Germano
2018-02-01Revert "tmp"Germano
This reverts commit ea31f0ac3b877eb0df4c47d0c908d11d1bff33e4.
2018-02-01tmpGermano
2018-01-28Merge branch 'master' into blender2.8Campbell Barton
2018-01-26Docs: invoke_search_popup uses bl_propertyCampbell Barton
Also add code example in docs.
2017-10-21Merge branch 'master' into blender2.8Campbell Barton
2017-10-21Cleanup: use relative imports in bl_uiCampbell Barton
2017-10-04Merge branch 'master' into blender2.8Sergey Sharybin
2017-10-04Fix T52923: Circle diameter is in fact radiusCampbell Barton
2017-10-04Docs: remove outdated PyAPI guideCampbell Barton
2017-09-25Merge branch 'master' into blender2.8Sergey Sharybin
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-15Merge branch 'master' into blender2.8Campbell Barton
2017-09-15Docs: only show versions in changelog side-barCampbell Barton
2017-09-15Docs: update API changelog to 2.79Campbell Barton
2017-09-05Merge branch 'master' into blender2.8Campbell Barton
2017-09-04PyDoc: update context_type_mapCampbell Barton
2017-08-03Merge branch 'master' into blender2.8Campbell Barton
2017-08-012.79 release: update version numbers & readfile versionning code.Bastien Montagne
2017-07-18Merge branch 'master' into blender2.8Campbell Barton
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-17Merge branch 'master' into blender2.8Campbell Barton
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-26Manipulator: Python APICampbell Barton
Initial support for Python/Manipulator integration from 'custom-manipulators' branch. Supports: - Registering custom manipulators & manipulator-groups. - Modifying RNA properties, custom values via get/set callbacks, or invoking an operator. - Drawing shape presets for Python defined manipulators (arrow, circle, face-maps) Limitations: - Only float properties supported. - Drawing only supported via shape presets. (we'll likely want a way to define custom geometry or draw directly). - When to refresh, recalculate manipulators will likely need integration with notifier system. Development will be continued in the 2.8 branch