mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-21 20:35:58 +03:00
- 🖼 Downscale and display huge images in preview mode instead of crash (#1034)
This commit is contained in:
parent
0342e13597
commit
5a94fae413
4 changed files with 2 additions and 3 deletions
|
@ -19,6 +19,5 @@ allprojects {
|
|||
google()
|
||||
jcenter()
|
||||
maven { url "https://jitpack.io" }
|
||||
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
||||
}
|
||||
}
|
||||
|
|
1
fastlane/metadata/android/en-US/changelogs/3001003.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/3001003.txt
Normal file
|
@ -0,0 +1 @@
|
|||
- 🖼 Downscale and display huge images in preview mode instead of crash (#1034)
|
|
@ -23,7 +23,7 @@ android {
|
|||
}
|
||||
|
||||
ext {
|
||||
markwonVersion = "4.6.2-SNAPSHOT"
|
||||
markwonVersion = "4.6.2"
|
||||
rxMarkdownVersion = "0.1.3"
|
||||
}
|
||||
|
||||
|
|
|
@ -78,7 +78,6 @@ public class MarkwonMarkdownViewer extends AppCompatTextView implements Markdown
|
|||
.usePlugin(ThemePlugin.create(context))
|
||||
.usePlugin(StrikethroughPlugin.create())
|
||||
.usePlugin(SimpleExtPlugin.create())
|
||||
.usePlugin(ImagesPlugin.create())
|
||||
.usePlugin(MarkwonInlineParserPlugin.create())
|
||||
.usePlugin(SearchHighlightPlugin.create(context))
|
||||
.usePlugin(TablePlugin.create(context))
|
||||
|
|
Loading…
Reference in a new issue