mirror of
https://github.com/safing/portmaster
synced 2025-09-02 18:49:14 +00:00
Switch default action / asking to release level experimental
There are, well, many problems...
This commit is contained in:
parent
4671535691
commit
26fd447700
2 changed files with 3 additions and 2 deletions
|
@ -48,7 +48,7 @@ func registerConfig() error {
|
||||||
Order: CfgOptionAskWithSystemNotificationsOrder,
|
Order: CfgOptionAskWithSystemNotificationsOrder,
|
||||||
OptType: config.OptTypeBool,
|
OptType: config.OptTypeBool,
|
||||||
ExpertiseLevel: config.ExpertiseLevelUser,
|
ExpertiseLevel: config.ExpertiseLevelUser,
|
||||||
ReleaseLevel: config.ReleaseLevelStable,
|
ReleaseLevel: config.ReleaseLevelExperimental,
|
||||||
DefaultValue: true,
|
DefaultValue: true,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -62,7 +62,7 @@ func registerConfig() error {
|
||||||
Order: CfgOptionAskTimeoutOrder,
|
Order: CfgOptionAskTimeoutOrder,
|
||||||
OptType: config.OptTypeInt,
|
OptType: config.OptTypeInt,
|
||||||
ExpertiseLevel: config.ExpertiseLevelUser,
|
ExpertiseLevel: config.ExpertiseLevelUser,
|
||||||
ReleaseLevel: config.ReleaseLevelStable,
|
ReleaseLevel: config.ReleaseLevelExperimental,
|
||||||
DefaultValue: 60,
|
DefaultValue: 60,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -94,6 +94,7 @@ func registerConfiguration() error {
|
||||||
Description: `The default filter action when nothing else permits or blocks a connection.`,
|
Description: `The default filter action when nothing else permits or blocks a connection.`,
|
||||||
Order: cfgOptionDefaultActionOrder,
|
Order: cfgOptionDefaultActionOrder,
|
||||||
OptType: config.OptTypeString,
|
OptType: config.OptTypeString,
|
||||||
|
ReleaseLevel: config.ReleaseLevelExperimental,
|
||||||
DefaultValue: "permit",
|
DefaultValue: "permit",
|
||||||
ExternalOptType: "string list",
|
ExternalOptType: "string list",
|
||||||
ValidationRegex: "^(permit|ask|block)$",
|
ValidationRegex: "^(permit|ask|block)$",
|
||||||
|
|
Loading…
Add table
Reference in a new issue