mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29: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
|
// module dependencies
|
||||||
_ "github.com/safing/portmaster/core"
|
_ "github.com/safing/portmaster/core"
|
||||||
_ "github.com/safing/portmaster/profile"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
@ -15,8 +15,7 @@ import (
|
||||||
"github.com/safing/portmaster/network/packet"
|
"github.com/safing/portmaster/network/packet"
|
||||||
|
|
||||||
// module dependencies
|
// module dependencies
|
||||||
_ "github.com/safing/portmaster/core"
|
_ "github.com/safing/portmaster/core/base"
|
||||||
_ "github.com/safing/portmaster/profile"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -42,7 +41,7 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
interceptionModule = modules.Register("interception", interceptionPrep, interceptionStart, interceptionStop, "base")
|
interceptionModule = modules.Register("interception", interceptionPrep, interceptionStart, interceptionStop, "base", "updates", "network")
|
||||||
|
|
||||||
network.SetDefaultFirewallHandler(defaultHandler)
|
network.SetDefaultFirewallHandler(defaultHandler)
|
||||||
}
|
}
|
||||||
|
|
2
main.go
2
main.go
|
@ -15,6 +15,6 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
info.Set("Portmaster", "0.4.2", "AGPLv3", true)
|
info.Set("Portmaster", "0.4.3", "AGPLv3", true)
|
||||||
os.Exit(run.Run())
|
os.Exit(run.Run())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue