aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-06-07 15:06:21 -0400
committerAllan Wang <me@allanwang.ca>2019-06-07 15:06:21 -0400
commit29dcfc378bfd1466578a15c5f3b039a4a2d28927 (patch)
tree0d74706fa9e719341ddd24f2c6152f1083581c7f
parent7809e09bab7ce7ed17d8236892674d662dc6b8af (diff)
downloadkau-29dcfc378bfd1466578a15c5f3b039a4a2d28927.tar.gz
kau-29dcfc378bfd1466578a15c5f3b039a4a2d28927.tar.bz2
kau-29dcfc378bfd1466578a15c5f3b039a4a2d28927.zip
Update migration
-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.