Revision 4f9e0ec by Campbell Barton June 18, 2009, 23:12 (GMT) |
Update Mathutils for py3k * removed coercing types which has been removed from py3. * matrix uses getset's rather then getset items. * removed deprecated functions. |
Revision b618278 by Daniel Genrich June 18, 2009, 21:25 (GMT) |
Fix for compiler error since BLO_sys_types.h was not in the path |
Revision 96003b5 by Diego Borghetti June 18, 2009, 20:45 (GMT) |
Revert a small change to kerning, Matt please let me know if now it's fine (or like before). |
Revision 2269280 by Martin Poirier June 18, 2009, 20:23 (GMT) |
don't include stdint.h directly, it's broken on non C99 compliant compilers (you know which one I'm talking about). |
Revision dd250f7 by Martin Poirier June 18, 2009, 20:13 (GMT) |
2.5 Missing { when WITH_LCMS is defined. |
Revision dc7028c by Brecht Van Lommel June 18, 2009, 19:59 (GMT) |
Branch soc-2009-kazanbas Merge with trunk revision 20991, and update scripts for the changes too. Reload Scripts and Export OBJ still work for me. |
Revision 94dbb3b by Brecht Van Lommel June 18, 2009, 19:51 (GMT) |
2.5 Python Merging changes made by Arystanbek in the soc-2009-kazanbas branch, plus some things modified and added by me. * Operator exec is called execute in python now, due to conflicts with python exec keyword. * Operator invoke/execute now get context argument. * Fix crash executing operators due to bpy_import_main_set not being set with Main pointer. * The bpy.props module now has the FloatProperty/IntProperty/ StringProperty/BoolProperty functions to define RNA properties for operators. * Operators now have an __operator__ property to get the actual RNA operator pointers, this is only temporary though. * bpy.ops.add now allows the operator to be already registered, it will simply overwrite the existing one. * Both the ui and io directories are now scanned and run on startup. |
Revision 4cd24cf by Brecht Van Lommel June 18, 2009, 19:48 (GMT) |
RNA Merging changes made by Arystanbek in the soc-2009-kazanbas branch, plus some things modified and added by me. * The API files now all in the makesrna module, convention is to call them e.g. rna_mesh_api.c for rna_mesh.c. Note for visual studio build maintainers, the rna_*_api.c files are compiled as part of "makesrna", but do not have rna_*_gen.c generated as part of the library. SCons/cmake/make were updated. * Added function flags FUNC_USE_CONTEXT and FUNC_USE_REPORTS, to allow RNA functions to get context and error reporting parameters optionally. Renamed FUNC_TYPESTATIC to FUNC_NO_SELF. * RNA collections now have a pointer to add/remove FunctionRNA's, this isn't actually used anywhere yet, purpose is to make an alias main.meshes.add() for main.add_mesh() in python. * Fixes to make autogenerating property set/get for multidimensional arrays work, though a 4x4 matrix will be exposed as a length 16 one dimensional RNA array. * Functions and properties added: * Main.add_mesh() * Main.remove_mesh() * Object.matrix * Object.create_render_mesh() * WindowManager.add_fileselect() |
Revision 89d2559 by Brecht Van Lommel June 18, 2009, 19:25 (GMT) |
2.5 * Update cmake and makefiles to link python generic. * Fix game engine building for cmake and makefiles. * Fix compile error with py 3.x, due to 2.x compat fix. |
Revision 504fa6e by Campbell Barton June 18, 2009, 18:23 (GMT) |
own copy/paste error, euler.wrapped would give a bad value |
Revision 506d96c by Ton Roosendaal June 18, 2009, 18:12 (GMT) |
Part two of svn release commit, last one! |
Revision 895f4e6 by Ton Roosendaal June 18, 2009, 18:11 (GMT) |
Part one of 2.49a release commit |
Revision 025b6dc by Campbell Barton June 18, 2009, 17:34 (GMT) |
fix for building with py2.3 |
Revision 0a132c6 by Ton Roosendaal June 18, 2009, 17:00 (GMT) |
Bufix #18942 Composite "Map UV" node was using false UVs (0,0) from neighbouring pixels when those pixels were not rendered (or have no UV). This commit checks for each neighbour sample it takes if the UV was correctly set. Solves bad errors on edges of UV maps. With FSA even totally smooth. :) |
Revision c23b23d by Campbell Barton June 18, 2009, 16:01 (GMT) |
Attribute PolyDimensions GmbH for funding OBJ spline import/export. |
Revision 122b206 by Daniel Genrich June 18, 2009, 15:33 (GMT) |
Fixing gl/glw.h compiiler error |
Revision 2f48d0b by Ton Roosendaal June 18, 2009, 15:31 (GMT) |
Added Make for new python/generic dir. Also included GLEW. |
Revision 8130fb2 by Brecht Van Lommel June 18, 2009, 14:29 (GMT) |
RNA: * Make cloth settings animateable from buttons. |
Revision 5ea992d by Brecht Van Lommel June 18, 2009, 14:20 (GMT) |
UI: * Fix context.cloth, was not being set correct. * Fix errors with context pinning, scripts should not assume context.object to be there. * Always show preview even if e.g. the material is not set, to keep ID buttons from jumping while you're using them. |
Revision 05e7f8c by Arystanbek Dyussenov June 18, 2009, 13:13 (GMT) |
Build failed because with merge I didn't get updates on interface_api.c since I removed it. So I decided to bring it back with: svn export -r 20966 https://svn.blender.org/svnroot/bf-blender/branches/blender2.5/blender/source/blender/editors/interface/interface_api.c Plus SConscript editing and it builds fine. |
|