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

Commit

Permalink
Bring Windows CEF version in line with others
Browse files Browse the repository at this point in the history
  • Loading branch information
richardwilkes committed Mar 11, 2019
1 parent f3b3f8c commit acb313e
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,15 @@ 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"
)

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"
}
const desiredCEFVersion = "3.3626.1895.g7001d56"

func main() {
cmdline.CopyrightYears = "2018-2019"
cmdline.CopyrightHolder = "Richard A. Wilkes"
cmdline.AppIdentifier = "com.trollworks.cef"
Expand Down

0 comments on commit acb313e

Please sign in to comment.