Skip to content

Commit c68da6e

Browse files
author
Roberto Sora
committed
Update systray module to getlantern original mainstrem repo
1 parent 318de37 commit c68da6e

File tree

212 files changed

+54125
-755
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

212 files changed

+54125
-755
lines changed

Gopkg.lock

+33-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ required = ["goa.design/goa/codegen/generator"]
3434
name = "github.com/blang/semver"
3535
version = "3.5.1"
3636

37-
[[constraint]]
38-
branch = "master"
39-
name = "github.com/facchinm/systray"
4037

4138
[[constraint]]
4239
name = "github.com/gin-gonic/gin"

trayicon.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import (
3636
"runtime"
3737

3838
"github.com/arduino/arduino-create-agent/icon"
39-
"github.com/facchinm/systray"
39+
"github.com/getlantern/systray"
4040
"github.com/go-ini/ini"
4141
"github.com/kardianos/osext"
4242
log "github.com/sirupsen/logrus"
@@ -47,9 +47,9 @@ import (
4747
func setupSysTray() {
4848
runtime.LockOSThread()
4949
if *hibernate == true {
50-
systray.Run(setupSysTrayHibernate)
50+
systray.Run(setupSysTrayHibernate,nil)
5151
} else {
52-
systray.Run(setupSysTrayReal)
52+
systray.Run(setupSysTrayReal,nil)
5353
}
5454
}
5555

vendor/github.com/facchinm/systray/README.md

-57
This file was deleted.

vendor/github.com/facchinm/systray/embeddll.bash

-10
This file was deleted.

vendor/github.com/facchinm/systray/signdll.bash

-19
This file was deleted.

vendor/github.com/facchinm/systray/systray.h

-9
This file was deleted.

vendor/github.com/facchinm/systray/systray_nonwindows.go

-71
This file was deleted.

0 commit comments

Comments
 (0)