|
| 1 | +PROCESSING 3.0a5 (REV 0232) - 16 November 2014 |
| 2 | + |
| 3 | +Hello from the University of Denver! This release has tons of bug fixing |
| 4 | +and incorporating various pull requests. |
| 5 | + |
| 6 | + |
| 7 | +[ changes ] |
| 8 | + |
| 9 | ++ Removed the sound library, it's now available as its own library |
| 10 | + from the Library Manager. |
| 11 | + |
| 12 | ++ Change how languages are loaded, adding a local override. |
| 13 | + |
| 14 | ++ Update to use JRE/JDK 7u72 . |
| 15 | + |
| 16 | ++ Implement the active() method for Serial and Server |
| 17 | + https://github.com/processing/processing/issues/2364 |
| 18 | + https://github.com/processing/processing/pull/2588 |
| 19 | + |
| 20 | ++ Detect CMYK JPEG images and return null |
| 21 | + https://community.oracle.com/thread/1272045?start=0&tstart=0 |
| 22 | + |
| 23 | ++ Fix XML.getString() with a default when no attrs are present at all. |
| 24 | + It was causing a NullPointerException; this also fixes getInt(), et al. |
| 25 | + |
| 26 | ++ Fix how dictionary classes return '0' for missing values. Add optional |
| 27 | + second parameter so that it's possible to avoid the exceptions. |
| 28 | + |
| 29 | ++ Fix how nulls are handled with Table.replace() |
| 30 | + |
| 31 | ++ Add (simple) ODS writer to Table |
| 32 | + |
| 33 | ++ Add addRows(Table) method (more efficient, one resize) |
| 34 | + |
| 35 | ++ Support "header" option with ODS files |
| 36 | + |
| 37 | + |
| 38 | +[ bug fixes ] |
| 39 | + |
| 40 | ++ Remove debug message printed to the console when the control key |
| 41 | + is pressed, when using the new editor. |
| 42 | + |
| 43 | ++ size(640,360 , P3D) doesn't work properly (strange spacing) |
| 44 | + https://github.com/processing/processing/issues/2924 |
| 45 | + https://github.com/processing/processing/pull/2925 |
| 46 | + |
| 47 | ++ Fix the shortcut keybindings in editor tab popup menu |
| 48 | + https://github.com/processing/processing/issues/179 |
| 49 | + https://github.com/processing/processing/pull/2821 |
| 50 | + |
| 51 | ++ Fix for ToolTipManager error |
| 52 | + https://github.com/processing/processing/issues/2926 |
| 53 | + |
| 54 | ++ Confusing message: The shader doesn't have a uniform called "foo" |
| 55 | + https://github.com/processing/processing/issues/2593 |
| 56 | + |
| 57 | ++ Exceptions in P3D / P2D not showing up properly |
| 58 | + https://github.com/processing/processing/issues/2930 |
| 59 | + |
| 60 | + |
| 61 | +[ contributed fixes ] |
| 62 | + |
| 63 | ++ Cmd + H runs sketch instead of hiding the PDE (OS X) |
| 64 | + https://github.com/processing/processing/issues/2881 |
| 65 | + |
| 66 | ++ Migrate to unsynchronized data structures |
| 67 | + https://github.com/processing/processing/pull/2863 |
| 68 | + |
| 69 | ++ Improve contrib manager localization |
| 70 | + https://github.com/processing/processing/pull/2870 |
| 71 | + |
| 72 | ++ Fix typo in spanish translation |
| 73 | + https://github.com/processing/processing/pull/2906 |
| 74 | + |
| 75 | ++ Update ECJ, use 1.7 as source and target Java version |
| 76 | + https://github.com/processing/processing/pull/2907 |
| 77 | + |
| 78 | ++ Fix infinite recursion in sound library |
| 79 | + https://github.com/processing/processing/pull/2897 |
| 80 | + |
| 81 | ++ Add missing generic type parameters |
| 82 | + https://github.com/processing/processing/pull/2899 |
| 83 | + |
| 84 | ++ Remove unused Base.builtOnce instance variable |
| 85 | + https://github.com/processing/processing/pull/2864 |
| 86 | + |
| 87 | ++ Other miscellaneous fixes |
| 88 | + https://github.com/processing/processing/pull/2865 |
| 89 | + |
| 90 | ++ Moved the language stuff to its own separate folder |
| 91 | + https://github.com/processing/processing/pull/2941 |
| 92 | + |
| 93 | ++ Some minor UpdateChecker refactorings |
| 94 | + https://github.com/processing/processing/pull/2830 |
| 95 | + |
| 96 | ++ Minor improvements to the Contribution Manager's updates check |
| 97 | + https://github.com/processing/processing/pull/2861 |
| 98 | + |
| 99 | ++ Make Cut and Copy in the edit menu active only if some text is selected |
| 100 | + https://github.com/processing/processing/pull/2834 |
| 101 | + |
| 102 | ++ Fix renaming from RGB to Rgb.java and others |
| 103 | + https://github.com/processing/processing/pull/2825 |
| 104 | + |
| 105 | ++ Sketches should only write to the console of their editor window |
| 106 | + https://github.com/processing/processing/issues/153 |
| 107 | + https://github.com/processing/processing/issues/2858 |
| 108 | + https://github.com/processing/processing/pull/2827 |
| 109 | + |
| 110 | ++ Extend translations and update German language |
| 111 | + https://github.com/processing/processing/pull/2949 |
| 112 | + |
| 113 | ++ NullPointerException message when Server writes to a disconnected client |
| 114 | + https://github.com/processing/processing/issues/2577 |
| 115 | + https://github.com/processing/processing/pull/2578 |
| 116 | + |
| 117 | ++ Fix check in loadShader() |
| 118 | + https://github.com/processing/processing/pull/2867 |
| 119 | + |
| 120 | ++ Refined PShader uniform missing message fixes |
| 121 | + https://github.com/processing/processing/pull/2869 |
| 122 | + |
| 123 | ++ Use correct parameter types in FloatList methods |
| 124 | + https://github.com/processing/processing/pull/2902 |
| 125 | + |
| 126 | ++ Pass correct offset to glCopyTexSubImage2D |
| 127 | + https://github.com/processing/processing/pull/2898 |
| 128 | + |
| 129 | ++ beginShape(POINTS) not working for PShape |
| 130 | + https://github.com/processing/processing/issues/2912 |
| 131 | + https://github.com/processing/processing/pull/2915 |
| 132 | + |
| 133 | ++ Multiple blending fixes & improvements |
| 134 | + https://github.com/processing/processing/pull/2921 |
| 135 | + https://github.com/processing/processing/issues/2807 |
| 136 | + https://github.com/processing/processing/issues/1224 |
| 137 | + https://github.com/processing/processing/pull/2601 |
| 138 | + https://github.com/processing/processing/issues/1844 |
| 139 | + |
| 140 | ++ Prevent lerpColor from always rounding down |
| 141 | + https://github.com/processing/processing/issues/2812 |
| 142 | + https://github.com/processing/processing/pull/2813 |
| 143 | + |
| 144 | ++ Allow mask() with PGraphicsJava2D |
| 145 | + https://github.com/processing/processing/pull/2910 |
| 146 | + |
| 147 | ++ OpenGL renderers ignore vertex winding in contours |
| 148 | + https://github.com/processing/processing/issues/2665 |
| 149 | + https://github.com/processing/processing/pull/2927 |
| 150 | + |
| 151 | ++ NPE when calling Client.ip() after the connection has been closed |
| 152 | + https://github.com/processing/processing/issues/2576 |
| 153 | + https://github.com/processing/processing/pull/2922 |
| 154 | + |
| 155 | + |
| 156 | +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
| 157 | + |
| 158 | + |
1 | 159 | PROCESSING 3.0a4 (REV 0231) - 12 September 2014 |
2 | 160 |
|
3 | 161 | Another release to deal with a handful of bugs found in the last alpha. |
|
0 commit comments