Blender Git Statistics -> Developers -> LazyDodo
Ray molenkamp (LazyDodo)
Total Commits : 624
Master Commits : 554
Branch Commits : 70
First Commit : July 18, 2016
Latest Commit : April 13, 2021 (Yesterday)
Commits by Month
Date | Number of Commits | |
---|---|---|
April, 2021 | 2 | |
March, 2021 | 4 | |
February, 2021 | 23 | |
January, 2021 | 5 | |
December, 2020 | 5 | |
November, 2020 | 4 | |
October, 2020 | 4 | |
September, 2020 | 13 | |
August, 2020 | 23 | |
July, 2020 | 7 | |
June, 2020 | 9 | |
May, 2020 | 24 | |
April, 2020 | 19 | |
March, 2020 | 18 | |
February, 2020 | 27 | |
January, 2020 | 13 | |
December, 2019 | 4 | |
November, 2019 | 18 | |
October, 2019 | 10 | |
September, 2019 | 3 | |
August, 2019 | 36 | |
July, 2019 | 7 | |
June, 2019 | 13 | |
May, 2019 | 31 | |
April, 2019 | 10 | |
March, 2019 | 8 | |
February, 2019 | 14 | |
January, 2019 | 1 | |
December, 2018 | 6 | |
November, 2018 | 3 | |
October, 2018 | 10 | |
September, 2018 | 14 | |
August, 2018 | 52 | |
July, 2018 | 8 | |
June, 2018 | 34 | |
May, 2018 | 14 | |
April, 2018 | 2 | |
March, 2018 | 5 | |
February, 2018 | 7 | |
January, 2018 | 3 | |
December, 2017 | 3 | |
November, 2017 | 1 | |
October, 2017 | 5 | |
September, 2017 | 11 | |
August, 2017 | 6 | |
July, 2017 | 0 | |
June, 2017 | 2 | |
May, 2017 | 5 | |
April, 2017 | 9 | |
March, 2017 | 1 | |
February, 2017 | 3 | |
January, 2017 | 6 | |
December, 2016 | 3 | |
November, 2016 | 9 | |
October, 2016 | 19 | |
September, 2016 | 16 | |
August, 2016 | 9 | |
July, 2016 | 3 |
Commit Distribution
Favourite Files
Filename | Total Edits |
---|---|
platform_win32.cmake | 75 |
versions.cmake | 59 |
CMakeLists.txt | 49 |
CMakeLists.txt | 41 |
harvest.cmake | 39 |
make.bat | 34 |
parse_arguments.cmd | 22 |
macros.cmake | 21 |
configure_msbuild.cmd | 19 |
platform_win32_msvc.cmake | 17 |
File Changes
Action | Total | Per Commit |
---|---|---|
Added | 111 | 0.2 |
Modified | 1 458 | 2.3 |
Deleted | 179 | 0.3 |
Code Changes
Action | Total | Per Commit |
---|---|---|
Lines Added | 13 740 | 23.5 |
Lines Removed | 7 238 | 12.4 |
Latest commits 
1 day and 6 hours ago |
deps_builder: Bump download time out to 30 mins The timeout was set to 60 seconds, which was problematic for some of the larger files like boost from the blender svn mirror. |
April 8, 2021, 22:25 (GMT) |
Fix: Missing GeometryNodeCustomGroup This is a minor change to add some plumbing code to support custom geo nodes. This is working the same way as the custom cycles and compositor nodes. An example add-in is attached to D10784 Reviewed By: JacquesLucke Differential Revision: http://developer.blender.org/D10784 |
March 31, 2021, 11:34 (GMT) |
Makefile: add update_code target Convenience target for updating the code, skipping SVN. The Python script supports it, but this wasn't exposed in the makefile. Ref D10457 |
March 30, 2021, 01:11 (GMT) |
MSVC: ASAN support for VS 16.9 This enables ASAN support when used with VS 16.9 enable as usual in cmake with the WITH_COMPILER_ASAN option, or when using make.bat just tag on `asan' to the invocation, ie: `make lite 2019 asan` MSVC: Asan support for 16.9 This enables ASAN support when used with VS 16.9 enable as usual in cmake with the WITH_COMPILER_ASAN option, or when using make.bat just tag on `asan' to the invocation, ie: `make lite 2019 asan` Differential Revision: https://developer.blender.org/D7794 Reviewed By: brecht, sergey |
March 26, 2021, 16:27 (GMT) |
OSL: add basic OSL shader template Add a basic OSL shader that shows how inputs and outputs work and do some simple math with them. This template is a happy medium between the templates we already ship, empty_shader is a little too bare, and the other templates are a little "too much" and you end up having to delete a whole bunch of stuff. a great starting point for some experimentation! Differential Revision: https://developer.blender.org/D9933 reviewed by: brecht |
March 16, 2021, 18:42 (GMT) |
make_deps: Update blender package mirror URI Final location in SVN was slightly different than we were planning on. |
February 26, 2021, 11:25 (GMT) |
CMake/Deps: Python 3.9.2 Straight up minor version bump, no anomalies to report Reviewed By: sebbas, sybren Differential Revision: https://developer.blender.org/D10523 |
February 24, 2021, 14:13 (GMT) |
Cmake/deps: Update OSL to 1.11.10.0 This bumps OSL to 1.11.10.0. OSL Has a new build time dependency: Clang, and more importantly it expects clang and llvm to share a library folder, which it previously for us did not. This patch changes: -OSL Update to 1.11.10.0 -refactor the llvm/clang/clang-tools-extra builds into the llvm build using the llvm-project tarball for building that has all of the subprojects in it. -update ispc/openmp builds since clang no longer its own dependency and they have to depend on the llvm build now. -Update the windows builder to use the 64 bit host tools since it ran out of ram linking clang -Since OSL now needs clang to link successfully a findclang.cmake has been provided for linux/OSX Differential Revision: https://developer.blender.org/D10212 Reviewed By: brecht, sebbas, sybren |
February 22, 2021, 18:08 (GMT) |
CMake/Windows: Update for new XR_OPENXR version This updates platform/platform_win32.cmake to support both the old and new library names for OpenXR. The new version links against one additional system library and the debug library filename changed ever so slightly. This is a temporary workaround and can be removed once the new lib versions have landed. |
February 22, 2021, 18:03 (GMT) |
CMake/Windows: Detect Boost version Rather than hardcoding the lib names, read boosts version.hpp and extract the version from there. This will make it easier to land lib changes in the near future. |
MiikaHweb - Blender Git Statistics v1.06