Skip to content

v3.5.0

Compare
Choose a tag to compare
@makedonsky94 makedonsky94 released this 08 Aug 10:55
· 127 commits to master since this release

Enhancement

  • Add option to fix right edge (see tradingview/lightweight-charts#218)
  • Drop restriction for min bar spacing value (see tradingview/lightweight-charts#558)
  • Add stack trace from javascript. Also improve collecting of native stack trace in order to make available grouping of crashes in error trackers like Firebase Crashlytics. (see #58)
  • Add method for taking screenshots (see #50)
  • Add delegation of touch events to external listeners (see #64)

Breaking changes

  • Add option to reset color (see #41). IntColor is now an inheritance of Colorable interface. Migration available through the extension toIntColor().

    Before:

    layout = layoutOptions {
        backgroundColor = Color.LTGRAY
        textColor = Color.BLACK
    }

    Now:

    layout = layoutOptions {
        backgroundColor = Color.LTGRAY.toIntColor()
        textColor = Color.BLACK.toIntColor()
    }
  • ChartsView is now an inheritance of FrameLayout. If you need WebView's API please consider to open an issue. (see #38)

Fixes

  • Fix kdoc (see #39)