Skip to content

Commit

Permalink
Bump version 2.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoalvesdefaria committed Jul 5, 2018
1 parent 79c5f08 commit 37c6c02
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.3.7] - 2018-07-05
### Added
- Added an utility file drawing.js to make it simpler to draw shapes (thanks @timleslie)

### Changed
- Revamped freehandROI pencil mode and added handle editing (thanks @JamesAPetts)
- Deprecated drawCircle.js and drawEllipse.js files and recommended use of drawing.js instead (thanks @timleslie)
- Replaced all duplicated context declarations and its initial transformation with getNewContext (thanks @timleslie)
- Using EVENTS.NEW_IMAGE constant instead of 'cornerstonenewimage' string on scroll.js
- Changed the way things are drawn. Making use of draw method of drawing.js to follow W3C canvas state save/restore specification (thanks @timleslie)

### Fixed
- Fixed incorrect center point for rotation calculations on rotation tool (thanks @medihack)
- Prevent stackImagePositionOffsetSynchronizer from throwing an exception when no imagePlane is set (thanks @freund17)
- Fixed errors being thrown after usage of magnify tool (thanks @dlwire)

## [2.3.6] - 2018-06-06
### Fixed
- Fixed X and Y values on Length tool (thanks @catalinaduplat)
Expand Down
4 changes: 2 additions & 2 deletions examples/layeredImageStacks/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ <h1>

<!-- include the cornerstone library -->
<script src="../cornerstone.js"></script>

<script src="../cornerstoneMath.min.js"></script>

<!-- include the cornerstone tools library -->
Expand Down Expand Up @@ -204,7 +204,7 @@ <h1>
colormap: 'jet',
voi: {
windowWidth: 30,
windowCenter: 17
windowCenter: 17
}
},
name: 'PET'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cornerstone-tools",
"version": "2.3.6",
"version": "2.3.7",
"description": "Medical imaging tools for the Cornerstone library",
"main": "./dist/cornerstoneTools.min.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '2.3.6';
export default '2.3.7';

0 comments on commit 37c6c02

Please sign in to comment.