add warning for missing glyph, write release notes

This commit is contained in:
benfry
2011-06-27 21:10:23 +00:00
parent e705d5c591
commit 6795f4ea88
3 changed files with 31 additions and 1 deletions
+29
View File
@@ -1,3 +1,32 @@
PROCESSING REV 0199 - 27 June 2011
Handful of bug fixes, primarly to deal with issues introduced in 0198.
+ Remove error messages for UpdateCheck w/o internet connection.
+ char c = 'u' breaks sketches in 0198
http://code.google.com/p/processing/issues/detail?id=752
Also additional fixes to handling bad character constants in the preprocessor
+ Deal with extraneous error messages about the emulator and AVD when trying
to run Processing on an Android device.
+ Fix broken loadShape().
+ Fix broken loadNode() and XML usage in general.
+ Fix problem with save() writing multiple image files with an extra .tif
at the end.
+ Added no-op orientation() method to the desktop version so that code
will work unchanged between Android and desktop.
+ Add warning for missing glyphs in PFont.
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
PROCESSING REV 0198 - 23 June 2011
Major internal work as we start blowing things up for 2.0. The main things are
+2
View File
@@ -3734,6 +3734,8 @@ public class PGraphics extends PImage implements PConstants {
textCharScreenImpl(glyph.image, xx, yy, w0, h0);
}
} else {
showWarning("No glyph found for the " + ch + " (\\u" + PApplet.hex(ch, 4) + ") character");
}
}
-1
View File
@@ -5,7 +5,6 @@ o http://code.google.com/p/processing/issues/detail?id=752
X additional fixes to handling bad character constants in PdePreprocessor
_ update to java 6u26
_ update the build instructions page