mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
Hotfix dependency issue, bump version
This commit is contained in:
parent
467aff1abf
commit
6bb0ac2a95
3 changed files with 3 additions and 5 deletions
|
@ -8,7 +8,6 @@ import (
|
|||
|
||||
// module dependencies
|
||||
_ "github.com/safing/portmaster/core"
|
||||
_ "github.com/safing/portmaster/profile"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
2
main.go
2
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())
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue