Aidan Follestad 6 tahun lalu
induk
melakukan
dd2e825204

+ 6 - 6
README.md

@@ -28,7 +28,7 @@ core and normal-use functionality.
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:core:2.8.0'
+  implementation 'com.afollestad.material-dialogs:core:2.8.1'
 }
 ```
 
@@ -43,7 +43,7 @@ The `input` module contains extensions to the core module, such as a text input
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:input:2.8.0'
+  implementation 'com.afollestad.material-dialogs:input:2.8.1'
 }
 ```
  
@@ -58,7 +58,7 @@ The `files` module contains extensions to the core module, such as a file and fo
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:files:2.8.0'
+  implementation 'com.afollestad.material-dialogs:files:2.8.1'
 }
 ```
 
@@ -73,7 +73,7 @@ The `color` module contains extensions to the core module, such as a color choos
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:color:2.8.0'
+  implementation 'com.afollestad.material-dialogs:color:2.8.1'
 }
 ```
 
@@ -88,7 +88,7 @@ The `datetime` module contains extensions to make date, time, and date-time pick
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:datetime:2.8.0'
+  implementation 'com.afollestad.material-dialogs:datetime:2.8.1'
 }
 ```
 
@@ -103,6 +103,6 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:lifecycle:2.8.0'
+  implementation 'com.afollestad.material-dialogs:lifecycle:2.8.1'
 }
 ```

+ 6 - 1
RELEASE_NOTES.md

@@ -1,5 +1,10 @@
-2.8.0
+2.8.1
 
+1. Make some classes `internal` which don't need to be exposed to consumers.
+2. Allow plain date and time dialogs to require a future date/time, like the datetime dialog does.
+3. When the datetime dialogs require a future time, the action button is auto-invalidated when the system time changes.
+
+### In 2.8.0:
 1. Kotlin 1.3.30.
 2. Add an `updateListItems(...)` method to update plain/single/multi-choice items after dialog creation.
 3. Fix `datetime` dialog layouts looking uncentered by only applying dialog width wrap in landscape.

+ 2 - 2
dependencies.gradle

@@ -3,8 +3,8 @@ ext.versions = [
     minSdk              : 16,
     compileSdk          : 28,
     buildTools          : '28.0.3',
-    publishVersion      : '2.8.0',
-    publishVersionCode  : 241,
+    publishVersion      : '2.8.1',
+    publishVersionCode  : 242,
 
     // Plugins
     gradlePlugin        : '3.4.0',

+ 1 - 1
documentation/COLOR.md

@@ -16,7 +16,7 @@ The `color` module contains extensions to the core module, such as a color choos
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:color:2.8.0'
+  implementation 'com.afollestad.material-dialogs:color:2.8.1'
 }
 ```
 

+ 1 - 1
documentation/CORE.md

@@ -35,7 +35,7 @@ core and normal-use functionality.
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:core:2.8.0'
+  implementation 'com.afollestad.material-dialogs:core:2.8.1'
 }
 ```
 

+ 1 - 1
documentation/DATETIME.md

@@ -16,7 +16,7 @@ The `datetime` module contains extensions to make date, time, and date-time pick
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:datetime:2.8.0'
+  implementation 'com.afollestad.material-dialogs:datetime:2.8.1'
 }
 ```
 

+ 1 - 1
documentation/FILES.md

@@ -23,7 +23,7 @@ The `files` module contains extensions to the core module, such as a file and fo
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:files:2.8.0'
+  implementation 'com.afollestad.material-dialogs:files:2.8.1'
 }
 ```
 

+ 1 - 1
documentation/INPUT.md

@@ -19,7 +19,7 @@ The `input` module contains extensions to the core module, such as a text input
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:input:2.8.0'
+  implementation 'com.afollestad.material-dialogs:input:2.8.1'
 }
 ```
 

+ 1 - 1
documentation/LIFECYCLE.md

@@ -15,7 +15,7 @@ The `lifecycle` module contains extensions to make dialogs work with AndroidX li
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:lifecycle:2.8.0'
+  implementation 'com.afollestad.material-dialogs:lifecycle:2.8.1'
 }
 ```