Skip to content

Releases: tanaikech/ggsrun

v2.0.2

05 Apr 12:38
Compare
Choose a tag to compare
  • v2.0.2 (April 5, 2023)

    1. Rebuild with the latest version.

v2.0.1

24 Feb 05:54
Compare
Choose a tag to compare
  • v2.0.1 (February 24, 2023)

    1. Modified go.mod, go.sum.

v2.0.0

25 Feb 06:45
Compare
Choose a tag to compare
  • v2.0.0 (February 25, 2022)

    1. Modified using the latest libraries. The specification of ggsrun is not changed.

v1.7.4

11 Mar 06:46
Compare
Choose a tag to compare
  • v1.7.4 (March 11, 2020)

    1. 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

03 Jan 02:07
Compare
Choose a tag to compare
  • v1.7.3 (January 3, 2020)

    1. It seems that the specification of github.com/urfave/cli was changed by the update of https://github.com/urfave/cli. By this, when go get -u github.com/tanaikech/ggsrun is run, an error occurred. So this error was removed.

v1.7.1

30 Dec 03:15
Compare
Choose a tag to compare
  • v1.7.1 (December 30, 2018)
    1. A bug was removed.
      • When a project is downloaded and zipped, there was a case that "createdTime" and "modifiedTime" of the project cannot be retrieved by Apps Script API. This was modified.

v1.7.0

27 Dec 02:51
Compare
Choose a tag to compare

v1.6.0

30 Nov 01:44
Compare
Choose a tag to compare
  • v1.6.0 (November 30, 2018)
    1. 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 ###"
    2. Some modifications.

v1.5.2

04 Nov 04:09
Compare
Choose a tag to compare
  • v1.5.2 (November 4, 2018)
    1. 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
    2. 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

v1.5.1

02 Nov 05:17
Compare
Choose a tag to compare
  • v1.5.1 (November 2, 2018)
    1. Removed a bug.
      • When a file information was retrieved, createdTime and modifiedTime couldn't be seen and the information was incompleted.