aboutsummaryrefslogtreecommitdiff
path: root/docs/Migration.md
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-06-07 16:13:51 -0400
committerGitHub <noreply@github.com>2019-06-07 16:13:51 -0400
commit065f2db88e4b87b53b3216a5313d5e1e22fa2867 (patch)
treed03866b74ef8146dbd900d20994de47a0de6c705 /docs/Migration.md
parenteb9317015c6535bfa36166d254ec954f81d8df97 (diff)
parentd30cdac9ca74ca5e202c681af228fa4ca3a8e389 (diff)
downloadkau-065f2db88e4b87b53b3216a5313d5e1e22fa2867.tar.gz
kau-065f2db88e4b87b53b3216a5313d5e1e22fa2867.tar.bz2
kau-065f2db88e4b87b53b3216a5313d5e1e22fa2867.zip
Merge pull request #202 from AllanWang/plugin-object
Plugin object
Diffstat (limited to 'docs/Migration.md')
-rw-r--r--docs/Migration.md10
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.