Skip to content

Releases: fornewid/material-motion-compose

1.0.5

12 Aug 17:48
Compare
Choose a tag to compare

Built to work with Jetpack Compose 1.5.0-rc01

What’s Changed

1.0.4

09 Jul 17:50
Compare
Choose a tag to compare

Built to work with Jetpack Compose 1.5.0-beta03

What’s Changed

1.0.3

15 Jun 10:50
Compare
Choose a tag to compare

Built to work with Jetpack Compose 1.5.0-beta02

What’s Changed

1.0.2

16 May 16:40
Compare
Choose a tag to compare

Built to work with Jetpack Compose 1.5.0-alpha04

What’s Changed

  • Updates to Compose 1.5.0-alpha04 (#196) @fornewid
  • Remove dependencies for android package in CircularReveal.kt file (#195) @fornewid

0.12.3

16 May 16:45
Compare
Choose a tag to compare

Built to work with

  • Compose Multiplatform 1.4.0 (:core)
  • Jetpack Compose BOM 2023.05.00 (:navigation)

Key Changes

🖥️ [Core] Compose Multiplatform is now supported in 'core' library!

plugins {
    kotlin("multiplatform")
    id("org.jetbrains.compose")
}

kotlin {
    android()
    jvm("desktop")
    ios()
    iosSimulatorArm64()

    sourceSets {
        val commonMain by getting {
            dependencies {
                implementation(compose.desktop.currentOs)
                implementation("io.github.fornewid:material-motion-compose-core:0.12.3")
            }
        }
    }
}

What’s Changed

0.12.2

16 May 16:42
Compare
Choose a tag to compare

Built to work with

  • Compose Multiplatform 1.4.0 (:core)
  • Jetpack Compose BOM 2023.04.01 (:navigation)

Key Changes

🖥️ [Core] Compose Multiplatform is now supported in 'core' library!

plugins {
    kotlin("multiplatform")
    id("org.jetbrains.compose")
}

kotlin {
    android()
    jvm("desktop")
    ios()
    iosSimulatorArm64()

    sourceSets {
        val commonMain by getting {
            dependencies {
                implementation(compose.desktop.currentOs)
                implementation("io.github.fornewid:material-motion-compose-core:0.12.2")
            }
        }
    }
}

What’s Changed

0.12.1

26 Apr 16:00
Compare
Choose a tag to compare

Built to work with

  • Compose Multiplatform 1.4.0 (:core)
  • Jetpack Compose BOM 2023.04.01 (:navigation)

Key Changes

🖥️ [Core] Compose Multiplatform is now supported in 'core' library!

plugins {
    kotlin("multiplatform")
    id("org.jetbrains.compose")
}

kotlin {
    android()
    jvm("desktop")
    ios()
    iosSimulatorArm64()

    sourceSets {
        val commonMain by getting {
            dependencies {
                implementation(compose.desktop.currentOs)
                implementation("io.github.fornewid:material-motion-compose-core:0.12.1")
            }
        }
    }
}

What’s Changed

0.12.0

26 Apr 01:17
Compare
Choose a tag to compare
0.12.0 Pre-release
Pre-release

Built to work with

  • Compose Multiplatform 1.4.0 (:core)
  • Jetpack Compose BOM 2023.04.01 (:navigation)

Key Changes

🖥️ [Core] Compose Multiplatform is now supported in 'core' library!

⚠️ WARNING: This version does not work on iOS. ⚠️

plugins {
    kotlin("multiplatform")
    id("org.jetbrains.compose")
}

kotlin {
    android()
    jvm("desktop")

    //WARNING: This version does not work on iOS.
    //ios()
    //iosSimulatorArm64()

    sourceSets {
        val commonMain by getting {
            dependencies {
                implementation(compose.desktop.currentOs)
                implementation("io.github.fornewid:material-motion-compose-core:0.12.0")
            }
        }
    }
}

What’s Changed

0.11.3

23 Apr 09:24
Compare
Choose a tag to compare

Built to work with Jetpack Compose BOM 2023.04.01

What’s Changed

0.11.2

09 Apr 03:32
Compare
Choose a tag to compare

Built to work with Jetpack Compose BOM 2023.04.00

What’s Changed