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 (Expand)Author
2010-01-05Python descriptions were not getting used in tooltips.Campbell Barton
2010-01-05fix for bpyob.foreach_set(), when the list is emptyCampbell Barton
2010-01-05patch from Benoit Bolsee (ben2610) for 4 bugs in report [#20527] Several bugs...Campbell Barton
2010-01-04pyrna array slice assignmentCampbell Barton
2010-01-04support for rna functions returning mathutils types - so object.rat_cast() re...Campbell Barton
2010-01-02fix for mistake in last commit. also forgot to call RNA_parameter_list_end()...Campbell Barton
2010-01-02PyRna float/bool/int slicing.Campbell Barton
2010-01-02support for multiple return values from rna functions & support for returning...Campbell Barton
2009-12-31Macro registration using the normal rna registration methods (like operators).Martin Poirier
2009-12-29flag to make rna props 'thick wrapped', so returning a property wont try main...Campbell Barton
2009-12-29Python attribute lookup. Don't use RNA functions that don't have defined call...Martin Poirier
2009-12-24* register operators like other classesCampbell Barton
2009-12-24support for registering operators using the same internal rna api as panels, ...Campbell Barton
2009-12-24minor pyapi changesCampbell Barton
2009-12-13use tp_getset rather then checking the string on getattr for 'id_data' attributeCampbell Barton
2009-12-11[#20288] FBX exporter failsCampbell Barton
2009-12-10return value was included in the list of optional args for function-rna error...Campbell Barton
2009-12-10remove ICON prefix from the enum, for python this is redundant eg.Campbell Barton
2009-12-10values that had units set would not be coerced into Mathutils types by the py...Campbell Barton
2009-12-08- pyrna support for (value in array), currently only 1 dimensional arrays.Campbell Barton
2009-12-07use sets rather then tuples for enum/flags so you can use bitfield operatorsCampbell Barton
2009-12-07rna flag PROP_ENUM_FLAG which makes rna props a tuple of enums when converted...Campbell Barton
2009-12-06remove nasty hack which made StructRNA class instaces have no __dict__,Campbell Barton
2009-12-04- property decorators for setting attributes didnt work, hack to prevent ever...Campbell Barton
2009-11-25rna py api,Campbell Barton
2009-11-25Assorted fixes - compile + drivers:Joshua Leung
2009-11-24disallow dynamic sized rna arrays to be returned as mathutils types since it ...Campbell Barton
2009-11-24- new pyrna api functions srna & prop path_to_id(), useful when setting drive...Campbell Barton
2009-11-23bugfix: uninitialized valuesCampbell Barton
2009-11-23rna functions were getting away with passing the string "True" instead of Tru...Campbell Barton
2009-11-22remove template uiTemplate_view3d_select_faceselmenuCampbell Barton
2009-11-21left in printCampbell Barton
2009-11-20use a metaclass to have operator attributes register and display in the order...Campbell Barton
2009-11-20- dir() now works for collection functionsCampbell Barton
2009-11-19- StructRNA's __dir__ was missing members from its classes __dict__Campbell Barton
2009-11-19added 'hidden' option for python defined rna props, means py operators can us...Campbell Barton
2009-11-19- remove CPPFLAG XP_UNIX from CMake, Scons and Irix make, checked our own cod...Campbell Barton
2009-11-18ID properties that are displayed via RNA can now define their own UI settings,Campbell Barton
2009-11-18fix for memory leak, use Key Errors for pyrna getitem access & idpropsCampbell Barton
2009-11-18- rna attribute setting problem, class instances could not set their own attr...Campbell Barton
2009-11-17make animation system and rna internals use getattr style syntax for user def...Campbell Barton
2009-11-17- access console languages as modules rather then having the py operator call...Campbell Barton
2009-11-17my chnges broke 'del idprop["key"]'Campbell Barton
2009-11-16bpy/rna methods to find properties (works nice with autocomp!)Campbell Barton
2009-11-16ID property access from python for pose channels, bones and any ID objects.Campbell Barton
2009-11-16functions returning non ID pointers that relied on having the ID set could cr...Campbell Barton
2009-11-15skip rna property & function lookups for members starting with "_" (since mak...Campbell Barton
2009-11-13fix for error with property getattro in recent commit which broke autocomp.Campbell Barton
2009-11-13arbitrary property and function support for rna properties (arrays and collec...Campbell Barton
2009-11-12generating docs can make the rna api generate wrnings (which is fine)Campbell Barton