Merge branch 'develop' into 'master'

v0.5.3

See merge request slumber/multi-user!174
This commit is contained in:
Swann Martinez 2022-03-11 17:59:27 +00:00
commit 5e929db3ee
5 changed files with 17 additions and 5 deletions

View File

@ -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
- 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

View File

@ -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",

View File

@ -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']

@ -1 +1 @@
Subproject commit b3cee9e7449bc75be574829c9ea842d877257f11
Subproject commit d722cf0d65568b436d61d139cea42da000c5fea9

View File

@ -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}"]
CMD ["replication.server -apwd ${password} -spwd '' -p ${port} -t ${timeout} -l ${log_level} -lf ${log_file}"]