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
2009-09-22Manual merge of soc-2009-kazanbas branch:Arystanbek Dyussenov
2009-09-17rna function api was overwriting useful errors with keyword errors.Campbell Barton
2009-09-16RNABrecht Van Lommel
2009-09-15Undo revision 23130 which was a merge with 2.5, a messy one because I did som...soc-2009-kazanbasArystanbek Dyussenov
2009-09-15- opening the file selector was freeing a NULL pointerCampbell Barton
2009-09-15- new property attribute - default_array, which returns a variable size array...Campbell Barton
2009-09-14Reverted Mesh.verts from dynamic array since it breaks foreach_set used by im...Arystanbek Dyussenov
2009-09-11Merge with -r 22620:23107.Arystanbek Dyussenov
2009-09-09RNA: multidimensional & dyanmic array changesBrecht Van Lommel
2009-09-06Python part of multidim. array support for RNA complete.Arystanbek Dyussenov
2009-09-03remove Py_CmpToRich (copy of py3.0 function), instead only support == and != ...Campbell Barton
2009-08-25Implemented dynamic and multidimensional array support in RNA.Arystanbek Dyussenov
2009-08-222.5: Python subclasses can now define RNA properties by makingBrecht Van Lommel
2009-08-22bpy's __rna__ attribute doesnt work as it should, since the parent classes __...Campbell Barton
2009-08-19Merge with 2.5 -r 22173:22620.Arystanbek Dyussenov
2009-08-182.5: RNA, defining enums, pointers and collections properties is nowBrecht Van Lommel
2009-08-16own mistake, __rna__ wasnt causing circular references. python can handle thi...Campbell Barton
2009-08-16missing args for rna funciton. comment on rna leak with type registering that...Campbell Barton
2009-08-152.5: warning fixesBrecht Van Lommel
2009-08-15Compile fix.Thomas Dinges
2009-08-15changes to help refcounts in rna be more predictable (still leaks when reload...Campbell Barton
2009-08-15RNA Types were storing an instance of themself for class introspection and do...Campbell Barton
2009-08-14- registering new python classes runs the free functions on existing classes.Campbell Barton
2009-08-11- missing a decref for new pytypesCampbell Barton
2009-08-11fixed mistake made when changing rna prop definition functions, made povray c...Campbell Barton
2009-08-11RNA: subtypes and unitsBrecht Van Lommel
2009-08-10remove python2.x supportCampbell Barton
2009-08-09- fix error in last commitCampbell Barton
2009-08-09- report errors on rna name collisions (does not check parent type yet)Campbell Barton
2009-08-07bpy_context_set and bpy_context_clear to replace a number of functions (some ...Campbell Barton
2009-08-07bpyrna: interpret a tuple of enum items (e1, e2, ...) as a bitmask (e1 | e2 |...Arystanbek Dyussenov
2009-08-06- OBJ importer now reads most of the test files. Had to copy BPyMesh.ngon fun...Arystanbek Dyussenov
2009-07-30Operator Copy/PasteCampbell Barton
2009-07-28- lamp UI was missing y samples for rectangle area lampsCampbell Barton
2009-07-26misc py/rna changesCampbell Barton
2009-07-23pyrna,Campbell Barton
2009-07-23Change to avoid trigraph confusions.Guillermo S. Romero
2009-07-22less verbose subtyping Py/C API code, use PyObject_CallFunction which support...Campbell Barton
2009-07-22RNABrecht Van Lommel
2009-07-19Python operatorsCampbell Barton
2009-07-19py rna arrays were assumed sizeof(char)*len, should be sizeof(int)*len, was c...Campbell Barton
2009-07-17python access to operators now hides the _OT_ syntax, eg. SOME_OT_operator ->...Campbell Barton
2009-07-17bpy rnaCampbell Barton
2009-07-13RNA & PyAPICampbell Barton
2009-07-10RNABrecht Van Lommel
2009-07-10Use python subtypes so bpy.types.Mesh is a subtype of bpy.types.IDCampbell Barton
2009-07-10PyRNA api wasnt using python subclasses most of the time.Campbell Barton
2009-07-09Dictionary style get() to property rna.Campbell Barton
2009-07-08* workaround for PySys_SetArgv() in python3 needing wchar_tCampbell Barton
2009-07-032.5:Brecht Van Lommel