diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index d5b51ac7e..c9b55299e 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -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 diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java index 74608a061..c70830e84 100644 --- a/core/src/processing/core/PGraphics.java +++ b/core/src/processing/core/PGraphics.java @@ -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"); } } diff --git a/todo.txt b/todo.txt index 14f351717..d0f5476aa 100644 --- a/todo.txt +++ b/todo.txt @@ -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