110141 pde
22
3-
3+ charset changes
44_ make sure that export is using utf8 for writing the .pde files etc
55_ should be primarily loadFile() and saveFile() inside Base
6- _ http://dev.processing.org/bugs/show_bug.cgi?id=743
7- _ change pde files to use utf8
8- _ 1) if file contains binary data and
9- _ 2) its mod date is earlier than when p5 0125 was installed
10- _ point the user to Tools -> Reload sketch with local encoding
11- _ then re-save the file to update the mod date
12- _ ...or, when first running p5 0125, offer to update sketches
13- _ this is a bad idea--since it's probably
14- _ need to set a default charset for use in files (utf8)
15- _ add option to change charset or specify as part of loading
16- _ need to specify the default encoding
6+ X http://dev.processing.org/bugs/show_bug.cgi?id=743
7+ X change pde files to use utf8
8+ o 1) if file contains binary data and
9+ o 2) its mod date is earlier than when p5 0125 was installed
10+ o point the user to Tools -> Reload sketch with local encoding
11+ o then re-save the file to update the mod date
12+ o ...or, when first running p5 0125, offer to update sketches
13+ o this is a bad idea--since it's probably
14+ X need to set a default charset for use in files (utf8)
15+ X add option to change charset or specify as part of loading
16+ X need to specify the default encoding
1717_ xml element needs to be readable from other charsets
1818_ same with the other methods like loadStrings()
1919_ could also be a way to handle gzip too?
2020_ tho charset + gzip would be a problem
2121
22- _ inside Sketch.java, don't hardwire the file extension types
23- _ arduino uses .c, .cpp, .h instead of .java
24- _ http://dev.processing.org/bugs/show_bug.cgi?id=807
22+
23+ . . .
24+
25+
26+ [ needs verification ]
2527
2628_ check to see whether this bug is fixed once 0140 is released
2729_ properly handle non-ascii chars in p5 folder name
@@ -31,9 +33,13 @@ o perhaps the get around this by building into sketch folder
3133o when non-ascii chars in use, just launch everything externally
3234_ also fails with export-to-application
3335_ http://dev.processing.org/bugs/show_bug.cgi?id=252
34-
35-
36- . . .
36+ _ too many NPEs on loadimage may freeze the app (visualizar example?)
37+ _ hopefully this should be fixed with 0136 changes
38+ _ lots of runtime exceptions still being lost on osx
39+ _ particularly with multi-threaded applications
40+ _ macosx dropping exceptions all the time.. grr
41+ _ solution is to export, and then see how it runs
42+ _ this is particularly bad with threaded applications
3743
3844
3945[ known bugs ]
@@ -218,11 +224,7 @@ X move p5 site bug reporting to bugzilla
218224_ do the same for suggestions
219225_ and detail the suggestions policy on the dev site: diy
220226_ post a page explaining the bug reporting system
221-
222-
223- DOC / Frequent
224-
225- _ arrays
227+ _ arrays (frequent questions)
226228_ using arraylist (avoid vector)
227229_ cannot use generics
228230_ using mod to avoid shifting an array
@@ -232,6 +234,7 @@ _ using expand and arrays to move quickly
232234
233235
234236DOC / Write Me
237+
235238_ quicktime likes to crash (not just on windows)
236239_ http://dev.processing.org/bugs/show_bug.cgi?id=791
237240_ createInput, createInputRaw, createOutput
@@ -813,13 +816,6 @@ _ will return 1.5.0 (or maybe 1.6 for others?)
813816
814817PDE / Runner
815818
816- _ too many NPEs on loadimage may freeze the app (visualizar example?)
817- _ hopefully this should be fixed with 0136 changes
818- _ lots of runtime exceptions still being lost on osx
819- _ particularly with multi-threaded applications
820- _ macosx dropping exceptions all the time.. grr
821- _ solution is to export, and then see how it runs
822- _ this is particularly bad with threaded applications
823819_ use debugger to get better exceptions
824820_ and getting the error to show up in the window inside p5
825821_ also highlighting the correct line
@@ -851,6 +847,9 @@ _ is this only a problem on macosx?
851847
852848PDE / Sketch & Sketchbook
853849
850+ _ inside Sketch.java, don't hardwire the file extension types
851+ _ arduino uses .c, .cpp, .h instead of .java
852+ _ http://dev.processing.org/bugs/show_bug.cgi?id=807
854853_ don't reload sketch on "save as"
855854_ this can result in loss of data (undo is lost)
856855_ http://dev.processing.org/bugs/show_bug.cgi?id=433
0 commit comments