Blender Git Statistics -> Developers -> Severin
Julian Eisel (Severin)
Total Commits : 3 579
Master Commits : 1 020
Branch Commits : 2 559
First Commit : October 20, 2014
Latest Commit : January 22, 2021 (Yesterday)
Commits by Month
Date | Number of Commits | |
---|---|---|
January, 2021 | 13 | |
December, 2020 | 176 | |
November, 2020 | 76 | |
October, 2020 | 43 | |
September, 2020 | 47 | |
August, 2020 | 82 | |
July, 2020 | 32 | |
June, 2020 | 45 | |
May, 2020 | 27 | |
April, 2020 | 101 | |
March, 2020 | 149 | |
February, 2020 | 62 | |
January, 2020 | 63 | |
December, 2019 | 10 | |
November, 2019 | 91 | |
October, 2019 | 67 | |
September, 2019 | 92 | |
August, 2019 | 122 | |
July, 2019 | 89 | |
June, 2019 | 79 | |
May, 2019 | 23 | |
April, 2019 | 7 | |
March, 2019 | 3 | |
February, 2019 | 0 | |
January, 2019 | 7 | |
December, 2018 | 30 | |
November, 2018 | 19 | |
October, 2018 | 10 | |
September, 2018 | 0 | |
August, 2018 | 0 | |
July, 2018 | 8 | |
June, 2018 | 13 | |
May, 2018 | 16 | |
April, 2018 | 52 | |
March, 2018 | 18 | |
February, 2018 | 10 | |
January, 2018 | 3 | |
December, 2017 | 19 | |
November, 2017 | 25 | |
October, 2017 | 50 | |
September, 2017 | 6 | |
August, 2017 | 7 | |
July, 2017 | 23 | |
June, 2017 | 18 | |
May, 2017 | 50 | |
April, 2017 | 48 | |
March, 2017 | 135 | |
February, 2017 | 69 | |
January, 2017 | 35 | |
December, 2016 | 54 | |
November, 2016 | 48 | |
October, 2016 | 117 | |
September, 2016 | 97 | |
August, 2016 | 89 | |
July, 2016 | 56 | |
June, 2016 | 55 | |
May, 2016 | 70 | |
April, 2016 | 34 | |
March, 2016 | 93 | |
February, 2016 | 66 | |
January, 2016 | 0 | |
December, 2015 | 55 | |
November, 2015 | 57 | |
October, 2015 | 8 | |
September, 2015 | 62 | |
August, 2015 | 97 | |
July, 2015 | 50 | |
June, 2015 | 50 | |
May, 2015 | 34 | |
April, 2015 | 71 | |
March, 2015 | 30 | |
February, 2015 | 19 | |
January, 2015 | 29 | |
December, 2014 | 34 | |
November, 2014 | 28 | |
October, 2014 | 6 |
Commit Distribution
Favourite Files
Filename | Total Edits |
---|---|
wm_operators.c | 167 |
readfile.c | 165 |
wm_window.c | 160 |
WM_api.h | 157 |
wm_event_system.c | 154 |
interface_handlers.c | 130 |
wm_xr.c | 130 |
space_view3d.c | 122 |
screen_ops.c | 120 |
view3d_draw.c | 120 |
File Changes
Action | Total | Per Commit |
---|---|---|
Added | 1 671 | 0.5 |
Modified | 14 560 | 4.1 |
Deleted | 1 331 | 0.4 |
Code Changes
Action | Total | Per Commit |
---|---|---|
Lines Added | 129 421 | 47.7 |
Lines Removed | 69 972 | 25.8 |
Latest commits 
19 hours 29 min ago |
Fix memory leak when opening file browser The name string of each file was duplicated but not freed. The new flag to ensure the file-list frees the name wasn't set. Mistake in ca475479eb26. |
1 day and 13 hours ago |
Fix editors showing old data-block name after renaming in Outliner E.g. the graph editor channels list would still show the old name of a material that was renamed in the Outliner. Same for the Asset Browser when showing data-blocks in the "Current File" repository. The Outliner didn't send the notifier for some data-block types that editors listen to for data-block name changes. |
1 day and 14 hours ago |
Fix Asset Browser showing old name after renaming data-block The "Current File" asset library didn't get refreshed after the data-block name changed. But rather than entirely refreshing the file list, or doing possibly problematic partial refreshes, reference the data-block name directly, so a simple redraw gets the new name displayed. Addresses T83751 |
1 day and 21 hours ago |
Asset Browser: Enable by default in alpha builds The Asset Browser is still considered an experimental feature right now. But it can be enabled by default for alpha builds, to get further testing and feedback. It will hopefully be a non-experimental feature by the end of bcon1. This is done in agreement with Dalai. |
January 19, 2021, 17:47 (GMT) |
UI: Deselect other objects when dragging into 3D View When dragging an object into the 3D View, e.g. from the Outliner or the Asset Browser, other objects wouldn't get deselected. That differs from what other drop operations do, which create a new object. They deselect other objects in a lower-level function, which happens to not be called for just dropping objects. So I guess this is an oversight. Old behavior was also a bit annoying because users seem to expect this to deselect. |
January 14, 2021, 12:45 (GMT) |
Fix various issues with regions in Asset Browser Fixes a number of glitches, e.g. the sidebar disappearing when selecting an asset or wrong AZones (the little chevrons to indicate a hidden region). There were a couple of issues: * Execution region was created, but not used. * If an execution region already existed when refreshing the area, it was tagged as hidden, not removed. * The sidebar was always set to be hidden on refreshes. * When toggling from Asset Browser to File Browser as regular editor (i.e. not opened temporary via Ctrl+O or such), the sidebar region wasn't removed. Adresses T83644. |
January 13, 2021, 22:41 (GMT) |
Fix T84684: Undo operators not working Mistake in 2771dfd5632a. The commit left the new editors operator registration in `ed_util_ops.c`, but removed the function call to it. In other words, the ED-utils operators were not registered. |
January 13, 2021, 22:39 (GMT) |
Fix T84684: Undo operators not working Mistake in 2771dfd5632a. The commit left the new editors operator registration in `ed_util_ops.c`, but removed the function call to it. In other words, the ED-utils operators were not registered. |
January 13, 2021, 14:31 (GMT) |
UI: Revert design changes to data-block selector for the 2.92 release Partially reverts 2250b5cefee7. Removing the user count and fake user count icons was controversial (which was expected) and there are a few further changes needed, that won't make it in time for the release, see D9946. While there is a design to bring back the user count and fake user indicators, a new design idea was proposed that the UI team wants to follow. This came too late for the 2.92 release, the new design is targeted at the 2.93 release now. Meanwhile, UI team decision was to simply revert the design changes. The new design is being worked on in https://developer.blender.org/T84669. Note that this commit does not revert some internal changes done in 2250b5cefee7. Namely the introduction of `ed_util_ops.c` and data-block operators in there. These will still be needed in the new design. |
January 13, 2021, 10:10 (GMT) |
Asset System: Disable Asset Browser as experimental feature The Asset Browser will be disabled and not available for the 2.92 release. In alpha/beta builds, there will be an "Asset Browser" option under Preferences > Experimental, if the developer extras are enabled. Note that this also disables related UI elements (e.g. "Mark Asset" buttons, Preferences settings for asset libraries, etc.). The code is still in master of course, development and testing will continue there. But there simply needs to be too much polishing and fixing before the 2.92 release, plus there are some design decisions to be reevaluated. Check the milestone 1 project to follow ongoing work: https://developer.blender.org/project/view/124/ |
MiikaHweb - Blender Git Statistics v1.06