Releases: NorthwoodsSoftware/GoJS
2.3.5
Changes for 2.3.5
Added Panel.addRowDefinition and Panel.addColumnDefinition as convenience methods for Panel.addRowColumnDefinition
Shape’s GraphObject.naturalBounds now correctly considers GraphObject.minSize and GraphObject.maxSize
Scroll-wheel fix for legacy browsers and synthetic events.
2.3.4
Changes for 2.3.4
- Fixed an animation issue with collapsed links incorrectly saving nested routes that were no longer valid.
- Fixes for SVG rendering of Graduated Panels and clipping areas.
- SVG renderer now sets the
<svg>element CSS todisplay: blockfor Diagram size consistency. - Fixed updating other links' JumpOver or JumpGap rendering when a link changes visibility.
- Elements of Spot Panels that have a GraphObject.stretch set and have a negative GraphObject.margin value will expand beyond their stretch size by that margin value.
2.3.3
Changes for 2.3.3
- Added
initoptional argument to RowColumnDefinition constructor. - Added Panel.addRowColumnDefinition
- Fixed some Pointer events when using both a touch device and a mouse or trackpad.
- Fix for Overview drawing when the scale is very small.
- Fixes for SVG rendering.
- Grid fix when running Chrome with the debugger open.
- Fixed an animation issue with collapsed links incorrectly saving routes.
2.3.2
Changes for 2.3.2
- Fixed updating the cursor when dragging after possibly auto-scrolling.
- Fixed successive calls to Diagram.makeSvg creating potentially incomplete SVG.
- Fixed routing of particular Bezier links by LayeredDigraphLayout when using the new LayeredDigraphLayout.alignOption
- Setting Diagram.div to a DIV from null will no longer redo Diagram initialization if it had been set to a DIV previously.
2.3.1
Changes for 2.3.1
- Fixed Diagram.makeSVG when a background option is specified.
- Fixed successive calls to Diagram.makeSVG creating potentially blank SVG.
2.3.0
GoJS 2.3
New SVG Rendering Context
GoJS typically renders the Diagram to an HTML Canvas, and offers exporting the Diagram scene to image formats and SVG. In GoJS 2.3, the library now supports rendering to a live SVG context in addition to the default Canvas context. Visually there should be no changes, and performance will be faster when using the default Canvas context, but the SVG context may be useful for applications where DOM accessibility is paramount, either because users need to select and copy text, or because screen readers need access to all text in the application.
The new SVG rendering context comes with significant changes and upgrades to the GoJS SVG structure, including export SVG. For example, an object with a clip-path would formerly point to a <clippath> via URL, and now clipping paths are defined in-line. These changes make some elementFinished code in Diagram.makeSVG potentially incompatible.
Read more about the SVG Rendering Context here
New Layered Digraph Layout Options for Better Performance
Version 2.3 adds LayeredDigraphLayout.alignOption as a potentially faster alternative to LayeredDigraphLayout.packOption. When using this option, nodes are assigned coordinates within their layers to produce straighter paths of nodes and small edge lengths.
General New Features in GoJS 2.3
- Added PathFigure.isEvenOdd - PathFigures now support the "even-odd" fill rule. This can be set with the new property PathFigure.isEvenOdd or when making SVG-like Path syntax, with the fill rule
F0(instead of the defaultForF1), eg"F0 M 0 0 L 50 50 ...". - Added Size.inflate.
- Bugfixes for shadow drawing in TableRows and TableColumns, and when Shapes have a background set.
- Bugfixes for Table Panel separators when the Panel is scaled.
- Arguments passed to Diagram.scroll have been made consistent. Scrolling
'left'150 pixels will scroll left, but scrolling'left'-150 pixels will scroll right. - GraphObject.build now takes a third argument, which is passed to GraphObject.takeBuilderArgument, if used.
- Point.intersectingLineSegments now tests for collapsed lines.
- The PDF samples in
projects/pdfnow use SVG for rendering diagrams, instead of raster images. This improves the quality of the pages and uses much less memory for large diagrams.
At the same time, we have released GoJS 2.2.23. GoJS 2.3 also contains these changes.
Changes for 2.2.23
- Line (and therefore Link) intersection fix for some shape geometries containing arcs and beziers, when the start or end of the curve overlaps the adjacent path point.
2.2.23
Changes for 2.2.23
- Line (and therefore Link) intersection fix for some shape geometries containing arcs and beziers, when the start or end of the curve overlaps the adjacent path point.
2.2.22
Changes for 2.2.22
- Disallow browser wheel events on the Diagram canvas from bubbling if the wheel has a horizontal component. This bubble prevention also prevents the browser in some systems from
- Fixed a bug where resetting Picture.source to the empty string may cause a property set error.
2.2.21
Changes for 2.2.21
- Improved Link.makeGeometry so that overrides do not need to test for situations where a Link has fewer than two points.
- Improved shadows when Diagram and Part are scaled.
2.2.20
Changes for 2.2.20
- Improved LinkingTool.doActivate to assign the location of the LinkingBaseTool.temporaryToNode (or the LinkingBaseTool.temporaryFromNode, if drawing a link in the reverse direction) so as to avoid momentarily seeing where the temporary node had been the last time the user tried to draw a new link.
- Corrected functionality when a browser cancels a Pointer event (for instance when the browser is minimized during ongoing Pointer events).
- Corrected GraphObject.mouseLeave sometimes not getting called when the user's pointer leaves the Diagram.
- Fixed iOS Safari text highlighting when dragging Pointer events out of a Diagram.
- Fixed a regression from 2.2.18 where link JumpOvers might cause "Change not within a transaction" warnings on model load.