Skip to content

Commit 34009f0

Browse files
committedFeb 21, 2014
Merge pull request #1886 from arduino/ide-1.5.6-r2
Fixes for 1.5.6-r2 release
2 parents c39a6a2 + f3619c3 commit 34009f0

20 files changed

+6
-27
lines changed
 

‎app/src/cc/arduino/packages/Uploader.java

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
You should have received a copy of the GNU General Public License
2121
along with this program; if not, write to the Free Software Foundation,
2222
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23-
24-
$Id$
2523
*/
2624

2725
package cc.arduino.packages;

‎app/src/cc/arduino/packages/uploaders/SerialUploader.java

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
You should have received a copy of the GNU General Public License
2323
along with this program; if not, write to the Free Software Foundation,
2424
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25-
26-
$Id$
2725
*/
2826

2927
package cc.arduino.packages.uploaders;

‎app/src/processing/app/Serial.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public void addListener(MessageConsumer consumer) {
175175
public synchronized void serialEvent(SerialPortEvent serialEvent) {
176176
if (serialEvent.isRXCHAR()) {
177177
try {
178-
byte[] buf = port.readBytes();
178+
byte[] buf = port.readBytes(serialEvent.getEventValue());
179179
if (buf.length > 0) {
180180
if (bufferLast == buffer.length) {
181181
byte temp[] = new byte[bufferLast << 1];

‎app/src/processing/app/debug/Sizer.java

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
You should have received a copy of the GNU General Public License
2121
along with this program; if not, write to the Free Software Foundation,
2222
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23-
24-
$Id$
2523
*/
2624

2725
package processing.app.debug;

‎app/src/processing/app/debug/TargetPackage.java

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
You should have received a copy of the GNU General Public License
1919
along with this program; if not, write to the Free Software Foundation,
2020
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21-
22-
$Id$
2321
*/
2422
package processing.app.debug;
2523

‎app/src/processing/app/debug/TargetPlatform.java

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
You should have received a copy of the GNU General Public License
1919
along with this program; if not, write to the Free Software Foundation,
2020
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21-
22-
$Id$
2321
*/
2422
package processing.app.debug;
2523

‎app/src/processing/app/helpers/PreferencesMap.java

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
You should have received a copy of the GNU General Public License
1919
along with this program; if not, write to the Free Software Foundation,
2020
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21-
22-
$Id$
2321
*/
2422
package processing.app.helpers;
2523

‎app/src/processing/app/helpers/StringReplacer.java

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
You should have received a copy of the GNU General Public License
1919
along with this program; if not, write to the Free Software Foundation,
2020
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21-
22-
$Id$
2321
*/
2422
package processing.app.helpers;
2523

‎app/src/processing/app/syntax/CTokenMarker.java

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
* C token marker.
1616
*
1717
* @author Slava Pestov
18-
* @version $Id: CTokenMarker.java 1268 2005-04-09 02:30:37Z benfry $
1918
*/
2019
public class CTokenMarker extends TokenMarker
2120
{

‎app/src/processing/app/syntax/DefaultInputHandler.java

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
* The default input handler. It maps sequences of keystrokes into actions
2020
* and inserts key typed events into the text area.
2121
* @author Slava Pestov
22-
* @version $Id: DefaultInputHandler.java 1438 2005-05-11 08:34:16Z benfry $
2322
*/
2423
public class DefaultInputHandler extends InputHandler
2524
{

‎app/src/processing/app/syntax/InputHandler.java

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
* to the implementations of this class to do so.
2525
*
2626
* @author Slava Pestov
27-
* @version $Id: InputHandler.java 6126 2010-02-16 23:43:53Z fry $
2827
*/
2928
public abstract class InputHandler extends KeyAdapter
3029
{

‎app/src/processing/app/syntax/JEditTextArea.java

-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
* + "}");</pre>
5656
*
5757
* @author Slava Pestov
58-
* @version $Id: JEditTextArea.java 6123 2010-02-16 21:43:44Z fry $
5958
*/
6059
public class JEditTextArea extends JComponent
6160
{

‎app/src/processing/app/syntax/KeywordMap.java

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
* This class is used by <code>CTokenMarker</code> to map keywords to ids.
2121
*
2222
* @author Slava Pestov, Mike Dillon
23-
* @version $Id: KeywordMap.java 2050 2006-03-11 00:50:01Z fry $
2423
*/
2524
public class KeywordMap
2625
{

‎app/src/processing/app/syntax/SyntaxDocument.java

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
* system.
1919
*
2020
* @author Slava Pestov
21-
* @version $Id: SyntaxDocument.java 1268 2005-04-09 02:30:37Z benfry $
2221
*/
2322
public class SyntaxDocument extends PlainDocument
2423
{

‎app/src/processing/app/syntax/SyntaxStyle.java

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* A simple text style class. It can specify the color, italic flag,
2222
* and bold flag of a run of text.
2323
* @author Slava Pestov
24-
* @version $Id: SyntaxStyle.java 4824 2008-10-11 23:41:40Z fry $
2524
*/
2625
public class SyntaxStyle
2726
{

‎app/src/processing/app/syntax/SyntaxUtilities.java

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
* subsystem.
2121
*
2222
* @author Slava Pestov
23-
* @version $Id: SyntaxUtilities.java 1268 2005-04-09 02:30:37Z benfry $
2423
*/
2524
public class SyntaxUtilities
2625
{

‎app/src/processing/app/syntax/TextUtilities.java

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
/**
1515
* Class with several utility functions used by the text area component.
1616
* @author Slava Pestov
17-
* @version $Id: TextUtilities.java 1268 2005-04-09 02:30:37Z benfry $
1817
*/
1918
public class TextUtilities
2019
{

‎app/src/processing/app/syntax/Token.java

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* token in the text, and a pointer to the next token in the list.
1818
*
1919
* @author Slava Pestov
20-
* @version $Id: Token.java 1268 2005-04-09 02:30:37Z benfry $
2120
*/
2221
public class Token
2322
{

‎build/linux/dist/tools/avrdude.conf

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# $Id: avrdude.conf.in 991 2011-08-26 20:50:32Z joerg_wunsch $ -*- text -*-
2-
#
31
# AVRDUDE Configuration File
42
#
53
# This file contains configuration data used by AVRDUDE which describes

‎build/shared/revisions.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
ARDUINO 1.5.6-r2 BETA 2014.02.21
3+
4+
[ide]
5+
* JSSC: Fixed NPE when RXCHAR event with no bytes (José Pereda)
6+
27
ARDUINO 1.5.6 BETA 2014.02.20
38

49
[ide]

0 commit comments

Comments
 (0)
Please sign in to comment.