Skip to content

Commit

Permalink
feat: upgrade bsor decoder to v0.9.0: add predicted score and multipl…
Browse files Browse the repository at this point in the history
…ier to the game events
  • Loading branch information
motzel committed Sep 14, 2022
1 parent 4bcc43a commit e1546d0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
```
> bsor2json.exe -h
bsor2json v0.8.5
bsor2json v0.9.0
Options:
Expand Down
2 changes: 1 addition & 1 deletion bsor2json.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (argv *rootT) Validate(ctx *cli.Context) error {

var root = &cli.Command{
Name: "root",
Desc: "bsor2json v0.8.5",
Desc: "bsor2json v0.9.0",
Argv: func() interface{} { return new(rootT) },
Fn: func(ctx *cli.Context) error {
return nil
Expand Down
6 changes: 4 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ go 1.18

require (
github.com/jwalton/go-supportscolor v1.1.0
github.com/mattn/go-colorable v0.1.7
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
github.com/mkideal/cli v0.2.7
github.com/motzel/go-bsor v0.8.4
github.com/motzel/go-bsor v0.9.0
github.com/schollz/progressbar/v3 v3.10.1
)

require (
github.com/labstack/gommon v0.3.0 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mkideal/expr v0.1.0 // indirect
Expand All @@ -21,3 +21,5 @@ require (
golang.org/x/sys v0.0.0-20220908150016-7ac13a9a928d // indirect
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
)

//replace github.com/motzel/go-bsor => ../go-bsor
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ github.com/mkideal/cli v0.2.7/go.mod h1:efaTeFI4jdPqzAe0bv3myLB2NW5yzMBLvWB70a6f
github.com/mkideal/expr v0.1.0 h1:fzborV9TeSUmLm0aEQWTWcexDURFFo4v5gHSc818Kl8=
github.com/mkideal/expr v0.1.0/go.mod h1:vL1DsSb87ZtU6IEjOtUfxw98z0FQbzS8xlGtnPkKdzg=
github.com/mkideal/pkg v0.1.3/go.mod h1:u/enAxPeRcYSsxtu1NUifWSeOTU/31VsCaOPg54SMJ4=
github.com/motzel/go-bsor v0.8.4 h1:kgYIr/e6qZ4T8hRGwg+fwTDa/ooMtBko4+UUwqxP/ig=
github.com/motzel/go-bsor v0.8.4/go.mod h1:46rfFmgCS5qcHmQVShsCnpygHt/LEureIHCcLyr2WCo=
github.com/motzel/go-bsor v0.9.0 h1:BGqX/yzvy4X3pqka4gEBEEuFtsTZ4o8vvNchAhGNJnw=
github.com/motzel/go-bsor v0.9.0/go.mod h1:46rfFmgCS5qcHmQVShsCnpygHt/LEureIHCcLyr2WCo=
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/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
Expand Down

0 comments on commit e1546d0

Please sign in to comment.