1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-31 20:52:13 +01:00

Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Joe Wegner 2019-09-27 09:42:56 -04:00
commit 09e420245b
4 changed files with 10 additions and 3 deletions

View File

@ -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;

View File

@ -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

View File

@ -29,7 +29,7 @@ xdg_install_f() {
TMP_DIR=`mktemp --directory`
# Create *.desktop file using the existing template file
sed -e "s,<BINARY_LOCATION>,${SCRIPT_PATH}/arduino,g" \
sed -e "s,<BINARY_LOCATION>,\"${SCRIPT_PATH}/arduino\",g" \
-e "s,<ICON_NAME>,${RESOURCE_NAME},g" "${SCRIPT_PATH}/lib/desktop.template" > "${TMP_DIR}/${RESOURCE_NAME}.desktop"
# Install the icon files using name and resolutions

View File

@ -1,3 +1,6 @@
ARDUINO 1.8.11 ????
ARDUINO 1.8.10 2019.09.13
[ide]