Blender Git Statistics -> Developers -> sybren
Sybren A. Stüvel (sybren)
Total Commits : 1 673
Master Commits : 1 024
Branch Commits : 649
First Commit : January 14, 2015
Latest Commit : March 1, 2021 (Today)
Commits by Month
Date | Number of Commits | |
---|---|---|
March, 2021 | 4 | |
February, 2021 | 13 | |
January, 2021 | 10 | |
December, 2020 | 23 | |
November, 2020 | 55 | |
October, 2020 | 38 | |
September, 2020 | 58 | |
August, 2020 | 54 | |
July, 2020 | 61 | |
June, 2020 | 25 | |
May, 2020 | 50 | |
April, 2020 | 52 | |
March, 2020 | 40 | |
February, 2020 | 34 | |
January, 2020 | 45 | |
December, 2019 | 110 | |
November, 2019 | 164 | |
October, 2019 | 16 | |
September, 2019 | 19 | |
August, 2019 | 16 | |
July, 2019 | 68 | |
June, 2019 | 55 | |
May, 2019 | 2 | |
April, 2019 | 5 | |
March, 2019 | 4 | |
February, 2019 | 0 | |
January, 2019 | 8 | |
December, 2018 | 6 | |
November, 2018 | 6 | |
October, 2018 | 1 | |
September, 2018 | 1 | |
August, 2018 | 0 | |
July, 2018 | 25 | |
June, 2018 | 60 | |
May, 2018 | 81 | |
April, 2018 | 64 | |
March, 2018 | 7 | |
February, 2018 | 2 | |
January, 2018 | 11 | |
December, 2017 | 0 | |
November, 2017 | 2 | |
October, 2017 | 9 | |
September, 2017 | 1 | |
August, 2017 | 17 | |
July, 2017 | 13 | |
June, 2017 | 10 | |
May, 2017 | 16 | |
April, 2017 | 128 | |
March, 2017 | 15 | |
February, 2017 | 46 | |
January, 2017 | 0 | |
December, 2016 | 9 | |
November, 2016 | 17 | |
October, 2016 | 14 | |
September, 2016 | 14 | |
August, 2016 | 3 | |
July, 2016 | 0 | |
June, 2016 | 0 | |
May, 2016 | 0 | |
April, 2016 | 1 | |
March, 2016 | 1 | |
February, 2016 | 0 | |
January, 2016 | 2 | |
December, 2015 | 0 | |
November, 2015 | 3 | |
October, 2015 | 1 | |
September, 2015 | 7 | |
August, 2015 | 3 | |
July, 2015 | 10 | |
June, 2015 | 4 | |
May, 2015 | 1 | |
April, 2015 | 4 | |
March, 2015 | 4 | |
February, 2015 | 16 | |
January, 2015 | 9 |
Commit Distribution
Favourite Files
Filename | Total Edits |
---|---|
abstract_hierarchy_iterator.h | 93 |
abstract_hierarchy_iterator.cc | 81 |
alembic_capi.cc | 77 |
usd_writer_mesh.cc | 53 |
abc_mesh.cc | 52 |
abc_exporter.cc | 50 |
usd_hierarchy_iterator.cc | 49 |
usd_capi.cc | 47 |
usd_writer_abstract.cc | 45 |
abc_util.cc | 41 |
File Changes
Action | Total | Per Commit |
---|---|---|
Added | 639 | 0.4 |
Modified | 5 829 | 3.5 |
Deleted | 272 | 0.2 |
Code Changes
Action | Total | Per Commit |
---|---|---|
Lines Added | 57 593 | 38.2 |
Lines Removed | 30 768 | 20.4 |
Latest commits 
1 hour 1 min ago |
Cleanup: rename some animation-related functions Rename: - `BKE_animsys_store_rna_setting` ? `BKE_animsys_rna_path_resolve` - `BKE_animsys_read_rna_setting` ? `BKE_animsys_read_from_rna_path` - `BKE_animsys_write_rna_setting` ? `BKE_animsys_write_to_rna_path` The concept of "RNA setting" is unclear; the new names reflect better what the functions actually do. No functional changes. |
1 hour 27 min ago |
Cleanup: refactor `BKE_animsys_store_rna_setting()` Lower the cognitive complexity of `BKE_animsys_store_rna_setting()` by flipping conditions and using early returns. No functional changes. |
2 hours 7 min ago |
Cleanup: remove superfluous `animsys_evaluate_action_ex()` call Remove `animsys_evaluate_action()` and rename `animsys_evaluate_action_ex()` to it. The only function of the former was to call the latter, with the exact same parameters. No functional changes. |
5 hours 8 min ago |
Add `--open-last` CLI argument that opens the most recent file Add a CLI argument `--open-last` that opens the most recent file, effectively doing the same as {key Ctrl Shift O}, {key Enter} after starting Blender. When there are no known recent files, print a warning and do nothing, showing the startup file instead. Note that this does not try to be smart about restoring the last Blender session. It just opens the file from disk, as if the user had typed `blender $(head -n1 ~/.config/blender/2.93/config/recent-files.txt)`. There is also no smartness when that file cannot be opened; it behaves exactly the same as typing the most recent filename on the CLI. Reviewed by: mont29, campbellbarton Differential Revision: https://developer.blender.org/D10563 |
February 26, 2021, 11:44 (GMT) |
Assets: Preview rendering for Action datablocks Render previews for Action datablocks by rendering the scene camera with the Workbench (solid) engine. The //look// can be configured by setting the scene's render engine to Workbench and editing the scene's shading properties. It is assumed that the pose has already been applied and that the scene camera is capturing the pose. In other words, the render function just renders from the scene camera without evaluating/applying the Action stored in `preview->id`. The ID is only used to determine its type and to store the resulting preview. Not all code paths that lead to the `action_preview_render()` function actually provide a depsgraph. The "Refresh Asset Preview" button (`ED_OT_lib_id_generate_preview`) does, but `WM_OT_previews_ensure` does not. Reviewed By: Severin Differential Revision: https://developer.blender.org/D10543 |
February 19, 2021, 13:33 (GMT) |
CMake/Deps: Mesa, harvest lib files from new location The upgraded Mesa (see D10282) stores library files in `mesa/lib64`. |
Revision 5f8d444 by Sybren A. Stüvel / Pablo Dobarro (sculpt-dev) February 15, 2021, 17:29 (GMT) |
CMake/Deps: Alembic 1.7.16 Version bump + no longer using Boost. Building Alembic with Boost gave compiler errors, and having one less inter-dependency is good as well. Reviewed By: sebbas, sybren Differential Revision: https://developer.blender.org/D10329 |
Revision 0af8dda by Sybren A. Stüvel / Pablo Dobarro (sculpt-dev) February 15, 2021, 17:29 (GMT) |
CMake/Deps: OpenImageDenoise 1.2.3 ? 1.3.0 |
Revision 14fe422 by Sybren A. Stüvel / Pablo Dobarro (sculpt-dev) February 15, 2021, 17:29 (GMT) |
CMake/Deps: upgrade USD 20.05 ? 21.02 USD version 21.02 includes two of the changes Blender used to patch in, which have now been removed from `usd.diff`. Unfortunately 21.02 introduces another issue where LZ4 symbols are accidentally exported, causing linker errors. Fortunately these symbols are only used for resting, so I added a patch hunk that simply removes their `extern "C"` declaration. The LZ4 linker issue has been reported upstream at https://github.com/PixarAnimationStudios/USD/issues/1447. Reviewed By: sebbas, mont29 Differential Revision: https://developer.blender.org/D10367 |
February 15, 2021, 11:17 (GMT) |
CMake/Deps: Alembic 1.7.16 Version bump + no longer using Boost. Building Alembic with Boost gave compiler errors, and having one less inter-dependency is good as well. Reviewed By: sebbas, sybren Differential Revision: https://developer.blender.org/D10329 |
MiikaHweb - Blender Git Statistics v1.06