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
2014-08-08Switch linux buildbot to custom built python2.7Sergey Sharybin
New scons discontinued support of python2.6, so we needed to build just another python in the release and buildbot environment. Hope latest scons upgrade a least bring new msvs support and not only lead to just-another-frustration. There might be some more upcoming commits, because you never can be sure there's no typos in the buidbot script for until you actually fire the builder up.
2014-08-08BGE: move macro body into a function to reduce code-sizeCampbell Barton
2014-08-08Quiet reorder warningCampbell Barton
2014-08-08Revert "ignore conflict files"Campbell Barton
This reverts commit 7d20ad6a1ba46cad209d17d144af1cffbab334fc. turns out this hides conflicts which we may want to see
2014-08-07ignore conflict filesCampbell Barton
2014-08-07Fix T41173: CM view selection is difficult with multiple viewsSergey Sharybin
Use drop-down menu instead of expanded enum for the view select. There are usually more views than displays and using drop-down for display device and expanded enum for view is kindof strange.
2014-08-07Fix T40948: Fill holes fails in certain caseCampbell Barton
2014-08-07Tweaks to the recent wrapper on windowsSergey Sharybin
- Forgot to handle command line arguments - Because of the fact we need to be able to use stdout and stderr we need to use regular console application for the wrapper. - Because of using regular application for the wrapper we need to check forparent PID in the isStartedFromCommandPrompt(). I really hope it's not gonna to become any more complicated.
2014-08-07Fix for mathutils.Euler on big endian systemsCampbell Barton
D719 from jrestemeier with edits
2014-08-07Cleanup: unused definesCampbell Barton
2014-08-07Add blender launcher application when building with MSVCSergey Sharybin
Main idea of this change is to make a small executable which will set OMP_WAIT_POLICY environment variable and then will launch blender itself. This is a teporary solution for the time being we'll have a more clear solution to high CPU usage with OpenMP when building with MSVC. Reviewers: campbellbarton, juicyfruit Reviewed By: juicyfruit Differential Revision: https://developer.blender.org/D717
2014-08-07T41354, cursor never gets reactivated in uv sculpting.Antony Riakiotakis
2014-08-07Fix crash on dyntopo when show diffuse option + collapse is usedAntony Riakiotakis
Some nodes could end up without any faces and in that case getting a face material would fail.
2014-08-07Fix T41333: Selected mask points don't stand out visually.Bastien Montagne
Looks like mask points coloring was recently changed, and IMAGE space colors were left uninitialized... Factorized a bit the code about vertex_handle & co too, was quite duplicated.
2014-08-07Cleanup: Remove special code for Visual Studio 2008.Thomas Dinges
Goodbye VC2008, it has been a pleasure (more or less) :D SCons / CMake cleaenup will follow. Differential Revision: https://developer.blender.org/D715
2014-08-07Experimental gooseberry request:Antony Riakiotakis
Expose radial control properties. That way, the operator can be tweaked in the input preferences to tweak other properties as well.
2014-08-07change scons default to be visual studio 2013Martijn Berger
2014-08-07CommentsCampbell Barton
2014-08-07BMesh: use existing lookup tables when remappingCampbell Barton
2014-08-07GHash/EdgeHash: avoid NULL check on iterator initCampbell Barton
2014-08-07Fix T41047: Text objects flippingCampbell Barton
2014-08-06UI: move button to set dupli-offset into group menuCampbell Barton
2014-08-06Fix T41323: Sequencer: video window taking all the place when switching to ↵Bastien Montagne
split view. Issue is that, when we switch from full preview view to combined view, preview area has its `sizey` set to use all available height, which leaves nothing for poor main area. For now, make checks when switching mode to combined one, so that both areas have resonable `sizey` values. Not perfect, but works.
2014-08-06Cleanup: mostly move together main area init/draw/handler callback, and some ↵Bastien Montagne
generic cleanup (tabs, comments...).
2014-08-06Fix T41343, hard to remove group from objects.Antony Riakiotakis
Added a small menu with a few helper oerators next to each group panel: * Remove group from all objects * Select objects in group More could be added possibly in the future. Thanks to Campbell for the advice here.
2014-08-06Correct Python exceptionsCampbell Barton
T35358 by Codemanx
2014-08-06Add some missng casts to the size_tSergey Sharybin
2014-08-06OSX/clang: Fix T41123, crashing osl when optimization level > O0 is used for ↵Jens Verwiebe
osl_shaders.cpp
2014-08-06OSX/cmake: allow for llvm dynamic builds too, but prefer staticJens Verwiebe
2014-08-06Fix for out of bounds write while draggingCampbell Barton
2014-08-06Fix T41318: API change in OSL, I see no other cases but there might beMartijn Berger
2014-08-06Remove confusing word "faculative" from commentsNicholas Bishop
Reviewers: campbellbarton Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D711
2014-08-05Remove SVN referencesCampbell Barton
2014-08-05SpellingCampbell Barton
2014-08-05Correct change to dupli-drawingCampbell Barton
Need exceptions so dupli-frames objects draw in render-only mode.
2014-08-05OSX/cmake: move last commited line to a better placeJens Verwiebe
2014-08-05OSX/cmake: force LLVM_STATIC ON, to fix linking issuesJens Verwiebe
2014-08-05Fix T41062: "copy to selected" doens't work for all attributes.Bastien Montagne
The issue was that some properties are no direct children of the struct we support in 'copy to selected' (RNA_Sequence in this case). Since we can't use the ID of sequences here (it's the scene, while we need a sequence level of control), we had to add a new API helper to RNA path, which takes a RNA type and return a path relative to the closest ancester of that type. This way, we get a path from the RNA_Sequence, and can easily apply it to all other valid sequences to copy the property. Review, suggestions and edits by Campbell Barton, thanks!
2014-08-05Add RNA access to packed librariesCampbell Barton
2014-08-05Fix T41222 Blender gives weird output when baking (4096*4096) resolution on GPUDalai Felinto
In collaboration with Sergey Sharybin. Also thanks to Wolfgang Faehnle (mib2berlin) for help testing the solutions. Reviewers: sergey Differential Revision: https://developer.blender.org/D690
2014-08-05Fix T41328: Saving a copy changes lib pathsCampbell Barton
2014-08-05API Docs: typosCampbell Barton
2014-08-05Replace explicit object type check with already-existing macroNicholas Bishop
2014-08-05Add missing forward declaration and missing 'struct' keywordNicholas Bishop
2014-08-05UI: remove tip when dragging a popupCampbell Barton
2014-08-05Fix a few typos in carve-capi.hNicholas Bishop
The typos didn't cause any bug, but the mis-ordered parameter names in CarveExporter_InitGeomArrays were confusing. Reviewers: sergey Reviewed By: sergey Differential Revision: https://developer.blender.org/D709
2014-08-05Fix incorrect comments in listbase, add unit test to verify changeNicholas Bishop
Reviewers: campbellbarton Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D708
2014-08-05Correct another issue in recent menu handlingCampbell Barton
mouse clicks to exit a menu were ignored for non-floating popups
2014-08-05Fix to commit rB77b7e1fe9ab: need ${target} instead of blender in cmake macro.Howard Trickey
2014-08-05Fix T41276: OSL bug in getmessage ("trace", "geom:name" , output)Sergey Sharybin