release notes for 1.0.4

This commit is contained in:
Manindra Moharana
2014-05-09 22:06:54 +05:30
parent 1fe2f06be7
commit 34fdfe6a50
4 changed files with 36 additions and 5 deletions

View File

@@ -213,6 +213,7 @@ public class ErrorCheckerService implements Runnable{
protected ErrorMessageSimplifier errorMsgSimplifier;
public ErrorCheckerService(DebugEditor debugEditor) {
ensureMinP5Version();
this.editor = debugEditor;
stopThread = new AtomicBoolean(false);
pauseThread = new AtomicBoolean(false);
@@ -283,6 +284,14 @@ public class ErrorCheckerService implements Runnable{
}
});
}
public void ensureMinP5Version(){
// Processing 2.1.2 - Revision 0225
if(Base.getRevision() < 225){
// System.err.println("ERROR: PDE X requires Processing 2.1.2 or higher.");
Base.showWarning("Error", "ERROR: PDE X requires Processing 2.1.2 or higher.", null);
}
}
public void run() {
stopThread.set(false);