diff options
author | Allan Wang <me@allanwang.ca> | 2020-02-23 15:34:01 -0800 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2020-02-23 15:34:01 -0800 |
commit | 3e7f62f89bc4e95cfae7394463e3fd503777011f (patch) | |
tree | 0df25ed277c2084d22005bc48be17e05f88dd539 /docs | |
parent | 3fa13a3a84d34fd0d96f26d6c5dea0e0671dd6c4 (diff) | |
download | kau-3e7f62f89bc4e95cfae7394463e3fd503777011f.tar.gz kau-3e7f62f89bc4e95cfae7394463e3fd503777011f.tar.bz2 kau-3e7f62f89bc4e95cfae7394463e3fd503777011f.zip |
Move config builder out of constructor
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Changelog.md | 1 | ||||
-rw-r--r-- | docs/Migration.md | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/docs/Changelog.md b/docs/Changelog.md index 576ac96..2f9e591 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,6 +1,7 @@ # Changelog ## v5.3.0 +* :about: Moved config builder inside activity * :color: Allow option to disable selected ring * :core: Breaking KPref changes; see migration diff --git a/docs/Migration.md b/docs/Migration.md index b0d0079..0941667 100644 --- a/docs/Migration.md +++ b/docs/Migration.md @@ -14,6 +14,10 @@ An example can be found in the sample app test class. Also note that to better support in memory preferences, `reset()` will clear the in memory content for both variants, meaning that in memory preferences will reset to default. Previously, in memory `reset()` did nothing. +## AboutActivityBase + +`configBuilder` was previously required in the constructor, but is now an open function so that activity fields can be used in the builder. + # v5.1.0 ## KPref |