diff --git a/firewall/filter.go b/firewall/filter.go index 6302401c..3a2aa137 100644 --- a/firewall/filter.go +++ b/firewall/filter.go @@ -8,7 +8,6 @@ import ( // module dependencies _ "github.com/safing/portmaster/core" - _ "github.com/safing/portmaster/profile" ) var ( diff --git a/firewall/interception.go b/firewall/interception.go index f7bf1f1d..f99c94c0 100644 --- a/firewall/interception.go +++ b/firewall/interception.go @@ -15,8 +15,7 @@ import ( "github.com/safing/portmaster/network/packet" // module dependencies - _ "github.com/safing/portmaster/core" - _ "github.com/safing/portmaster/profile" + _ "github.com/safing/portmaster/core/base" ) var ( @@ -42,7 +41,7 @@ var ( ) func init() { - interceptionModule = modules.Register("interception", interceptionPrep, interceptionStart, interceptionStop, "base") + interceptionModule = modules.Register("interception", interceptionPrep, interceptionStart, interceptionStop, "base", "updates", "network") network.SetDefaultFirewallHandler(defaultHandler) } diff --git a/main.go b/main.go index 2fa250d2..a58a72b4 100644 --- a/main.go +++ b/main.go @@ -15,6 +15,6 @@ import ( ) func main() { - info.Set("Portmaster", "0.4.2", "AGPLv3", true) + info.Set("Portmaster", "0.4.3", "AGPLv3", true) os.Exit(run.Run()) }