diff --git a/README.md b/README.md index 5beb14c..49e05c6 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ If you use this library in your own Google Apps Script project, please copy and "main.js" is used for the Google Apps Script library. So, in this pattern, you are not required to use it. -In this case, please install another library [PDFApp](https://github.com/tanaikech/PDFApp). This is used for converting PDF data to image data. When an error like `ReferenceError: PDFApp is not defined` occurs, please check this. +In this case, please copy and paste the script of [PDFApp](https://github.com/tanaikech/PDFApp/blob/master/PDFApp.js) into the same project. This is used for converting PDF data to image data. When an error like `ReferenceError: PDFApp is not defined` occurs, please check this. # Scopes @@ -1166,4 +1166,8 @@ I have already proposed the following future requests to the Google issue tracke 1. Spelling mistakes in the warning message were modified. The wait time for changing the value of state for the movie file is changed from 5 seconds to 10 seconds per cycle. +- v1.0.6 (June 15, 2024) + + 1. Included the script of PDFApp in this library. + [TOP](#top) diff --git a/appsscript.json b/appsscript.json new file mode 100644 index 0000000..4f96d59 --- /dev/null +++ b/appsscript.json @@ -0,0 +1,10 @@ +{ + "timeZone": "Asia/Tokyo", + "exceptionLogging": "STACKDRIVER", + "runtimeVersion": "V8", + "dependencies": {}, + "oauthScopes": [ + "https://www.googleapis.com/auth/script.external_request", + "https://www.googleapis.com/auth/drive" + ] +} \ No newline at end of file