Skip to content

Commit

Permalink
fix filtering; update iplocation db
Browse files Browse the repository at this point in the history
  • Loading branch information
henkman committed Mar 19, 2023
1 parent e1e89d0 commit 33ceeda
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ module github.com/henkman/rs2bundle
go 1.18

require (
github.com/henkman/steamquery v0.0.0-20201021084952-4886f972c246
github.com/henkman/steamwebapi v0.0.0-20171117143104-606239fc6556
github.com/henkman/steamquery v1.0.1
github.com/henkman/steamwebapi v1.0.0
github.com/ip2location/ip2location-go v8.3.0+incompatible
github.com/lxn/walk v0.0.0-20210112085537-c389da54e794
github.com/lxn/win v0.0.0-20210218163916-a377121e959e
)

require (
golang.org/x/sys v0.0.0-20201018230417-eeed37f84f13 // indirect
golang.org/x/sys v0.6.0 // indirect
gopkg.in/Knetic/govaluate.v3 v3.0.0 // indirect
)
Binary file modified serverbrowser/IP2LOCATION-LITE-DB1.BIN
Binary file not shown.
1 change: 1 addition & 0 deletions serverbrowser/serverbrowser.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ func main() {
OnClicked: func() {
game := games[model.gameComboBox.CurrentIndex()]
model.Refresh(game, model.showEmptyCheckbox.Checked())
model.Filter()
model.Sort(model.SortedColumn(), model.SortOrder())
model.PublishRowsReset()
},
Expand Down
1 change: 1 addition & 0 deletions serverstats/serverstats.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ func main() {
Text: "Refresh",
OnClicked: func() {
model.Refresh(addr)
model.Filter()
model.Sort(model.SortedColumn(), model.SortOrder())
model.PublishRowsReset()
},
Expand Down

0 comments on commit 33ceeda

Please sign in to comment.