Skip to content

Commit

Permalink
Beta v0.35.0-beta.15
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Feb 10, 2025
1 parent f222f91 commit 84a451d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
7 changes: 7 additions & 0 deletions dist/dwv.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3235,6 +3235,7 @@ export declare class LayerGroup {
* methods to define the active index.
*
* @param {ViewLayer | DrawLayer} layer The layer to remove.
* @fires LayerGroup#removelayer
*/
removeLayer(layer: ViewLayer | DrawLayer): void;
/**
Expand Down Expand Up @@ -5576,6 +5577,12 @@ export declare class ViewController {
* @returns {PositionHelper} The helper.
*/
getPositionHelper(): PositionHelper;
/**
* Get a clone of the position helper.
*
* @returns {PositionHelper} The helper clone.
*/
getPositionHelperClone(): PositionHelper;
/**
* Get the current position.
*
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.14",
"version": "0.35.0-beta.15",
"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 @@ -1154,6 +1154,7 @@ export class ViewController {
getPlanePositionFromPosition(point: Point): Point2D;
getPositionFromPlanePoint(point2D: Point2D, k?: number): Point;
getPositionHelper(): PositionHelper;
getPositionHelperClone(): PositionHelper;
getRescaledImageValue(position: Point): number | undefined;
getScrollDimIndex(): number;
getWindowLevel(): WindowLevel;
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.14.</i>",
"footer": "<i>Documentation generated for dwv v0.35.0-beta.15.</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.14/dwv-0.35.0-beta.14.min.js",
"js_external": "https://github.com/ivmartel/dwv/releases/download/v0.35.0-beta.15/dwv-0.35.0-beta.15.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.14';
return '0.35.0-beta.15';
}

/**
Expand Down

0 comments on commit 84a451d

Please sign in to comment.