mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 14:21:16 +00:00
Updated Syncthing to v0.14.28
This commit is contained in:
parent
d296be02e9
commit
23deb9a0ea
2 changed files with 7 additions and 2 deletions
|
@ -1 +1 @@
|
|||
Subproject commit ac46db78d748f84b9cdcd81be4f033ea43112c88
|
||||
Subproject commit 8c108b4d2092afc139428dbb9a7d7f76eaf97c6d
|
|
@ -19,7 +19,7 @@ public class Folder {
|
|||
public int rescanIntervalS;
|
||||
public final boolean ignorePerms = true;
|
||||
public boolean autoNormalize;
|
||||
public float minDiskFreePct;
|
||||
public MinDiskFree minDiskFree;
|
||||
public Versioning versioning;
|
||||
public int copiers;
|
||||
public int pullers;
|
||||
|
@ -39,6 +39,11 @@ public class Folder {
|
|||
public Map<String, String> params = new HashMap<>();
|
||||
}
|
||||
|
||||
public static class MinDiskFree {
|
||||
public int value;
|
||||
public String unit;
|
||||
}
|
||||
|
||||
public void addDevice(String deviceId) {
|
||||
Device d = new Device();
|
||||
d.deviceID = deviceId;
|
||||
|
|
Loading…
Reference in a new issue