Skip to content

Commit 117a36c

Browse files
committed
fix for .app packages in open dialogs in exported apps (processing#1959)
1 parent 4856570 commit 117a36c

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

core/todo.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ X because this lives inside PConstants
55
X Error in IntList and FloatList insert()
66
X https://github.com/processing/processing/issues/1929
77

8+
_ selectInput() in exported OS X sketch treats .app package as a folder
9+
_ Oracle Java 7 problem, but maybe a workaround?
10+
_ might be a problem with awt dialogs for directories?
11+
_ https://github.com/processing/processing/issues/1959
12+
813
_ implement version of Table that takes a dictionary file
914

1015
_ finish PFont.getShape() implementation

java/application/template.plist

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,14 @@
6363
<string>true</string>
6464
<key>com.apple.hwaccel</key>
6565
<string>true</string>
66+
<!--
67+
As of 2.0.1, this was set to 'false', but not sure why.
68+
Now changed to 'true', otherwise it shows .app packages
69+
as folders when using selectInput() and others.
70+
https://github.com/processing/processing/issues/1959
71+
-->
6672
<key>apple.awt.use-file-dialog-packages</key>
67-
<string>false</string>
73+
<string>true</string>
6874
</dict>
6975
</dict>
7076
</dict>

todo.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ X https://github.com/processing/processing/issues/1928
55
X slash breaks syntax highlighting (with spaces)
66
X https://github.com/processing/processing/issues/1681
77
X Fix from Github user hamzaissa
8-
X
8+
X selectInput() in exported OS X sketch treats .app package as a folder
9+
X https://github.com/processing/processing/issues/1959
910

1011
andres
1112
X pixels[] not working with Capture

0 commit comments

Comments
 (0)