diff options
author | Allan Wang <me@allanwang.ca> | 2018-10-18 00:32:33 -0400 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2018-10-18 00:32:33 -0400 |
commit | 572d470a2677eec0405a7b16ab9a2cfb954d6832 (patch) | |
tree | 536c6bdb298f7e9a176c53fde56982bf2384e195 /docs | |
parent | 096172ead4674bffd5dd83eb994dd68ac48b88ae (diff) | |
parent | 11f0d0fed07806965555490836d564d042c7b3ec (diff) | |
download | kau-572d470a2677eec0405a7b16ab9a2cfb954d6832.tar.gz kau-572d470a2677eec0405a7b16ab9a2cfb954d6832.tar.bz2 kau-572d470a2677eec0405a7b16ab9a2cfb954d6832.zip |
Merge dev
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Migration.md | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/Migration.md b/docs/Migration.md index fe04270..ea30c0d 100644 --- a/docs/Migration.md +++ b/docs/Migration.md @@ -2,6 +2,13 @@ Below are some highlights on major refactoring/breaking changes +# v4.0.0 + +## 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. + # v3.8.0 Along with the update to support Android Studio 3.1, a lot of changes have occurred with other dependencies and with lint. @@ -11,10 +18,6 @@ Along with the update to support Android Studio 3.1, a lot of changes have occur Resource ids can be negatives due to the bit overflow. Instead, `INVALID_ID` has been introduced to signify an unset or invalid id. Methods such as `Context.string(id, fallback)` now check against `INVALID_ID` through equality rather than using an inequality to address this. -* Kotterknife has been deprecated in favour of `kotlin-android-extensions`. See [official docs](https://kotlinlang.org/docs/tutorials/android-plugin.html#view-binding). -* `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. -* KPref has been slightly refactored internally. Preferences backed by `StringSet` can now go back to `Set<String>` ## Deprecate Kotterknife |