Blender Git Commit Log

All Blender Git commits.

Page: 1810 / 8462

March 5, 2020, 09:28 (GMT)
Cleanup, more comments.
March 5, 2020, 09:27 (GMT)
Merge branch 'master' into greasepencil-object
March 5, 2020, 09:27 (GMT)
GPencil: Fix inverted blend of weight paint

The weight was applied inverted from center of brush.
March 5, 2020, 09:24 (GMT)
GPencil: Add missing recalc of bounding box in Array modifier

Also some code cleanup and fix compiler warnings
March 5, 2020, 09:02 (GMT)
Merge branch 'master' into idtype-refactor
March 5, 2020, 07:58 (GMT)
Fix T74431: EEVEE AO Render Pass

Missing code-path in recent refactoring.
March 5, 2020, 04:24 (GMT)
Addons: Allow a user manual url prefix in doc_url

This was raised in T74017, the issue being that we point to `/dev`
version of the manual for the addons when we want to point to a specific
version instead.

Instead of manually updating the URL every release we can do this.

The `bl_info` for addons will need to be updated in the format of
`'doc_url':
{BLENDER_MANUAL_URL}/addons/import_export/scene_gltf2.html",`

Differential Revision: https://developer.blender.org/D6995
March 5, 2020, 00:45 (GMT)
Addons: deprecate 'wiki_url'

When running with debug enabled ('-d' argument),
warnings are printed for add-ons which are not yet updated.

Reminder to name things based on what they do,
not the technologies they use :)
March 4, 2020, 23:11 (GMT)
Pencil: Modifier: Change Thickness modifier behavior

Normalize option is now Replace Thickness.
A separate factor is used when switching to relative mode.

Custom Curve profile is also applied in replace thickness mode to shape
the profile.

Simplify the modifier code by only modifying the pt->pressure.
March 4, 2020, 22:43 (GMT)
Fix RNA runtime warning from recent commit
March 4, 2020, 22:41 (GMT)
UI: Fluid: Fix wrong uses of enabled
March 4, 2020, 22:41 (GMT)
UI: Fluid: Viewport Display

Cleanup the order of properties and hide sub setting as they were
confusing before.
March 4, 2020, 22:41 (GMT)
UI: Fluid Group Liquid/Gas Panels

Part of T73617

Differential Revision: https://developer.blender.org/D6994
March 4, 2020, 22:41 (GMT)
UI: Fluid: Use updated preset UI

Part of T73617
March 4, 2020, 22:41 (GMT)
Fix Unreported: Error adding fluid presets
March 4, 2020, 21:38 (GMT)
Cleanup: redundant casts
March 4, 2020, 21:21 (GMT)
Cleanup: material API naming

- Use 'BKE_object_material_*', 'BKE_id_material_*' prefix
for functions that operate on Object and ID types.
- Use '_len' suffix for length (matching BLI naming).
- Use '_p' suffix for functions that return a pointer to values
where the value would typically be returned.

Functions renamed:

- BKE_object_material_resize was BKE_material_resize_object
- BKE_object_material_remap was BKE_material_remap_object
- BKE_object_material_remap_calc was BKE_material_remap_object_calc

- BKE_object_material_array_p was BKE_object_material_array
- BKE_object_material_len_p was BKE_object_material_num
- BKE_id_material_array_p was BKE_id_material_array
- BKE_id_material_len_p was BKE_id_material_num

- BKE_id_material_resize was BKE_material_resize_id
- BKE_id_material_append was BKE_material_append_id
- BKE_id_material_pop was BKE_material_pop_id
- BKE_id_material_clear was BKE_material_clear_id
March 4, 2020, 21:12 (GMT)
Merge branch 'master' into greasepencil-object
March 4, 2020, 21:05 (GMT)
Cleanup: formatting, strip trailing space
March 4, 2020, 20:59 (GMT)
Cleanup: replace unnecessary MEM_callocN calls

Use MEM_mallocN when memory is immediately copied over.
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021