Skip to content

Commit

Permalink
Updated to v2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tanaikech committed Mar 9, 2024
1 parent 22fd5f3 commit 8d67ea9
Show file tree
Hide file tree
Showing 4 changed files with 181 additions and 76 deletions.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,39 @@ If you have any questions and commissions for me, feel free to tell me.

1. Modified go.mod and go.sum.

<a name="v203"></a>

- v2.0.3 (April 5, 2023)

1. Forgot to update the version number and modified it. And, built the sources with the latest version. [Ref](https://github.com/tanaikech/goodls/releases/tag/v2.0.3)

<a name="v204"></a>

- v2.0.4 (March 9, 2023)

1. From January 2024, it seems that the specification of the process for downloading a large shared file on Google Drive has been changed. So I updated goodls to reflect this. The usage of goodls has not changed. In the current stage, when a large share file is downloaded, it is required to click the following button.

```html
<form
id="download-form"
action="https://drive.usercontent.google.com/download"
method="get"
>
<input
type="submit"
id="uc-download-link"
class="goog-inline-block jfk-button jfk-button-action"
value="このままダウンロード"
/>
<input type="hidden" name="id" value="fileId" />
<input type="hidden" name="export" value="download" />
<input type="hidden" name="authuser" value="0" />
<input type="hidden" name="confirm" value="t" />
<input type="hidden" name="uuid" value="uuId" />
<input type="hidden" name="at" value="some value" />
</form>
```

In this version, the URL obtained by this click is created, and the created URL is used for downloading it.

[TOP](#top)
41 changes: 25 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,33 +1,42 @@
module goodls

go 1.21.3
go 1.22.1

require (
github.com/PuerkitoBio/goquery v1.9.1
github.com/tanaikech/go-getfilelist v2.0.0+incompatible
github.com/urfave/cli v1.22.14
golang.org/x/term v0.13.0
google.golang.org/api v0.148.0
golang.org/x/term v0.18.0
google.golang.org/api v0.169.0
)

require (
cloud.google.com/go/compute v1.23.0 // indirect
cloud.google.com/go/compute v1.23.4 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/google/uuid v1.3.1 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.1 // indirect
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
github.com/googleapis/gax-go/v2 v2.12.2 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/oauth2 v0.13.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231012201019-e917dd12ba7a // indirect
google.golang.org/grpc v1.58.3 // indirect
google.golang.org/protobuf v1.31.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
go.opentelemetry.io/otel v1.24.0 // indirect
go.opentelemetry.io/otel/metric v1.24.0 // indirect
go.opentelemetry.io/otel/trace v1.24.0 // indirect
golang.org/x/crypto v0.19.0 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/oauth2 v0.17.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78 // indirect
google.golang.org/grpc v1.62.0 // indirect
google.golang.org/protobuf v1.32.0 // indirect
)
Loading

0 comments on commit 8d67ea9

Please sign in to comment.