1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-23 19:21:59 +03:00

Making things more Arduino-like (cont...)

This commit is contained in:
David A. Mellis
2009-06-01 17:10:56 +00:00
parent 14778514ae
commit df4f1629c4
17 changed files with 177 additions and 625 deletions

View File

@ -41,8 +41,8 @@ import processing.core.*;
* files and images, etc) that comes from that.
*/
public class Base {
static final int REVISION = 165;
static String VERSION_NAME = "0165";
static final int REVISION = 17;
static String VERSION_NAME = "0017";
static HashMap<Integer, String> platformNames = new HashMap();
static {

View File

@ -140,7 +140,7 @@ public class Editor extends JFrame implements RunnerListener {
public Editor(Base ibase, String path, int[] location) {
super("Processing");
super("Arduino");
this.base = ibase;
Base.setIcon(this);
@ -834,8 +834,8 @@ public class Editor extends JFrame implements RunnerListener {
item.setAccelerator(KeyStroke.getKeyStroke('T', modifiers));
menu.add(item);
menu.add(createToolMenuItem("processing.app.tools.CreateFont"));
menu.add(createToolMenuItem("processing.app.tools.ColorSelector"));
//menu.add(createToolMenuItem("processing.app.tools.CreateFont"));
//menu.add(createToolMenuItem("processing.app.tools.ColorSelector"));
menu.add(createToolMenuItem("processing.app.tools.Archiver"));
menu.add(createToolMenuItem("processing.app.tools.FixEncoding"));
@ -2005,7 +2005,7 @@ public class Editor extends JFrame implements RunnerListener {
}
header.rebuild();
// Set the title of the window to "sketch_070752a - Processing 0126"
setTitle(sketch.getName() + " | Processing " + Base.VERSION_NAME);
setTitle(sketch.getName() + " | Arduino " + Base.VERSION_NAME);
// Disable untitled setting from previous document, if any
untitled = false;