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
2018-08-21UI: disable new text hinting from D3201 by default for now.Brecht Van Lommel
This changes the text hinting setting to be an enum with options Auto / None / Slight / Full. The default is Auto which currently disables hinting. The hinting was tested with a new FreeType version, but this is not what is used on the buildbots an official release environment, and the fonts look quite bad because of that. Once FreeType has been upgraded we can change the default. Even then the results are not ideal, perhaps due to missing subpixel positioning and linear color blending support in BLF.
2018-08-21build_environment: cleanup for osl harvesting on windows.Ray Molenkamp
2018-08-21Python API: expose missing LAYER_MEMBER property type registration.Kenneth Perry
Differential Revision: https://developer.blender.org/D3628
2018-08-21Correct recent makefile OSX checkCampbell Barton
2018-08-21GNUmakefile: correct blender binary for macOSCampbell Barton
2018-08-21Cleanup: trailing spaceCampbell Barton
2018-08-20Fix Cycles AO pass not working for shadow catcher objects.Brecht Van Lommel
2018-08-20Fix BMesh edge_bisect, edge_percent being ignoredAndrew Hale
Also fix float/int/bool access methods
2018-08-20Cleanup: trailing spaceCampbell Barton
2018-08-20RNA: Spline.calc_length() utility functionCampbell Barton
D1810 by @Matpi w/ edits
2018-08-20build_environment: fix build issues with alembicRay Molenkamp
-read all headers from openexr not ilmbase -add missing iexmath lib -turn binaries back on, the blender unit tests require them.
2018-08-19build_environment: windows harvest cleanup.Ray Molenkamp
remove the commands that have already moved to the individual cmake files.
2018-08-19build_environment: opencolorio buildfixes for windows.Ray Molenkamp
copy the debug libs to the right place.
2018-08-19build_environment: openexr windows buildfix.Ray Molenkamp
with the namespaces disabled the postfix also changed.
2018-08-19build_environment: buildfixes for boostRay Molenkamp
Disable hardcoded 64 bit build.
2018-08-19build_environment: build fixes for openimageio.Ray Molenkamp
disable testtex due to parameter alignment issues
2018-08-19build_environment: windows environmentRay Molenkamp
get 32 bit and 64 bit compilers on the same gcc version.
2018-08-19build_environment: python windows build fixesRay Molenkamp
fix hardcoded ssl dll names.
2018-08-19build_environment: opensubdiv windows build fixes.Ray Molenkamp
only build cuda on 64 bit, since 32 bit is no longer supported by nvcc
2018-08-19build_environment: opennvdb windows build fixes.Ray Molenkamp
disable openexr namespaces on windows due to linker errors with it. link pthreads due to dependency though blosc
2018-08-19build_environment: openexr disable namespaces on windows.Ray Molenkamp
Things do not end up in the right namespaces quite yet, and cause linker errors with other projects using the library.
2018-08-19build_environment: blosc build fixes.Ray Molenkamp
blosc embedded a copy of zlib/pthreads causing duplicate symbol linker errors. pthreads was windows specific, but zlib may apply to other platforms as well.
2018-08-18Warn when app-template isn't foundCampbell Barton
2018-08-18WM: app-template command line overrideCampbell Barton
Without this, there was no simple way to have launchers for different app-templates. Also allows force-disabling the app-template stored in the preferences.
2018-08-17cmake: fix typo in else()Ray Molenkamp
2018-08-17cmake/ctest: output test binaries to debug/release folders on windows.Ray Molenkamp
debug/release builds were writing the binaries to the same folder
2018-08-17build_environment: Various tweaks needed for windows debug libs.Ray Molenkamp
2018-08-17build_environment: fix mistaken commit in openexr.Ray Molenkamp
2018-08-17Build Environment: fixes for Linux after recent updates.Brecht Van Lommel
2018-08-17Fix engine.camera_model_matrix() not working in the Python API.Brecht Van Lommel
2018-08-17build_environment: small fix for building ocio on windows.Ray Molenkamp
2018-08-17build_environment: osl 1.9.9Ray Molenkamp
does no longer seem to bundle pugixml, so that's a new dependency.
2018-08-17build environment: fix opencollada build on macOSArto Kitula
2018-08-16build_environment: openimageio 1.8.13Ray Molenkamp
2018-08-16build_environment_windows: fix missing x64 ssl libs and debug build.Ray Molenkamp
2018-08-16build_environment: python packages update.Ray Molenkamp
idna 2.7 chardet 3.0.4 urllib3 1.23 certifi 2018.8.13 requests 2.19.1
2018-08-16Build Environment: fix OpenVDB 5.1 build on Linux.Brecht Van Lommel
2018-08-16Build Environment: fix for IlmBase lib names without version on Linux.Brecht Van Lommel
2018-08-16Build Environment: cleanup OpenColorIO duplicated and unused flags.Brecht Van Lommel
2018-08-16Fix T56404: Shape keys of the curves with multiple splines go haywire in ↵Bastien Montagne
edit mode. Very dummy mistake (someone forgot to increment one of the variables in one of the loops in that spaghetti nightmare that is nurbs shapekey code), took half an age to spot it... :/
2018-08-16build_environment: Fix compilation of FFmpeg and OpenColorIO on LinuxSergey Sharybin
2018-08-16build_environment: openvdb 5.1.0Ray Molenkamp
2018-08-16Cleanup: rename transform UI valuesCampbell Barton
See: T54858
2018-08-15build_environment: opencolorio 1.1.0Ray Molenkamp
-Moved from dynamic link to static on windows -gained lcms/tinyxml/yamlcpp deps, since we need a little more control over the build flags than the build-in options will provide.
2018-08-15Cleanup: set expand variable for all enum-flagsCampbell Barton
No functional change, needed for fix in 2.8x
2018-08-14Fix T56359: Unitialized variable in Cycles OpenCL could cause crashes.Stefan Werner
2018-08-14make.bat: fix ninja support.Ray Molenkamp
only worked with a fresh build folder.
2018-08-14Fix use of uninitialized variable in some cases, in recent bugfix.Brecht Van Lommel
2018-08-14Fix T56363: Blender crash when deleting a curve object.Bastien Montagne
Conversion code could leave object with inconsistent material data compared to its new obdata. Ideally, various conversion code would handle that properly, conserving materials when possible, but for now at least ensure we get valid result!
2018-08-14Fix object copying not ensuring validity of material arrays.Bastien Montagne
Related to T56363, this is not fixing the root of the bug, but ID copying should always be a good occasion to ensure sanity of our data (and error checking is always better than a crash!).