diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Migration.md | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/Migration.md b/docs/Migration.md index 203dc1d..a7162fa 100644 --- a/docs/Migration.md +++ b/docs/Migration.md @@ -15,12 +15,20 @@ Alongside such changes, `:colorpicker` is no longer as necessary. It exists main After Material Dialog 2.x, a decision was made to enforce theming through xml styles only to avoid reflection. As a result, options to supply custom dialog colors are now removed (ie in the changelog dialog and color picker kprefs). -## Update ProgressAnimator +## ProgressAnimator `ProgressAnimator` has been completely rewritten to be an extension of `ValueAnimator`. This for the most part is not a breaking change, apart from the fact that creating an animator will not start it immediately. Make sure to call `.start()` to begin the animation. +## Gradle Plugin + +The plugin has been converted to kotlin objects. +Now, usage is done through the classes directly, and no extensions are provided within the project. +For instance, instead of using `kauDependencies`, we now use `kau.Dependencies`. +There is also no longer a need to use `apply plugin 'ca.allanwang.kau'`; +adding the plugin to the classpath suffices. + # v4.0.1-alpha02 * `kauParseFaq` is now synchronous. |