other
Key Changes:
connectToolsToMeasurementService
parameters: TheconnectToolsToMeasurementService
function from the@ohif/cornerstone-extensions
now take different arguments.data-viewportId
Thedata-viewportId
naming was not compliant with react and was causing warnings. Rename references todata-viewportid
.
Migration Steps:
-
Update
connectToolsToMeasurementService
Method Calls:- Now the connectToolsToMeasurementService receives all service object arguments (servicesManager, commandsManager and extensionManager).
// Before
- connectToolsToMeasurementService(servicesManager);
// After
+ connectToolsToMeasurementService({
+ servicesManager,
+ commandsManager,
+ extensionsManager
+ });
Images sort by position patient
The ImageSet sort has been modified: images are now sorted by ImagePositionPatient by default. If ImagePositionPatient is not available, the sort will fall back to InstanceNumber.
To revert to the previous sorting method, you can add the customization instanceSortingCriteria as shown below:
customizationService.setCustomizations({
'instanceSortingCriteria': {
$set: {defaultSortFunctionName: 'default'},
},
});