changes for 85, hopefully closing in

This commit is contained in:
benfry
2005-04-19 07:24:18 +00:00
parent 227a1ef9f4
commit 38fc2d5225
5 changed files with 28 additions and 11 deletions

View File

@@ -50,8 +50,8 @@ import processing.core.*;
* files and images, etc) that comes from that.
*/
public class Base {
static final int VERSION = 84;
static final String VERSION_NAME = "0084 Alpha";
static final int VERSION = 85;
static final String VERSION_NAME = "0085 Alpha";
/**
* Path of filename opened on the command line,

View File

@@ -7,6 +7,22 @@ releases will be super crusty.
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
ABOUT REV 0085 - 19 april 2005
could this be beta?
- camera() was missing from PGraphics
- tweaks to openStream() for image loading
- basic triangle (but not line) clipping in P3D from simon (!)
- finalized the faq listing
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
ABOUT REV 0084 - 19 april 2005
we're one release away from beta. reference and examples need another

View File

@@ -3068,12 +3068,12 @@ public class PApplet extends Applet
//System.out.println("found the wrong case");
//throw new RuntimeException("wrong case");
}
} catch (IOException e) { }
} catch (Exception e) { } // ioex or security
stream = new FileInputStream(file);
if (stream != null) return stream;
} catch (IOException e) { } // ignored
} catch (Exception e) { } // ioex or security
}
try {

View File

@@ -1,16 +1,16 @@
0084 core
X fixed create font / incremented font file version number
X simon lighting fixes
X added simon's lighting docs to lights() fxn in javadoc
X set default stroke cap as ROUND
X otherwise smooth() makes points disappear
X hack for text with a z coordinate
0085 core
X camera() was missing from PGraphics
X some tweaks to openStream() for loading images and less errors
X basic clipping in P3D from simon
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
NOT COMPLETELY NECESSARY BEFORE BETA
_ bizarre image loading error with c_Rollover.zip
_ text() with a z coordinate is now using translate, very slow
_ also puts up a weird error message about translate() in 2D mode

View File

@@ -2,6 +2,7 @@
X list of changes since rev 69? run through revisions.txt
X update and finalize the faq
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .