From 6b5a99b7b5864d56415dbd7b67c65b8b06c6080c Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 25 Jun 2014 11:21:15 +0200 Subject: [PATCH] Version bumped to 1.5.7. Updated revision log. --- app/src/processing/app/Base.java | 4 ++-- build/shared/revisions.txt | 33 ++++++++++++++++++++++++++++++-- 2 files changed, 33 insertions(+), 4 deletions(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index c0806157e..4b7207780 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -61,9 +61,9 @@ import static processing.app.I18n._; * files and images, etc) that comes from that. */ public class Base { - public static final int REVISION = 156; + public static final int REVISION = 157; /** This might be replaced by main() if there's a lib/version.txt file. */ - static String VERSION_NAME = "0156"; + static String VERSION_NAME = "0157"; /** Set true if this a proper release rather than a numbered revision. */ static public boolean RELEASE = false; diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 71887d4c0..b49696320 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -1,7 +1,36 @@ -ARDUINO 1.5.7 +ARDUINO 1.5.7 BETA [core] -* [fix] Bridge HttpClient had wrong implementation of running() function +* Upgraded AVR toolchain: gcc 4.8.1, avr-libc 1.8.0 +* Upgraded avrdude to version 6.0.1 +* avr: Improved USB-CDC write speed (Justin Rajewski) +* avr: fixed typo in SerialEvent3 handling (Matthijs Kooijman) +* avr: HardwareSerial support for different size of TX and RX buffer sizes (Jan Baeyens) +* avr: HardwareSerial support for buffer sizes bigger than 256 bytes (Jan Baeyens) +* sam: Added configuration (parity, data bits, stop bits) to Serial1/2/3 of Arduino Due (bluesign2k) +* Removed a lot of compiler warnings from Arduino core +* avr: Fix EXTERNAL_NUM_INTERRUPTS for atmega128rfa1 and atmega256rfr2 (Matthijs Kooijman) +* sam: Fix to Wire::endTransmisson() return value (bluesign2k) +* sam: Fix to Wire usage of TWI status register (bluesign2k) + +[ide] +* Added support for '-' and '.' in filenames (Georg von Zengen) +* (re)Added 'arduino_debug.exe' in Windows build for debugging purposes +* Magic baudrate is no longer removed (it was a workaround for RXTX) + (for more info see github issues: #1203 and #995) +* Allow overriding platform.txt using platform.local.txt (Matthijs Kooijman) +* Explicitly define compiler.path in avr/platform.txt (Matthijs Kooijman) +* Make the low available memory message a warning (Matt Robinson) +* Proceed with upload even if port can't be found (David Mellis) + +[libraries] +* Updated SpaceBrew library +* Fixed HttpClient::running() function +* Fixed HttpClient::ready() function (Manuel Rabade) +* Added HttpClient::noCheckSSL() method +* Improved speed of YunSerialTerminal +* Fixed CRC of shutdown command on YunSerialTerminal example +* Updates/Fix to various examples ARDUINO 1.5.6-r2 BETA 2014.02.21