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-11-27[msvc2015] Fix cmake warnings regarding backslashes in path of the run-time ↵lazydodo
libraries
2016-11-19Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/blenloader/intern/versioning_270.c source/blender/depsgraph/intern/builder/deg_builder_nodes.cc source/blender/depsgraph/intern/builder/deg_builder_relations.cc source/blender/editors/space_view3d/drawobject.c
2016-11-17[MSVC] Preliminary VS2017 support.lazydodo
2016-11-07Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: intern/cycles/blender/addon/properties.py
2016-11-05MSVC Runtime copy : Remove erroneously left in diagnostic message from ↵lazydodo
CMakeLists.txt
2016-11-05[msvc2015] Add support for copying the vc runtime.lazydodo
There's more dll's hanging out in the ucrt folder, but I just grabbed the ones blender requested (not sure if that's a wise idea, but it seems to work) Reviewers: sergey, juicyfruit Reviewed By: juicyfruit Differential Revision: https://developer.blender.org/D2335
2016-09-21GPU_basic_shader uses GLSL by defaultMike Erwin
switch back to old mode at runtime: blender --enable-legacy-basic-shader
2016-09-16Merge branch 'master' into blender2.8Sergey Sharybin
2016-09-05CMake: Skip addons_contrib for release candidate buildsSergey Sharybin
Nowadays release candidates are supposed to be as close to the final release as possible. Safe for 2.78 release branch.
2016-09-04Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: intern/cycles/blender/blender_particles.cpp source/blender/blenkernel/intern/particle.c source/blender/gpu/intern/gpu_shader.c
2016-08-31[Windows] Add support for code signing the final binaries.lazydodo
The option is controlled with the WITH_WINDOWS_CODESIGN option and needs: - Signtool must be found on the system, the standard windows sdk folders will be searched for it. - The path to the pfx file (WINDOWS_CODESIGN_PFX) - The password for the pfx , this can either be set by the WINDOWS_CODESIGN_PFX_PASSWORD variable but given that ends up in CMakeCache.txt (which might be undesirable) there is a backup option of setting the PFXPASSWORD environment variable on the system. Reviewers: sergey, juicyfruit Reviewed By: juicyfruit Tags: #bf_blender, #platform:_windows Differential Revision: https://developer.blender.org/D2182
2016-08-26Fix over creation of cache files handles (leading to memory leaks).Kévin Dietrich
Multiple threads could create multiple handles for the same cache file, so protect handle creation with a mutex, to make sure only one is created.
2016-07-25Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/blenkernel/BKE_particle.h source/blender/blenkernel/intern/library.c source/blender/blenkernel/intern/particle.c
2016-07-21Cleanup: warningsCampbell Barton
2016-07-18CMake: correct py-module on OSXCampbell Barton
2016-07-18Merge branch 'master' into blender2.8Campbell Barton
2016-07-14Make --debug-all include --debug-cycles and --debug-libmvSergey Sharybin
2016-07-14CMake: per-target CFLAG & CXXFLAG supportCampbell Barton
Applying cflags globally can be problematic especially with extern, intern libs. Now flags from target named will be used when defined, allowing for developers to define flags for modules they maintain. Convention is CMAKE_CFLAGS_${UPPERCASE_TARGET_NAME}, (CXXFLAGS for C++). eg: CMAKE_CFLAGS_BF_BLENDER, CMAKE_CFLAGS_MAKESDNA, CMAKE_CXXFLAGS_CYCLES_KERNEL On Linux run `make help` for full list of names, MSVC shows these in the solution.
2016-07-12writefile: reuse SDNA between writesCampbell Barton
Avoids decoding the SDNA string every undo step.
2016-07-12Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: intern/cycles/blender/addon/ui.py source/blender/blenkernel/BKE_particle.h source/blender/blenkernel/intern/dynamicpaint.c source/blender/blenkernel/intern/library.c source/blender/blenkernel/intern/object.c source/blender/blenkernel/intern/particle.c source/blender/blenkernel/intern/particle_distribute.c source/blender/blenkernel/intern/texture.c source/blender/editors/object/object_add.c source/blender/editors/object/object_relations.c source/blender/editors/physics/particle_edit.c source/blender/editors/physics/particle_object.c source/blender/editors/transform/transform_snap_object.c
2016-06-30CMake: list buildinfo.h as buildinfo.cmake's outputCampbell Barton
Keep the fake header to ensure we always run.
2016-06-27Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/blenkernel/intern/pointcache.c source/blender/makesrna/intern/rna_main_api.c source/blender/makesrna/intern/rna_particle.c
2016-06-25CMake: exclude gitignore & arcconfig for addonsCampbell Barton
These files were included in releases
2016-06-25Exclude obsolete static pythonlibs from installJens Verwiebe
2016-06-24Avoid memory leaks on exit during argument parsingCampbell Barton
Exiting Blender during argument parsing would leak memory (tests, documentation generation, utilities). While harmless, it hides real leaks which should be resolved.
2016-06-09Merge branch 'master' into blender2.8Campbell Barton
2016-06-07GPU: make using the glsl basic-shader a flagCampbell Barton
This allows for it to be more easily tested.
2016-06-07Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/blenkernel/intern/particle.c source/blender/editors/transform/transform_snap_object.c
2016-06-04CMake, minor changes to make Visual studio 2015 use a compatible numpy andMartijn Berger
the standard cmake CUDA/NVCC arguments flag allowing 2015 build to use msvc 2013 for cuda
2016-06-02Minor changes to help textCampbell Barton
D2040 by @Blendify, also move 'Experimental Features' above more general help text.
2016-05-24Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: intern/cycles/blender/blender_curves.cpp source/blender/blenkernel/intern/dynamicpaint.c source/blender/blenkernel/intern/particle.c source/blender/blenloader/intern/versioning_270.c source/blender/editors/physics/particle_edit.c source/blender/editors/transform/transform_snap_object.c source/blender/editors/util/undo.c source/blender/makesrna/intern/rna_object_force.c
2016-05-18Cleanup: cmake, indentation, line lengthCampbell Barton
2016-05-11Cleanup: unused win32 headersCampbell Barton
2016-05-10CMake: optional date/time overrides for reproducible buildsCampbell Barton
2016-04-28Merge branch 'master' into temp_remove_particlestemp_remove_particlesLukas Tönne
2016-04-28Python: install pyconfig.h on OSX, needed for PIPCampbell Barton
2016-04-25Refactor BKE_blender into separate headersCampbell Barton
- BKE_blender_version.h (only version defines & versionstr). - BKE_blender_copybuffer.h (currently only used for view3d copy/paste). - BKE_blender_undo.h (global undo functions). - BKE_blendfile.h (high level blend file read/write API).
2016-04-15Merge branch 'master' into temp_remove_particlesLukas Tönne
2016-04-13Removed blenkernel particle code.Lukas Tönne
2016-04-12Missed last commitCampbell Barton
2016-04-06Correct error checking for wrong frame rangeCampbell Barton
2016-04-06Cleanup: arg docstringsCampbell Barton
2016-04-06Render frame arg parsing, list and range supportCampbell Barton
Support a comma separated list of frames, as well as frame ranges using the '..' separator. eg: `blender my.blend --render-frame 1,2,10..40,100..200`
2016-03-31Remove the obsolete windows launcherMartijn Berger
2016-03-31CMAKE disable building the windows launcher, fix type in delayloading of ↵Martijn Berger
debug dll
2016-03-31CMAKE / msvc openmp, delay loading of openmp dll so we can set environmentMartijn Berger
variable before it is loaded
2016-03-29Add license text for OCIO configurationSergey Sharybin
2016-03-11Include requests' cacert.pem fileSybren A. Stüvel
This allows us to verify certificates of HTTPS connections, which is mandatory for logins like on Blender ID. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1845
2016-03-03Correct image format args (remove 'MOVIE')Campbell Barton
2016-03-03Cleanup: comments for creator_args & line lengthCampbell Barton