1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-29 18:52:13 +01:00

Updating version number to 0100 to allow checking for Arduino 1.0.

http://code.google.com/p/arduino/issues/detail?id=453
This commit is contained in:
David A. Mellis 2011-03-26 16:41:30 -04:00
parent 63d3190cbb
commit 43cfc87f17
3 changed files with 6 additions and 6 deletions

View File

@ -41,9 +41,9 @@ import processing.core.*;
* files and images, etc) that comes from that. * files and images, etc) that comes from that.
*/ */
public class Base { public class Base {
public static final int REVISION = 22; public static final int REVISION = 100;
/** This might be replaced by main() if there's a lib/version.txt file. */ /** This might be replaced by main() if there's a lib/version.txt file. */
static String VERSION_NAME = "0022"; static String VERSION_NAME = "0100";
/** Set true if this a proper release rather than a numbered revision. */ /** Set true if this a proper release rather than a numbered revision. */
static public boolean RELEASE = false; static public boolean RELEASE = false;

View File

@ -7,11 +7,11 @@
<!-- all these need to change for new releases --> <!-- all these need to change for new releases -->
<key>CFBundleGetInfoString</key> <key>CFBundleGetInfoString</key>
<string>0022</string> <string>1.0-beta1</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0022</string> <string>0100</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0022</string> <string>1.0-beta1</string>
<!-- now stop changing things and get outta here --> <!-- now stop changing things and get outta here -->
<key>CFBundleAllowMixedLocalizations</key> <key>CFBundleAllowMixedLocalizations</key>

View File

@ -1,4 +1,4 @@
0022 arduino 0100 arduino
Fix Linux make.sh, etc. scripts Fix Linux make.sh, etc. scripts
Test on Linux. Test on Linux.