|
| 1 | +0220 pde (2.0.2) |
| 2 | +X fix "less less" typo |
| 3 | +X https://github.com/processing/processing/issues/1928 |
| 4 | +X slash breaks syntax highlighting (with spaces) |
| 5 | +X https://github.com/processing/processing/issues/1681 |
| 6 | +X Fix from Github user hamzaissa |
| 7 | +X selectInput() in exported OS X sketch treats .app package as a folder |
| 8 | +X https://github.com/processing/processing/issues/1959 |
| 9 | +X waiting on retina support for JDK 7 |
| 10 | +o b86 supposed to have some support (not available yet) |
| 11 | +o http://jdk8.java.net/download.html |
| 12 | +X code with a NUL character causes an error |
| 13 | +X https://github.com/processing/processing/issues/1973 |
| 14 | +X also remove NUL characters when loading a file |
| 15 | +X Add "Processing Foundation" to the Help menu |
| 16 | +X https://github.com/processing/processing/issues/1908 |
| 17 | +X Update JNA from 3.2.4 to 3.5.2 |
| 18 | +X https://maven.java.net/content/repositories/releases/net/java/dev/jna/jna/3.5.2/jna-3.5.2.jar |
| 19 | +X https://maven.java.net/content/repositories/releases/net/java/dev/jna/platform/3.5.2/platform-3.5.2.jar |
| 20 | +X problem with associating .pde files |
| 21 | +X https://github.com/processing/processing/issues/286 |
| 22 | +X http://code.google.com/p/processing/issues/detail?id=247 |
| 23 | +o In regedit: Navigate to Computer\HKEY_CLASSES_ROOT\Applications and find your .exe name. Navigate under its name to shell>open>command. In the Default change its location to the actual location of the executable, hit okay and then try and reassociate the file type as you normally would. |
| 24 | +X UnsatisfiedLinkError causes huge message... |
| 25 | +X error report cleanups haven't been fixed yet |
| 26 | +X reported by Dan |
| 27 | +X this should be better now |
| 28 | +X add exception wrapper for startup |
| 29 | +X Add methods to move files to Trash/Recycle Bin where available |
| 30 | +X allow delete of files in unsaved sketches |
| 31 | +X https://github.com/processing/processing/issues/1942 |
| 32 | +X https://github.com/processing/processing/pull/1945 |
| 33 | +X proxy server requirement causes problems |
| 34 | +X contrib manager, update checks are broken |
| 35 | +X https://github.com/processing/processing/issues/1476 |
| 36 | +X might be able to fix this with something in preferences.txt? |
| 37 | +X http://docs.oracle.com/javase/6/docs/technotes/guides/net/proxies.html |
| 38 | +o Update Java version in the download to be the latest Java 6 |
| 39 | +o https://github.com/processing/processing/issues/1841 |
| 40 | +X try to use appbundler to create a version that includes a JRE (JDK) |
| 41 | +X http://java.net/downloads/appbundler/appbundler.html |
| 42 | +X docs.oracle.com/javase/7/docs/technotes/guides/jweb/packagingAppsForMac.html |
| 43 | +X http://www.intransitione.com/blog/take-java-to-app-store/ |
| 44 | +X hobbling along, should be ready soon |
| 45 | + |
| 46 | +cleaning/earlier |
| 47 | +X common error messages |
| 48 | +X with a proper list, we can add links when throwing an error in the PDE |
| 49 | +X Dan started this on the Wiki |
| 50 | +o build is currently broken for fresh checkout due to changes to file layout |
| 51 | +o something that gets fixed by 'make clean' |
| 52 | +o also test on windows and linux |
| 53 | +o add a check to make sure that people aren't running from the dmg |
| 54 | +o doesn't actually cause any problems, so don't bother? |
| 55 | +o code to hide menubar.. just include JNA and call from there? |
| 56 | +NSMenu.setMenubarVisible(false); |
| 57 | +Then we used Cocoa via JNI: |
| 58 | +if([NSMenu menuBarVisible]){ |
| 59 | + [NSMenu setMenuBarVisible:NO]; |
| 60 | +} |
| 61 | +You can't do that from the AWT event thread. You need to do a -performSelectorOnMainThread to do that on the AppKit event thread. |
| 62 | +Please see <http://developer.apple.com/mac/library/technotes/tn2005/tn2147.html> for more information, particularly the section about "Calling AppKit from AWT/Swing". |
| 63 | + |
| 64 | +manager |
| 65 | +X change location of the manager download |
| 66 | +X check to see if manager items from the download can be updated |
| 67 | +X oops, probably not, because they're part of the distribution |
| 68 | +X and folks won't be able to write to those directories |
| 69 | +X changed manager to go to download.processing.org/latest.txt |
| 70 | +X and uses a redirect from there (hopeully that's followed?) |
| 71 | +X libraries need to support multiple categories |
| 72 | +X https://github.com/processing/processing/issues/1970 |
| 73 | +X restrict library categories to the ones in the document |
| 74 | +X if it's not correct, shows up as 'other' |
| 75 | +X catch Error (not just Exception) objects during load |
| 76 | +X handles UnsupportedClassVersionError and others |
| 77 | +X argh.. the 'old' folder is really poorly done |
| 78 | +X attempt to install multiple will cause havoc (fail because 'old' exists) |
| 79 | +o remove flagging for deletion |
| 80 | +o half-installed mode causes a lot of trouble |
| 81 | +o maybe it's reading from tmp folders? |
| 82 | +o https://github.com/processing/processing/issues/1875 |
| 83 | +X can't fix, no response |
| 84 | +X remove "Compilations" category for libraries |
| 85 | +X modes shouldn't have categories? |
| 86 | +X was counting "Unknown" as a category |
| 87 | +X modes and tools require restart (per ContributionType class) |
| 88 | +X but no message is provided anywhere? |
| 89 | +X mode install requires restart *and* still doesn't show as installed |
| 90 | +X even though it gets added to the modes menu properly after the restart |
| 91 | +X https://github.com/processing/processing/issues/1782 |
| 92 | +X Update example list when library is installed |
| 93 | +X https://github.com/processing/processing/issues/1909 |
| 94 | +X https://github.com/processing/processing/pull/1925 |
| 95 | +X Contributed modes should show up in mode menu after installation |
| 96 | +X waiting for fixed CoffeeScript mode to test this one |
| 97 | +X https://github.com/processing/processing/issues/1504 |
| 98 | +X http://code.google.com/p/processing/issues/detail?id=1466 |
| 99 | +X modes require restart, that's now properly shown as a message |
| 100 | + |
| 101 | + |
1 | 102 | 0219 pde (2.0.1) |
2 | 103 | X modes, tools, libraries not copying/moving properly on Windows |
3 | 104 | X https://github.com/processing/processing/issues/1781 |
|
0 commit comments