diff options
-rw-r--r-- | buildSrc/src/main/kotlin/ca/allanwang/kau/Plugins.kt | 3 | ||||
-rw-r--r-- | buildSrc/src/main/kotlin/ca/allanwang/kau/Versions.kt | 6 | ||||
-rw-r--r-- | core-ui/src/main/res-public/values/public.xml | 2 | ||||
-rw-r--r-- | core/src/main/res-public/values/public.xml | 2 | ||||
-rw-r--r-- | docs/Changelog.md | 4 |
5 files changed, 10 insertions, 7 deletions
diff --git a/buildSrc/src/main/kotlin/ca/allanwang/kau/Plugins.kt b/buildSrc/src/main/kotlin/ca/allanwang/kau/Plugins.kt index c8265ab..30caad7 100644 --- a/buildSrc/src/main/kotlin/ca/allanwang/kau/Plugins.kt +++ b/buildSrc/src/main/kotlin/ca/allanwang/kau/Plugins.kt @@ -10,7 +10,6 @@ open class Plugins { val androidMaven = "com.github.dcendents:android-maven-gradle-plugin:${v.mavenPlugin}" val playPublisher = "com.github.triplet.gradle:play-publisher:${v.playPublishPlugin}" val dexCount = "com.getkeepsafe.dexcount:dexcount-gradle-plugin:${v.dexCountPlugin}" - val gitVersion = - "gradle.plugin.com.gladed.gradle.androidgitversion:gradle-android-git-version:${v.gitVersionPlugin}" + val gitVersion = "com.gladed.androidgitversion:gradle-android-git-version:${v.gitVersionPlugin}" val spotless = "com.diffplug.spotless:spotless-plugin-gradle:${v.spotless}" }
\ No newline at end of file diff --git a/buildSrc/src/main/kotlin/ca/allanwang/kau/Versions.kt b/buildSrc/src/main/kotlin/ca/allanwang/kau/Versions.kt index 8c14a92..d48e236 100644 --- a/buildSrc/src/main/kotlin/ca/allanwang/kau/Versions.kt +++ b/buildSrc/src/main/kotlin/ca/allanwang/kau/Versions.kt @@ -27,7 +27,7 @@ open class Versions { val kotlin = "1.3.31" // https://github.com/Kotlin/kotlinx.coroutines/releases - val coroutines = "1.2.1" + val coroutines = "1.3.0-M1" // https://github.com/mikepenz/AboutLibraries/releases val aboutLibraries = "6.2.3" @@ -70,11 +70,11 @@ open class Versions { // https://github.com/dcendents/android-maven-gradle-plugin/releases val mavenPlugin = "2.1" // https://github.com/Triple-T/gradle-play-publisher/releases - val playPublishPlugin = "2.1.0" + val playPublishPlugin = "2.2.1" // https://github.com/KeepSafe/dexcount-gradle-plugin/releases val dexCountPlugin = "0.8.6" // https://github.com/gladed/gradle-android-git-version/releases - val gitVersionPlugin = "0.4.7" + val gitVersionPlugin = "0.4.9" }
\ No newline at end of file diff --git a/core-ui/src/main/res-public/values/public.xml b/core-ui/src/main/res-public/values/public.xml index f46b3eb..af7ce44 100644 --- a/core-ui/src/main/res-public/values/public.xml +++ b/core-ui/src/main/res-public/values/public.xml @@ -1,5 +1,5 @@ <resources xmlns:tools='http://schemas.android.com/tools' tools:ignore='ResourceName'> -<!-- AUTO-GENERATED FILE. DO NOT MODIFY. public.xml is generated by the generatepublicxml gradle task --> +<!-- AUTO-GENERATED FILE. DO NOT MODIFY. public.xml is generated by the generatepublicxml gradle task --> <public name='kau_recycler_detached_background' type='layout' /> <public name='kau_elastic_recycler_activity' type='layout' /> <public name='kau_recycler_textslider' type='layout' /> diff --git a/core/src/main/res-public/values/public.xml b/core/src/main/res-public/values/public.xml index ea8ed73..9761199 100644 --- a/core/src/main/res-public/values/public.xml +++ b/core/src/main/res-public/values/public.xml @@ -1,5 +1,5 @@ <resources xmlns:tools='http://schemas.android.com/tools' tools:ignore='ResourceName'> -<!-- AUTO-GENERATED FILE. DO NOT MODIFY. public.xml is generated by the generatepublicxml gradle task --> +<!-- AUTO-GENERATED FILE. DO NOT MODIFY. public.xml is generated by the generatepublicxml gradle task --> <public name='kau_slide_in_top' type='anim' /> <public name='kau_slide_in_left' type='anim' /> <public name='kau_slide_out_right' type='anim' /> diff --git a/docs/Changelog.md b/docs/Changelog.md index a2c38e1..61e5fb7 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,5 +1,9 @@ # Changelog +## v5.0.0 +* :core: Update Material Dialogs to 3.x +* :colorpicker: Strip down to just the interface; unless you require the accent palette, it may be fine to just use MD's color extension + ## v4.1.0 * :core: Deprecate NetworkUtils, as the underlying functions are deprecated * :core: Permission manager no longer synchronized, as all actions should occur in the main thread |