Skip to content

Commit

Permalink
add RSS screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
ismartcoding committed Apr 20, 2023
1 parent 01febbd commit 7d40be4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ Reddit: https://www.reddit.com/r/plainapp

## Screenshots

| ![home](screenshots/1.jpeg) | ![files](screenshots/2.jpeg) | ![web](screenshots/3.jpeg) | ![notes](screenshots/4.jpeg) |
|--------------------------------------|-----------------------------------------|-------------------------------------------|-------------------------------------------|
| ![audios](screenshots/5.jpeg) | ![images](screenshots/6.jpeg) | ![videos](screenshots/7.jpeg) | |
| ![home](screenshots/web-home.png) | ![images](screenshots/web-images.png) | ![videos](screenshots/web-videos.png) | ![notes](screenshots/web-notes.png) |
| ![home](screenshots/1.jpeg) | ![files](screenshots/2.jpeg) | ![web](screenshots/3.jpeg) | ![notes](screenshots/4.jpeg) |
|--------------------------------------|-----------------------------------------|-------------------------------------------|------------------------------------------|
| ![audios](screenshots/5.jpeg) | ![images](screenshots/6.jpeg) | ![videos](screenshots/7.jpeg) | ![rss](screenshots/8.jpeg) |
| ![home](screenshots/web-home.png) | ![images](screenshots/web-images.png) | ![videos](screenshots/web-videos.png) | ![notes](screenshots/web-notes.png) |
| ![files](screenshots/web-files.png) | ![chatgpt](screenshots/web-chatgpt.png) | ![messages](screenshots/web-messages.png) | ![contacts](screenshots/web-contacts.png) |
| ![audios](screenshots/web-audios.png) | | | |
| ![audios](screenshots/web-audios.png) | ![rss](screenshots/web-rss.png) | | |

## Compatibility

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ class SocialViewHelper(val view: TextView) {
val hashtag: SuggestionView
get() = SuggestionView(
Pattern.compile("#(\\w+)"), false,
view.context.getColorStateList(R.color.chip_color_state_list), R.color.red, arrayListOf(), null, null
view.context.getColorStateList(R.color.chip_color_state_list), view.context.getColor(R.color.red), arrayListOf(), null, null
)
val mention: SuggestionView
get() = SuggestionView(
Pattern.compile("@(\\w+)"), false,
view.context.getColorStateList(R.color.chip_color_state_list), R.color.red, arrayListOf(), null, null
view.context.getColorStateList(R.color.chip_color_state_list), view.context.getColor(R.color.red), arrayListOf(), null, null
)
val command: SuggestionView
get() = SuggestionView(
Pattern.compile(":(\\w+)"), false,
view.context.getColorStateList(R.color.chip_color_state_list), R.color.red, arrayListOf(), null, null
view.context.getColorStateList(R.color.chip_color_state_list), view.context.getColor(R.color.red), arrayListOf(), null, null
)
val hyperlink: SuggestionView
get() = SuggestionView(
PatternsCompat.WEB_URL, false,
view.context.getColorStateList(R.color.chip_color_state_list), R.color.red, arrayListOf(), null, null
view.context.getColorStateList(R.color.chip_color_state_list), view.context.getColor(R.color.red), arrayListOf(), null, null
)

//private var flags: Int
Expand Down
Binary file added screenshots/8.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/web-rss.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7d40be4

Please sign in to comment.