Skip to content

Commit

Permalink
Beta v0.35.0-beta.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Jan 16, 2025
1 parent 04b4edb commit 51e985f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
8 changes: 6 additions & 2 deletions dist/dwv.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,11 @@ export declare class AnnotationGroupFactory {
*/
getWarning(): string | undefined;
/**
* Check dicom elements. Throws an error if not suitable.
* Check dicom elements.
*
* @param {Object<string, DataElement>} dataElements The DICOM data elements.
* @returns {string|undefined} A possible warning.
* @throws Error for missing or wrong data.
*/
checkElements(dataElements: {
[x: string]: DataElement;
Expand All @@ -289,6 +290,7 @@ export declare class AnnotationGroupFactory {
*
* @param {Object<string, DataElement>} dataElements The DICOM tags.
* @returns {AnnotationGroup} A new annotation group.
* @throws Error for missing or wrong data.
*/
create(dataElements: {
[x: string]: DataElement;
Expand Down Expand Up @@ -3385,10 +3387,11 @@ export declare class MaskFactory {
*/
getWarning(): string | undefined;
/**
* Check dicom elements. Throws an error if not suitable.
* Check dicom elements.
*
* @param {Object<string, DataElement>} _dicomElements The DICOM tags.
* @returns {string|undefined} A possible warning.
* @throws Error for missing or wrong data.
*/
checkElements(_dicomElements: {
[x: string]: DataElement;
Expand All @@ -3401,6 +3404,7 @@ export declare class MaskFactory {
* Uint16Array | Int16Array |
* Uint32Array | Int32Array} pixelBuffer The pixel buffer.
* @returns {Image} A new Image.
* @throws Error for missing or wrong data.
*/
create(dataElements: {
[x: string]: DataElement;
Expand Down
2 changes: 1 addition & 1 deletion dist/dwv.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dwv.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dwv",
"version": "0.35.0-beta.9",
"version": "0.35.0-beta.10",
"description": "DICOM Web Viewer.",
"keywords": [
"DICOM",
Expand Down
4 changes: 2 additions & 2 deletions resources/doc/jsdoc.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"package": "package.json",
"theme_opts": {
"title": "DWV",
"footer": "<i>Documentation generated for dwv v0.35.0-beta.9.</i>",
"footer": "<i>Documentation generated for dwv v0.35.0-beta.10.</i>",
"sections": [
"Tutorials",
"Namespaces",
Expand All @@ -50,7 +50,7 @@
"codepen": {
"enable_for": ["examples"],
"options": {
"js_external": "https://github.com/ivmartel/dwv/releases/download/v0.35.0-beta.9/dwv-0.35.0-beta.9.min.js",
"js_external": "https://github.com/ivmartel/dwv/releases/download/v0.35.0-beta.10/dwv-0.35.0-beta.10.min.js",
"html": "<div id='dwv'><div id='layerGroup0'></div></div>"
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/dicom/dicomParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import {logger} from '../utils/logger';
* @returns {string} The version of the library.
*/
export function getDwvVersion() {
return '0.35.0-beta.9';
return '0.35.0-beta.10';
}

/**
Expand Down

0 comments on commit 51e985f

Please sign in to comment.