diff options
author | Allan Wang <me@allanwang.ca> | 2017-08-07 22:20:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-07 22:20:57 -0700 |
commit | 02e1dbc84425b0ac7f771c82f70444f742397452 (patch) | |
tree | 05e978e7588e30ce653428671f3d9f5df5397385 /sample | |
parent | 187d8e64dc7189f63707d154166867084662dbe3 (diff) | |
download | kau-02e1dbc84425b0ac7f771c82f70444f742397452.tar.gz kau-02e1dbc84425b0ac7f771c82f70444f742397452.tar.bz2 kau-02e1dbc84425b0ac7f771c82f70444f742397452.zip |
Release 3.3.0 (#32)3.3.0
* Rewrite Logger (#29)
* Remove dependency on timber
* Update logger
* Reorder throwabl
* Fix lint
* Update readme
* Blank target
* Create Zip (#30)
* Finish zips with tests
* Finalize
* Update changelog
* Add log hooks
* Open most logging functions
* Remap kpref items (#31)
* Update readme
* Generate files and prepare release
* Kpref -
Diffstat (limited to 'sample')
-rw-r--r-- | sample/src/main/kotlin/ca/allanwang/kau/sample/SL.kt | 8 | ||||
-rw-r--r-- | sample/src/main/kotlin/ca/allanwang/kau/sample/SampleApp.kt | 4 | ||||
-rw-r--r-- | sample/src/main/res/xml/kau_changelog.xml | 6 |
3 files changed, 8 insertions, 10 deletions
diff --git a/sample/src/main/kotlin/ca/allanwang/kau/sample/SL.kt b/sample/src/main/kotlin/ca/allanwang/kau/sample/SL.kt deleted file mode 100644 index a77ffe8..0000000 --- a/sample/src/main/kotlin/ca/allanwang/kau/sample/SL.kt +++ /dev/null @@ -1,8 +0,0 @@ -package ca.allanwang.kau.sample - -import ca.allanwang.kau.logging.TimberLogger - -/** - * Created by Allan Wang on 2017-06-08. - */ -object SL: TimberLogger("KAU Sample")
\ No newline at end of file diff --git a/sample/src/main/kotlin/ca/allanwang/kau/sample/SampleApp.kt b/sample/src/main/kotlin/ca/allanwang/kau/sample/SampleApp.kt index 7fdc83d..541eaec 100644 --- a/sample/src/main/kotlin/ca/allanwang/kau/sample/SampleApp.kt +++ b/sample/src/main/kotlin/ca/allanwang/kau/sample/SampleApp.kt @@ -1,7 +1,7 @@ package ca.allanwang.kau.sample import android.app.Application -import timber.log.Timber +import ca.allanwang.kau.logging.KL /** * Created by Allan Wang on 2017-06-08. @@ -9,7 +9,7 @@ import timber.log.Timber class SampleApp : Application() { override fun onCreate() { super.onCreate() - Timber.plant(Timber.DebugTree()) + KL.debug(BuildConfig.DEBUG) KPrefSample.initialize(this, "pref_sample") } }
\ No newline at end of file diff --git a/sample/src/main/res/xml/kau_changelog.xml b/sample/src/main/res/xml/kau_changelog.xml index 96ae965..6008ae1 100644 --- a/sample/src/main/res/xml/kau_changelog.xml +++ b/sample/src/main/res/xml/kau_changelog.xml @@ -8,9 +8,15 @@ <version title="v3.3.0"/> <item text=":core: Create debounce methods" /> + <item text=":core: Create zip methods" /> + <item text=":core: [Breaking] Logging base has been renamed to KauLogger and no longer depends on timber" /> + <item text=":kpref-activity: Rewrote binding logic to use only one recyclerview" /> + <item text=":kpref-activity: [Breaking] Removed sliding toolbar and use normal toolbar title" /> + <item text=":kpref-activity: Remove :core-ui: dependency" /> <item text=":searchview: [Breaking] remove reactive dependencies and stick with basic callbacks" /> <item text="" /> <item text="" /> + <item text="" /> <version title="v3.2.5"/> <item text=":core: Fix FAQ background" /> |