diff --git a/processing/app/PdeSketch.java b/processing/app/PdeSketch.java index 27aa70eb8..5111af046 100644 --- a/processing/app/PdeSketch.java +++ b/processing/app/PdeSketch.java @@ -985,7 +985,8 @@ public class PdeSketch { } // if 'data' folder is large, set to external runtime - if (PdeBase.calcFolderSize(dataFolder) > 768 * 1024) { // if > 768k + if (dataFolder.exists() && + PdeBase.calcFolderSize(dataFolder) > 768 * 1024) { // if > 768k externalRuntime = true; } diff --git a/processing/todo.txt b/processing/todo.txt index ad1c7ba46..063a677ba 100644 --- a/processing/todo.txt +++ b/processing/todo.txt @@ -1,7 +1,8 @@ 0070 pde +X run java mode when large 'data' folder is in use +X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1081542378 -_ run java mode when large 'data' folder is in use -_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1081542378 +_ line fade out gradient bug.. is this an easy fix? _ "save as" needs to update the editorheader @@ -17,11 +18,11 @@ _ iterate through the 'library' folders _ dll and jnilib files have to be in the p5 folder (confirmed by amit) _ there should be other places that they work.. _ could even copy the dll to the p5 folder from the code folder -_ simong: request a preloop and postloop call for libraries -_ this would avoid having to patch BApplet _ libraries: static and non-static init for libs _ final stop() for static shutdown of lib _ but also potential stop() for individual items +_ simong: request a preloop and postloop call for libraries +_ this would avoid having to patch BApplet _ where do libraries for distribution go? _ libraries subfolder of p5? or inside examples? _ String in apache classes and java.lang