Skip to content
This repository has been archived by the owner on Jul 20, 2021. It is now read-only.

Commit

Permalink
Update to the March 8, 2019 CEF release
Browse files Browse the repository at this point in the history
  • Loading branch information
richardwilkes committed Mar 8, 2019
1 parent f01aa6f commit f3b3f8c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/richardwilkes/cef

require github.com/richardwilkes/toolbox v1.1.8
require github.com/richardwilkes/toolbox v1.2.0
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ github.com/pkg/term v0.0.0-20190109203006-aa71e9d9e942 h1:A7GG7zcGjl3jqAqGPmcNjd
github.com/pkg/term v0.0.0-20190109203006-aa71e9d9e942/go.mod h1:eCbImbZ95eXtAUIbLAuAVnBnwf83mjf6QIVH8SHYwqQ=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/richardwilkes/toolbox v1.1.8 h1:9f0OzdJJjNx0nMBP91kVCiZ4J4atd88RcGnDj/WTamA=
github.com/richardwilkes/toolbox v1.1.8/go.mod h1:tbqTOR46bZXq5O2tuKWEELRsSBUXaWHGfPm9yDLXpOU=
github.com/richardwilkes/toolbox v1.2.0 h1:kfiHB72AM1qSTo5pFHpMvQISBML/HRs/hY/+Hesv+0M=
github.com/richardwilkes/toolbox v1.2.0/go.mod h1:h2U7mFBRIvD5YCq5mRu1m9tc1mLFbszcyD1Qdur/07g=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
golang.org/x/sys v0.0.0-20190221222158-ec7b60b042fd h1:JYgmSAJhrvxjUInD1uG+wLPAFAG7TmIJLOgZLI210A8=
golang.org/x/sys v0.0.0-20190221222158-ec7b60b042fd/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190226215855-775f8194d0f9 h1:N26gncmS+iqc/W/SKhX3ElI5pkt72XYoRLgi5Z70LSc=
golang.org/x/sys v0.0.0-20190226215855-775f8194d0f9/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
Expand Down
16 changes: 14 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,27 @@ package main
import (
"fmt"
"os"
"runtime"

"github.com/richardwilkes/cef/internal/cmd"
"github.com/richardwilkes/toolbox"
"github.com/richardwilkes/toolbox/atexit"
"github.com/richardwilkes/toolbox/cmdline"
)

const desiredCEFVersion = "3.3626.1891.g52be333"

func main() {
// This is normally the same for all platforms, however, the March 8, 2019
// build has a slightly older build for Windows. Given the security issue
// this build addresses, I felt it was better to have the platforms
// deviate on the specific build than to wait for them to return to being
// in sync with each other.
var desiredCEFVersion string
if runtime.GOOS == toolbox.WindowsOS {
desiredCEFVersion = "3.3578.1870.gc974488"
} else {
desiredCEFVersion = "3.3626.1895.g7001d56"
}

cmdline.CopyrightYears = "2018-2019"
cmdline.CopyrightHolder = "Richard A. Wilkes"
cmdline.AppIdentifier = "com.trollworks.cef"
Expand Down

0 comments on commit f3b3f8c

Please sign in to comment.