Skip to content

Commit

Permalink
Beta 0.33.0-beta.25
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Dec 22, 2023
1 parent 4936b93 commit 94efd52
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 @@ -3435,6 +3435,13 @@ export declare class ToolboxController {
* Initialise.
*/
init(): void;
/**
* Enable or disable shortcuts. The 'init' methods enables shortcuts
* by default. Call this method after init to disable shortcuts.
*
* @param {boolean} flag True to enable shortcuts.
*/
enableShortcuts(flag: boolean): void;
/**
* Get the tool list.
*
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.33.0-beta.24",
"version": "0.33.0-beta.25",
"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 @@ -730,6 +730,7 @@ export class TagValueExtractor {
export class ToolboxController {
constructor(toolList: object);
bindLayerGroup(layerGroup: LayerGroup, layer: ViewLayer | DrawLayer): void;
enableShortcuts(flag: boolean): void;
getSelectedTool(): object;
getSelectedToolEventHandler(eventType: string): Function;
getToolList(): any[];
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.33.0-beta.24.</i>",
"footer": "<i>Documentation generated for dwv v0.33.0-beta.25.</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.33.0-beta.24/dwv-0.33.0-beta.24.min.js",
"js_external": "https://github.com/ivmartel/dwv/releases/download/v0.33.0-beta.25/dwv-0.33.0-beta.25.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 @@ -33,7 +33,7 @@ import {DataElement} from '../dicom/dataElement';
* @returns {string} The version of the library.
*/
export function getDwvVersion() {
return '0.33.0-beta.24';
return '0.33.0-beta.25';
}

/**
Expand Down

0 comments on commit 94efd52

Please sign in to comment.