Skip to content

ScalaFX-Extras v.0.11.0

Latest
Compare
Choose a tag to compare
@jpsacha jpsacha released this 08 Apr 16:14
· 8 commits to master since this release
v.0.11.0

This is a feature release of ScalaFX-Extras.

New features

  • ImageDisplay: add the ability to display simple overlays on top of the images [#38]

API Breaking Changes

  • ImageDisplay: image assignment is now an Option, the JavaFX null is not accepted
    • imageDisplay.image = image will need to be changed to imageDisplay.setImage(image) or imageDisplay.image = Option(image)
    • imageDisplay.image = null will need to be changed to imageDisplay.image = None

Bug fixes

  • ImageDisplay: fix some issues with "zoom-to-fit" and "flip" applied at the same time

To post questions, please use Project Discussions or ScalaFX Users Group

Full Changelog: v.0.10.1...v.0.11.0