Skip to content

Commit

Permalink
Beta v0.34.0-beta.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Jul 18, 2024
1 parent 6609dc8 commit 6f8a8da
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
6 changes: 6 additions & 0 deletions dist/dwv.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ export declare class Annotation {
* @type {object}
*/
mathShape: object;
/**
* Additional points used to define the annotation.
*
* @type {Point2D[]}
*/
referencePoints: Point2D[];
/**
* The color: for example 'green', '#00ff00' or 'rgb(0,255,0)'.
*
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.34.0-beta.5",
"version": "0.34.0-beta.6",
"description": "DICOM Web Viewer.",
"keywords": [
"DICOM",
Expand Down
1 change: 1 addition & 0 deletions resources/api/dwv.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export class Annotation {
mathShape: object;
position: string;
quantification: object;
referencePoints: Point2D[];
referenceSopUID: string;
setTextExpr(labelText: {
[x: string]: string;
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.34.0-beta.5.</i>",
"footer": "<i>Documentation generated for dwv v0.34.0-beta.6.</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.34.0-beta.5/dwv-0.34.0-beta.5.min.js",
"js_external": "https://github.com/ivmartel/dwv/releases/download/v0.34.0-beta.6/dwv-0.34.0-beta.6.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 @@ -34,7 +34,7 @@ import {
* @returns {string} The version of the library.
*/
export function getDwvVersion() {
return '0.34.0-beta.5';
return '0.34.0-beta.6';
}

/**
Expand Down

0 comments on commit 6f8a8da

Please sign in to comment.