diff --git a/app/src/processing/app/syntax/PdeTextAreaDefaults.java b/app/src/processing/app/syntax/PdeTextAreaDefaults.java index 4eac90358..3e403efb6 100644 --- a/app/src/processing/app/syntax/PdeTextAreaDefaults.java +++ b/app/src/processing/app/syntax/PdeTextAreaDefaults.java @@ -142,7 +142,11 @@ public class PdeTextAreaDefaults extends TextAreaDefaults { document = new SyntaxDocument(); editable = true; - electricScroll = 3; + + // Set to 0 for revision 0215 because it causes strange jumps + // http://code.google.com/p/processing/issues/detail?id=1055 + electricScroll = 0; + caretVisible = true; caretBlinks = Preferences.getBoolean("editor.caret.blink"); blockCaret = Preferences.getBoolean("editor.caret.block"); diff --git a/core/todo.txt b/core/todo.txt index b061b294a..6f23b9f44 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -106,8 +106,6 @@ if (external && event.getNative() instanceof java.awt.event.KeyEvent && exit(); } -_ send note about begin/endShape and vertex() calls - _ createShape() not yet implemented for Java2D _ http://code.google.com/p/processing/issues/detail?id=1400 diff --git a/todo.txt b/todo.txt index 597342ac3..6d7a57999 100644 --- a/todo.txt +++ b/todo.txt @@ -21,18 +21,21 @@ import java.io.OutputStream; import java.io.IOException; X error lines from Commander should be 1-indexed not 0-indexed X http://code.google.com/p/processing/issues/detail?id=1392 -_ fix the debug stuff before shipping this out -_ DebugMode throwing exception about breakpoints when trying to save X Sketch that exported to Linux doesn't get the command line arguments X http://code.google.com/p/processing/issues/detail?id=1359 +X "electricScroll" feature causing weird jumps when double-clicking +X http://code.google.com/p/processing/issues/detail?id=1055 +_ fix the debug stuff before shipping this out +_ DebugMode throwing exception about breakpoints when trying to save earlier X The sketch name can't begin with '_' (underscore) X http://code.google.com/p/processing/issues/detail?id=859 -_ clientEvent() called even w/o data from server (with fix) -_ http://code.google.com/p/processing/issues/detail?id=189 -_ check on adding ip() method +X clientEvent() called even w/o data from server (with fix) +X http://code.google.com/p/processing/issues/detail?id=189 +X check on adding ip() method +X http://code.google.com/p/processing/issues/detail?id=1228 _ if RuntimeException thrown, needs to check if it's a wrapped exception _ for instance, if there's a crash inside makeGraphics() @@ -47,7 +50,7 @@ _ change error message for serial re: 64-bit _ "To use this library, switch to 32-bit mode in Preferences." (OS X) _ "To use this library, you must use the 32-bit version of Processing." -_ temp files are not deleted +_ temporary files (for sketches and logs) are not deleted _ http://code.google.com/p/processing/issues/detail?id=562 _ standard "Emacs" keybindings not implemented on OS X @@ -240,6 +243,7 @@ _ http://code.google.com/p/processing/issues/detail?id=905 2.0 FINAL / misc pde cleanups _ 'recent' menu doesn't respect examples folder of other p5 versions _ 'recent' menu paths can get enormous +_ what order should 'recent' menu use? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .