mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 12:51:16 +00:00
Add checkbox for hashing fallback (ref #778)
This commit is contained in:
parent
2dedaaf15f
commit
6fc9007cf9
3 changed files with 12 additions and 0 deletions
|
@ -133,6 +133,9 @@ public class SyncthingRunnable implements Runnable {
|
||||||
env.put("all_proxy", "socks5://localhost:9050");
|
env.put("all_proxy", "socks5://localhost:9050");
|
||||||
env.put("ALL_PROXY_NO_FALLBACK", "1");
|
env.put("ALL_PROXY_NO_FALLBACK", "1");
|
||||||
}
|
}
|
||||||
|
if (sp.getBoolean("use_legacy_hashing", false))
|
||||||
|
env.put("STHASHING", "standard");
|
||||||
|
|
||||||
process = pb.start();
|
process = pb.start();
|
||||||
mSyncthing.set(process);
|
mSyncthing.set(process);
|
||||||
|
|
||||||
|
|
|
@ -306,6 +306,10 @@ Please report any problems you encounter via Github.</string>
|
||||||
|
|
||||||
<string name="use_tor_summary">Force all traffic through Tor for increased privacy. Requires Orbot</string>
|
<string name="use_tor_summary">Force all traffic through Tor for increased privacy. Requires Orbot</string>
|
||||||
|
|
||||||
|
<string name="use_legacy_hashing_title">Use legacy hashing</string>
|
||||||
|
|
||||||
|
<string name="use_legacy_hashing_summary">Force syncthing to use legacy hashing package for compatibility purposes</string>
|
||||||
|
|
||||||
<!-- Dialog shown before config export -->
|
<!-- Dialog shown before config export -->
|
||||||
<string name="dialog_confirm_export">Do you really want to export your configuration? Existing files will be overwritten.\n\nWARNING! Other applications may be able to read the private key from the backup location and use it to download/modify synchronized files.</string>
|
<string name="dialog_confirm_export">Do you really want to export your configuration? Existing files will be overwritten.\n\nWARNING! Other applications may be able to read the private key from the backup location and use it to download/modify synchronized files.</string>
|
||||||
|
|
||||||
|
|
|
@ -188,6 +188,11 @@
|
||||||
android:title="@string/use_tor_title"
|
android:title="@string/use_tor_title"
|
||||||
android:summary="@string/use_tor_summary" />
|
android:summary="@string/use_tor_summary" />
|
||||||
|
|
||||||
|
<CheckBoxPreference
|
||||||
|
android:key="use_legacy_hashing"
|
||||||
|
android:title="@string/use_legacy_hashing_title"
|
||||||
|
android:summary="@string/use_legacy_hashing_summary" />
|
||||||
|
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
|
|
||||||
<PreferenceScreen
|
<PreferenceScreen
|
||||||
|
|
Loading…
Reference in a new issue