
Blender Git Statistics -> Developers -> mano-wii
Germano Cavalcante (mano-wii)
Total Commits : 1 136
Master Commits : 1 001
Branch Commits : 135
First Commit : January 25, 2016
Latest Commit : January 25, 2021 (Today)
Commits by Month
Date | Number of Commits | |
---|---|---|
January, 2021 | 25 | |
December, 2020 | 14 | |
November, 2020 | 27 | |
October, 2020 | 13 | |
September, 2020 | 31 | |
August, 2020 | 23 | |
July, 2020 | 39 | |
June, 2020 | 44 | |
May, 2020 | 44 | |
April, 2020 | 30 | |
March, 2020 | 28 | |
February, 2020 | 41 | |
January, 2020 | 41 | |
December, 2019 | 20 | |
November, 2019 | 12 | |
October, 2019 | 21 | |
September, 2019 | 62 | |
August, 2019 | 68 | |
July, 2019 | 31 | |
June, 2019 | 18 | |
May, 2019 | 14 | |
April, 2019 | 9 | |
March, 2019 | 28 | |
February, 2019 | 4 | |
January, 2019 | 5 | |
December, 2018 | 11 | |
November, 2018 | 22 | |
October, 2018 | 49 | |
September, 2018 | 20 | |
August, 2018 | 8 | |
July, 2018 | 6 | |
June, 2018 | 3 | |
May, 2018 | 88 | |
April, 2018 | 25 | |
March, 2018 | 9 | |
February, 2018 | 17 | |
January, 2018 | 27 | |
December, 2017 | 20 | |
November, 2017 | 6 | |
October, 2017 | 4 | |
September, 2017 | 7 | |
August, 2017 | 4 | |
July, 2017 | 24 | |
June, 2017 | 0 | |
May, 2017 | 0 | |
April, 2017 | 9 | |
March, 2017 | 18 | |
February, 2017 | 28 | |
January, 2017 | 14 | |
December, 2016 | 0 | |
November, 2016 | 0 | |
October, 2016 | 2 | |
September, 2016 | 0 | |
August, 2016 | 0 | |
July, 2016 | 7 | |
June, 2016 | 6 | |
May, 2016 | 3 | |
April, 2016 | 0 | |
March, 2016 | 0 | |
February, 2016 | 4 | |
January, 2016 | 3 |
Commit Distribution
Favourite Files
Filename | Total Edits |
---|---|
transform_snap_object.c | 162 |
transform.c | 91 |
transform.h | 62 |
transform_snap.c | 56 |
transform_generics.c | 54 |
transform_convert_mesh.c | 42 |
transform_constraints.c | 41 |
bvhutils.c | 40 |
draw_manager.c | 36 |
transform_convert.c | 33 |
File Changes
Action | Total | Per Commit |
---|---|---|
Added | 411 | 0.4 |
Modified | 2 520 | 2.2 |
Deleted | 252 | 0.2 |
Code Changes
Action | Total | Per Commit |
---|---|---|
Lines Added | 44 931 | 43.2 |
Lines Removed | 36 033 | 34.7 |
Latest commits 
10 hours 51 min ago |
Fix T84964: Crash when running Knife Project in the background Although the Knife Project operator converts 3D coordinates to screen space, it doesn't really need opengl. Differential Revision: https://developer.blender.org/D10178 |
10 hours 51 min ago |
Cleanup: Knife Tool: Remove redundant 'view3d_operator_needs_opengl' calls This function sets the `RegionView3D` matrices to the GPU. But the OpenGL library is not actually being used by the operator. |
January 20, 2021, 15:35 (GMT) |
Fix T81429: move tool's axis constraints not drawn completely when using local orientation In fact, the drawing was that of the local contraint axis (which is summarized so as not to fill the screen with too much information). Use the local contraint axis only when more than one object is selected. |
January 20, 2021, 15:28 (GMT) |
Revert "Transform: Use orientation of active object with Auto Constraint" This reverts commit 54f248fa87afd4836fb7154056cd0e8d920401f1. And fixes T84259. Apparently the ideal behavior was the previous one. |
January 18, 2021, 13:57 (GMT) |
Fix T84808: Individual projection works even when snap options don't affect the transform mode Individual projection is a different branch of snap and always projects the transformed elements on the surface of objects. Perhaps this option should be limited to the Move mode due to similarity. But in order not to change the current behavior too much, this commit only disables this option in modes not affected by snap. |
January 15, 2021, 14:28 (GMT) |
Merge branch 'blender-v2.92-release' |
January 15, 2021, 14:24 (GMT) |
Fix T84673: Skin resize operator always using object origin as pivot The TransData converted to work in Skin Resize had no defined center. Caused by rB54ee4109143b |
Revision e06d1d5 by Germano Cavalcante / Jeroen Bakker (blender-v2.91-release) January 13, 2021, 14:03 (GMT) |
Fix Increment Snapping Without Constraints in Non-Axis-Aligned Views The incremental snap was always operating in the local space, which in most cases is the VIEW type orientation. Use only local space when the operation is affected by constraint. Differential Revision: https://developer.blender.org/D10052 |
Revision 384b298 by Germano Cavalcante / Jeroen Bakker (blender-v2.91-release) January 13, 2021, 14:03 (GMT) |
Fix T84453: Crash bezier curves transfrom The pointer allocated to the `TransData` was being incorrectly incremented, causing misalignment and consequently `heap-buffer-overflow`. Because of this, `TD_NOTCONNECTED` was being set in a strange way that did not correspond to other types of `TransData`. The solution is to not increment the `TransData` pointer and set `TD_NOTCONNECTED` only for "unconnected" segments. The code was also a bit deduplicated. |
Revision 0be041d by Germano Cavalcante / Jeroen Bakker (blender-v2.91-release) January 13, 2021, 13:55 (GMT) |
Fix T83460: Regression in snap for measure tool Now the gizmo is drawn only when the eventstate located in `wm->winactive->eventstate` has not changed. So it doesn't matter if it's "selected" or not. This commit also removes the use of the private header "wm.h" Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D9539 |
MiikaHweb - Blender Git Statistics v1.06