Blender Git Statistics -> Developers -> rjg

Robert Guetzkow (rjg)

Total Commits : 49
Master Commits : 43
Branch Commits : 6
First Commit : January 26, 2019
Latest Commit : August 24, 2021

Commits by Month

DateNumber of Commits
August, 20211
July, 20210
June, 20210
May, 20213
April, 20210
March, 20210
February, 20212
January, 20216
December, 20201
November, 202011
October, 20203
September, 20200
August, 20200
July, 20200
June, 20201
May, 20204
April, 20203
March, 20203
February, 20200
January, 20201
December, 20192
November, 20193
October, 20192
September, 20190
August, 20190
July, 20190
June, 20190
May, 20190
April, 20191
March, 20191
February, 20190
January, 20191

Commit Distribution

PathNumber of Commits
master43
temp_bmesh_multires2
sculpt-dev2
temp_test_sc_keymap2
temp-lanpr-cleanup21
temp-lanpr-cleanup1
temp-blender-2.81-release-with-wrong-merge1
tmp-2.83-cycles-rtx3-kernels1
cycles_texture_cache1
blender-v2.83-release1

Favourite Files

FilenameTotal Edits
blender_default.py4
file_ops.c3
fileops.c3
rna_nodetree.c2
rna_particle.c2
node_draw.c2
space_filebrowser.py2
versioning_290.c2
appdir.c2
transform.c2

File Changes

ActionTotalPer Commit
Modified671.4

Code Changes

ActionTotalPer Commit
Lines Added73418.4
Lines Removed1654.1

Latest commits Feed

Revision 38bdde8 by Robert Guetzkow (master)
August 24, 2021, 16:41 (GMT)
Fix T90715: Remove correct particle modifier through Python API

Before this patch attempting to remove a particle modifier programmatically
through Python would fail, because it deleted the modifier associated with
the currently active particle system instead of the one passed as an argument
to `bpy.types.ObjectModifiers.remove()`.

This fix adds an additional argument for the particle system to
`object_remove_particle_system`. This allows to specify which particle system
and its associated modifier shall be removed. In case of
`particle_system_remove_exec` it will remain the currently active particle
system, whereas `object_remove_particle_system` passes the particle system
of the modifier. Hence, the correct modifier will be removed.

Reviewed By: mont29

Differential Revision: https://developer.blender.org/D12234
Revision ced7203 by Robert Guetzkow / Stefan Werner (cycles_texture_cache)
May 6, 2021, 09:25 (GMT)
Fix T82824: Draw sensor size with correct alpha

Previously the option in the camera's //Object Data Properties > Viewport Display
> Sensor// would not display the sensor in camera view. This seemed to be caused
by the theme color `TH_VIEW_OVERLAY` having zero set for the alpha channel and
alpha blending being active, resulting in no visible output. Hence
`immUniformThemeColorShade(TH_VIEW_OVERLAY, 100);` is replaced with
`immUniformThemeColorShadeAlpha(TH_VIEW_OVERLAY, 100, 255);`.

Reviewed By: mano-wii

Differential Revision: https://developer.blender.org/D11075
Revision 6b6ae92 by Robert Guetzkow (master)
May 2, 2021, 09:20 (GMT)
Merge branch 'blender-v2.93-release'
Revision 018cca9 by Robert Guetzkow (master)
May 2, 2021, 09:13 (GMT)
Fix T82824: Draw sensor size with correct alpha

Previously the option in the camera's //Object Data Properties > Viewport Display
> Sensor// would not display the sensor in camera view. This seemed to be caused
by the theme color `TH_VIEW_OVERLAY` having zero set for the alpha channel and
alpha blending being active, resulting in no visible output. Hence
`immUniformThemeColorShade(TH_VIEW_OVERLAY, 100);` is replaced with
`immUniformThemeColorShadeAlpha(TH_VIEW_OVERLAY, 100, 255);`.

Reviewed By: mano-wii

Differential Revision: https://developer.blender.org/D11075
Revision 64a9634 by Robert Guetzkow (master)
February 2, 2021, 19:42 (GMT)
Merge branch 'blender-v2.92-release'
Revision 4a80c0e by Robert Guetzkow (master)
February 2, 2021, 19:37 (GMT)
Fix T85225: Variable scope in ridged multi-fractal noise

This patch fixes a bug introduced in
rB74188e65028d268af887ab2140e4253087410c1e.
The commit incorrectly moved the declaration and intialization of the
variable `pwr` inside the loop. Since the value was originally modified
in each iteration based on it's previous value and `pwHL` through
`pwr *= pwHL`, this change in scope was wrong. It resetted the value in
each iteration. This patch moves the declaration of `pwr` outside the
loop again.

Reviewed By: JacquesLucke

Differential Revision: https://developer.blender.org/D10258
Revision b8feac9 by Robert Guetzkow (master)
January 29, 2021, 12:16 (GMT)
Merge branch 'blender-v2.92-release'
Revision 821df20 by Robert Guetzkow (master)
January 29, 2021, 12:10 (GMT)
Fix T84588: Set parameter as required for uv_on_emitter

This commit fixes T84588's second issue. The `particle` parameter was
declared optional in the Python API of `bpy.types.ParticleSystem.uv_on_emitter`
due to a typo in the RNA definition. This commit marks it as required.

Reviewed By: JacquesLucke

Differential Revision: https://developer.blender.org/D10127
Revision 74633c0 by Robert Guetzkow (master)
January 26, 2021, 11:41 (GMT)
Merge branch 'blender-v2.92-release'
Revision c399651 by Robert Guetzkow (master)
January 26, 2021, 11:38 (GMT)
Fix T84708: Versioning for Set Alpha node

The versioning code introduced in rB38df935c0985 skips the composite node
tree that is used by the scene thus not correctly versioning Set Alpha
nodes outside of node groups. This fix iterates through all node trees to
version all Set Alpha nodes.

Reviewed By: JacquesLucke

Differential Revision: https://developer.blender.org/D10110

MiikaHweb - Blender Git Statistics v1.06
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021