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
path: root/source
AgeCommit message (Collapse)Author
2018-12-21Cleanup: fix more ATTR_FALLTHROUGH warnings.Brecht Van Lommel
Ref D3960.
2018-12-21Update for moving master to blender2.7 branch.Brecht Van Lommel
2018-12-20Fix T59074: BMesh intersect hangsCampbell Barton
This is a degenerate intersection, exit early instead of hanging.
2018-12-20PyAPI: don't truncate enums in exception messagesCampbell Barton
Not necessary and confusing when only some of the items are displayed. See: T59044
2018-12-19Fix Proportional Edit Projected 2D method skiped center calculationPhilipp Oeser
rBa520e7c85c83 defined T_OVERRIDE_CENTER(1 << 25) which was already in use T_PROP_PROJECTED(1 << 25) thus skipping center calculation Fixes T58882, T59518 Reviewers: campbellbarton, brecht Maniphest Tasks: T58882, T59518 Differential Revision: https://developer.blender.org/D4100
2018-12-19Cleanup: spellingCampbell Barton
2018-12-19Cleanup: use static struct for app-template stateCampbell Barton
2018-12-18Fix T59104: Snapping: Align rotation to target broken in edit mode.Bastien Montagne
This has been unbelievably painful to understand... And solution is only partially good actually, we may even want a single axis for all the islands in that case? But for now this is giving much better results already, compared to the random crazyness it used to produce.
2018-12-18Fix T55105: Smoke Emission from particles was ignoring lattice deformerPhilipp Oeser
on the particles
2018-12-17Cleanup: use bit-shifted flag definitions in DNACampbell Barton
2018-12-14Fix selection history clearing when selecting allCampbell Barton
2018-12-14Missed last commitCampbell Barton
2018-12-14Missed last commitCampbell Barton
2018-12-14Cleanup: naming (mean -> median) see T47811Campbell Barton
2018-12-12Cleanup: use colon separator after parameterCampbell Barton
Helps separate variable names from descriptive text. Was already used in some parts of the code, double space and dashes were used elsewhere.
2018-12-12dependencies windows: Replace pthreads-win32 2.9.1 with pthreads4w 3.0.0Ray Molenkamp
maintenance seems to have stopped for pthreads-win32
2018-12-11Update code to be compatible with OIIO 2.0Sergey Sharybin
There are some changes in API of OpenImageIO, but those are quite simple to keep working with older and newer library versions. Reviewers: brecht Reviewed By: brecht Differential Revision: https://developer.blender.org/D4064
2018-12-11Fix T59161: Edge Rotate CW is CCWCampbell Barton
2018-12-11Fix T52051: Orthographic camera display size errorCampbell Barton
It was impractical to create a small orthographic camera with a usable size in the view-port. No longer scale the draw-size by ortho-size.
2018-12-10Fix T53544: Undo in pose mode selects all fcurvesCampbell Barton
2018-12-10DNA: add runtime struct to for graph & action editorCampbell Barton
Move struct members, no functional change
2018-12-09Fix T59059: Blender crashing after adding particle system and dynamic paint ↵Bastien Montagne
(Brush). Looks like this bug has been there since ages (at least present before 2.79 official release...).
2018-12-07Fix T57994: Particle Instance modifiers 'Index Layer' off by onePhilipp Oeser
better have this vertex color layer cover the whole 0-1 range thx @sergey for checking Maniphest Tasks: T57994 Differential Revision: https://developer.blender.org/D3976
2018-12-07Cleanup: redundant counterCampbell Barton
2018-12-07Fix error in Main cleanupCampbell Barton
See 481cdb08ed6f3
2018-12-07Fix Alembic indexed UVs being merged for different vertices.Brecht Van Lommel
Other software uses this to define UV islands, so we can't just merge any UVs with the same coordinate. They have to share a vertex too. Contributed by Maxime Robinot, with changes by me. Differential Revision: https://developer.blender.org/D4006
2018-12-06Fix T58832: Spin tool creates duplicate facesCampbell Barton
2018-12-06Fix T58819: Weight paint gradient crashCampbell Barton
2018-12-06Cleanup: no need to access final meshCampbell Barton
2018-12-06Fix (devtalk 4053): Collada build with older cmake versions brokenGaia Clary
2018-12-05fix: Collada: remove Class from method definition in header fileGaia Clary
2018-12-05Fix T49624: Fly uses camera settings outside camera viewCampbell Barton
2018-12-04fix T58568: used wrong case in variable nameGaia Clary
2018-12-04fix T58568 build errors when using collada 1.6.68 or newerGaia Clary
2018-12-04Cleanup: SpellingSergey Sharybin
2018-12-03Fix T54580: Pointer buttons skip undo pushCampbell Barton
2018-12-03Use scene active object for sculptmode enter/exit callsCampbell Barton
Match logic in previous commit.
2018-12-03Fix T56331: Undo crash w/ sculpt on hidden layerCampbell Barton
2018-12-02Cleanup: BKE b-bone API namingCampbell Barton
Use BKE_pchan_bbone prefix.
2018-12-02Cleanup: BKE_effect.h namingCampbell Barton
2018-12-01Cleanup: styleCampbell Barton
2018-11-30Revert "3D View: locked camera was using the original view offset"Campbell Barton
This reverts commit 3f31c28a025cf61e2c4df33f28467771ae603965. Gives issues zooming, could be resolved but it mostly worked OK before, and it's not a priority to spend time on, so leave as is for now.
2018-11-303D View: locked camera was using the original view offsetCampbell Barton
Now used the original dist instead, since using the distance between the camera and the views offset may seem random from the users POV. This addresses strange behavior noticed in T56934.
2018-11-30Cleanup: ensure '_END' macros end with a semicolonCampbell Barton
Missing these breaks auto-indent for editors that don't expand macros.
2018-11-30Cleanup: name macros w/ matching BEGIN/ENDCampbell Barton
2018-11-30Cleanup: name macros w/ matching BEGIN/ENDCampbell Barton
2018-11-30Cleanup: duplicate includeCampbell Barton
2018-11-30Cleanup: styleCampbell Barton
2018-11-30Cleanup: unused return argCampbell Barton
2018-11-29Fix leak in CPU brand checkCampbell Barton