Skip to content

Commit

Permalink
Update upload count dynamically #92, remove debug log, update depende…
Browse files Browse the repository at this point in the history
…ncies
  • Loading branch information
Forceu committed Mar 10, 2023
1 parent c49a214 commit 2d57cd6
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 72 deletions.
34 changes: 17 additions & 17 deletions build/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,40 +5,40 @@ go 1.20
require (
git.mills.io/prologic/bitcask v1.0.2
github.com/NYTimes/gziphandler v1.1.1
github.com/aws/aws-sdk-go v1.42.22
github.com/caarlos0/env/v6 v6.9.1
github.com/aws/aws-sdk-go v1.44.207
github.com/caarlos0/env/v6 v6.10.1
github.com/inhies/go-bytesize v0.0.0-20220417184213-4913239db9cf
github.com/jinzhu/copier v0.3.5
github.com/johannesboyne/gofakes3 v0.0.0-20210415062230-4b6b67a85d38
github.com/juju/ratelimit v1.0.2
github.com/secure-io/sio-go v0.3.1
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
golang.org/x/crypto v0.6.0
golang.org/x/oauth2 v0.5.0
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4
golang.org/x/term v0.5.0
gopkg.in/yaml.v3 v3.0.1
)

require (
github.com/abcum/lcp v0.0.0-20201209214815-7a3f3840be81 // indirect
github.com/gofrs/flock v0.8.0 // indirect
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
github.com/gofrs/flock v0.8.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/plar/go-adaptive-radix-tree v1.0.4 // indirect
github.com/plar/go-adaptive-radix-tree v1.0.5 // indirect
github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46 // indirect
github.com/shabbyrobe/gocovmerge v0.0.0-20180507124511-f6ea450bfb63 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
golang.org/x/exp v0.0.0-20200228211341-fcea875c7e85 // indirect
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
golang.org/x/tools v0.1.2 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
golang.org/x/exp v0.0.0-20230213192124-5e25df0256eb // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/tools v0.2.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.26.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
)

require (
github.com/coreos/go-oidc/v3 v3.1.0
golang.org/x/sys v0.0.0-20211210111614-af8b64212486 // indirect
github.com/coreos/go-oidc/v3 v3.5.0
golang.org/x/sys v0.5.0 // indirect
)
2 changes: 1 addition & 1 deletion cmd/gokapi/Main.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const versionGokapi = "1.6.2"
// The following call updates the version numbers
// Parameters:
// GokapiVersion, JsAdmin, JsDropzone, JsE2EAdmin
//go:generate sh "../../build/setVersionTemplate.sh" "1.6.2" "14" "3" "1"
//go:generate sh "../../build/setVersionTemplate.sh" "1.6.2" "15" "3" "1"
//go:generate sh -c "cp \"$(go env GOROOT)/misc/wasm/wasm_exec.js\" ../../internal/webserver/web/static/js/ && echo Copied wasm_exec.js"
//go:generate sh -c "GOOS=js GOARCH=wasm go build -o ../../internal/webserver/web/main.wasm github.com/forceu/gokapi/cmd/wasmdownloader && echo Compiled Downloader WASM module"
//go:generate sh -c "GOOS=js GOARCH=wasm go build -o ../../internal/webserver/web/e2e.wasm github.com/forceu/gokapi/cmd/wasme2e && echo Compiled E2E WASM module"
Expand Down
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ require (
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
)

require (
Expand Down
Loading

0 comments on commit 2d57cd6

Please sign in to comment.