Revision fb4f785 by Campbell Barton December 25, 2009, 23:59 (GMT) |
invalid memory access fix |
Revision fc066a6 by Janne Karhu December 25, 2009, 23:51 (GMT) |
Fix for [#20458] Segmentation fault when trying to enable Hair dynamics * The hair mesh vertex index was stored as a short, but vertex counts can easily go higher than what fits in a short so changed this to an int. * Also removed particle life looping, which didn't work correctly anyways. Similar functionality will become available when I get to recoding reactor particles into a better system. |
Revision 99e3423 by Campbell Barton December 25, 2009, 23:50 (GMT) |
fix for accessing invalid memory when loading a new file. |
Revision b0b3e27 by Janne Karhu December 25, 2009, 22:58 (GMT) |
Particles bug fix: using virtual parents for child particles crashed in some cases. |
Revision 5afd084 by Campbell Barton December 25, 2009, 22:16 (GMT) |
replace dynamic_menu.py with Menu classmethods much less complicated. access append/prepend eg. bpy.types.INFO_MT_file_import.append(lambda self, context: self.layout.operator("import_some.format")) |
Revision 6956779 by Campbell Barton December 25, 2009, 20:52 (GMT) |
bugfix [#20237] Import error (export X90 rotation wasnt right) |
Revision 06f1505 by Campbell Barton December 25, 2009, 20:47 (GMT) |
bugfix [#20253] Import/Export fails |
Revision be67970 by Campbell Barton December 25, 2009, 20:40 (GMT) |
fix for [#20244] importing .obj without "Object" option checked crashes blender |
Revision 6c6786f by Campbell Barton December 25, 2009, 18:06 (GMT) |
bad rna limit referred to in [#20483] Inputs are capped enable distance for some settings |
Revision 693d9fd by Campbell Barton December 25, 2009, 15:50 (GMT) |
sphinx rna api documentation generator to replace epydocs - view docs menu item opens sphinx URL - can be searched (even when local) - uses rna_info module for introspection - also documents python defined functions and decorator properties (defined in bpy_types.py) - experemental python file:line references for python operators. |
Revision 4c5a314 by Campbell Barton December 25, 2009, 14:42 (GMT) |
update rna_info and rna_rna for better introspection |
Revision 4f3c477 by Campbell Barton December 25, 2009, 09:01 (GMT) |
fix for segfault getting RNA Enum default values, minor updates to introspection class |
Revision 5f4e24d by Campbell Barton December 24, 2009, 21:17 (GMT) |
operator draw function working again. needed to add layout to the operator to give access to "self.layout" - like panels, headers and manu's have |
December 24, 2009, 21:15 (GMT) |
SVN maintenance. |
Revision bbe13e7 by Campbell Barton December 24, 2009, 19:50 (GMT) |
* register operators like other classes * operators now return sets (converted into flags) * can't remove bpy_operator_wrap.c since macro's still use the custom register funcs |
Revision 4dd3e6c by Campbell Barton December 24, 2009, 16:10 (GMT) |
support for registering operators using the same internal rna api as panels, menus, headers & render engines since there was a fair bit of duplicate functionality. will remove the old system and update scripts next. |
Revision 1d224ad by Joerg Mueller December 24, 2009, 14:58 (GMT) |
Added rectifying sound effect (will be used for sound -> f-curve later). |
Revision a2b0020 by Joerg Mueller December 24, 2009, 14:01 (GMT) |
Reverted the addition of the f-curve sound modifier (was added in revision 24759) due to unusability and performance issues. The ability to use a sound as animation source will be added as an import operator later that renders a sound to an f-curve which brings the advantage that you can edit the generated curve later and the disadvantage it is not automatically updated when the sound changes. |
Revision bb452f2 by Campbell Barton December 24, 2009, 11:40 (GMT) |
minor pyapi changes |
December 24, 2009, 10:39 (GMT) |
Removed a few operators that were just used to generate popup menus and replaced with python defined menus. |
|