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 (Collapse)Author
2013-02-14New Hindi translation...Bastien Montagne
2013-02-14Bug fix #34230Ton Roosendaal
Error since July 2005, when DerivedMesh was introduced. Vertex and Face duplicators now work for all modifiers. (not only deformers). For example mirror and array modifier didn't work.
2013-02-14fix (for one case of...) [#33949] T_ALT_TRANSFORM conflicts with "emulate 3 ↵Campbell Barton
button mouse" ShrinkFatten operator now uses scale key to toggle 'Even thickness' option. With the default keymap this is Alt+S,S. Added functionality so the header print can get the key used for the modal keymap, some other operators should make use of this too.
2013-02-14After scroll bar commit motrack dopesheet went out of sync verticallySergey Sharybin
Shall be fine now.
2013-02-14modify own changes to is_quad_convex_v3() to allow quads with a co-linear ↵Campbell Barton
side to be considered convex (as it did in last release). this is needed so zero area faces be dealt with by beauty fill.
2013-02-14More nodes UI translation fixes.Bastien Montagne
I *hate* this rna_nodetree_types.h file!
2013-02-14update to operator running test, add option to randomize order, not reset ↵Campbell Barton
blender for each operator and set data attributes.
2013-02-14misc changesCampbell Barton
- update man page for new additions since last release. - note that --start-console argument is windows only. - correct own assertion in own recent commit.
2013-02-14fix for double clicking in the text editor not working usefully (double ↵Campbell Barton
clicking a pair chars would select 3 - one to the left).
2013-02-14fix own bug in weight gradient tool, need to check if mesh dverts will be ↵Campbell Barton
overwritten,
2013-02-14tweak vertex group clean limit, it couldn't be set to zero, and you may want ↵Campbell Barton
to remove only zero weights.
2013-02-14fix for crash with project paint when there is no brush (possible applying ↵Campbell Barton
projection from the camera only)
2013-02-14add missing NULL checks - could cause crashes in rare cases.Campbell Barton
2013-02-14bugfix: [#34220] Blenderplayer no longer working after r54395 commit ↵Dalai Felinto
[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
2013-02-14Gah, forgot some ugly print...Bastien Montagne
2013-02-13Fix color sampling info at the bottom of the image editor not respecting DPI.Brecht Van Lommel
(don't bother updating the RC for this, it's not an important fix)
2013-02-13Made maya keymad deselect everything in cases nothing was selected with LMBSergey Sharybin
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.
2013-02-13Fix for splitting startup and userpref:Ton Roosendaal
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.
2013-02-13Fix #34226: cycles shadow pass got incorrectly influenced by world multipleBrecht Van Lommel
importance sampleing.
2013-02-13Collada: Fixed import of textures with path settings relative to main import ↵Gaia Clary
file
2013-02-13there were more places hook modifier type wasn't checked and could crash - ↵Campbell Barton
add utility function which doest this.
2013-02-13fix for missing typecheck on hook-assign operator.Campbell Barton
fix for POSELIB_OT_pose_rename getting an enum as an int.
2013-02-13update python module loading test.Campbell Barton
2013-02-13Fix physics' name not translated in main physics panel (reported on ↵Bastien Montagne
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 ;) )...
2013-02-13Fix cycles issue with BVH cache created with 64 bits and used for 32 bits ↵Brecht Van Lommel
binary, and vice versa.
2013-02-13Fix #34216: uv unwrap with some faces pinned to point the normals down will nowBrecht Van Lommel
automatically flip the unpinned faces to point down too, instead of trying to unwrap them in the other direction and giving bad results. If there's a mix of faces pinned up and down it will pick the direction with the biggest area.
2013-02-13And more mismatches between RNA struct UI names and type UI names in ↵Bastien Montagne
nodes... BSDF nodes were not translated in UI.
2013-02-13SCons: install blender thumbnailer next to blender binary.Sergey Sharybin
Cmake already does this, and this will solve
2013-02-13fix: remove extra qualification in headerGaia Clary
2013-02-13Fix #34217: Maya keymap preset doesn't handle Shift-Click selection properlySergey Sharybin
2013-02-13Correction for fix #34205: Zooming in rendered mode during update out of ↵Sergey Sharybin
sync with intended zoom Didn't initially notice one possibility when GPU render would fail here,
2013-02-13dont draw stippled lines without z-depth in vertex paint mode. (only weight ↵Campbell Barton
paint).
2013-02-13Fix for a crash when the Polygonization geometry modifier is used with a ↵Tamito Kajiyama
small "error" parameter value. The problem was caused by a null pointer reference in CurvePiece::error() resulting from incorrect lengths of subdivided curves calculated in CurvePiece::subdivide(). Problem report by IRIE Shinsuke with a GDB backtrace log, many thanks!
2013-02-13style cleanupCampbell Barton
2013-02-13remove redundant if statement.Campbell Barton
2013-02-13bmesh operators exceptions were not cleared after raising as a python exception.Campbell Barton
also clear before calling the operator.
2013-02-13correct rna identifiersCampbell Barton
- compositor viewer: use_straight_alpha -> use_alpha - bevel tool: percent -> offset
2013-02-13revert own commit, caused regression - hanging on triangulation [#34214].Campbell Barton
Postponing further changes for now, too risky before release when unexpected cases can cause eternal loop.
2013-02-13make is_quad_convex_v3() more strict, check if normal is OK before using as ↵Campbell Barton
a rotation axis. make is_quad_convex_v2,3() check for ISECT_LINE_LINE_CROSS intersection (that the lines actually cross each other).
2013-02-12Small tweak in event debug printing:Ton Roosendaal
- missing print for case event gets handled AND passed on (selecting)
2013-02-12Fixed importing of shapekey names: name is now taken from geometry name ↵Gaia Clary
instead of deriving it from the mesh name
2013-02-12Composite node "Alpha over" didn't allow to be dragged wide enough.Ton Roosendaal
2013-02-12Update to how similar messages matching is handled when updating po files ↵Bastien Montagne
from pot one (gain something like 20% in heavy update situations, and save a nice bunch of memory!).
2013-02-12Fix file editor not properly scaling with DPI, this was not implemented yet.Brecht Van Lommel
Still todo is high resolution file icons as they look a bit pixelated now.
2013-02-12Fix #34126: report list memory leak when calling operator from python and theBrecht Van Lommel
operator context poll failing.
2013-02-12Fix for own multilayer EXR fix, should not have caused any issues might as wellBrecht Van Lommel
make sure it works if this function gets called from other places.
2013-02-12Bug fix #34213 (2)Ton Roosendaal
Adding non-RGBA float buffers as texture crashes MipMap code. Images with less than 4 channels not supported (yet). Not sure if we ever should even... normals, Z, vectors, UV, Index, all don't like downsampling.
2013-02-12Preview image render was missing image buffer releaseSergey Sharybin
Reported by Ton in IRC, thanks! Was hunting this one for ages!
2013-02-12Fix render layer previous/next buttons not respecting DPI.Brecht Van Lommel
2013-02-12Fix #34213: crash loading openexr multilayer with use alpha disabled.Brecht Van Lommel