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
* allow viewing a mapping
* WIP: enable setting default active mappings in default view configuration
* add default active mapping to default view configuration
- add config settings to dataset settings default view config tab
- auto load initial default mapping
* fix bottom margin of layer settings
- was broken in view mode with multiple segmentation layers; the "Save View Config..." Button had no spacing to towards
* fix having the mapping settings enabled for layers with default mapping
* WIP: move default mapping store proeprty to dataset layer config
- undo moving mapping selection to a shared component
* moved default active mapping from separate select to view config layer config
- Also added validation check whether the mapping exists in the dataset view config settings
* allow saving no default active mapping from view mode & model init to new dataset config version
* rename defaultMapping to mapping
* cache available mappings fetched from backend when checking config in dataset settings
* remove logging statements
* clean up
* add changelog entry
* apply pr feedback
Copy file name to clipboardExpand all lines: CHANGELOG.unreleased.md
+1
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released
12
12
13
13
### Added
14
14
- Added the option for the owner to lock explorative annotations. Locked annotations cannot be modified by any user. An annotation can be locked in the annotations table and when viewing the annotation via the navbar dropdown menu. [#7801](https://github.com/scalableminds/webknossos/pull/7801)
15
+
- Added the option to set a default mapping for a dataset in the dataset view configuration. The default mapping is loaded when the dataset is opened and the user / url does not configure something else. [#7858](https://github.com/scalableminds/webknossos/pull/7858)
15
16
- Uploading an annotation into a dataset that it was not created for now also works if the dataset is in a different organization. [#7816](https://github.com/scalableminds/webknossos/pull/7816)
16
17
- When downloading + reuploading an annotation that is based on a segmentation layer with active mapping, that mapping is now still be selected after the reupload. [#7822](https://github.com/scalableminds/webknossos/pull/7822)
17
18
- In the Voxelytics workflow list, the name of the WEBKNOSSOS user who started the job is displayed. [#7794](https://github.com/scalableminds/webknossos/pull/7795)
alpha: {shortComment: "20 for segmentation layer",tooltip: "The default alpha value."},
121
+
min: {
122
+
shortComment: "Only for color layers",
123
+
tooltip: "The minimum possible color range value adjustable with the histogram slider.",
124
+
},
125
+
max: {
126
+
shortComment: "Only for color layers",
127
+
tooltip: "The maximum possible color range value adjustable with the histogram slider.",
128
+
},
129
+
intensityRange: {
130
+
shortComment: "Only for color layers",
131
+
tooltip: "The color value range between which color values are interpolated and shown.",
132
+
},
133
+
mapping: {
134
+
shortComment: "Active Mapping",
135
+
tooltip:
136
+
"The mapping whose type and name is active by default. This field is an object with the keys 'type' and 'name' like {name: 'agglomerate_65', type: 'HDF5'}.",
@@ -262,6 +263,8 @@ instead. Only enable this option if you understand its effect. All layers will n
262
263
"The active volume annotation layer has an active mapping. By mutating the layer, the mapping will be permanently locked and can no longer be changed or disabled. This can only be undone by restoring an older version of this annotation. Are you sure you want to continue?",
`The mapping ${mappingName} is now locked for this annotation and can no longer be changed or disabled.`,
266
+
"mapping.loading_failed": (layerName: string)=>
267
+
`Loading the available mappings for layer ${layerName} failed.`,
265
268
"layouting.missing_custom_layout_info":
266
269
"The annotation views are separated into four classes. Each of them has their own layouts. If you can't find your layout please open the annotation in the correct view mode or just add it here manually.",
0 commit comments