Skip to content

Commit

Permalink
drop the support for win32 chromium
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmood committed Aug 1, 2023
1 parent 48e06d6 commit 2e5e465
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/launcher/revision.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package launcher

// RevisionDefault for chromium
const RevisionDefault = 1131003
const RevisionDefault = 1131657

// RevisionPlaywright for arm linux
const RevisionPlaywright = 1067
const RevisionPlaywright = 1071
5 changes: 5 additions & 0 deletions lib/launcher/revision/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ func main() {

revLists := [][]int{}
for _, os := range list {
// skip win32
if os == "Win" {
continue
}

revList := []int{}
for _, s := range getList(mirror + os + "/") {
rev, err := strconv.ParseInt(s, 10, 32)
Expand Down
3 changes: 3 additions & 0 deletions lib/proto/css.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ type CSSCSSStyleSheetHeader struct {

// EndColumn Column offset of the end of the stylesheet within the resource (zero based).
EndColumn float64 `json:"endColumn"`

// LoadingFailed (experimental) (optional) If the style sheet was loaded from a network resource, this indicates when the resource failed to load
LoadingFailed bool `json:"loadingFailed,omitempty"`
}

// CSSCSSRule CSS rule representation.
Expand Down

0 comments on commit 2e5e465

Please sign in to comment.