From bfa6991c00f1c6a7efb89727d7f306c7e68190b8 Mon Sep 17 00:00:00 2001 From: Swann Martinez Date: Wed, 2 Mar 2022 14:26:01 +0100 Subject: [PATCH 1/7] fix: server docker file --- scripts/docker_server/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 26847cf4595d3b6c29f4aa537a20cfb494f6fd18 Mon Sep 17 00:00:00 2001 From: Swann Martinez Date: Tue, 8 Mar 2022 18:06:54 +0100 Subject: [PATCH 2/7] fix: server crashing during snapshots --- multi_user/libs/replication | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multi_user/libs/replication b/multi_user/libs/replication index b3cee9e..e881f24 160000 --- a/multi_user/libs/replication +++ b/multi_user/libs/replication @@ -1 +1 @@ -Subproject commit b3cee9e7449bc75be574829c9ea842d877257f11 +Subproject commit e881f24b3e8215ccd9cf4af9133235eb77a01900 From 48651ce8906e49abe27579ba166dac0e9b04ced0 Mon Sep 17 00:00:00 2001 From: Swann Martinez Date: Wed, 9 Mar 2022 10:42:44 +0100 Subject: [PATCH 3/7] fix: uuid error when joining a server --- multi_user/__init__.py | 2 +- multi_user/libs/replication | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/multi_user/__init__.py b/multi_user/__init__.py index 353a493..4e35764 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, 3), "description": "Enable real-time collaborative workflow inside blender", "blender": (2, 82, 0), "location": "3D View > Sidebar > Multi-User tab", diff --git a/multi_user/libs/replication b/multi_user/libs/replication index e881f24..5364d8a 160000 --- a/multi_user/libs/replication +++ b/multi_user/libs/replication @@ -1 +1 @@ -Subproject commit e881f24b3e8215ccd9cf4af9133235eb77a01900 +Subproject commit 5364d8a2543dea10cd7f917f6cef007e4e0528d9 From c228b6ad7f31177b1c7b249cb237b55ac648ec88 Mon Sep 17 00:00:00 2001 From: Swann Martinez Date: Wed, 9 Mar 2022 11:19:09 +0100 Subject: [PATCH 4/7] refactpr: snapshot logs --- multi_user/libs/replication | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multi_user/libs/replication b/multi_user/libs/replication index 5364d8a..d722cf0 160000 --- a/multi_user/libs/replication +++ b/multi_user/libs/replication @@ -1 +1 @@ -Subproject commit 5364d8a2543dea10cd7f917f6cef007e4e0528d9 +Subproject commit d722cf0d65568b436d61d139cea42da000c5fea9 From 8190846b59813ccb0702d9286baf733d0437dcc7 Mon Sep 17 00:00:00 2001 From: Swann Martinez Date: Fri, 11 Mar 2022 18:38:09 +0100 Subject: [PATCH 5/7] fix: blender 3.1 numpy loading compatibility --- multi_user/bl_types/dump_anything.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'] From b8fed806ed7f764336b5004afbd74229b5d337d2 Mon Sep 17 00:00:00 2001 From: Swann Martinez Date: Fri, 11 Mar 2022 18:38:38 +0100 Subject: [PATCH 6/7] feat: update version --- multi_user/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multi_user/__init__.py b/multi_user/__init__.py index 4e35764..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, 3), + "version": (0, 5, 4), "description": "Enable real-time collaborative workflow inside blender", "blender": (2, 82, 0), "location": "3D View > Sidebar > Multi-User tab", From 629f2e1cdb6c01ec38bff70578b47cc66f144a95 Mon Sep 17 00:00:00 2001 From: Swann Martinez Date: Fri, 11 Mar 2022 18:52:30 +0100 Subject: [PATCH 7/7] feat: update changelog --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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