Releases: hyperdevs-team/mini-kotlin
Releases · hyperdevs-team/mini-kotlin
1.2.0
Added
- Add
sharedActivityViewModel
to Kodein extensions to support shared Activity view models.
Fixed
- Fix
ConcurrentModificationException
s in store subscriptions' iteration by adding safe iteration over them.
Changed
- Rename
toggleAbility
to toggleEnabled
as the name was confusing.
- Upgraded project dependencies.
IMPORTANT: as a result of upgrading dependencies, you may need to target Java 8.
1.1.2
Added
- Add new utilities in
KodeinAndroidUtils
to inject ViewModelProvider.Factory
instances and retrieve ViewModel
s with by viewModel(params)
.
1.1.1
Added
- Add new
View
extensions to change view and view lists visibility status and enabled/disabled status.
1.1.0
Added
- Add
TypedTask
class in order to store simple metadata inside a Task
.
1.0.9
Added
- Add support for custom backpressure strategies when calling
Store.flowable
.
The default strategy is BackpressureStrategy.BUFFER
.
Fixed
- Fix
Store.flowable
not unsubscribing correctly when disposed.
1.0.8
Fixed
- Fix logger not rendering correctly in logcat. Thanks @danielceinos!
1.0.7
Changed
- Make
Resource.empty
an object instead of a class.
1.0.6
Fixed
- Fix
Resource
and Task
toString
functions.
1.0.5
Fixed
- Fix
Task
toString
function.
1.0.4
Added
- Add
equals
and hashCode
to Resource class to ease comparisons.