All Versions
13
Latest Version
Avg Release Cycle
95 days
Latest Release
1864 days ago

Changelog History
Page 1

  • v1.1.92 Changes

    May 08, 2021

    ⚡️ Update version and jitpack builds

  • v1.1.91 Changes

    May 08, 2021

    ✂ Remove bintray uploading task
    ✂ remove dokka
    ⚡️ Update Kotlin version to 1.4.32
    ➕ Add JitPack dependencies

  • v1.1.9 Changes

    March 24, 2021

    ⚡️ Update Kotlin version to 1.4.31
    🔨 Small code refactoring

    There will be an annotation processing for event listener functions in 1.2.0

  • v1.1.7 Changes

    September 17, 2020

    Kotlin 1.4.10

  • v1.1.6 Changes

    June 27, 2020

    🛠 Fix bug with ConcurrentModificationException when subscribing to listener from handler function
    Kotlin version 1.3.72
    🔌 kdispatcher module fully migrated to kotlin dsl plugin

  • v1.1.3 Changes

    October 15, 2019

    ➕ Added new call function with infix callWith
    Kotlin version 1.3.50
    🔨 refactor of priority parameter in

    • subscribe(notif: String, priority: Int? = null, noinline sub: Subscriber<T>)
    • subscribeList(notifs: List<String>, priority: Int? = null, noinline sub: Subscriber<T>)

    📚 extend documentation

  • v1.0.1 Changes

    July 14, 2019

    ⚡️ Update Kotlin version to 1.3.41
    ✂ Remove all android packages from base module

  • v1.0.0 Changes

    December 24, 2018

    🚀 Final stable release with some sequenced functions IKDispatcher.subscribe and IKDispatcher.subscribeList return type IKDispatcher

  • v0.1.8 Changes

    August 23, 2018
    • min sdk 19
    • ➕ added IKDispatcher.subscribe(notif: String, noinline sub: Subscriber<T>) without priority
    • 🔄 changed IKDispatcher.subscribe(notif: String, noinline sub: Subscriber<T>, priority: Int? = null) params sorting
    • 🔄 changed HashMaps to ArrayMaps for better memory improvement
    • ➕ added check hasSubscribers in IKDispatcher.subscribeList extension method
  • v0.1.7 Changes

    August 06, 2018
    • ➕ added IKDispatcher.subscribeList for subscribing on the list of events
    • extend example