Skip to content

Releases: skydoves/landscapist

1.3.3

21 Aug 00:37
502a6bc
Compare
Choose a tag to compare

🎉 Released new version 1.3.3! 🎉

What's New?

  • circularRevealedEnabled and circularRevealedDuration attribute has been removed.
    Instead, we can use CircularReveal for implementing circular reveal animation. (#41)
GlideImage(
  imageModel = imageUrl,
  circularReveal = CircularReveal(duration = 250, onFinishListener = {  //..// } ),
  • Added CircularRevealFinishListener in CircularReveal. We can listen when the animation is finished.

1.3.2

12 Aug 15:59
5309f4d
Compare
Choose a tag to compare

🎉 Released a new version 1.3.2! 🎉

What's New?

Palette

We can extract major (theme) color profiles using BitmapPalette. Basically, we should use BitmapPalette for extracting the major colors from images. You can reference which kinds of colors can be extracted here.

var palette by remember { mutableStateOf<Palette?>(null) }

GlideImage( // CoilImage, FrescoImage also can be used.
  imageModel = poster?.poster!!,
  bitmapPalette = BitmapPalette {
    palette = it
  }
)

Crossfade(
  targetState = palette,
  modifier = Modifier
    .padding(horizontal = 8.dp)
    .size(45.dp)
) {
  Box(
    modifier = Modifier
      .background(color = Color(it?.lightVibrantSwatch?.rgb ?: 0))
      .fillMaxSize()
  )
}

1.3.1

04 Aug 23:57
9f22cfc
Compare
Choose a tag to compare

🎉 Released a new version 1.3.1! 🎉

What's New?

  • Migrated Jetpack Compose to 1.0.1.
  • Updated internal Koltin to 1.5.21

1.3.0

28 Jul 17:23
d7a706a
Compare
Choose a tag to compare

🎉 Released a new version 1.3.0! 🎉

What's New?

  • Migrated Jetpack Compose to 1.0.0 stable! 🎉

1.2.8

16 Jul 12:47
81d7927
Compare
Choose a tag to compare

🎉 Released a new version 1.2.8! 🎉

What's New?

  • CoilImage, GlideImage, and FrescoImage will be recomposed when the imageUri or imageModel would be changed. (#28)
  • Added explicit modifiers against API explicit mode: strict.

1.2.7

15 Jul 10:22
0b51455
Compare
Choose a tag to compare

🎉 Released a new version 1.2.7! 🎉

What's New?

  • Migrated to the compose version rc02.

1.2.6

02 Jul 11:31
812e70f
Compare
Choose a tag to compare

🎉 Released a new version 1.2.6! 🎉

What's New?

  • Migrated to the compose version rc01.

1.2.5

30 Jun 11:26
7a7379b
Compare
Choose a tag to compare

🎉 Released a new version 1.2.5! 🎉

What's New?

  • Updated Fresco version to 2.5.0.
  • Used BaseBitmapReferenceDataSubscriber for cases where the client wants access to a bitmap reference. (#29)

1.2.4

17 Jun 15:03
0251d5e
Compare
Choose a tag to compare

🎉 Released a new version 1.2.4! 🎉

What's New?

1.2.3

03 Jun 12:23
584f8c6
Compare
Choose a tag to compare

🎉 Released a new version 1.2.3! 🎉

What's New?

  • Updated compose version to beta08.
  • Update Coil version to 1.2.1.
  • Removed unused jcenter repository internally.