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
2014-06-16Use ARRAY_SIZE to replace (sizeof(a) / sizeof(*a))Campbell Barton
2014-01-20Python API: create args for meta-classes directly (a little faster).Campbell Barton
Also add some new interned strings.
2013-02-05fix [#34113] operator_menu_enum() - Tooltip not showing descriptionsCampbell Barton
Python wasn't able to set 'OperatorType.prop', which is used by uiButGetStrInfo(). add 'bl_property' to python operators which is assigned to OperatorType.prop when registering. (api docs coming next)
2012-11-22avoid string -> unicode conversion when registering classes, also avoid ↵Campbell Barton
unlikely but possible crash if the py-class returns new instances of PyObjects it doesnt own when registering the class.
2011-12-26formatting edits only to use more consisted styleCampbell Barton
2011-11-05documentation - brief descriptions for bpy api files.Campbell Barton
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-08-31typo fix: end of lines ;; --> ;Campbell Barton
2011-08-28- use static vars and functions where possible.Campbell Barton
- use NULL rather than 0 when used as pointers.
2011-06-19SVN maintenance.Guillermo S. Romero
2011-06-18py-api: store frequently used strings as unicode PyObject's to avoid ↵Campbell Barton
creating/distroying every time. also fix for cmake warning