From 78e9230b828cbac2aa5eb60503625e593a948ac5 Mon Sep 17 00:00:00 2001 From: Amine Bou Date: Wed, 3 Jan 2018 19:07:27 +0100 Subject: [PATCH] Fixes #161. --- CHANGELOG.md | 2 + .../bou/readerforselfoss/ReaderActivity.kt | 5 +- .../fragments/ArticleFragment.kt | 48 ++----------------- app/src/main/res/layout/fragment_article.xml | 14 ------ app/src/main/res/values-af-rZA/strings.xml | 5 +- app/src/main/res/values-ar-rSA/strings.xml | 5 +- app/src/main/res/values-ca-rES/strings.xml | 3 -- app/src/main/res/values-cs-rCZ/strings.xml | 5 +- app/src/main/res/values-da-rDK/strings.xml | 5 +- app/src/main/res/values-de-rDE/strings.xml | 5 +- app/src/main/res/values-el-rGR/strings.xml | 5 +- app/src/main/res/values-en-rID/strings.xml | 5 +- app/src/main/res/values-es-rES/strings.xml | 5 +- app/src/main/res/values-fi-rFI/strings.xml | 5 +- app/src/main/res/values-fr-rFR/strings.xml | 5 +- app/src/main/res/values-hu-rHU/strings.xml | 5 +- app/src/main/res/values-in-rID/strings.xml | 5 +- app/src/main/res/values-it-rIT/strings.xml | 5 +- app/src/main/res/values-iw-rIL/strings.xml | 5 +- app/src/main/res/values-ja-rJP/strings.xml | 5 +- app/src/main/res/values-ko-rKR/strings.xml | 3 -- app/src/main/res/values-nl-rNL/strings.xml | 5 +- app/src/main/res/values-no-rNO/strings.xml | 5 +- app/src/main/res/values-pl-rPL/strings.xml | 5 +- app/src/main/res/values-pt-rBR/strings.xml | 5 +- app/src/main/res/values-pt-rPT/strings.xml | 5 +- app/src/main/res/values-ro-rRO/strings.xml | 5 +- app/src/main/res/values-ru-rRU/strings.xml | 5 +- app/src/main/res/values-sr-rSP/strings.xml | 5 +- app/src/main/res/values-sv-rSE/strings.xml | 5 +- app/src/main/res/values-tr-rTR/strings.xml | 5 +- app/src/main/res/values-uk-rUA/strings.xml | 5 +- app/src/main/res/values-vi-rVN/strings.xml | 5 +- app/src/main/res/values-zh-rCN/strings.xml | 5 +- app/src/main/res/values-zh-rTW/strings.xml | 5 +- app/src/main/res/values/strings.xml | 3 -- app/src/main/res/xml/pref_general.xml | 7 --- 37 files changed, 35 insertions(+), 195 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9942d51..3ca8467 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ - Now using slack instead of gitter. +- Moved completely to a webview to fix #161. + **1.5.5.x (didn't last long) AND 1.5.6.x** - Toolbar in reader activity. diff --git a/app/src/main/java/apps/amine/bou/readerforselfoss/ReaderActivity.kt b/app/src/main/java/apps/amine/bou/readerforselfoss/ReaderActivity.kt index a67416b..69c2c7f 100644 --- a/app/src/main/java/apps/amine/bou/readerforselfoss/ReaderActivity.kt +++ b/app/src/main/java/apps/amine/bou/readerforselfoss/ReaderActivity.kt @@ -30,7 +30,6 @@ class ReaderActivity : AppCompatActivity() { private var markOnScroll: Boolean = false private var debugReadingItems: Boolean = false - private var useWebview: Boolean = false private var currentItem: Int = 0 private lateinit var userIdentifier: String @@ -66,8 +65,6 @@ class ReaderActivity : AppCompatActivity() { debugReadingItems = sharedPref.getBoolean("read_debug", false) userIdentifier = sharedPref.getString("unique_id", "") markOnScroll = sharedPref.getBoolean("mark_on_scroll", false) - useWebview = sharedPref.getBoolean("prefer_webview_in_article_viewer", false) - if (allItems.isEmpty()) { Crashlytics.setUserIdentifier(userIdentifier) @@ -184,7 +181,7 @@ class ReaderActivity : AppCompatActivity() { } override fun getItem(position: Int): ArticleFragment { - return ArticleFragment.newInstance(position, allItems, useWebview) + return ArticleFragment.newInstance(position, allItems) } } diff --git a/app/src/main/java/apps/amine/bou/readerforselfoss/fragments/ArticleFragment.kt b/app/src/main/java/apps/amine/bou/readerforselfoss/fragments/ArticleFragment.kt index 6775c1a..67124fa 100644 --- a/app/src/main/java/apps/amine/bou/readerforselfoss/fragments/ArticleFragment.kt +++ b/app/src/main/java/apps/amine/bou/readerforselfoss/fragments/ArticleFragment.kt @@ -51,8 +51,6 @@ class ArticleFragment : Fragment() { private lateinit var contentTitle: String private lateinit var fab: FloatingActionButton - private var useWebview: Boolean = false - override fun onStop() { super.onStop() mCustomTabActivityHelper.unbindCustomTabsService(activity) @@ -62,7 +60,6 @@ class ArticleFragment : Fragment() { super.onCreate(savedInstanceState) pageNumber = arguments!!.getInt(ARG_POSITION) allItems = arguments!!.getParcelableArrayList(ARG_ITEMS) - useWebview = arguments!!.getBoolean(ARG_WEBVIEW) } private lateinit var rootView: ViewGroup @@ -122,11 +119,7 @@ class ArticleFragment : Fragment() { rootView.source.text = contentSource rootView.titleView.text = contentTitle - if (!useWebview) { - htmlToTextview(contentText, customTabsIntent, prefs) - } else { - htmlToWebview(contentText, prefs) - } + htmlToWebview(contentText, prefs) if (!contentImage.isEmptyOrNullOrNullString()) { rootView.imageView.visibility = View.VISIBLE @@ -151,10 +144,6 @@ class ArticleFragment : Fragment() { } ) - if (!useWebview) { - rootView.content.movementMethod = LinkMovementMethod.getInstance() - } - return rootView } @@ -180,15 +169,7 @@ class ArticleFragment : Fragment() { rootView.titleView.text = response.body()!!.title url = response.body()!!.url - if (!useWebview) { - htmlToTextview( - response.body()!!.content, - customTabsIntent, - prefs - ) - } else { - htmlToWebview(response.body()!!.content, prefs) - } + htmlToWebview(response.body()!!.content, prefs) if (response.body()!!.lead_image_url != null && !response.body()!!.lead_image_url.isEmpty()) { rootView.imageView.visibility = View.VISIBLE @@ -227,26 +208,6 @@ class ArticleFragment : Fragment() { ) } - private fun htmlToTextview( - c: String, - customTabsIntent: CustomTabsIntent, - prefs: SharedPreferences - ) { - try { - rootView.content.visibility = View.VISIBLE - rootView.content.text = Html.fromHtml( - c, - HtmlHttpImageGetter(rootView.content, null, true), - null - ) - } catch (e: Exception) { - Crashlytics.setUserIdentifier(prefs.getString("unique_id", "")) - Crashlytics.log(100, "CANT_TRANSFORM_TO_HTML", e.message) - Crashlytics.logException(e) - openInBrowserAfterFailing(customTabsIntent) - } - } - private fun htmlToWebview(c: String, prefs: SharedPreferences) { val accentColor = ContextCompat.getColor(activity!!.baseContext, R.color.accent) @@ -309,17 +270,14 @@ class ArticleFragment : Fragment() { companion object { private val ARG_POSITION = "position" private val ARG_ITEMS = "items" - private val ARG_WEBVIEW = "userWebview" fun newInstance( position: Int, - allItems: ArrayList, - webview: Boolean + allItems: ArrayList ): ArticleFragment { val fragment = ArticleFragment() val args = Bundle() args.putInt(ARG_POSITION, position) - args.putBoolean(ARG_WEBVIEW, webview) args.putParcelableArrayList(ARG_ITEMS, allItems) fragment.arguments = args return fragment diff --git a/app/src/main/res/layout/fragment_article.xml b/app/src/main/res/layout/fragment_article.xml index e9d83c6..f1ea25e 100644 --- a/app/src/main/res/layout/fragment_article.xml +++ b/app/src/main/res/layout/fragment_article.xml @@ -70,20 +70,6 @@ app:layout_constraintTop_toBottomOf="@+id/source" tools:visibility="visible" /> - diff --git a/app/src/main/res/values-af-rZA/strings.xml b/app/src/main/res/values-af-rZA/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-af-rZA/strings.xml +++ b/app/src/main/res/values-af-rZA/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-ar-rSA/strings.xml b/app/src/main/res/values-ar-rSA/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-ar-rSA/strings.xml +++ b/app/src/main/res/values-ar-rSA/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-ca-rES/strings.xml b/app/src/main/res/values-ca-rES/strings.xml index 2bd43b8..386fa73 100644 --- a/app/src/main/res/values-ca-rES/strings.xml +++ b/app/src/main/res/values-ca-rES/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. Add to favorites Remove from favorites diff --git a/app/src/main/res/values-cs-rCZ/strings.xml b/app/src/main/res/values-cs-rCZ/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-cs-rCZ/strings.xml +++ b/app/src/main/res/values-cs-rCZ/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-da-rDK/strings.xml b/app/src/main/res/values-da-rDK/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-da-rDK/strings.xml +++ b/app/src/main/res/values-da-rDK/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-de-rDE/strings.xml b/app/src/main/res/values-de-rDE/strings.xml index cf159d4..2d3e8d3 100644 --- a/app/src/main/res/values-de-rDE/strings.xml +++ b/app/src/main/res/values-de-rDE/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-el-rGR/strings.xml b/app/src/main/res/values-el-rGR/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-el-rGR/strings.xml +++ b/app/src/main/res/values-el-rGR/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-en-rID/strings.xml b/app/src/main/res/values-en-rID/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-en-rID/strings.xml +++ b/app/src/main/res/values-en-rID/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-es-rES/strings.xml b/app/src/main/res/values-es-rES/strings.xml index 54ae2e9..c65ad62 100644 --- a/app/src/main/res/values-es-rES/strings.xml +++ b/app/src/main/res/values-es-rES/strings.xml @@ -159,9 +159,6 @@ Abrir en el navegador Compartir Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-fi-rFI/strings.xml b/app/src/main/res/values-fi-rFI/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-fi-rFI/strings.xml +++ b/app/src/main/res/values-fi-rFI/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-fr-rFR/strings.xml b/app/src/main/res/values-fr-rFR/strings.xml index 3a92b1d..22e23f3 100644 --- a/app/src/main/res/values-fr-rFR/strings.xml +++ b/app/src/main/res/values-fr-rFR/strings.xml @@ -159,9 +159,6 @@ Ouvrir Partager Marquer les articles comme lus à la navigation dans le lecteur d\'article. - Utiliser une \"Webview\" pour afficher les articles. - L\'utilisation d\'une \"Webview\" pour afficher les articles permettra d\'afficher les gifs, et mieux gérer les images et liens. Cette option peut être plus lente. - Le contenu de l\'article sera un simple teste avec images et liens. Certains liens peuvent ne pas fonctionner, et les gifs ne fonctionneront pas. - Ajouter aux favoris + Ajouter aux favoris Supprimer des favoris diff --git a/app/src/main/res/values-hu-rHU/strings.xml b/app/src/main/res/values-hu-rHU/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-hu-rHU/strings.xml +++ b/app/src/main/res/values-hu-rHU/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-in-rID/strings.xml b/app/src/main/res/values-in-rID/strings.xml index 2431420..d2c69c0 100644 --- a/app/src/main/res/values-in-rID/strings.xml +++ b/app/src/main/res/values-in-rID/strings.xml @@ -159,9 +159,6 @@ Buka di peramban Bagikan Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-it-rIT/strings.xml b/app/src/main/res/values-it-rIT/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-it-rIT/strings.xml +++ b/app/src/main/res/values-it-rIT/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-iw-rIL/strings.xml b/app/src/main/res/values-iw-rIL/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-iw-rIL/strings.xml +++ b/app/src/main/res/values-iw-rIL/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-ja-rJP/strings.xml b/app/src/main/res/values-ja-rJP/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-ja-rJP/strings.xml +++ b/app/src/main/res/values-ja-rJP/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-ko-rKR/strings.xml b/app/src/main/res/values-ko-rKR/strings.xml index 2bd43b8..386fa73 100644 --- a/app/src/main/res/values-ko-rKR/strings.xml +++ b/app/src/main/res/values-ko-rKR/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. Add to favorites Remove from favorites diff --git a/app/src/main/res/values-nl-rNL/strings.xml b/app/src/main/res/values-nl-rNL/strings.xml index ffee926..0dd412d 100644 --- a/app/src/main/res/values-nl-rNL/strings.xml +++ b/app/src/main/res/values-nl-rNL/strings.xml @@ -159,9 +159,6 @@ Openen in browser Delen Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-no-rNO/strings.xml b/app/src/main/res/values-no-rNO/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-no-rNO/strings.xml +++ b/app/src/main/res/values-no-rNO/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-pl-rPL/strings.xml b/app/src/main/res/values-pl-rPL/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-pl-rPL/strings.xml +++ b/app/src/main/res/values-pl-rPL/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 57e56c8..9e81983 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -159,9 +159,6 @@ Abrir no navegador Compartilhar Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index 22752f8..a3fe452 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -159,9 +159,6 @@ Abrir no browser Compartilhar Artigos de marca como lida quando passar entre artigos. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-ro-rRO/strings.xml b/app/src/main/res/values-ro-rRO/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-ro-rRO/strings.xml +++ b/app/src/main/res/values-ro-rRO/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-ru-rRU/strings.xml b/app/src/main/res/values-ru-rRU/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-ru-rRU/strings.xml +++ b/app/src/main/res/values-ru-rRU/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-sr-rSP/strings.xml b/app/src/main/res/values-sr-rSP/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-sr-rSP/strings.xml +++ b/app/src/main/res/values-sr-rSP/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-sv-rSE/strings.xml +++ b/app/src/main/res/values-sv-rSE/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml index fe9a5d3..f39a27d 100644 --- a/app/src/main/res/values-tr-rTR/strings.xml +++ b/app/src/main/res/values-tr-rTR/strings.xml @@ -159,9 +159,6 @@ Tarayıcıda aç Paylaş Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-uk-rUA/strings.xml b/app/src/main/res/values-uk-rUA/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-uk-rUA/strings.xml +++ b/app/src/main/res/values-uk-rUA/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-vi-rVN/strings.xml b/app/src/main/res/values-vi-rVN/strings.xml index 2bd43b8..21dbe98 100644 --- a/app/src/main/res/values-vi-rVN/strings.xml +++ b/app/src/main/res/values-vi-rVN/strings.xml @@ -159,9 +159,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 3f556bc..fd64666 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -159,9 +159,6 @@ 在浏览器中打开 分享 切换文章时将文章标记为已读。 - 在文章阅读器中使用 webview。 - 对文章阅读器的内容使用 webview。链接、动态图片及图像可得到更好的处理,但可能较慢。 - 文章内容将显示为带有链接和图片的简单文本。链接可能无法正常显示,GIF动态图片不会加载。 - 添加到收藏 + 添加到收藏 从收藏中移除 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index b1b7989..3504e9c 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -159,9 +159,6 @@ 在浏览器中打开 分享 Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. - Add to favorites + Add to favorites Remove from favorites diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index b9ffbda..ba594ba 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -162,9 +162,6 @@ Open in browser Share Mark articles as read when swiping between articles. - Use a webview in the article viewer. - Using the webview for the content of the article viewer. Urls, gifs and images will be better handled, but may be slower. - The content of the article will be displayed as simple text with links and images. Urls may not work, and gifs won\'t load. Add to favorites Remove from favorites diff --git a/app/src/main/res/xml/pref_general.xml b/app/src/main/res/xml/pref_general.xml index 9006b2e..244b2c1 100644 --- a/app/src/main/res/xml/pref_general.xml +++ b/app/src/main/res/xml/pref_general.xml @@ -33,13 +33,6 @@ android:summaryOff="@string/prefer_article_viewer_off" android:summaryOn="@string/prefer_article_viewer_on" android:title="@string/prefer_article_viewer_title" /> -