diff --git a/CHANGELOG.md b/CHANGELOG.md index d827420..e469bce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -253,4 +253,15 @@ All notable changes to this project will be documented in this file. ### Fixed - Objects not selectable after user leaves session -- Geometry nodes attribute toogle doesn't sync \ No newline at end of file +- Geometry nodes attribute toogle doesn't sync + +## [0.5.3] - 2022-03-11 + +### Changed + +- Snapshots logs +### Fixed + +- Server crashing during snapshots +- Blender 3.1 numpy loading error during early connection process +- Server docker arguments \ No newline at end of file diff --git a/multi_user/__init__.py b/multi_user/__init__.py index 353a493..90c5dbe 100644 --- a/multi_user/__init__.py +++ b/multi_user/__init__.py @@ -19,7 +19,7 @@ bl_info = { "name": "Multi-User", "author": "Swann Martinez", - "version": (0, 5, 2), + "version": (0, 5, 4), "description": "Enable real-time collaborative workflow inside blender", "blender": (2, 82, 0), "location": "3D View > Sidebar > Multi-User tab", diff --git a/multi_user/bl_types/dump_anything.py b/multi_user/bl_types/dump_anything.py index 48a167d..3da447c 100644 --- a/multi_user/bl_types/dump_anything.py +++ b/multi_user/bl_types/dump_anything.py @@ -26,7 +26,8 @@ import numpy as np BPY_TO_NUMPY_TYPES = { 'FLOAT': np.float32, 'INT': np.int32, - 'BOOL': np.bool} + 'BOOL': np.bool, + 'BOOLEAN': np.bool} PRIMITIVE_TYPES = ['FLOAT', 'INT', 'BOOLEAN'] diff --git a/multi_user/libs/replication b/multi_user/libs/replication index b3cee9e..d722cf0 160000 --- a/multi_user/libs/replication +++ b/multi_user/libs/replication @@ -1 +1 @@ -Subproject commit b3cee9e7449bc75be574829c9ea842d877257f11 +Subproject commit d722cf0d65568b436d61d139cea42da000c5fea9 diff --git a/scripts/docker_server/Dockerfile b/scripts/docker_server/Dockerfile index d9eb360..22fb562 100644 --- a/scripts/docker_server/Dockerfile +++ b/scripts/docker_server/Dockerfile @@ -22,4 +22,4 @@ RUN pip install replication==$replication_version # Run the server with parameters ENTRYPOINT ["/bin/sh", "-c"] -CMD ["replication.serve -apwd ${password} -spwd '' -p ${port} -t ${timeout} -l ${log_level} -lf ${log_file}"] \ No newline at end of file +CMD ["replication.server -apwd ${password} -spwd '' -p ${port} -t ${timeout} -l ${log_level} -lf ${log_file}"] \ No newline at end of file