Skip to content

Commit

Permalink
doc: changelog + minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeCrassous committed Oct 22, 2020
1 parent a47edfc commit c4b0f38
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
# WIP
# 0.18.0 wip

## Features

- Shading trees for objects, worlds and lights (except grouped nodes)
- Shading trees for objects, worlds and lights (except node groups)
- VRtist: sky

## Fixes

- Transfer less mesh data when modifiers are modified
- Trasnfer less mesh data with linked meshes
- Transfer less mesh data with linked meshes
- Fix new mesh part not linked to its collection after mesh separate
- Remove logging of meaningless ReferenceError messages


# 0.17.0 (2020-10-15)
Expand Down
1 change: 1 addition & 0 deletions mixer/handlers_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def send_scene_data_to_server(scene, dummy):
# Ask the proxy to compute the list of elements to synchronize and update itself
changeset = bpy_data_proxy.update(diff, updates, process_delayed_updates, safe_properties)

# Send creations before update so that collection updates for new object have a valid target
data_api.send_data_creations(changeset.creations)
data_api.send_data_removals(changeset.removals)
data_api.send_data_renames(changeset.renames)
Expand Down
2 changes: 1 addition & 1 deletion mixer/share_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from mixer.bl_utils import get_mixer_prefs

import bpy
import bpy.types as T
import bpy.types as T # noqa N812

from mixer.shot_manager_data import ShotManager

Expand Down

0 comments on commit c4b0f38

Please sign in to comment.