dcmjs 0.26.0 → 0.28.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/README.md +4 -4
- package/build/dcmjs.es.js +6746 -16
- package/build/dcmjs.es.js.map +1 -1
- package/build/dcmjs.js +6746 -16
- package/build/dcmjs.js.map +1 -1
- package/package.json +3 -2
- package/test/data.test.js +25 -0
package/README.md
CHANGED
|
@@ -36,9 +36,9 @@ _Parts of DICOM that dcmjs *will* focus on:_
|
|
|
36
36
|
|
|
37
37
|
_Parts of DICOM that dcmjs *will not* focus on:_
|
|
38
38
|
|
|
39
|
-
- DIMSE (legacy networking like C-STORE, C-FIND, C-MOVE, etc). See the [dcmjs-dimse
|
|
39
|
+
- DIMSE (legacy networking like C-STORE, C-FIND, C-MOVE, etc). See the [dcmjs-dimse](https://github.com/PantelisGeorgiadis/dcmjs-dimse) project for that.
|
|
40
40
|
- Physical Media (optical disks). See [this FAQ](https://www.dclunie.com/medical-image-faq/html/index.html) if you need to work with those.
|
|
41
|
-
- Image
|
|
41
|
+
- Image rendering. See [dcmjs-imaging](https://github.com/PantelisGeorgiadis/dcmjs-imaging) for this.
|
|
42
42
|
|
|
43
43
|
# Usage
|
|
44
44
|
|
|
@@ -80,6 +80,8 @@ Note: Be wary of `BREAKING_CHANGE` in commit message descriptions, as this can f
|
|
|
80
80
|
|
|
81
81
|
Be sure to use lower case for the first letter of your semantic commit message, so use `fix` not `Fix` or `feat` not `Feat`.
|
|
82
82
|
|
|
83
|
+
Note: a new package version will be published only if the commit comes from a PR.
|
|
84
|
+
|
|
83
85
|
### Optional Tooling
|
|
84
86
|
|
|
85
87
|
It is advised to use the git-cz, i.e.:
|
|
@@ -98,8 +100,6 @@ git-cz --non-interactive --type=fix --subject="commit message"
|
|
|
98
100
|
|
|
99
101
|
More info at [git-cz](https://www.npmjs.com/package/git-cz).
|
|
100
102
|
|
|
101
|
-
Note: a new package version will be published only if the commit comes from a PR.
|
|
102
|
-
|
|
103
103
|
## Community Participation
|
|
104
104
|
|
|
105
105
|
Use this repository's issues page to report any bugs. Please follow [SSCCE](http://sscce.org/) guidelines when submitting issues.
|