Blender Git Loki

Kaikki Blender Git kommitit.

Page: 2722 / 8462

February 2, 2019, 04:23 (GMT)
WM: Event simulation support for Python

This feature is intended only for testing,
to automate simulating user input.

- Enabled by '--enable-event-simulate'.
- Disables handling all real input events.
- Access by calling `Window.event_simulate(..)`
- Disabling `bpy.app.use_event_simulate`
to allow handling real events (can only disable).

Currently only mouse & keyboard events work well,
NDOF, IME... etc could be added as needed.

See D4286 for example usage.
February 2, 2019, 03:45 (GMT)
BKE_global: clear deprecated flags on load (all of them)
February 2, 2019, 03:01 (GMT)
Cleanup: match logic for merging G.f & G.fileflags on load
February 2, 2019, 02:49 (GMT)
Cleanup: use G_FLAG_*/G_FILE_* for G.f/fileflags

Was confusing eg: G_AUTOPACK belonged to G.fileflags, G_PICKSEL to G.f.
February 2, 2019, 02:29 (GMT)
Cleanup: use enum for BKE globals
February 2, 2019, 00:58 (GMT)
Cleanup: remove author/date info from doxy headers
February 1, 2019, 22:47 (GMT)
Merge branch 'master' into temp-clang-format
February 1, 2019, 22:45 (GMT)
Use 4 spaces for continuations, addresses T53211#611987

Before:

```
if (
psmd->mesh_final->totvert != psmd->totdmvert || psmd->mesh_final->totedge != psmd->totdmedge ||
psmd->mesh_final->totface != psmd->totdmface) {
psys->recalc |= ID_RECALC_PSYS_RESET;

psmd->totdmvert = psmd->mesh_final->totvert;
psmd->totdmedge = psmd->mesh_final->totedge;
psmd->totdmface = psmd->mesh_final->totface;
}
```

After:

```
if (psmd->mesh_final->totvert != psmd->totdmvert ||
psmd->mesh_final->totedge != psmd->totdmedge ||
psmd->mesh_final->totface != psmd->totdmface)
{
psys->recalc |= ID_RECALC_PSYS_RESET;

psmd->totdmvert = psmd->mesh_final->totvert;
psmd->totdmedge = psmd->mesh_final->totedge;
psmd->totdmface = psmd->mesh_final->totface;
}
```
February 1, 2019, 22:37 (GMT)
Merge branch 'blender2.7'
February 1, 2019, 19:56 (GMT)
Color management: change view transform for color pickers and display modes.

* Use simple default view transform for color pickers, as Filmic does not work
well for all types of colors. We better handle this with an option and tagging
of colors as emissive or albedo like.
* For solid/workbench we also no longer use Filmic, as there is not enough contrast
and it's not really needed since this is not physically based lighting.
* For lookdev always take into account the view transform and look. Other view
settings like exposure are only taken into account if scene lighting is used,
since these are often dependent on scene light intensity.

Fixes T61022, T57649, T59363.
February 1, 2019, 19:35 (GMT)
Fix T61010: Keying Set - Description edit box disabled, for internal use only.

Wrong property flag for that one, KeyingSet is a regular RNA class, not
a registrable 'interface' one, unlike KeyingSetInfo...
February 1, 2019, 18:08 (GMT)
Fix T61078: Cycles crash with adaptive smoke sim playback.

3D image dimensions should be updated on the Cycles side before loading
the smoke data.
February 1, 2019, 17:04 (GMT)
Fix T58206: Eevee light energy soft maximum is too low.
Revision 530d9f4 by Antonioya (master)
February 1, 2019, 16:20 (GMT)
Cleanup: Remove manually missing original author

Name was part of the header GPL text.
February 1, 2019, 16:15 (GMT)
Merge branch 'master' into greasepencil-object
February 1, 2019, 16:14 (GMT)
GP: Cleanup retiming to do in same loop
February 1, 2019, 15:50 (GMT)
Fix T61071: GP Cutter / Boxes bug

Now when remove points from a cyclic stroke, the last island is joined with first island in order to fill the gap of the cyclic.

This change affects not only to cutter, but to any delete process in cyclic strokes.
February 1, 2019, 15:41 (GMT)
Cleanup: manually remove header text not handled by automation
February 1, 2019, 15:40 (GMT)
Cleanup: remove redundant, invalid info from headers

BF-admins agree to remove header information that isn't useful,
to reduce noise.

- BEGIN/END license blocks

Developers should add non license comments as separate comment blocks.
No need for separator text.

- Contributors

This is often invalid, outdated or misleading
especially when splitting files.

It's more useful to git-blame to find out who has developed the code.

See P901 for script to perform these edits.
February 1, 2019, 15:30 (GMT)
Cleanup: remove original author

Missed when removing contributors.
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021