Revision 3cf0c93 by Campbell Barton February 14, 2013, 09:17 (GMT) |
modify own changes to is_quad_convex_v3() to allow quads with a co-linear side to be considered convex (as it did in last release). this is needed so zero area faces be dealt with by beauty fill. |
Revision 26704c0 by Bastien Montagne February 14, 2013, 07:49 (GMT) |
More nodes UI translation fixes. I *hate* this rna_nodetree_types.h file! |
Revision 3dbed0e by Campbell Barton February 14, 2013, 05:10 (GMT) |
update to operator running test, add option to randomize order, not reset blender for each operator and set data attributes. |
Revision 648f925 by Campbell Barton February 14, 2013, 05:02 (GMT) |
misc changes - update man page for new additions since last release. - note that --start-console argument is windows only. - correct own assertion in own recent commit. |
Revision ab7ca2d by Campbell Barton February 14, 2013, 03:03 (GMT) |
fix for double clicking in the text editor not working usefully (double clicking a pair chars would select 3 - one to the left). |
Revision 12f6d3a by Campbell Barton February 14, 2013, 02:21 (GMT) |
fix own bug in weight gradient tool, need to check if mesh dverts will be overwritten, |
Revision db02420 by Campbell Barton February 14, 2013, 01:55 (GMT) |
tweak vertex group clean limit, it couldn't be set to zero, and you may want to remove only zero weights. |
Revision a59682f by Campbell Barton February 14, 2013, 01:30 (GMT) |
fix for crash with project paint when there is no brush (possible applying projection from the camera only) |
Revision 9bd1e46 by Campbell Barton February 14, 2013, 01:01 (GMT) |
add missing NULL checks - could cause crashes in rare cases. |
Revision 42f9872 by Dalai Felinto February 13, 2013, 23:09 (GMT) |
bugfix: [#34220] Blenderplayer no longer working after r54395 commit [segfault due to world not valid] patch by Sergey Sharybin note, I still find strange that world was valid and now it is not, but at least we no longer segfaults |
Revision f6624aa by Bastien Montagne February 13, 2013, 21:56 (GMT) |
Gah, forgot some ugly print... |
Revision 3cdda97 by Brecht Van Lommel February 13, 2013, 19:01 (GMT) |
Fix color sampling info at the bottom of the image editor not respecting DPI. (don't bother updating the RC for this, it's not an important fix) |
Revision 6557d33 by Sergey Sharybin February 13, 2013, 17:43 (GMT) |
Made maya keymad deselect everything in cases nothing was selected with LMB The way it works now is: - Border select is using TWEAK, for which you need to hold LMB down and move mouse. This prevents operators using RELEASE/CLICK events from being fired. - LMB select is using RELEASE event, this is no selection happens before border if you do border select. And this prevents any operator uses CLICK event from being fired. - Delect all happens by CLICK, which would be fired only in case no operators were handled with PRESS/RELEASE. This is a bit cards-house, but this is how events currently works and wouldn't want inventing something bigger now. |
Revision da47116 by Ton Roosendaal February 13, 2013, 16:52 (GMT) |
Fix for splitting startup and userpref: The do-version handling for Userdef is outside file reading, which makes it needed to store the file version in UserDef, so it gets the correct version to handle. Thanks Antonis R. for pointing at the omission! Also removed the mindboggling define. If you do such, then make it like "MAIN_VERSION_OLDER_THAN() or so. In general version hacking could be limited much better... ask me before even thinking to add one, most optimal is to do it in a way it's not depending on a version ever - forward/backward compatible. |
Revision 909d640 by Brecht Van Lommel February 13, 2013, 16:46 (GMT) |
Fix #34226: cycles shadow pass got incorrectly influenced by world multiple importance sampleing. |
Revision 8a20930 by Gaia Clary February 13, 2013, 16:00 (GMT) |
Collada: Fixed import of textures with path settings relative to main import file |
Revision 4fe94b2 by Campbell Barton February 13, 2013, 15:14 (GMT) |
there were more places hook modifier type wasn't checked and could crash - add utility function which doest this. |
Revision fe855a8 by Campbell Barton February 13, 2013, 15:03 (GMT) |
fix for missing typecheck on hook-assign operator. fix for POSELIB_OT_pose_rename getting an enum as an int. |
Revision 5016ea5 by Campbell Barton February 13, 2013, 14:11 (GMT) |
update python module loading test. |
Revision 43f4f80 by Bastien Montagne February 13, 2013, 11:52 (GMT) |
Fix physics' name not translated in main physics panel (reported on bf-translations ML). This also revealed another bug, as you could not explicitely set default context to text_ctxt UI func parameter (None is not accpeted by RNA string props), so I had to change default context from py POV to "*" instead of None. Anyway, that physics UI translation remains weak, as the trick used here (helper func) prevents message extractor script to directly find them. Currently it works because specified labels are also defined elsewhere, but it would be nice to have some kind of "translation markers" in py code too (similar to our N_/CTX_N_ C macros, unfortunately python does not have preprocessing ;) )... |
|