From 955795a2af7c67942aaa07681e1bf226e75fd64d Mon Sep 17 00:00:00 2001 From: M66B Date: Thu, 28 Jul 2022 19:37:57 +0200 Subject: [PATCH] Added FAQ --- FAQ.md | 26 +++++++++++++++++-- .../email/FragmentDialogOpenLink.java | 2 +- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/FAQ.md b/FAQ.md index 664d8e6c42..45c3cc1e9c 100644 --- a/FAQ.md +++ b/FAQ.md @@ -384,6 +384,7 @@ Fonts, sizes, colors, etc should be material design whenever possible. * [(179) What are reply templates?](#user-content-faq179) * [(180) How do I use LanguageTool?](#user-content-faq180) * [(181) How do I use VirusTotal?](#user-content-faq181) +* [(182) How can I select how a link should be opened?](#user-content-faq182) [I have another question.](#user-content-get-support) @@ -1809,8 +1810,6 @@ this is even less secure because Google is involved too without providing much b You can show images and original messages by default for trusted senders on a case-by-case basis by checking *Do not ask this again for ...*. -If you want to reset the default *Open with* apps, please [see here](https://support.google.com/pixelphone/answer/6271667). -
@@ -4871,6 +4870,29 @@ This feature was added in version 1.1942 and is available in non Play store vers
+ + +**(182) How can I select how a link should be opened?** + +When clicking on a link, a confirmation dialog will be shown. You can select how to open a link below *Open with*. +The available browser(s) will be listed and if a browser supports [Custom Tabs](https://developer.chrome.com/docs/android/custom-tabs/), it will be listed twice, +once with an "open external" icon (the browser will be started standalone, independent of the app) +and once without this icon (the browser will be started embedded as "Custom Tab", dependent of the app). +In addition, *Select app* will be listed, which means that the link will be handed over to Android, which will select how to open the link. +In most cases, this will be with the default browser, which you can select in the Android settings. +If there is choice, Android will ask you how to open the link. You can select *Always* or *Just Once*. +If you want to reset *Always*, please [see here](https://support.google.com/pixelphone/answer/6271667) about how to. + +If you ticked *Do not ask this again for [domain name]*, you can undo this by using the *Reset questions* button in the miscellaneous settings tab page of the app. + +If you disabled confirming links, you can enable this (temporarily) again in the privacy settings tab page of the app (*Confirm opening links*: off). + +Note that you might need to enable confirming links and reset questions to show the link confirmation dialog again. + +Please see [this FAQ](#user-content-faq35) on why you should be careful when opening links. + +
+

Get support

🌎 [Google Translate](https://translate.google.com/translate?sl=en&u=https://github.com/M66B/FairEmail/blob/master/FAQ.md%23user-content-get-support) diff --git a/app/src/main/java/eu/faircode/email/FragmentDialogOpenLink.java b/app/src/main/java/eu/faircode/email/FragmentDialogOpenLink.java index 99dac707ed..dd567051f0 100644 --- a/app/src/main/java/eu/faircode/email/FragmentDialogOpenLink.java +++ b/app/src/main/java/eu/faircode/email/FragmentDialogOpenLink.java @@ -196,7 +196,7 @@ public class FragmentDialogOpenLink extends FragmentDialogBase { ibInfo.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { - Helper.viewFAQ(v.getContext(), 35); + Helper.viewFAQ(v.getContext(), 182); } });