diff --git a/android/done.txt b/android/done.txt
index 095845aa1..773786bd7 100644
--- a/android/done.txt
+++ b/android/done.txt
@@ -1,3 +1,10 @@
+0197 android (1.5.1)
+
+fixed earlier
+X compiler errors on Windows not appearing, nor highlighting the line number
+X http://code.google.com/p/processing/issues/detail?id=253
+
+
0196 android (1.5)
X workaround for loadImage(url) bug in Google's Android source (via psoden)
X http://code.google.com/p/processing/issues/detail?id=629
diff --git a/android/todo.txt b/android/todo.txt
index 39ff685ba..a1d8740f4 100644
--- a/android/todo.txt
+++ b/android/todo.txt
@@ -1,8 +1,4 @@
-0197 android
-
-fixed earlier
-X compiler errors on Windows not appearing, nor highlighting the line number
-X http://code.google.com/p/processing/issues/detail?id=253
+0198 android
_ go through all basics/topics examples
diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java
index 529a70531..2990e1af7 100644
--- a/app/src/processing/app/Base.java
+++ b/app/src/processing/app/Base.java
@@ -44,9 +44,9 @@ import processing.mode.java.*;
* files and images, etc) that comes from that.
*/
public class Base {
- static public final int REVISION = 197;
+ static public final int REVISION = 198;
/** This might be replaced by main() if there's a lib/version.txt file. */
- static public String VERSION_NAME = "0197";
+ static public String VERSION_NAME = "0198";
/** Set true if this a proper release rather than a numbered revision. */
static public boolean RELEASE = false;
/** True if heavy debugging error/log messages are enabled */
diff --git a/core/done.txt b/core/done.txt
index f048694cc..a5d79943f 100644
--- a/core/done.txt
+++ b/core/done.txt
@@ -1,3 +1,16 @@
+0197 core (1.5.1)
+X Seeming problem displaying SVG data when layer data is grouped
+X http://code.google.com/p/processing/issues/detail?id=388
+X bug in SVG parser for shorthand curves (T/t and S/s)
+X http://code.google.com/p/processing/issues/detail?id=350
+X shape(PshapeSVG) fails if SVG contains
+X http://code.google.com/p/processing/issues/detail?id=434
+X implement quadVertex()
+X fix svg issues when dealing with quadratic bezier curves
+X revert to old createFont() behavior
+X http://code.google.com/p/processing/issues/detail?id=662
+
+
0196 core (1.5)
o textAlign(RIGHT) is shutting off native fonts
o makes salaryper super ugly
diff --git a/core/todo.txt b/core/todo.txt
index dde2608d0..aadf73278 100644
--- a/core/todo.txt
+++ b/core/todo.txt
@@ -1,14 +1,4 @@
-0197 core
-X Seeming problem displaying SVG data when layer data is grouped
-X http://code.google.com/p/processing/issues/detail?id=388
-X bug in SVG parser for shorthand curves (T/t and S/s)
-X http://code.google.com/p/processing/issues/detail?id=350
-X shape(PshapeSVG) fails if SVG contains
-X http://code.google.com/p/processing/issues/detail?id=434
-X implement quadVertex()
-X fix svg issues when dealing with quadratic bezier curves
-X revert to old createFont() behavior
-X http://code.google.com/p/processing/issues/detail?id=662
+0198 core
for 2.0
diff --git a/done.txt b/done.txt
index a34a8ab9b..928b0b41b 100644
--- a/done.txt
+++ b/done.txt
@@ -1,3 +1,38 @@
+0197 pde (1.5.1)
+X Windows splash screen for version 1.5 says "1.2"
+X http://code.google.com/p/processing/issues/detail?id=631
+X fix broken UpdateCheck (base was never set)
+o osx splash screen may say 2010 (the one shown on startup in Info.plist)
+X HsvSpace example sketch in 1.5 download requires addition of import
+X http://code.google.com/p/processing/issues/detail?id=661
+X library imports are broken (using pretty name not folder name)
+X http://code.google.com/p/processing/issues/detail?id=637
+X 1.5 can't find java sdk -- patch shell script?
+X http://code.google.com/p/processing/issues/detail?id=633
+X Obsolete Network > HTTPClient sketch
+X http://code.google.com/p/processing/issues/detail?id=655
+X Applets exported by PDE don't find data folder in 1.5
+X http://code.google.com/p/processing/issues/detail?id=666
+X File > New and Command-N stop working on OS X after running a sketch
+X http://code.google.com/p/processing/issues/detail?id=664
+
+cleaning
+X check to see whether this bug is fixed once 0140 is released
+X properly handle non-ascii chars in p5 folder name
+X http://dev.processing.org/bugs/show_bug.cgi?id=49
+X (could also just warn user to install elsewhere)
+o perhaps the get around this by building into sketch folder
+o when non-ascii chars in use, just launch everything externally
+X "Could not find the main class: processing.app.Base. Program will exit."
+X http://code.google.com/p/processing/issues/detail?id=151
+o http://dev.processing.org/bugs/show_bug.cgi?id=1126
+o "Fatal exception occurred. Program will exit." on startup
+o seems to be font related, deleting prefs will fix it
+o http://dev.processing.org/bugs/show_bug.cgi?id=688
+o Processing IDE icon ALT + Tab low res in Windows XP
+o http://dev.processing.org/bugs/show_bug.cgi?id=1040
+
+
0196 pde (1.5)
X upgrade to Quaqua 7.3.4 on OS X
X fixes checkbox in mode menu smashing into things
diff --git a/todo.txt b/todo.txt
index 832a0ea05..5fbff7960 100644
--- a/todo.txt
+++ b/todo.txt
@@ -1,36 +1,4 @@
-0197 pde
-X Windows splash screen for version 1.5 says "1.2"
-X http://code.google.com/p/processing/issues/detail?id=631
-X fix broken UpdateCheck (base was never set)
-o osx splash screen may say 2010 (the one shown on startup in Info.plist)
-X HsvSpace example sketch in 1.5 download requires addition of import
-X http://code.google.com/p/processing/issues/detail?id=661
-X library imports are broken (using pretty name not folder name)
-X http://code.google.com/p/processing/issues/detail?id=637
-X 1.5 can't find java sdk -- patch shell script?
-X http://code.google.com/p/processing/issues/detail?id=633
-X Obsolete Network > HTTPClient sketch
-X http://code.google.com/p/processing/issues/detail?id=655
-X Applets exported by PDE don't find data folder in 1.5
-X http://code.google.com/p/processing/issues/detail?id=666
-X File > New and Command-N stop working on OS X after running a sketch
-X http://code.google.com/p/processing/issues/detail?id=664
-
-cleaning
-X check to see whether this bug is fixed once 0140 is released
-X properly handle non-ascii chars in p5 folder name
-X http://dev.processing.org/bugs/show_bug.cgi?id=49
-X (could also just warn user to install elsewhere)
-o perhaps the get around this by building into sketch folder
-o when non-ascii chars in use, just launch everything externally
-X "Could not find the main class: processing.app.Base. Program will exit."
-X http://code.google.com/p/processing/issues/detail?id=151
-o http://dev.processing.org/bugs/show_bug.cgi?id=1126
-o "Fatal exception occurred. Program will exit." on startup
-o seems to be font related, deleting prefs will fix it
-o http://dev.processing.org/bugs/show_bug.cgi?id=688
-o Processing IDE icon ALT + Tab low res in Windows XP
-o http://dev.processing.org/bugs/show_bug.cgi?id=1040
+0198 pde
2.0