diff --git a/platform/app/pluginConfig.json b/platform/app/pluginConfig.json index fefe449c93a..4bed979133e 100644 --- a/platform/app/pluginConfig.json +++ b/platform/app/pluginConfig.json @@ -65,6 +65,10 @@ { "packageName": "ohif-gcp-extension", "version": "0.0.1" + }, + { + "packageName": "ohif-idc-extension", + "version": "0.0.1" } ], "modes": [ diff --git a/platform/app/public/config/default.js b/platform/app/public/config/default.js index d9831f08a07..2777fef1afb 100644 --- a/platform/app/public/config/default.js +++ b/platform/app/public/config/default.js @@ -341,4 +341,18 @@ window.config = { keys: ['9'], }, ], + idcDownloadCommandsDialog: { + description: 'Follow the instructions below to download the study or series:', + instructions: [ + { command: 'pip install idc-index --upgrade', label: 'First, install the idc cli:' }, + { + command: `idc download {{StudyInstanceUID}}`, + label: 'Then, to download the whole study, run:', + }, + { + command: `idc download {{SeriesInstanceUID}}`, + label: "Or, to download just the active viewport's series, run:", + }, + ], + }, };