mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 02:45:36 +01:00
release notes for 1.0.4
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user