From 768e1cabd1a92d419aaf9a7677c87175c8ef44c9 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Fri, 23 Apr 2021 11:08:13 -0300 Subject: [PATCH 1/4] Update chapter-06-gbapp-reference.md --- book/chapter-06-gbapp-reference.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/book/chapter-06-gbapp-reference.md b/book/chapter-06-gbapp-reference.md index 60dc0724..543997fe 100644 --- a/book/chapter-06-gbapp-reference.md +++ b/book/chapter-06-gbapp-reference.md @@ -30,10 +30,6 @@ Copy and paste on a PowerShell prompt with elavated privileges and when VSCode i ``` powershell Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) -## Automatic installation by PowerShell - -Execute the commands in sequence: - cinst git --confirm cinst nodejs --confirm --version=10.19.0 cinst vscode --confirm From a793bfa17205fda5e942448aa810a03cdc9b3545 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Fri, 23 Apr 2021 11:15:03 -0300 Subject: [PATCH 2/4] Update chapter-06-gbapp-reference.md --- book/chapter-06-gbapp-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/chapter-06-gbapp-reference.md b/book/chapter-06-gbapp-reference.md index 543997fe..3d16e809 100644 --- a/book/chapter-06-gbapp-reference.md +++ b/book/chapter-06-gbapp-reference.md @@ -31,7 +31,7 @@ Copy and paste on a PowerShell prompt with elavated privileges and when VSCode i Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) cinst git --confirm -cinst nodejs --confirm --version=10.19.0 +cinst nodejs --confirm --version=14.10.1 cinst vscode --confirm npm install windows-build-tools -g From d97326274cdf6dbfbe575de78a09ec71d7b35c5c Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Tue, 18 May 2021 13:59:29 -0300 Subject: [PATCH 3/4] Update chapter-05-gbdialog-reference.md --- book/chapter-05-gbdialog-reference.md | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/book/chapter-05-gbdialog-reference.md b/book/chapter-05-gbdialog-reference.md index 56203da5..dd4244f5 100644 --- a/book/chapter-05-gbdialog-reference.md +++ b/book/chapter-05-gbdialog-reference.md @@ -22,13 +22,18 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b | GENERATE A PASSWORD | Creates a new password into the system variable **password** for later use. | | CREATE A BOT FARM USING _params_ | Deploys a new bot farm to the cloud. | | WAIT _seconds_ | Wait a number of seconds before continuing the conversation. | -| _variable_ = GET CELL "_file_.xlsx", "_A1:A1_" (Comming soon) | Gets the value of the cell specified in range address | -| SET CELL "_file_.xlsx", "_A1:A1_", 42 (Comming soon) | Gets the value of the cell specified in range address | -| _variable_ = GET "https://server/query" (Comming soon) | Gets the value of the cell specified in range address | -| POST "https://", _data_ (Comming soon) | Gets the value of the cell specified in range address | -| wait _seconds_ (Comming soon) | Wait a number of seconds before continuing the conversation. | - - +| _variable_ = GET "_file_.xlsx", "_A1:A1_" | Gets the value of the cell specified in range address | +| SET "_file_.xlsx", "_A1:A1_", 42 | Gets the value of the cell specified in range address | +| _variable_ = GET "https://server/query" | Gets the value of the cell specified in range address | +| POST "https://", _data_ | Gets the value of the cell specified in range address | +| wait _seconds_ | Wait a number of seconds before continuing the conversation. | +| HEAR _variable_ AS EMAIL | | +| HEAR _variable_ AS DATE | | +| HEAR _variable_ AS NAME | | +| HEAR _variable_ AS INTEGER | | +| HEAR _variable_ AS BOOLEAN | | +| HEAR _variable_ AS HOUR | | +| HEAR _variable_ AS MONEY | | ## How To From a9e4d388abd540723f5c2830b9ce651eb057b610 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Tue, 18 May 2021 14:07:15 -0300 Subject: [PATCH 4/4] Update chapter-05-gbdialog-reference.md --- book/chapter-05-gbdialog-reference.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/book/chapter-05-gbdialog-reference.md b/book/chapter-05-gbdialog-reference.md index dd4244f5..7b86c6c0 100644 --- a/book/chapter-05-gbdialog-reference.md +++ b/book/chapter-05-gbdialog-reference.md @@ -34,7 +34,10 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b | HEAR _variable_ AS BOOLEAN | | | HEAR _variable_ AS HOUR | | | HEAR _variable_ AS MONEY | | - +| HEAR _variable_ AS MOBILE | | +| HEAR _variable_ AS ZIPCODE | | +| HEAR _variable_ AS "Abacate", "Maçã", "Morango" | Displays the specified menu and waits for this input until user select one of them. | +| HEAR _variable_ AS LANGUAGE | | ## How To