Merge pull request #467 from jotomo/config-bulder-defaults

ConfigBuilder: hide disabled plugins by default.
This commit is contained in:
Milos Kozak 2017-10-17 10:39:03 +02:00 committed by GitHub
commit 9622453d3a
6 changed files with 6 additions and 6 deletions

View file

@ -55,7 +55,7 @@ public class OpenAPSAMAPlugin implements PluginBase, APSInterface {
AutosensResult lastAutosensResult = null; AutosensResult lastAutosensResult = null;
private boolean fragmentEnabled = false; private boolean fragmentEnabled = false;
private boolean fragmentVisible = true; private boolean fragmentVisible = false;
@Override @Override
public String getName() { public String getName() {

View file

@ -53,7 +53,7 @@ public class OpenAPSMAPlugin implements PluginBase, APSInterface {
DetermineBasalResultMA lastAPSResult = null; DetermineBasalResultMA lastAPSResult = null;
private boolean fragmentEnabled = false; private boolean fragmentEnabled = false;
private boolean fragmentVisible = true; private boolean fragmentVisible = false;
@Override @Override
public String getName() { public String getName() {

View file

@ -38,7 +38,7 @@ public class CircadianPercentageProfilePlugin implements PluginBase, ProfileInte
private static Logger log = LoggerFactory.getLogger(CircadianPercentageProfilePlugin.class); private static Logger log = LoggerFactory.getLogger(CircadianPercentageProfilePlugin.class);
private boolean fragmentEnabled = false; private boolean fragmentEnabled = false;
private boolean fragmentVisible = true; private boolean fragmentVisible = false;
private static ProfileStore convertedProfile = null; private static ProfileStore convertedProfile = null;
private static String convertedProfileName = null; private static String convertedProfileName = null;

View file

@ -27,7 +27,7 @@ public class LocalProfilePlugin implements PluginBase, ProfileInterface {
private static Logger log = LoggerFactory.getLogger(LocalProfilePlugin.class); private static Logger log = LoggerFactory.getLogger(LocalProfilePlugin.class);
private boolean fragmentEnabled = false; private boolean fragmentEnabled = false;
private boolean fragmentVisible = true; private boolean fragmentVisible = false;
private ProfileStore convertedProfile = null; private ProfileStore convertedProfile = null;
private String convertedProfileName = null; private String convertedProfileName = null;

View file

@ -33,7 +33,7 @@ public class SimpleProfilePlugin implements PluginBase, ProfileInterface {
} }
private boolean fragmentEnabled = false; private boolean fragmentEnabled = false;
private boolean fragmentVisible = true; private boolean fragmentVisible = false;
private static ProfileStore convertedProfile = null; private static ProfileStore convertedProfile = null;

View file

@ -64,7 +64,7 @@ public class SmsCommunicatorPlugin implements PluginBase {
} }
private boolean fragmentEnabled = false; private boolean fragmentEnabled = false;
private boolean fragmentVisible = true; private boolean fragmentVisible = false;
private final long CONFIRM_TIMEOUT = 5 * 60 * 1000L; private final long CONFIRM_TIMEOUT = 5 * 60 * 1000L;