You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`Dataset.shallow_copy_dataset` does not symlink layers, mags and attachments anymore. Instead mags and attachments are referenced by their path. [#1290](https://github.com/scalableminds/webknossos-libs/pull/1290)
17
+
- Deprecated a number of methods [#1290](https://github.com/scalableminds/webknossos-libs/pull/1290):
18
+
-`Dataset.add_symlink_layer`, use `Dataset.add_layer_as_ref` instead.
19
+
-`Dataset.add_remote_layer`, use `Dataset.add_layer_as_ref` instead (renamed).
20
+
-`Dataset.add_copy_layer`, use `Dataset.add_layer_as_copy` instead (renamed).
21
+
-`Layer.add_symlink_mag`, use `Layer.add_mag_as_ref` instead.
22
+
-`Layer.add_remote_mag`, use `Layer.add_mag_as_ref` instead (renamed).
23
+
-`Layer.add_copy_mag`, use `Layer.add_mag_as_copy` instead (renamed).
24
+
-`Attachments.add_symlink_attachments`, use `Attachments.add_attachment_as_ref` instead (note the singular form).
25
+
-`Attachments.add_attachments`, use `Attachments.add_attachment_as_ref` instead (note the singular form).
26
+
-`Attachments.add_copy_attachments`, use `Attachments.add_attachment_as_copy` instead (note the singular form).
27
+
-`Dataset.add_layer` and `Dataset.add_layer_like` as well as derived methods do not eagerly create a folder for the layer anymore. Folders will be created, if necessary, when mags or attachments are added. [#1290](https://github.com/scalableminds/webknossos-libs/pull/1290)
28
+
29
+
16
30
17
31
### Added
18
32
19
33
### Changed
20
34
- Changed the default path type to `UPath`[#1326](https://github.com/scalableminds/webknossos-libs/pull/1326)
35
+
- All mags now store their path in the `datasource-properties.json` file. This eliminates the need for symlinks and removes the need to check multiple possible mag paths (e.g. 1-1-1 or 1). It also unifies local and remote mags. [#1290](https://github.com/scalableminds/webknossos-libs/pull/1290)
36
+
- Dataset-local mags and attachments use the `./` prefix for their path in compliance with [IETF RFC1808](https://datatracker.ietf.org/doc/html/rfc1808). [#1290](https://github.com/scalableminds/webknossos-libs/pull/1290)
21
37
22
38
### Fixed
23
39
@@ -61,7 +77,7 @@ For upgrade instructions, please check the respective _Breaking Changes_ section
0 commit comments