- Crash fix
- Support
CharSequence
when building links
- Improvements for Java interop support
- Kotlin cleanup
- Built on Kotlin
- Extension method support for
TextView#applyLinks
to avoid boilerplate of creating theLinkBuilder
- Remove
Spannable
that would be consumed by other links so they are fully clickable
- Improvements around support for regular expression matching
- Don't default the text color of highlighted links to light blue
- If a link already exists on a block of text, don't try to put another link over the top of it
- Add ability to only search for the first occurrence of a pattern
- Add the ability to customize the text color of links when they are being touched/highlighted
- Update example with Material Design
- Update dependencies and build tools for SDK 25
- Convert to using
CharSequence
- Add a method to make links bold
- Added ability to work with
ListView.OnItemClickListener
through the use ofLinkConsumableTextView
- Add a set typeface method to
Link
- Cut to
LinkBuilder.from(String)
andLinkBuilder.on(TextView)
to create an instance ofLinkBuilder
- Allow
LinkBuilder
to return aCharSequence
for the links without setting them to aTextView
automatically. (UseLinkBuilder.from(String).build()
)
- Allow for styling the default color of the links from activity theme
- Don't allow null links when building the
SpannableString
- Find all links of the same text when using a regular expression
- If the link contained the last character of the line, clicking the empty space at the end of the line would also click the link. This removes that bug.
- Add prepended and appended text to links
- Fix: if no matches are found when linking regular expressions, the text would not be shown at all
- Convert line endings from CRLF to LF for git repository
- Add changelog
- Add release tags
- Use the
TextView
to preform haptic feedback instead ofVibrator
class. - Remove vibrate permission
- Chain the
LinkBuilder
class for easier and more structured implementation
- Fix incorrect package name
- Upload to maven central
- Initial release