Defaults for tab options
This commit is contained in:
parent
33146d649e
commit
2add4d8f0a
|
@ -53,17 +53,20 @@ public class Settings {
|
||||||
public String bongacamsBaseUrl = "https://bongacams.com";
|
public String bongacamsBaseUrl = "https://bongacams.com";
|
||||||
public String bongaPassword = "";
|
public String bongaPassword = "";
|
||||||
public String bongaUsername = "";
|
public String bongaUsername = "";
|
||||||
|
public Set<String> bongaTabs = new HashSet<>(Arrays.asList("female"));
|
||||||
public String cam4Password = "";
|
public String cam4Password = "";
|
||||||
public String cam4Username = "";
|
public String cam4Username = "";
|
||||||
|
public Set<String> cam4Tabs = new HashSet<>(Arrays.asList("female"));
|
||||||
public String camsodaPassword = "";
|
public String camsodaPassword = "";
|
||||||
public String camsodaUsername = "";
|
public String camsodaUsername = "";
|
||||||
|
public Set<String> camsodaTabs = new HashSet<>(Arrays.asList("f"));
|
||||||
public String chaturbatePassword = "";
|
public String chaturbatePassword = "";
|
||||||
public String chaturbateUsername = "";
|
public String chaturbateUsername = "";
|
||||||
public String chaturbateBaseUrl = "https://chaturbate.com";
|
public String chaturbateBaseUrl = "https://chaturbate.com";
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public boolean chaturbateUseFlaresolverr = false;
|
public boolean chaturbateUseFlaresolverr = false;
|
||||||
public int chaturbateMsBetweenRequests = 3000;
|
public int chaturbateMsBetweenRequests = 3000;
|
||||||
public Set<String> chaturbateRegions = new HashSet<>();
|
public Set<String> chaturbateTabs = new HashSet<>(Arrays.asList("f"));
|
||||||
public boolean chooseStreamQuality = false;
|
public boolean chooseStreamQuality = false;
|
||||||
public String colorAccent = "#FFFFFF";
|
public String colorAccent = "#FFFFFF";
|
||||||
public String colorBase = "#FFFFFF";
|
public String colorBase = "#FFFFFF";
|
||||||
|
@ -74,8 +77,9 @@ public class Settings {
|
||||||
public int defaultPriority = 50;
|
public int defaultPriority = 50;
|
||||||
public boolean deleteOrphanedRecordingMetadata = true;
|
public boolean deleteOrphanedRecordingMetadata = true;
|
||||||
public boolean determineResolution = false;
|
public boolean determineResolution = false;
|
||||||
public List<String> disabledSites = new ArrayList<>();
|
public List<String> disabledSites = new ArrayList<>(Arrays.asList("Streamray", "WinkTv"));
|
||||||
public String downloadFilename = "$sanitize(${modelName})_$format(${localDateTime})";
|
public String downloadFilename = "$sanitize(${modelName})_$format(${localDateTime})";
|
||||||
|
public Set<String> dreamcamTabs = new HashSet<>(Arrays.asList("girls"));
|
||||||
public List<EventHandlerConfiguration> eventHandlers = new ArrayList<>();
|
public List<EventHandlerConfiguration> eventHandlers = new ArrayList<>();
|
||||||
public boolean eventsSuspended = false;
|
public boolean eventsSuspended = false;
|
||||||
public boolean fastScrollSpeed = true;
|
public boolean fastScrollSpeed = true;
|
||||||
|
@ -85,6 +89,7 @@ public class Settings {
|
||||||
public String ffmpegFileSuffix = "ts";
|
public String ffmpegFileSuffix = "ts";
|
||||||
public String flirt4freePassword;
|
public String flirt4freePassword;
|
||||||
public String flirt4freeUsername;
|
public String flirt4freeUsername;
|
||||||
|
public Set<String> flirt4freeTabs = new HashSet<>(Arrays.asList("female"));
|
||||||
public String fontFamily = "Sans-Serif";
|
public String fontFamily = "Sans-Serif";
|
||||||
public int fontSize = 14;
|
public int fontSize = 14;
|
||||||
public String hlsdlExecutable = "hlsdl";
|
public String hlsdlExecutable = "hlsdl";
|
||||||
|
@ -181,6 +186,7 @@ public class Settings {
|
||||||
public boolean showPlayerStarting = false;
|
public boolean showPlayerStarting = false;
|
||||||
public String showupUsername = "";
|
public String showupUsername = "";
|
||||||
public String showupPassword = "";
|
public String showupPassword = "";
|
||||||
|
public Set<String> showupTabs = new HashSet<>(Arrays.asList("female"));
|
||||||
public boolean singlePlayer = true;
|
public boolean singlePlayer = true;
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public int splitRecordings = 0;
|
public int splitRecordings = 0;
|
||||||
|
@ -191,8 +197,11 @@ public class Settings {
|
||||||
public boolean startMinimized = false;
|
public boolean startMinimized = false;
|
||||||
public String streamatePassword = "";
|
public String streamatePassword = "";
|
||||||
public String streamateUsername = "";
|
public String streamateUsername = "";
|
||||||
|
public Set<String> streamateTabs = new HashSet<>(Arrays.asList("f,ff"));
|
||||||
|
public Set<String> streamrayTabs = new HashSet<>(Arrays.asList("F"));
|
||||||
public String stripchatUsername = "";
|
public String stripchatUsername = "";
|
||||||
public String stripchatPassword = "";
|
public String stripchatPassword = "";
|
||||||
|
public Set<String> stripchatTabs = new HashSet<>(Arrays.asList("girls"));
|
||||||
public boolean stripchatUseXhamster = false;
|
public boolean stripchatUseXhamster = false;
|
||||||
public boolean stripchatUseSuperchat = false;
|
public boolean stripchatUseSuperchat = false;
|
||||||
public List<String> tabOrder = new ArrayList<>();
|
public List<String> tabOrder = new ArrayList<>();
|
||||||
|
@ -216,6 +225,7 @@ public class Settings {
|
||||||
public String webinterfacePassword = "sucks";
|
public String webinterfacePassword = "sucks";
|
||||||
public String xlovecamUsername = "";
|
public String xlovecamUsername = "";
|
||||||
public String xlovecamPassword = "";
|
public String xlovecamPassword = "";
|
||||||
|
public Set<String> xlovecamTabs = new HashSet<>(Arrays.asList("1"));
|
||||||
public boolean stripchatVR = true;
|
public boolean stripchatVR = true;
|
||||||
public boolean streamrayRecordGoalShows = false;
|
public boolean streamrayRecordGoalShows = false;
|
||||||
public int thumbCacheSize = 16;
|
public int thumbCacheSize = 16;
|
||||||
|
|
Loading…
Reference in New Issue