Merge branch 'develop' into 'master'

v0.5.2

See merge request slumber/multi-user!173
This commit is contained in:
Swann Martinez 2022-02-18 15:12:56 +00:00
commit 0c60c86775
4 changed files with 11 additions and 4 deletions

View File

@ -246,4 +246,11 @@ All notable changes to this project will be documented in this file.
### Fixed
- Auto updater breaks dependency auto installer
- Auto updater update from tag
- Auto updater update from tag
## [0.5.2] - 2022-02-18
### Fixed
- Objects not selectable after user leaves session
- Geometry nodes attribute toogle doesn't sync

View File

@ -19,7 +19,7 @@
bl_info = {
"name": "Multi-User",
"author": "Swann Martinez",
"version": (0, 5, 1),
"version": (0, 5, 2),
"description": "Enable real-time collaborative workflow inside blender",
"blender": (2, 82, 0),
"location": "3D View > Sidebar > Multi-User tab",

View File

@ -172,7 +172,7 @@ def load_modifier_geometry_node_props(dumped_modifier: dict, target_modifier: bp
for input_index, inpt in enumerate(get_node_group_properties_identifiers(target_modifier.node_group)):
dumped_value, dumped_type = dumped_modifier['props'][input_index]
input_value = target_modifier[inpt[0]]
if dumped_type in ['INT', 'VALUE', 'STR']:
if dumped_type in ['INT', 'VALUE', 'STR', 'BOOL']:
logging.info(f"{inpt[0]}/{dumped_value}")
target_modifier[inpt[0]] = dumped_value
elif dumped_type in ['RGBA', 'VECTOR']:

@ -1 +1 @@
Subproject commit 90b928c53c57b86ba90f62b091771eb11c05637d
Subproject commit b3cee9e7449bc75be574829c9ea842d877257f11