mirror of https://github.com/M66B/FairEmail.git
Added list of experimental features
This commit is contained in:
parent
bd0853f594
commit
6d12fc5744
10
FAQ.md
10
FAQ.md
|
@ -211,6 +211,7 @@ FairEmail follows all the best practices for an email client as decribed in [thi
|
|||
* [~~(122) Why is the recipient name/email address show with a warning color?~~](#user-content-faq122)
|
||||
* [(123) What does 'force sync'?](#user-content-faq123)
|
||||
* [(124) Why do I get 'Message too large or too complex to display'?](#user-content-faq124)
|
||||
* [(125) What are the current experimental features?](#user-content-faq125)
|
||||
|
||||
[I have another question.](#support)
|
||||
|
||||
|
@ -2139,6 +2140,15 @@ Reformatting and displaying such messages will take too long. You can try to use
|
|||
|
||||
<br />
|
||||
|
||||
<a name="faq125"></a>
|
||||
**(125) What are the current experimental features?**
|
||||
|
||||
The current experimental features are:
|
||||
|
||||
* Small, dimmed infinite / timelapse icon at the bottom of the messages to quicly toggle filtering of snoozed messages
|
||||
|
||||
<br />
|
||||
|
||||
## Support
|
||||
|
||||
If you have another question, want to request a feature or report a bug, you can use [this forum](https://forum.xda-developers.com/android/apps-games/source-email-t3824168).
|
||||
|
|
|
@ -24,6 +24,7 @@ import android.app.NotificationManager;
|
|||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
import android.graphics.Paint;
|
||||
import android.os.Bundle;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.Menu;
|
||||
|
@ -51,6 +52,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
|||
private SwitchCompat swWatchdog;
|
||||
private SwitchCompat swUpdates;
|
||||
private SwitchCompat swExperiments;
|
||||
private TextView tvExperimentsHint;
|
||||
private SwitchCompat swCrashReports;
|
||||
private SwitchCompat swDebug;
|
||||
private Button btnCleanup;
|
||||
|
@ -86,6 +88,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
|||
swWatchdog = view.findViewById(R.id.swWatchdog);
|
||||
swUpdates = view.findViewById(R.id.swUpdates);
|
||||
swExperiments = view.findViewById(R.id.swExperiments);
|
||||
tvExperimentsHint = view.findViewById(R.id.tvExperimentsHint);
|
||||
swCrashReports = view.findViewById(R.id.swCrashReports);
|
||||
swDebug = view.findViewById(R.id.swDebug);
|
||||
btnCleanup = view.findViewById(R.id.btnCleanup);
|
||||
|
@ -150,6 +153,14 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
|||
}
|
||||
});
|
||||
|
||||
tvExperimentsHint.setPaintFlags(tvExperimentsHint.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
|
||||
tvExperimentsHint.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
Helper.viewFAQ(getContext(), 125);
|
||||
}
|
||||
});
|
||||
|
||||
swExperiments.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
|
|
|
@ -111,6 +111,18 @@
|
|||
app:layout_constraintTop_toBottomOf="@id/swUpdates"
|
||||
app:switchPadding="12dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvExperimentsHint"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="48dp"
|
||||
android:text="@string/title_advanced_experiments_hint"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||
android:textColor="?android:attr/textColorLink"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/swExperiments" />
|
||||
|
||||
<androidx.appcompat.widget.SwitchCompat
|
||||
android:id="@+id/swCrashReports"
|
||||
android:layout_width="0dp"
|
||||
|
@ -119,7 +131,7 @@
|
|||
android:text="@string/title_advanced_crash_reports"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/swExperiments"
|
||||
app:layout_constraintTop_toBottomOf="@id/tvExperimentsHint"
|
||||
app:switchPadding="12dp" />
|
||||
|
||||
<androidx.appcompat.widget.SwitchCompat
|
||||
|
|
|
@ -331,6 +331,7 @@
|
|||
|
||||
<string name="title_advanced_subscribed_only_hint">Enabling this will delete all local folders without subscription</string>
|
||||
<string name="title_advanced_english_hint">This will restart the app</string>
|
||||
<string name="title_advanced_experiments_hint">List of current experimental features</string>
|
||||
<string name="title_advanced_debug_hint">Enable extra logging and show debug information at various places</string>
|
||||
<string name="title_advanced_cleanup_hint">This will delete all temporary files</string>
|
||||
|
||||
|
|
Loading…
Reference in New Issue