mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Updates to build.xml. (version auto defetect for "dist" target)
This commit is contained in:
@ -110,17 +110,22 @@
|
|||||||
<!-- - - - - - - - - -->
|
<!-- - - - - - - - - -->
|
||||||
<target name="revision-check">
|
<target name="revision-check">
|
||||||
<!-- figure out the revision number -->
|
<!-- figure out the revision number -->
|
||||||
<loadfile srcfile="../todo.txt" property="revision">
|
<loadfile srcfile="shared/revisions.txt" property="revision">
|
||||||
<filterchain>
|
<filterchain>
|
||||||
|
<ignoreblank />
|
||||||
<headfilter lines="1"/>
|
<headfilter lines="1"/>
|
||||||
<tokenfilter>
|
<tokenfilter>
|
||||||
<stringtokenizer suppressdelims="true"/>
|
<linetokenizer includeDelims="false" />
|
||||||
<!-- grab the thing from the first line that's 4 digits -->
|
<!-- grab the thing from the first line that's 4 digits -->
|
||||||
<containsregex pattern="(\d\d\d\d)" />
|
<containsregex pattern="ARDUINO (.*) " />
|
||||||
|
<replaceregex pattern="ARDUINO ([^ ]*).*" replace="\1" />
|
||||||
|
</tokenfilter>
|
||||||
|
<tokenfilter>
|
||||||
|
<stringtokenizer suppressdelims="true" />
|
||||||
</tokenfilter>
|
</tokenfilter>
|
||||||
</filterchain>
|
</filterchain>
|
||||||
</loadfile>
|
</loadfile>
|
||||||
<!-- <echo message="revision is ${revision}." /> -->
|
<echo message="Latest revision detected in shared/revision.txt is: ${revision}" />
|
||||||
|
|
||||||
<!-- figure out the revision number in base.java -->
|
<!-- figure out the revision number in base.java -->
|
||||||
<loadfile srcfile="../app/src/processing/app/Base.java"
|
<loadfile srcfile="../app/src/processing/app/Base.java"
|
||||||
@ -133,18 +138,7 @@
|
|||||||
</tokenfilter>
|
</tokenfilter>
|
||||||
</filterchain>
|
</filterchain>
|
||||||
</loadfile>
|
</loadfile>
|
||||||
<!-- <echo message="base revision is ${revision.base}." /> -->
|
<echo message="Revision in Base.java is: ${revision.base}" />
|
||||||
|
|
||||||
<condition property="revision.correct">
|
|
||||||
<!-- Using contains because I can't figure out how to get rid of the
|
|
||||||
LF in revision.base. Please file a bug if you have a fix. -->
|
|
||||||
<contains string="${revision.base}" substring="${revision}"/>
|
|
||||||
</condition>
|
|
||||||
|
|
||||||
<!-- the revision.base property won't be set
|
|
||||||
if $revision wasn't found... -->
|
|
||||||
<fail unless="revision.correct"
|
|
||||||
message="Fix revision number in Base.java" />
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- - - - - - - - -->
|
<!-- - - - - - - - -->
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
ARDUINO BETA 1.5.2 - 2012.01.23
|
ARDUINO 1.5.2 BETA - 2012.01.23
|
||||||
|
|
||||||
[ide]
|
[ide]
|
||||||
* Scrollable editor tabs (Shigheru KANEMOTO)
|
* Scrollable editor tabs (Shigheru KANEMOTO)
|
||||||
@ -31,11 +31,11 @@ ARDUINO BETA 1.5.2 - 2012.01.23
|
|||||||
* Merged all improvements made in Arduino IDE 1.0.3
|
* Merged all improvements made in Arduino IDE 1.0.3
|
||||||
* Merged all improvements made in Arduino IDE 1.0.4 (not yet released)
|
* Merged all improvements made in Arduino IDE 1.0.4 (not yet released)
|
||||||
|
|
||||||
ARDUINO BETA 1.5.1r2 - 2012.11.06
|
ARDUINO 1.5.1r2 BETA - 2012.11.06
|
||||||
|
|
||||||
* Fixed wrong release file for windows.
|
* Fixed wrong release file for windows.
|
||||||
|
|
||||||
ARDUINO BETA 1.5.1 - 2012.11.05
|
ARDUINO 1.5.1 BETA - 2012.11.05
|
||||||
|
|
||||||
* Merged changes coming from stable release of Arduino IDE 1.0.2.
|
* Merged changes coming from stable release of Arduino IDE 1.0.2.
|
||||||
|
|
||||||
@ -60,7 +60,7 @@ ARDUINO BETA 1.5.1 - 2012.11.05
|
|||||||
[firmwares]
|
[firmwares]
|
||||||
* Added firmware for atmega16u2 on Due Board.
|
* Added firmware for atmega16u2 on Due Board.
|
||||||
|
|
||||||
ARDUINO BETA 1.5 - 2012.10.22
|
ARDUINO 1.5 BETA - 2012.10.22
|
||||||
|
|
||||||
* First release for the unified IDE for both AVR 8-bit and ARM 32-bit
|
* First release for the unified IDE for both AVR 8-bit and ARM 32-bit
|
||||||
(SAM3 CPUs) architectures.
|
(SAM3 CPUs) architectures.
|
||||||
|
Reference in New Issue
Block a user