Compare commits
4 Commits
9e0fdf30ec
...
v172101010
Author | SHA1 | Date | |
---|---|---|---|
|
7f45db0473 | ||
d89423b9ac | |||
|
25fd869c01 | ||
d1d956b77a |
@@ -36,6 +36,12 @@
|
|||||||
|
|
||||||
- Closing #178. Expending images on tap.
|
- Closing #178. Expending images on tap.
|
||||||
|
|
||||||
|
- Closing #323. Old issue with textview not having the right color.
|
||||||
|
|
||||||
|
- Closing #324. Svg images loading crashes the app.
|
||||||
|
|
||||||
|
- Closing #322. App crashed because of svg images.
|
||||||
|
|
||||||
**1.6.x**
|
**1.6.x**
|
||||||
|
|
||||||
- Handling hidden tags.
|
- Handling hidden tags.
|
||||||
@@ -56,6 +62,8 @@
|
|||||||
|
|
||||||
- Fixes #215, #208.
|
- Fixes #215, #208.
|
||||||
|
|
||||||
|
- Fixes #328.
|
||||||
|
|
||||||
**1.5.7.x**
|
**1.5.7.x**
|
||||||
|
|
||||||
- Added confirmation to the mark as read and update menues.
|
- Added confirmation to the mark as read and update menues.
|
||||||
|
@@ -156,7 +156,7 @@ data class Item(
|
|||||||
fun preloadImages(context: Context) : Boolean {
|
fun preloadImages(context: Context) : Boolean {
|
||||||
val imageUrls = this.getImages()
|
val imageUrls = this.getImages()
|
||||||
|
|
||||||
val glideOptions = RequestOptions.diskCacheStrategyOf(DiskCacheStrategy.ALL)
|
val glideOptions = RequestOptions.diskCacheStrategyOf(DiskCacheStrategy.ALL).timeout(10000)
|
||||||
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -164,7 +164,7 @@ data class Item(
|
|||||||
if ( URLUtil.isValidUrl(url)) {
|
if ( URLUtil.isValidUrl(url)) {
|
||||||
val image = Glide.with(context).asBitmap()
|
val image = Glide.with(context).asBitmap()
|
||||||
.apply(glideOptions)
|
.apply(glideOptions)
|
||||||
.load(url).submit().get()
|
.load(url).submit()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e : Error) {
|
} catch (e : Error) {
|
||||||
|
Reference in New Issue
Block a user