Change some settings defaults
This commit is contained in:
parent
e1a4559ba5
commit
ea612d2b91
|
@ -53,7 +53,7 @@ public class Settings {
|
|||
public String chaturbatePassword = "";
|
||||
public String chaturbateUsername = "";
|
||||
public String chaturbateBaseUrl = "https://chaturbate.com";
|
||||
public int chaturbateMsBetweenRequests = 1000;
|
||||
public int chaturbateMsBetweenRequests = 3000;
|
||||
public boolean chooseStreamQuality = false;
|
||||
public String colorAccent = "#FFFFFF";
|
||||
public String colorBase = "#FFFFFF";
|
||||
|
@ -62,10 +62,10 @@ public class Settings {
|
|||
public String contactsheetTimestampLook = "font=sans-serif:fontcolor=white:fontsize=60:box=1:boxcolor=black@0.5:boxborderw=5";
|
||||
public String dateTimeFormat = "";
|
||||
public int defaultPriority = 50;
|
||||
public boolean deleteOrphanedRecordingMetadata = false;
|
||||
public boolean deleteOrphanedRecordingMetadata = true;
|
||||
public boolean determineResolution = false;
|
||||
public List<String> disabledSites = new ArrayList<>();
|
||||
public String downloadFilename = "$sanitize(${modelName})_$format(${localDateTime})";
|
||||
public List<String> disabledSites = new ArrayList<>(Arrays.asList("Streamray", "WinkTv"));
|
||||
public String downloadFilename = "$sanitize(${modelName})_$sanitize(${siteName})_$format(${localDateTime}, yyyyMMdd-HHmmss)";
|
||||
public List<EventHandlerConfiguration> eventHandlers = new ArrayList<>();
|
||||
public boolean eventsSuspended = false;
|
||||
public boolean fastScrollSpeed = true;
|
||||
|
@ -82,8 +82,8 @@ public class Settings {
|
|||
public int httpSecurePort = 8443;
|
||||
public String httpServer = "localhost";
|
||||
public int httpTimeout = 10000;
|
||||
public String httpUserAgent = "Mozilla/5.0 (X11; Linux x86_64; rv:105.0) Gecko/20100101 Firefox/105.0";
|
||||
public String httpUserAgentMobile = "Mozilla/5.0 (Android 9.0; Mobile; rv:105.0) Gecko/20100101 Firefox/105.0";
|
||||
public String httpUserAgent = "Mozilla/5.0 (X11; Linux i686; rv:136.0) Gecko/20100101 Firefox/136.0";
|
||||
public String httpUserAgentMobile = "Mozilla/5.0 (Android 15; Mobile; rv:136.0) Gecko/136.0 Firefox/136.0";
|
||||
public byte[] key = null;
|
||||
public List<String> ignoredModels = new ArrayList<>();
|
||||
public String lastDownloadDir = "";
|
||||
|
@ -205,10 +205,10 @@ public class Settings {
|
|||
public String webinterfacePassword = "sucks";
|
||||
public String xlovecamUsername = "";
|
||||
public String xlovecamPassword = "";
|
||||
public boolean stripchatVR = false;
|
||||
public boolean stripchatVR = true;
|
||||
public boolean streamrayRecordGoalShows = false;
|
||||
public int thumbCacheSize = 16;
|
||||
public boolean dreamcamVR = false;
|
||||
public boolean dreamcamVR = true;
|
||||
public String filterBlacklist = "";
|
||||
public String filterWhitelist = "";
|
||||
public boolean checkResolutionByMinSide = false;
|
||||
|
|
Loading…
Reference in New Issue