Releases: tanaikech/ggsrun
Releases · tanaikech/ggsrun
v2.0.2
v2.0.1
v2.0.0
v1.7.4
-
v1.7.4 (March 11, 2020)
-
Recently, I noticed that new Google Apps Script project of the standalone script type cannot be created by the create method of Drive API. From now, in order to create the standalone Google Apps Script project, only Google Apps Script API is required to be used. Ref By this, I updated ggsrun. So the command for creating new GAS project is not changed.
$ ggsrun u -p ###folderId### -f sample.gs -pn sampleGASProjectName
-
v1.7.3
-
v1.7.3 (January 3, 2020)
- It seems that the specification of
github.com/urfave/cli
was changed by the update of https://github.com/urfave/cli. By this, whengo get -u github.com/tanaikech/ggsrun
is run, an error occurred. So this error was removed.
- It seems that the specification of
v1.7.1
v1.7.0
- v1.7.0 (December 27, 2018)
- Manage permissions of files.
- Get Drive Information. By this, you can know the storage quotas.
- ggsrun got to be able to be used by not only OAuth2, but also Service Account. By this, using ggsrun, Google Drive for Service Account got to be able to be managed.
- Some modifications.
v1.6.0
- v1.6.0 (November 30, 2018)
- Although at ggsrun, files can be searched by filename and file ID, searching files using search query and regex couldn't be done. From version 1.6.0, files got to be able to be searched using the search query and regex.
$ ggsrun sf -q "### search query ###" -f "### fields ###" -r "### regex ###"
- Some modifications.
- Although at ggsrun, files can be searched by filename and file ID, searching files using search query and regex couldn't be done. From version 1.6.0, files got to be able to be searched using the search query and regex.
v1.5.2
- v1.5.2 (November 4, 2018)
- About downloading folders, when files are downloaded from a folder, you can download Google Docs files with the mimeType you want. For example, when you download files from the folder, if
-e txt
is used, Google Docs are downloaded as the text file. When-e pdf
is used, they are downloaded as the PDF file. Of course, there are mimeType which cannot be converted.$ ggsrun d -f [folderName] -e txt -j
- About uploading files, when files are uploaded from your local PC, the files got to be able to be converted to Google Docs. For this, new option of
--convertto
,-c
is added. For example, when a text file is uploaded, if you use-c doc
, the text file is uploaded as Google Document.$ ggsrun u -f [fileName] -c doc -j
- About downloading folders, when files are downloaded from a folder, you can download Google Docs files with the mimeType you want. For example, when you download files from the folder, if