Version bumped to 1.5.7. Updated revision log.

This commit is contained in:
Cristian Maglie 2014-06-25 11:21:15 +02:00
parent 59767b4c03
commit 6b5a99b7b5
2 changed files with 33 additions and 4 deletions

View File

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

View File

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