Skip to content

Commit 5e2f82b

Browse files
committed
Updating SPI library error message and revisions.txt for final 0019 release.
1 parent ca89be0 commit 5e2f82b

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

app/src/processing/app/debug/Compiler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -364,9 +364,9 @@ public void message(String s) {
364364
}
365365

366366
if (pieces[3].trim().equals("SPI.h: No such file or directory")) {
367-
e = new RunnerException("Import the SPI library from the Sketch menu.");
367+
e = new RunnerException("Please import the SPI library from the Sketch > Import Library menu.");
368368
s += "\nAs of Arduino 0019, the Ethernet library depends on the SPI library." +
369-
"\nPlease import it from the Sketch > Import Library menu.";
369+
"\nYou appear to be using it or another library that depends on the SPI library.";
370370
}
371371

372372
if (exception == null && e != null) {

build/shared/revisions.txt

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
ARDUINO 0019
1+
ARDUINO 0019 - 2010.09.03
22

33
[core / libraries]
44

5-
* Added aliases for the analog input pins: A0, A1, etc.
6-
http://code.google.com/p/arduino/issues/detail?id=244
7-
8-
* Added a String class.
5+
* Revised Ethernet library (by Christian Maglie). This depends on the
6+
new SPI library, so existing sketches will need: #include <SPI.h>
7+
added to the top of their code.
98

109
* Added an SPI library (by Christian Maglie).
1110
http://code.google.com/p/arduino/issues/detail?id=240
1211

13-
* Revised Ethernet library (by Christian Maglie).
12+
* Added aliases for the analog input pins: A0, A1, etc.
13+
http://code.google.com/p/arduino/issues/detail?id=244
14+
15+
* Added a String class.
1416

1517
* Added a shiftIn() function (from Wiring).
1618
http://code.google.com/p/arduino/issues/detail?id=280

0 commit comments

Comments
 (0)