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-06-21UI: preference for developer extrasCampbell Barton
Currently only used for "Edit Source" feature.
2018-06-21Fix T55568: second click event ignoredCampbell Barton
Double-click handling caused the second click to be ignored for keymaps that only handle click.
2018-06-21Fix Cycles CUDA render errors with CUDA 9.2.Brecht Van Lommel
Work around what might be a compiler bug.
2018-06-21Fix T55564: Cycles OpenCL build error on some scenes.Brecht Van Lommel
2018-06-21Fix T55491: Double click fail in menu popupsCampbell Barton
2018-06-21WM: don't make LMB a special case for double clickCampbell Barton
2018-06-20Cleanup: naming (make it clear vars are squared)Campbell Barton
2018-06-20Screen: split ED_area_actionzone_find_xyCampbell Barton
Add ED_area_actionzone_refresh_xy which can tag redraw find no longer changes changes to the action zone.
2018-06-20Cleanup: rename is_in_area_actionzoneCampbell Barton
2018-06-20Cleanup: quiet warningCampbell Barton
2018-06-20Cleanup: remove some G.main from BKE's node.cBastien Montagne
Validate some cases using G_MAIN instead (I don't think we want to work on any other Main than G.main one when registering/unregistering nodes etc.). And when freeing, all ID not in Main shall now be tagged accordingly, so we *should* not need to do that stupi search over all ntrees in G.main to check wether we have to free it ourself or not!
2018-06-20UI: only show "Edit Translations" when addon usedCampbell Barton
2018-06-19Final cleanup of G.mains in render area.Bastien Montagne
2018-06-19Cycles: Fixed crash when the camera was inside 16 volumes or more. It still ↵Stefan Werner
won't render those volumes correctly, but at least the crash is addressed.
2018-06-19Fix (unreported) passing CDLayer 'ID' instead of bitflag to a cdlayer mask!Bastien Montagne
Probably harmless, since I bet CD_ORIGINDEX is nearly always generated, but still...
2018-06-19Fix T55528: Cycles AO node should default to 1 if radius is 0.Brecht Van Lommel
2018-06-19Cleanup DM generation code for ProjPaint.Bastien Montagne
Two branches were actually doing essentially the same thing here, no need to artificially complicate things. ;)
2018-06-19Fix (unreported) unauthorized relesing of derived_final DM in paint ↵Bastien Montagne
projection code. NEVER free yourself DM returned by mesh_get_derived_final(), it's always to one assigned to ob->derived_final!
2018-06-19Vertex Paint: set sculpt object mode immediatelyCampbell Barton
SculptSession.mode_type wasn't initialized until painting, making it unreliable for checks in other parts of the code. Also remove unnecessary initialization, matching sculpt mode more closely.
2018-06-19editorconfig: correct C/C++ using spaceCampbell Barton
2018-06-18make.bat: Fix msvc-2017 detection.Ray Molenkamp
D3485 by @manung Differential Revision: https://developer.blender.org/D3485
2018-06-18editorconfig: add rstCampbell Barton
2018-06-18editorconfig: add line length, glslCampbell Barton
2018-06-18Add .editorconfig fileCampbell Barton
This is a fairly well supported file-type configuration for indentation and trailing space stripping. See editorconfig.org for details.
2018-06-18Fix T55503: File browser filter not working correctly.Bastien Montagne
There were two issues here, introduced by rB66aa4af836: * Forgot to change length of some filter_glob var deep in filebrowser code. * Truncating filter_glob in general can be dangerous, generating unexpected patterns. Last point was the root of the issue here, truncating to 63 chars string left last group as 'match everything' `*` pattern. To fix that to some extent, added a new BLI_path_extension_glob_validate helper to BLI_path_util, which ensures we do not have last wildcards-only group in our pattern, when there are more than one group.
2018-06-18RNA: disable animation for file output optionsCampbell Barton
2018-06-17Cleanup: trailing space cmake, make.batCampbell Barton
2018-06-17Cleanup: trailing space in CMake filesCampbell Barton
2018-06-17Python: Allow untrusted py-drivers to run limited expressionsCampbell Barton
Limit to a restricted set of built-ins, as well as the math module. Also restrict of op-codes, disallowing imports and attribute access. This allows most math expressions to run without any performance cost once the initial check is done. See: D1862 for details.
2018-06-17Cleanup: trailing space for remaining source/Campbell Barton
2018-06-17Cleanup: trailing space for blenloaderCampbell Barton
2018-06-17Cleanup: trailing space for blenkernelCampbell Barton
2018-06-17Cleanup: trailing space for compositorCampbell Barton
2018-06-17Cleanup: trailing space for freestyleCampbell Barton
2018-06-17Cleanup: trailing space for imbuf moduleCampbell Barton
2018-06-17Cleanup: trailing space for modifiersCampbell Barton
2018-06-17Cleanup: trailing space for DNA headersCampbell Barton
2018-06-17Cleanup: trailing space in source/gameengine/Campbell Barton
2018-06-17Cleanup: trailing space for BLICampbell Barton
2018-06-17Cleanup: remove unused BLI_rebase_pathCampbell Barton
2018-06-17Cleanup: BLI path extension APICampbell Barton
Use BLI_path_extension_* prefix.
2018-06-17BLI_path: add string size debug defineCampbell Barton
Off by default, only for debugging.
2018-06-17CMake: add missing headersCampbell Barton
2018-06-17Cleanup: use clamp_* from BLI_math (replace macro)Campbell Barton
2018-06-16make.bat: Fix `make showhashes` not working.Ray Molenkamp
broke in recent refactor.
2018-06-16Fix T55427: Removing Vertex Group used by Data Transfer Modifier results in ↵Bastien Montagne
crash. Only fixing crash, proper handling (a.k.a remapping) of all possible cases here, for all possible data layers, is rather involved...
2018-06-16UI: refactor drag-toggle for other button typesCampbell Barton
2018-06-16UI: minor changes from 2.8Campbell Barton
- Option to skip multi-data edits. - Open hold buttons on drag. - Utility function to set default value.
2018-06-16Cycles Cleanup: Remove unneccessary color management callLukas Stockner
2018-06-15Cycles: change Ambient Occlusion shader to output colors.Lukas Stockner
This means the shader can now be used for procedural texturing. New settings on the node are Samples, Inside, Local Only and Distance. Original patch by Lukas with further changes by Brecht. Differential Revision: https://developer.blender.org/D3479