You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: todo.txt
+34-27Lines changed: 34 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,35 @@ X with java.awt.Desktop.browse() and java.awt.Desktop.open()
9
9
X causes a deprecation warning whenever building on osx
10
10
o instead of "show sketch folder" method, use:
11
11
The com.apple.eio.FileManager now has two new desktop interaction methods, revealInFinder(File) and moveToTrash(File). You can use revealInFinder() to open a Finder window in the parent directory of of a file and select it. You can use moveToTrash() to move a file to the most appropriate Trash directory for the volume that contains that file.
12
-
13
-
_ First doubleclick immediately closes example folder
X http://blog.iharder.net/2009/08/18/rxtx-java-6-and-librxtxserial-jnilib-on-intel-mac-os-x/
14
+
X add warning message about using serial on OS X
15
+
_ check on other serial issues, this may fix them
16
+
17
+
cleaning
18
+
o switching into present mode in info.plist
19
+
o <key>LSUIPresentationMode</key>
20
+
o <integer>4</integer>
21
+
o errors with serial and libraries
22
+
Exception in thread "Thread-2" java.lang.NoClassDefFoundError:
23
+
processing/core/PApplet
24
+
at processing.serial.Serial.<init>(Serial.java:156)
25
+
generally, that error means that something is missing from the
26
+
CLASSPATH. the NoClassDefError gives erroneous feedback about *what*
27
+
class is actually missing, as of java 1.3+ (yay!)
28
+
so perhaps conflicting versions of a library in the sketchbook (solve
29
+
this by setting to an empty sketchbook temporarily) or files might be
30
+
installed in the CLASSPATH variable or something conflicting in
31
+
/System/Library/Extensions.
15
32
16
33
earlier
17
34
X the word from Apple on Info.plist setup
18
35
X DO NOT USE "JVMArchs". It is deprecated, and manually overrides the natural architecture launching and ordering that LaunchServices does, including accommodating the 32-bit checkbox in the Get Info window.
@@ -459,6 +477,7 @@ X nice idea but too error-prone
459
477
DOC / Write Me
460
478
461
479
_ stop() to shut down a sketch (but not quit/close window)
480
+
_ actually pause/resume
462
481
_ MIN_FLOAT, MAX_FLOAT, also the difference from the Java functions
463
482
_ also MIN_INT and MAX_INT, even though those are more similar
464
483
_ update the reference to cover parseXxxx() stuff
@@ -489,31 +508,14 @@ An unexpected error has been detected by HotSpot Virtual Machine:
489
508
# EXCEPTION_ACCESS_VIOLATION
490
509
all i can do is find things that might trigger them, but it's more likely
491
510
than not to be a java problem, and not something that can be fixed
492
-
_ explanation of we see libraries on desktop
511
+
_ explanation of how we see libraries in the PDE
493
512
_ We're making an assumption that the idea of a "library" refers to a block of Java-based code. The reasoning is that from within the PDE, we anticipate that it will be Java-compatible versions of other languages (such as Jython, JRuby, or Scala) as opposed to more generic languages. In the future we could open this up, but we'd rather not complicate things for the moment.
0 commit comments