release 1.0.2b

This commit is contained in:
Manindra Moharana
2013-10-21 12:50:54 +05:30
parent 315952bef6
commit 5d245faddd
4 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -100,7 +100,7 @@
basedir="${dist}/"
excludes="**/.DS_Store"
/>
<delete dir="${bundle}/" />
</target>
+2 -2
View File
@@ -3,5 +3,5 @@ authorList=[The Processing Foundation](http://processing.org)
url=https://github.com/processing/processing-experimental
sentence=The next generation of PDE
paragraph=Intelligent Code Completion, Live Error Checker, Debugger, Auto Refactor, etc.
version=4
prettyVersion=1.0.1b
version=5
prettyVersion=1.0.2b
+3 -2
View File
@@ -1,12 +1,13 @@
PDE X v1.0.2b - October, 2013
PDE X v1.0.2b - October 21, 2013
Bug fixes
+ Code completion window gets stuck when Processing loses focus
https://github.com/processing/processing-experimental/issues/21
+ Live-error checker in the experimental mode is inefficient with memory.
+ Live-error checker in the experimental mode is a bit more efficient with memory now.
You can have upto 7 editor windows open at a time with PDE X.
https://github.com/processing/processing-experimental/issues/1
+ Cmd + Left Click should be working again in OS X with Processing 2.1
@@ -654,7 +654,12 @@ public class ErrorCheckerService implements Runnable{
.println(e
+ " compileCheck() problem. Somebody tried to mess with Experimental Mode files.");
pauseThread();
} catch(OutOfMemoryError e) {
System.err.println("Processing has used up its maximum alloted memory. Please close some Processing " +
" windows and then reopen this sketch.");
pauseThread();
}
// log("Compilecheck, Done.");
}