From d718e6d2f95a99460884abbdb65a548f35e63c72 Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Mon, 17 Aug 2015 19:58:20 -0400 Subject: [PATCH] add debugging messages for #3651 --- app/src/processing/app/syntax/JEditTextArea.java | 10 ++++++++++ todo.txt | 13 ++++++------- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/app/src/processing/app/syntax/JEditTextArea.java b/app/src/processing/app/syntax/JEditTextArea.java index c3f89b5aa..b44c7b5b9 100644 --- a/app/src/processing/app/syntax/JEditTextArea.java +++ b/app/src/processing/app/syntax/JEditTextArea.java @@ -1913,6 +1913,16 @@ public class JEditTextArea extends JComponent } catch (Exception e) { getToolkit().beep(); System.err.println("Clipboard does not contain a string"); + DataFlavor[] flavors = clipboard.getAvailableDataFlavors(); + for (DataFlavor f : flavors) { + try { + Object o = clipboard.getContents(this).getTransferData(f); + System.out.println(f + " = " + o); + } catch (Exception ex) { + ex.printStackTrace(); + } + } + } } } diff --git a/todo.txt b/todo.txt index 3ec35fb41..69c5bb6a3 100644 --- a/todo.txt +++ b/todo.txt @@ -1,5 +1,7 @@ 0243 (3.0b5) - +X processing-java isn't working in OS X 10.11 El Capitan +X https://github.com/processing/processing/issues/3497 +o probably have to add the script/Processing.app location to user's path earlier X modify build to insert these after antlr run: @@ -34,12 +36,6 @@ _ Contributions Manager UI design _ https://github.com/processing/processing/issues/3482 _ Ready to add contributed example packages? _ https://github.com/processing/processing/issues/2953 -_ processing-java isn't working in OS X 10.11 El Capitan -_ https://github.com/processing/processing/issues/3497 -_ probably have to add the script/Processing.app location to user's path -_ move processing-java inside the Java Mode? -_ make a Tool that installs it for all platforms, not just OS X -_ not really part of the 'build' anymore _ sketch modified externally with FAT32 volumes on OS X _ https://github.com/processing/processing/issues/3387 @@ -822,6 +818,9 @@ How the environment gets packed up, downloaded, and installed. DIST / General +_ move processing-java inside the Java Mode? +_ make a Tool that installs it for all platforms, not just OS X +_ not really part of the 'build' anymore _ line ending issues _ doesn't really help on Windows since we use Cygwin _ but it would be helpful for people not using it (ant/other LF issues)