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
2016-03-04Blender 2.77: Point translations submodule to updated branchSergey Sharybin
2016-03-04Fix typo in 'Vietnamese' language label (must have sneaked in while adding ↵Bastien Montagne
Basque one, grr).
2016-03-04Fix T47683: broken BBox logic when drawing duplis.Bastien Montagne
Once a dupli had a valid bbox, that bbox would be used for all following objects without bbox, instead of skipping clipping check. Issue unveiled by rB3fa0a1a5bc0ff2, but not related at all (in fact, bug was present before that commit).
2016-03-04Fix uninitialized memory use lattice-boundboxCampbell Barton
Many other places weren't clearing boundbox dirty flag after calculation.
2016-03-04Curve/line width change broke outline drawingCampbell Barton
Partially revert e29a5ba6
2016-03-04Fix T47674: "Change Data/Files" setting incorrect filterJulian Eisel
Image filter was not set, but only if invoked from toolbar (image strip needs to be selected to see the button). Caused by rB7fa72b8970, Wasn't aware there's another button for this for image strips.
2016-03-04Render Save Buffers: Use proper memory buffer size for a display bufferSergey Sharybin
2016-03-04UI: move checkbox for missing add-ons to LHSCampbell Barton
2016-03-04Fix RNA property clamp assigning in PythonCampbell Barton
On first assignment the value was clamped, but successive assignments weren't.
2016-03-04Edit Mesh: Edge tag toggle when no active path is foundCampbell Barton
User request, this matches 2.6x behavior more closely.
2016-03-04PyAPI: correct function name w/ arg parsingCampbell Barton
2016-03-04Fix T47676: Broken default values for particle brush strength.Bastien Montagne
Current startup .blend has old (percent?) values for particle brush strength. Since rBe4e21480d6331903c90ab073746484498441e1ac, UI controls do not clamp automatically values anymore, which means when you first enable comb (or any other brush) you get a 50 strength, waaaayyyy to powerful. This commit fixes this in `BLO_update_defaults_startup_blend`, note that it does not fix custom users' startup files, nothing to do here...
2016-03-04Fix T47644: crash (use-after-free) regression from rB7a74738914a66e.Bastien Montagne
Handling `me` data here is not good idea anyway, we override it completly with data from `tmp` (crash came from freeing already existing bb from me, while pointer still existed in tmp). (rediscovered it while working on T47676...). To be backported to 2.77.
2016-03-04Fix T47564: Unwrapping the same mesh results in different UVs.Bastien Montagne
Pointers of faces were passed as face keys during parametrizer's face creation. Since those addresses were different for every run, the layout of the faces ended up being different in the internal hash, leading to inconsistent order of their evaluation during LSCM solving, and slightly different UV maps. Solved by simply using faces' indices as key instead, which ensures we always get same results with exact same input data now. Many thanks to Roman Nagornov (RomanN) for raising the issue, investigating it and finding the solution! And thanks to Brecht for quick review too.
2016-03-04Cycles: Fix wrong default value for volume samplesSergey Sharybin
2016-03-04Fix assert in UI codeCampbell Barton
Dont attempt to clip empty string
2016-03-04Fix T47642: Crash baking w/ cyclesCampbell Barton
2016-03-04Fix T47635: Texture paint performance regressionCampbell Barton
Flipped bindcode check in D1414 caused projection paint to always do full updates.
2016-03-04Add Basque (Euskara) new language.Bastien Montagne
Nothing critical, but would be nice to backport this to 2.77.
2016-03-04Fix T47643: Blender crash. Linked speaker issue.Bastien Montagne
Speaker's localization func would not make direct-linked its used sound datablock...
2016-03-04Fix T47638: Bad auto-smooth value for new meshesSergey Sharybin
Code was using degrees as radians. Still unclear why default cube will have 180 degrees angle, but new meshes 30, but that's kinda separate topic which is to be addressed separately. This is a subject for final 2.77 release.
2016-03-04Fix (unreported) crash when opening a file from splash screen when 'load UI' ↵Bastien Montagne
option is disabled. See rB935e241fa6ea095493 for details of the issue, but first fix caused regression T47632. So for now handling the issue in a localized way, this is not a real solution (since this could happen in other cases), but will do for 2.77. This commit is to be backported to 2.77.
2016-03-04Fix T47632: Revert "Fix (unreported) crash when opening a file from splash ↵Bastien Montagne
screen when 'load UI' option is disabled." This reverts commit 935e241fa6ea095493ade5d5403c9ac55c18d5ef. Issue will be fixed in a more localized way for now (not that nice, since this use-after-free can possibly happen in other places too, but only safe solution for 2.77). This commit is to be backported in 2.77.
2016-03-04Fix T47604: Sculpt + Modifier undo gives invalid normalsCampbell Barton
2016-03-04Fix T47615: crash trying to use point density with lamp object.Brecht Van Lommel
2016-03-04Cycles: Fix compilation error of certain OpenCL split kernelsSergey Sharybin
2016-03-04Fix T47608: Cycles cage baking crash after recent uv derivative fixes.Brecht Van Lommel
2016-03-04Fix T47605: Elsyiun theme info text hard to readCampbell Barton
2016-03-04Fix T47582: Curve handle thickness regressionCampbell Barton
2016-03-04Fix T47586: Nurbs handle thickness regressionCampbell Barton
2016-03-04Fix T47583: Mesh wire edge thickness regressionCampbell Barton
2016-03-04Fix T47592: Wrong line width w/ custom-bonesCampbell Barton
2016-03-04Docs: early exist build process on errorCampbell Barton
Don't attempt to build docs when generation fails.
2016-03-04Docs: Add missing context membersCampbell Barton
2016-03-04Fix T47596: Bone motion path - confusing UI in 3DView tools.Bastien Montagne
Now using same UI as in object/armature properties, also save one line in 3DView panesl. ;) Nothing crucial there, but nice & safe to backport to 2.77 imho.
2016-03-04Fix T47593: 'Move to layer' will be crash in blender 2.77rc1.Bastien Montagne
To be backported to 2.77.
2016-02-26Fix: "Twist" GP Sculpt brush in 2D Editors was unusable... now mostly ↵v2.77-rc1Joshua Leung
usable, if still slightly offset
2016-02-26Fix: "Twist" GP Sculpt brush didn't work well in 3D ViewJoshua Leung
2016-02-262.77 splashCampbell Barton
by Pokedstudio
2016-02-26Blender 2.77 release: Point submodules to a release branchesSergey Sharybin
2016-02-26Blender 2.77 release: Bump subversion and go into RC cycle nowSergey Sharybin
Splash and RC1 AHOY are incoming.
2016-02-26Code reshuffling to prevent problems like the previous commit happening againJoshua Leung
2016-02-26Fix T47503 - My previous fix for T47472 accidentally reused an unrelated flagJoshua Leung
ked->iterflags actually already had an enum defined, but at the time of the previous fix, I'd forgotten that it was defined. As a result, "f1 needs NLA remap" got given the same flag as "include handles when doing keyframe selection checks".
2016-02-26Code Cleanup - Fix commentsJoshua Leung
2016-02-26Restore ability to clear motionpaths from selected objects/bones onlyJoshua Leung
In response to user feedback, this commit brings back the ability to limit motionpath clearing to only happening for those on selected objects/bones. By default, the "Clear" operator will clear from all objects/bones, unless the Shift key is held.
2016-02-26CMake: show error on missing LIBDIR early onCampbell Barton
Previously CMake would show many messages about missing libs before checking for a missing LIBDIR. Now show the error immediately and exit. Also allow for custom LIBDIR on OSX.
2016-02-26UI: Add 'Copy Python Command' to menuCampbell Barton
This feature wasn't exposed anywhere in the interface.
2016-02-26UI: improve cursor mapping for int buttonsCampbell Barton
With continuous grab disabled, non-linear mapping for int buttons wasn't working usefully with small mouse movements. Now 2x pixels motion adjusts by at least 1 w/ int buttons.
2016-02-26Fix T47015: BGE, objects vanish aligning to vectorCampbell Barton
1811 by @mangostaniko Fixes regression since moving to floats.
2016-02-26Fix T47559: Crash when scrubbing in time on a OpenVDB Smoke.Kévin Dietrich
Cache reading was not using the right simulation flags (outdated), which made it lookup non-existent grids, and crash on de-referencing null pointers.