Skip to content

Releases: hyperdevs-team/mini-kotlin

1.2.0

19 Feb 11:24
Compare
Choose a tag to compare

Added

  • Add sharedActivityViewModel to Kodein extensions to support shared Activity view models.

Fixed

  • Fix ConcurrentModificationExceptions 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

07 Feb 13:37
149ba40
Compare
Choose a tag to compare

Added

  • Add new utilities in KodeinAndroidUtils to inject ViewModelProvider.Factory instances and retrieve ViewModels with by viewModel(params).

1.1.1

03 Feb 10:18
8ef9fbb
Compare
Choose a tag to compare

Added

  • Add new View extensions to change view and view lists visibility status and enabled/disabled status.

1.1.0

28 Jan 08:27
Compare
Choose a tag to compare

Added

  • Add TypedTask class in order to store simple metadata inside a Task.

1.0.9

28 Jan 07:53
Compare
Choose a tag to compare

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

28 Jan 07:44
Compare
Choose a tag to compare

Fixed

  • Fix logger not rendering correctly in logcat. Thanks @danielceinos!

1.0.7

28 Jan 07:40
Compare
Choose a tag to compare

Changed

  • Make Resource.empty an object instead of a class.

1.0.6

28 Jan 07:39
Compare
Choose a tag to compare

Fixed

  • Fix Resource and Task toString functions.

1.0.5

28 Jan 07:38
Compare
Choose a tag to compare

Fixed

  • Fix Task toString function.

1.0.4

28 Jan 07:36
Compare
Choose a tag to compare

Added

  • Add equals and hashCode to Resource class to ease comparisons.