From 8f0237531f5d6c265638568f1e50c0cb941cb611 Mon Sep 17 00:00:00 2001 From: Sandeep Mistry Date: Tue, 17 Sep 2019 11:17:58 -0400 Subject: [PATCH 1/3] Serial Plotter: Don't try to parse line containing only trimmable characters --- app/src/processing/app/SerialPlotter.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/src/processing/app/SerialPlotter.java b/app/src/processing/app/SerialPlotter.java index 336cbd43e..b234a3e4d 100644 --- a/app/src/processing/app/SerialPlotter.java +++ b/app/src/processing/app/SerialPlotter.java @@ -289,6 +289,10 @@ public class SerialPlotter extends AbstractMonitor { messageBuffer.delete(0, linebreak + 1); line = line.trim(); + if (line.length() == 0) { + // the line only contained trimmable characters + continue; + } String[] parts = line.split("[, \t]+"); if(parts.length == 0) { continue; From 2b4242929c4ac29fc2cea3aa51cb92de5260be30 Mon Sep 17 00:00:00 2001 From: Martino Facchin Date: Thu, 19 Sep 2019 12:51:38 +0200 Subject: [PATCH 2/3] Linux: quote install script paths Fixes #9217 --- build/linux/dist/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/linux/dist/install.sh b/build/linux/dist/install.sh index 17c2b090f..0fa79ea50 100755 --- a/build/linux/dist/install.sh +++ b/build/linux/dist/install.sh @@ -29,7 +29,7 @@ xdg_install_f() { TMP_DIR=`mktemp --directory` # Create *.desktop file using the existing template file - sed -e "s,,${SCRIPT_PATH}/arduino,g" \ + sed -e "s,,\"${SCRIPT_PATH}/arduino\",g" \ -e "s,,${RESOURCE_NAME},g" "${SCRIPT_PATH}/lib/desktop.template" > "${TMP_DIR}/${RESOURCE_NAME}.desktop" # Install the icon files using name and resolutions From 6116a8e9206124329e0c8b58e828eb5b83b6055a Mon Sep 17 00:00:00 2001 From: Martino Facchin Date: Thu, 19 Sep 2019 12:54:30 +0200 Subject: [PATCH 3/3] Starting 1.8.11 --- arduino-core/src/processing/app/BaseNoGui.java | 4 ++-- build/shared/revisions.txt | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/arduino-core/src/processing/app/BaseNoGui.java b/arduino-core/src/processing/app/BaseNoGui.java index 0d921f6cc..59ef009a6 100644 --- a/arduino-core/src/processing/app/BaseNoGui.java +++ b/arduino-core/src/processing/app/BaseNoGui.java @@ -41,9 +41,9 @@ import static processing.app.helpers.filefilters.OnlyDirs.ONLY_DIRS; public class BaseNoGui { /** Version string to be used for build */ - public static final int REVISION = 10810; + public static final int REVISION = 10811; /** Extended version string displayed on GUI */ - public static final String VERSION_NAME = "1.8.10"; + public static final String VERSION_NAME = "1.8.11"; public static final String VERSION_NAME_LONG; // Current directory to use for relative paths specified on the diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 2442a68fb..e4d90827f 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -1,3 +1,6 @@ +ARDUINO 1.8.11 ???? + + ARDUINO 1.8.10 2019.09.13 [ide]