From 09d27ab2735ea3ce2e7cd319727fc81512c92b90 Mon Sep 17 00:00:00 2001 From: benfry Date: Tue, 19 Apr 2005 07:24:18 +0000 Subject: [PATCH] changes for 85, hopefully closing in --- app/Base.java | 4 ++-- build/shared/revisions.txt | 16 ++++++++++++++++ core/PApplet.java | 4 ++-- core/todo.txt | 14 +++++++------- todo.txt | 1 + 5 files changed, 28 insertions(+), 11 deletions(-) diff --git a/app/Base.java b/app/Base.java index ebaccbfe3..44455603d 100644 --- a/app/Base.java +++ b/app/Base.java @@ -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, diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 6a1c5ea54..e5b697547 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -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 diff --git a/core/PApplet.java b/core/PApplet.java index 2910f80a7..24a79a7be 100644 --- a/core/PApplet.java +++ b/core/PApplet.java @@ -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 { diff --git a/core/todo.txt b/core/todo.txt index 6b709b433..72f08cb09 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -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 diff --git a/todo.txt b/todo.txt index 862fbe8b6..b80eff7db 100644 --- a/todo.txt +++ b/todo.txt @@ -2,6 +2,7 @@ X list of changes since rev 69? run through revisions.txt X update and finalize the faq + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .