Skip to content

Releases: rosenpin/fading-text-view

3.3

28 Dec 19:23
a2058a6
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.2...3.3

v3.2

02 Jun 19:31
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.1...3.2

v3.1

02 Jun 15:09
0e39e1e
Compare
Choose a tag to compare

What's Changed

  • Converted FadingTextView file from Java to Kotlin by @ebayraktar in #22

New Contributors

Full Changelog: 3.0...3.1

v3.0

07 Aug 13:15
777d6a9
Compare
Choose a tag to compare

What's Changed

  • Added fadeTo() feature by @git-igmoreno in #17

New Contributors

  • @git-igmoreno made their first contribution in #17

Full Changelog: v2.6...3.0

2.6

06 Jun 20:50
Compare
Choose a tag to compare
2.6

What's Changed

New Contributors

Full Changelog: 2.5...v2.6

Note

This is not a new release, it's v2.6 that was released on October 2020.

Libraries Update

25 Oct 22:56
Compare
Choose a tag to compare
  • Updated support library to 26.1.0
  • Updated build tools and gradle version
  • Minor refactoring

Libraries Update

25 Jul 10:20
Compare
Choose a tag to compare

Updated support libraries to 26.0.0

Updated libraries

07 Apr 16:43
Compare
Choose a tag to compare

Updated support libraries

Docs and more

10 Mar 18:51
Compare
Choose a tag to compare
  • Added documentation

  • Added a new refresh method to forcefully update the view

    This method should only be used to forcefully apply timeout changes
    It will dismiss the currently queued animation change and start a new animation

  • setTimeout(int) is now deprecated, please use setTimeout(double, TimeUnit) instead

New version

10 Mar 17:34
Compare
Choose a tag to compare

You can now set the timeout period in time units other than milliseconds (Minutes, Seconds).
For example:

FTV.setTimeout(0.5, FadingTextView.TimeUnit.MINUTES);

Or:

FTV.setTimeout(30, FadingTextView.TimeUnit.SECONDS);

Also, added an option to set the timeout period to the default value:

FTV.setTimeout(FadingTextView.DEFAULT_TIME_OUT);