@ohif/extension-cornerstone 2.10.8 → 2.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,50 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.12.0](https://github.com/OHIF/Viewers/compare/@ohif/extension-cornerstone@2.11.0...@ohif/extension-cornerstone@2.12.0) (2021-09-23)
7
+
8
+
9
+ ### Features
10
+
11
+ * Update to WADO Image Loader 4.0.3 to add dynamically imported WebAssembly codec support 🚀 ([#2537](https://github.com/OHIF/Viewers/issues/2537)) ([489d4b0](https://github.com/OHIF/Viewers/commit/489d4b0584f4657ceda1c5b9b68d5e9733827e47))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.11.0](https://github.com/OHIF/Viewers/compare/@ohif/extension-cornerstone@2.10.10...@ohif/extension-cornerstone@2.11.0) (2021-09-09)
18
+
19
+
20
+ ### Features
21
+
22
+ * OHIF-1000: Study prefetcher ([#2466](https://github.com/OHIF/Viewers/issues/2466)) ([8f26045](https://github.com/OHIF/Viewers/commit/8f2604509d24092b721f1333289d838820d68cac))
23
+
24
+
25
+
26
+
27
+
28
+ ## [2.10.10](https://github.com/OHIF/Viewers/compare/@ohif/extension-cornerstone@2.10.9...@ohif/extension-cornerstone@2.10.10) (2021-07-26)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * changed new image handler conditional for 0 edge case ([#2338](https://github.com/OHIF/Viewers/issues/2338)) ([b8ae92c](https://github.com/OHIF/Viewers/commit/b8ae92c2d4f733b3ca89826118029685650b396a))
34
+
35
+
36
+
37
+
38
+
39
+ ## [2.10.9](https://github.com/OHIF/Viewers/compare/@ohif/extension-cornerstone@2.10.8...@ohif/extension-cornerstone@2.10.9) (2021-06-02)
40
+
41
+
42
+ ### Bug Fixes
43
+
44
+ * **dicom-html:** Add parsed dicom meta info section ([#2419](https://github.com/OHIF/Viewers/issues/2419)) ([403688b](https://github.com/OHIF/Viewers/commit/403688b18c52468fc1101166ec0c1734fb710039))
45
+
46
+
47
+
48
+
49
+
6
50
  ## [2.10.8](https://github.com/OHIF/Viewers/compare/@ohif/extension-cornerstone@2.10.7...@ohif/extension-cornerstone@2.10.8) (2021-05-17)
7
51
 
8
52
  **Note:** Version bump only for package @ohif/extension-cornerstone
package/README.md CHANGED
@@ -85,12 +85,32 @@ Tools can be configured through extension configuration using the tools key:
85
85
  ...
86
86
  ```
87
87
 
88
+ ## Stack prefetch configuration
89
+
90
+ Stack prefetch can be configured through extension configuration using the
91
+ stackPrefetch key:
92
+
93
+ ```js
94
+ ...
95
+ cornerstoneExtensionConfig: {
96
+ stackPrefetch: {
97
+ enabled: true,
98
+ maxImagesToPrefetch: Infinity,
99
+ preserveExistingPool: false,
100
+ maxSimultaneousRequests: 20,
101
+ },
102
+ },
103
+ ...
104
+ ```
105
+
88
106
  ## Annotate Tools Configuration
89
107
 
90
- *We currently support one property for annotation tools.*
108
+ _We currently support one property for annotation tools._
91
109
 
92
110
  ### Hide handles
93
- This extension configuration allows you to toggle on/off handle rendering for all annotate tools:
111
+
112
+ This extension configuration allows you to toggle on/off handle rendering for
113
+ all annotate tools:
94
114
 
95
115
  ```js
96
116
  ...
@@ -119,3 +139,4 @@ This extension configuration allows you to toggle on/off handle rendering for al
119
139
  [cornerstone-tools]: https://github.com/cornerstonejs/cornerstoneTools
120
140
  [cornerstone]: https://github.com/cornerstonejs/cornerstone
121
141
  <!-- prettier-ignore-end -->
142
+ ```