Skip to content

Commit

Permalink
Beta v0.34.0-beta.14
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Sep 6, 2024
1 parent cacab70 commit 910b2f8
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
8 changes: 8 additions & 0 deletions dist/dwv.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1644,6 +1644,14 @@ export declare class DrawLayer {
* @param {Point3D} [center] The scale center.
*/
setScale(newScale: Scalar3D, center?: Point3D): void;
/**
* Initialise the layer scale.
*
* @param {Scalar3D} newScale The scale as {x,y,z}.
* @param {Scalar2D} absoluteZoomOffset The zoom offset as {x,y}
* without the fit scale (as provided by getAbsoluteZoomOffset).
*/
initScale(newScale: Scalar3D, absoluteZoomOffset: Scalar2D): void;
/**
* Set the layer offset.
*
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.13",
"version": "0.34.0-beta.14",
"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 @@ -380,6 +380,7 @@ export class DrawLayer {
getNumberOfDraws(): number | undefined;
getOpacity(): number;
initialise(size: Scalar2D, spacing: Scalar2D): void;
initScale(newScale: Scalar3D, absoluteZoomOffset: Scalar2D): void;
isAnnotationVisible(id: string): boolean;
isVisible(): boolean;
removeEventListener(type: string, callback: Function): void;
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.13.</i>",
"footer": "<i>Documentation generated for dwv v0.34.0-beta.14.</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.13/dwv-0.34.0-beta.13.min.js",
"js_external": "https://github.com/ivmartel/dwv/releases/download/v0.34.0-beta.14/dwv-0.34.0-beta.14.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.13';
return '0.34.0-beta.14';
}

/**
Expand Down

0 comments on commit 910b2f8

Please sign in to comment.