Skip to content

Fixes for 1.5.6-r2 release #1886

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 21, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions app/src/cc/arduino/packages/Uploader.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

$Id$
*/

package cc.arduino.packages;
Expand Down
2 changes: 0 additions & 2 deletions app/src/cc/arduino/packages/uploaders/SerialUploader.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

$Id$
*/

package cc.arduino.packages.uploaders;
Expand Down
2 changes: 1 addition & 1 deletion app/src/processing/app/Serial.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public void addListener(MessageConsumer consumer) {
public synchronized void serialEvent(SerialPortEvent serialEvent) {
if (serialEvent.isRXCHAR()) {
try {
byte[] buf = port.readBytes();
byte[] buf = port.readBytes(serialEvent.getEventValue());
if (buf.length > 0) {
if (bufferLast == buffer.length) {
byte temp[] = new byte[bufferLast << 1];
Expand Down
2 changes: 0 additions & 2 deletions app/src/processing/app/debug/Sizer.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

$Id$
*/

package processing.app.debug;
Expand Down
2 changes: 0 additions & 2 deletions app/src/processing/app/debug/TargetPackage.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

$Id$
*/
package processing.app.debug;

Expand Down
2 changes: 0 additions & 2 deletions app/src/processing/app/debug/TargetPlatform.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

$Id$
*/
package processing.app.debug;

Expand Down
2 changes: 0 additions & 2 deletions app/src/processing/app/helpers/PreferencesMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

$Id$
*/
package processing.app.helpers;

Expand Down
2 changes: 0 additions & 2 deletions app/src/processing/app/helpers/StringReplacer.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

$Id$
*/
package processing.app.helpers;

Expand Down
1 change: 0 additions & 1 deletion app/src/processing/app/syntax/CTokenMarker.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
* C token marker.
*
* @author Slava Pestov
* @version $Id: CTokenMarker.java 1268 2005-04-09 02:30:37Z benfry $
*/
public class CTokenMarker extends TokenMarker
{
Expand Down
1 change: 0 additions & 1 deletion app/src/processing/app/syntax/DefaultInputHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
* The default input handler. It maps sequences of keystrokes into actions
* and inserts key typed events into the text area.
* @author Slava Pestov
* @version $Id: DefaultInputHandler.java 1438 2005-05-11 08:34:16Z benfry $
*/
public class DefaultInputHandler extends InputHandler
{
Expand Down
1 change: 0 additions & 1 deletion app/src/processing/app/syntax/InputHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
* to the implementations of this class to do so.
*
* @author Slava Pestov
* @version $Id: InputHandler.java 6126 2010-02-16 23:43:53Z fry $
*/
public abstract class InputHandler extends KeyAdapter
{
Expand Down
1 change: 0 additions & 1 deletion app/src/processing/app/syntax/JEditTextArea.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
* + "}");</pre>
*
* @author Slava Pestov
* @version $Id: JEditTextArea.java 6123 2010-02-16 21:43:44Z fry $
*/
public class JEditTextArea extends JComponent
{
Expand Down
1 change: 0 additions & 1 deletion app/src/processing/app/syntax/KeywordMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
* This class is used by <code>CTokenMarker</code> to map keywords to ids.
*
* @author Slava Pestov, Mike Dillon
* @version $Id: KeywordMap.java 2050 2006-03-11 00:50:01Z fry $
*/
public class KeywordMap
{
Expand Down
1 change: 0 additions & 1 deletion app/src/processing/app/syntax/SyntaxDocument.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* system.
*
* @author Slava Pestov
* @version $Id: SyntaxDocument.java 1268 2005-04-09 02:30:37Z benfry $
*/
public class SyntaxDocument extends PlainDocument
{
Expand Down
1 change: 0 additions & 1 deletion app/src/processing/app/syntax/SyntaxStyle.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
* A simple text style class. It can specify the color, italic flag,
* and bold flag of a run of text.
* @author Slava Pestov
* @version $Id: SyntaxStyle.java 4824 2008-10-11 23:41:40Z fry $
*/
public class SyntaxStyle
{
Expand Down
1 change: 0 additions & 1 deletion app/src/processing/app/syntax/SyntaxUtilities.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
* subsystem.
*
* @author Slava Pestov
* @version $Id: SyntaxUtilities.java 1268 2005-04-09 02:30:37Z benfry $
*/
public class SyntaxUtilities
{
Expand Down
1 change: 0 additions & 1 deletion app/src/processing/app/syntax/TextUtilities.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
/**
* Class with several utility functions used by the text area component.
* @author Slava Pestov
* @version $Id: TextUtilities.java 1268 2005-04-09 02:30:37Z benfry $
*/
public class TextUtilities
{
Expand Down
1 change: 0 additions & 1 deletion app/src/processing/app/syntax/Token.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* token in the text, and a pointer to the next token in the list.
*
* @author Slava Pestov
* @version $Id: Token.java 1268 2005-04-09 02:30:37Z benfry $
*/
public class Token
{
Expand Down
2 changes: 0 additions & 2 deletions build/linux/dist/tools/avrdude.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# $Id: avrdude.conf.in 991 2011-08-26 20:50:32Z joerg_wunsch $ -*- text -*-
#
# AVRDUDE Configuration File
#
# This file contains configuration data used by AVRDUDE which describes
Expand Down
5 changes: 5 additions & 0 deletions build/shared/revisions.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

ARDUINO 1.5.6-r2 BETA 2014.02.21

[ide]
* JSSC: Fixed NPE when RXCHAR event with no bytes (José Pereda)

ARDUINO 1.5.6 BETA 2014.02.20

[ide]
Expand Down