diff options
author | Allan Wang <me@allanwang.ca> | 2019-06-07 13:20:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-07 13:20:02 -0400 |
commit | f6dd40662ce3cc84b2c47ceecc0983f93e47384d (patch) | |
tree | 99b563b8c234330d2bbbc0145f086d8691ee9376 /docs/Migration.md | |
parent | 1e3cb74579a3297460cd4085c57942138c5805a2 (diff) | |
parent | 5d86d9089697b152192b2786fbe0c708dd8b5e2b (diff) | |
download | kau-f6dd40662ce3cc84b2c47ceecc0983f93e47384d.tar.gz kau-f6dd40662ce3cc84b2c47ceecc0983f93e47384d.tar.bz2 kau-f6dd40662ce3cc84b2c47ceecc0983f93e47384d.zip |
Merge pull request #163 from AllanWang/feature/progressanimator
Feature/progressanimator
Diffstat (limited to 'docs/Migration.md')
-rw-r--r-- | docs/Migration.md | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/docs/Migration.md b/docs/Migration.md index c0816d4..593056e 100644 --- a/docs/Migration.md +++ b/docs/Migration.md @@ -4,9 +4,19 @@ Below are some highlights on major refactoring/breaking changes # v5.0.0 -* Material Dialog is now 3.x. This leads to a whole new API, but fortunately it is based around kotlin. Please refer to [MD's documents](https://github.com/afollestad/material-dialogs/tree/3.0.0-rc2/documentation) for the new methods. - * Alongside such changes, `:colorpicker` is no longer as necessary. It exists mainly to provide an internal interface for other submodules. - +## Material Dialog Update + +Material Dialog is now 3.x. +This leads to a whole new API, but fortunately it is based around kotlin. +Please refer to [MD's documents](https://github.com/afollestad/material-dialogs/tree/3.0.0-rc2/documentation) for the new methods. + +Alongside such changes, `:colorpicker` is no longer as necessary. It exists mainly to provide an internal interface for other submodules. + +## Update 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. # v4.0.1-alpha02 |