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
2015-06-21BMesh: replace BLI_array -> BLI_stackCampbell Barton
2015-06-20missed last commitCampbell Barton
2015-06-20Transform: UV islands were split by windingCampbell Barton
This meant front/back faces from a projection would be seen as separate islands.
2015-06-20Minor edit to transform-uv-island center calcCampbell Barton
Only count each UV to influence the center once.
2015-06-20Sculpt lasso (used shorts for no good reason)Campbell Barton
2015-06-20Cleanup: use listbase clearCampbell Barton
2015-06-20Fix T45109: multi-view regression /w screen-castCampbell Barton
2015-06-19Transform: Add individual origins for UV islandsCampbell Barton
Useful for scaling all UV islands
2015-06-19Cleanup: fix mismatch in printf formating (int/unsigned int).Bastien Montagne
Noisy and annoying with new gcc5...
2015-06-18Transform: Improve UV creation efficiencyCampbell Barton
- was doing 2x spin-locks, multi-view check and hash-lookup per face-corner. - avoid doing customdata layer lookup per face.
2015-06-18Fix crash transforming UV /w PET-connected modeCampbell Barton
2015-06-18Fix transform connected UVs memory leakCampbell Barton
2015-06-17Cleanup: duplicate includesCampbell Barton
2015-06-17BMesh: Add edge-offset option: cap-endpointCampbell Barton
Creating triangles at endpoints is often not so good, disable by default.
2015-06-17Lock markers now also disallows selection of markersAntony Riakiotakis
2015-06-17Cleanup, use define instead of magic numberAntony Riakiotakis
2015-06-17Fix me being stupid commit.Antony Riakiotakis
Copy modifiers operator would copy modifier to all strips, even unselected ones.
2015-06-17Fix (unreported) redo of 'bone envelope distance resize' transform op not ↵Bastien Montagne
working (it would behave like 'bone envelope resize' instead). Issue comes from the fact this transform op shares some common points with both BoneResize and BoneEnvelope operations. However, trying to re-use `TFM_BONE_ENVELOPE` itself in this case is bad idea, since this mode gets stored in transform op and is directly re-used for redo, by-passing the whole init phase that shall be done in `TFM_BONESIZE` mode... So now, we add a real new mode, `TFM_BONE_ENVELOPE_DIST`, while keeping most of existing code and all existing behavior. This is slightly hackish - but was already anyway, and avoids creating a full new set of function for pretty much the same thing. As a side note, also makes it possible to resize envelope distance outside of envelope viewing mode (from py or by adding a custom shortcut).
2015-06-17Cleanup: use floorf instead of floor when dealing with floats.Bastien Montagne
2015-06-17Cleanup/Fix unreported: many 'transform' apply was not updating t->values ↵Bastien Montagne
with final values. This means redo panel of matching operators would not get correct values set in case those were entered with numinput, or some snapping was used...
2015-06-17Fix T45059: Image open /w relative paths & animCampbell Barton
- would hang on win32 (checking network share?) - made the path absolute on all systems
2015-06-17Fix leak getting image frame-range from fileselCampbell Barton
2015-06-17Cleanup: styleCampbell Barton
2015-06-16Correct last commitCampbell Barton
avoid sqrt
2015-06-16Fix T45096: Bad UVs /w EdgeSlide & zero-area facesCampbell Barton
2015-06-16Partial Fix T44997: Propagate pose on selected keyframes only included those ↵Joshua Leung
after the current frame This behaviour was confusing, since "selected keyframes" suggests that it covers all selected keyframes (instead of trying to do this based on frame ranges).
2015-06-16Fix T45088: Wrong tooltip for 'Object Transform' option of transfer data.Bastien Montagne
2015-06-16Cleanup: styleCampbell Barton
2015-06-15Usual minor i18n/UI messages fixes.Bastien Montagne
2015-06-15Copy strip modifier operator for sequencerAntony Riakiotakis
Copies from active strip to selected strips, found in modifier panel
2015-06-15Depsgrtaph: Adding shapekey should update relationsSergey Sharybin
This is needed for the new granular depsgraph, otherwise graph is not containing all the operations needed for proper update. And the same is actually needed onwhen removing shape key.
2015-06-15BMesh: edge-offset feature (Ctrl+Shift+R)Campbell Barton
Ability to quickly add 2x edge loops on either side of selected loops.
2015-06-15Revert "Revert "Disable key accelerators for splash screen""Campbell Barton
This reverts commit 7f3dcbe17feccb99abbdbc3aea83189696d97391. Please check with authors first, this bug was already fixed since RC1.
2015-06-15Revert "Disable key accelerators for splash screen"Thomas Beck
This reverts commit 7b0c327b943d4c4a3b212844ea2d4dfcc77f0556. The problem with this commit is that the "move to layer" functionality by hitting M,1 f.e. didn't work anymore... Campbell, would be great if you could look into this again, as I'm not experienced in this specific region..
2015-06-14Edge Slide: refactor direction calc into functionCampbell Barton
2015-06-13Multi-View: Show multiview image properties only in the places whereDalai Felinto
they are supported aka, remove multiview properties from the texture panel, the textures node (image), and any other parts. The multiview options are now to be explicitly set in the image template in order to have them available in the respective panel
2015-06-13Fix: Don't show "Clear Keyframes" option in RMB menu for NLA Strip propertiesJoshua Leung
Since these FCurves for these properties cannot be deleted, this operator is useless in this case.
2015-06-13Fix: "Delete Keyframes" RMB-menu option didn't work on NLA Strip propertiesJoshua Leung
2015-06-12Cleanup: Correct commentJulian Eisel
Own mistake from rBf9972fa53eaab4
2015-06-12Armature: add armature dissolveCampbell Barton
Works like mesh dissolve (access from delete or Ctrl+X)
2015-06-12Edge slide (minor change, use existing vertex)Campbell Barton
2015-06-12Fix T45018 camera not easily selectable in multiview.Antony Riakiotakis
Generally for scene choosing a view to use for selection is not straightforward, but camera should at least be easily selectable.
2015-06-12Support metadata display in clip editorAntony Riakiotakis
2015-06-12Fix T45048: wrong tooltips in Video Sequence Editor's "Strip" Menu ↵Bastien Montagne
(mute/unmute).
2015-06-12BLI_linklist, avoid full list search for appendCampbell Barton
For areas that require append, store the last node, Previous behavior would too easily hide poorly performing code. Also avoid (prepend, reverse) where possible.
2015-06-12Use prepend instead of append (avoids list search)Campbell Barton
2015-06-12File Browser: Two more minor fixes for arrow keys selectionJulian Eisel
* Unset active file on opening/resetting file list * Accidentally placed NULL check in the middle of the function - not a big deal as it's highly unlikely that it fails (removed it but added assert)
2015-06-12File Browser: Ensure active file is unset if no file is selectedJulian Eisel
Otherwise arrow keys navigation might start from this file instead of the last/first file in the list.
2015-06-11Masking: Numpad-. now centers view to selected control pointsSergey Sharybin
Currently feather points are being ignored, it could be improved in the future.
2015-06-11Cleanup some style in new 'keyboard select' code.Bastien Montagne
Really hate onliner checks (if/else)...