Hotfix dependency issue, bump version

This commit is contained in:
Daniel 2020-05-02 23:27:04 +02:00
parent 467aff1abf
commit 6bb0ac2a95
3 changed files with 3 additions and 5 deletions

View file

@ -8,7 +8,6 @@ import (
// module dependencies
_ "github.com/safing/portmaster/core"
_ "github.com/safing/portmaster/profile"
)
var (

View file

@ -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)
}

View file

@ -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())
}