From 8f95fd6ca685b0743c75142630974b613f4456a6 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 6 Sep 2022 11:43:09 -0700 Subject: [PATCH 1/3] Add instructions for accessing IDE's advanced settings Although the Arduino IDE's primary preferences interface provides all required configuration capabilities, advanced users may wish to fine tune the behavior of the application or temporarily enable additional log output to use for troubleshooting problems with the IDE. The IDE provides such settings in a separate interface. Previously, the existence and access procedure for these settings was undocumented. Since this is an advanced capability, the documentation is not appropriate for inclusion with the standard user documentation on arduino.cc. A file here in the Arduino IDE is used instead. This file will serve as a container for all such user-targeted documentation. --- docs/advanced-usage.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/advanced-usage.md diff --git a/docs/advanced-usage.md b/docs/advanced-usage.md new file mode 100644 index 000000000..bd5d96c3b --- /dev/null +++ b/docs/advanced-usage.md @@ -0,0 +1,14 @@ +# Advanced usage + +## Advanced settings + +The Arduino IDE's primary settings are accessible via the **File > Preferences** menu item. These provide all the configuration capability required by the average user to develop sketches. + +Arduino IDE has some additional settings which may be of interest to advanced users who want to do things such as fine tune the behavior of the application or increase log output while investigating a problem. + +These advanced settings can be accessed by the following procedure: + +1. Press the **Ctrl**+**Shift**+**P** keyboard shortcut (**Command**+**Shift**+**P** for macOS users) to open the "**Command Palette**". +1. Select the "**Preferences: Open Settings (UI)**" command from the menu. + +This will open a "**Preferences**" view in the IDE. Once you are finished adjusting settings, it can be closed by clicking the **X** icon on the "**Preferences**" tab. From 76673cb5537706c4de49ffa172fea7f75ed4b32e Mon Sep 17 00:00:00 2001 From: Muhammad Zaheer Date: Thu, 8 Sep 2022 09:00:39 +0530 Subject: [PATCH 2/3] Time format in SerialMonitor changed.Fixes #580 --- .../src/browser/serial/monitor/serial-monitor-send-output.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino-ide-extension/src/browser/serial/monitor/serial-monitor-send-output.tsx b/arduino-ide-extension/src/browser/serial/monitor/serial-monitor-send-output.tsx index 2e85025fb..136180202 100644 --- a/arduino-ide-extension/src/browser/serial/monitor/serial-monitor-send-output.tsx +++ b/arduino-ide-extension/src/browser/serial/monitor/serial-monitor-send-output.tsx @@ -109,7 +109,7 @@ const _Row = ({ }) => { const timestamp = (data.timestamp && - `${dateFormat(data.lines[index].timestamp, 'H:M:ss.l')} -> `) || + `${dateFormat(data.lines[index].timestamp, 'HH:MM:ss.l')} -> `) || ''; return ( (data.lines[index].lineLen && ( From dcc0c0aa5daf65409a21c25fdc1010f5a44f8bd7 Mon Sep 17 00:00:00 2001 From: Alberto Iannaccone Date: Thu, 8 Sep 2022 10:00:42 +0200 Subject: [PATCH 3/3] Prepare 2.0.0-rc9.4 (#1411) --- arduino-ide-extension/package.json | 4 ++-- browser-app/package.json | 4 ++-- electron-app/package.json | 4 ++-- package.json | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/arduino-ide-extension/package.json b/arduino-ide-extension/package.json index b2808c0d9..18095e77e 100644 --- a/arduino-ide-extension/package.json +++ b/arduino-ide-extension/package.json @@ -1,6 +1,6 @@ { "name": "arduino-ide-extension", - "version": "2.0.0-rc9.3", + "version": "2.0.0-rc9.4", "description": "An extension for Theia building the Arduino IDE", "license": "AGPL-3.0-or-later", "scripts": { @@ -160,7 +160,7 @@ ], "arduino": { "cli": { - "version": "0.27.0-rc.1" + "version": "0.27.1" }, "fwuploader": { "version": "2.2.0" diff --git a/browser-app/package.json b/browser-app/package.json index a191f4a51..26fabec10 100644 --- a/browser-app/package.json +++ b/browser-app/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "browser-app", - "version": "2.0.0-rc9.3", + "version": "2.0.0-rc9.4", "license": "AGPL-3.0-or-later", "dependencies": { "@theia/core": "1.25.0", @@ -19,7 +19,7 @@ "@theia/process": "1.25.0", "@theia/terminal": "1.25.0", "@theia/workspace": "1.25.0", - "arduino-ide-extension": "2.0.0-rc9.3" + "arduino-ide-extension": "2.0.0-rc9.4" }, "devDependencies": { "@theia/cli": "1.25.0" diff --git a/electron-app/package.json b/electron-app/package.json index d21437cfe..eb967f678 100644 --- a/electron-app/package.json +++ b/electron-app/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "electron-app", - "version": "2.0.0-rc9.3", + "version": "2.0.0-rc9.4", "license": "AGPL-3.0-or-later", "main": "src-gen/frontend/electron-main.js", "dependencies": { @@ -21,7 +21,7 @@ "@theia/process": "1.25.0", "@theia/terminal": "1.25.0", "@theia/workspace": "1.25.0", - "arduino-ide-extension": "2.0.0-rc9.3" + "arduino-ide-extension": "2.0.0-rc9.4" }, "devDependencies": { "@theia/cli": "1.25.0", diff --git a/package.json b/package.json index 52e21349d..c4c2d0626 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "arduino-ide", - "version": "2.0.0-rc9.3", + "version": "2.0.0-rc9.4", "description": "Arduino IDE", "repository": "https://github.com/arduino/arduino-ide.git", "author": "Arduino SA",