mirror of
https://github.com/processing/processing4.git
synced 2026-04-19 02:39:23 +02:00
starting the next release
This commit is contained in:
@@ -45,10 +45,10 @@ import processing.core.*;
|
||||
*/
|
||||
public class Base {
|
||||
// Added accessors for 0218 because the UpdateCheck class was not properly
|
||||
// updating the values, because javac was inlining the static final values.
|
||||
static private final int REVISION = 221;
|
||||
// updating the values, due to javac inlining the static final values.
|
||||
static private final int REVISION = 222;
|
||||
/** This might be replaced by main() if there's a lib/version.txt file. */
|
||||
static private String VERSION_NAME = "0221"; //$NON-NLS-1$
|
||||
static private String VERSION_NAME = "0222"; //$NON-NLS-1$
|
||||
/** Set true if this a proper release rather than a numbered revision. */
|
||||
// static private boolean RELEASE = false;
|
||||
|
||||
|
||||
@@ -1,3 +1,55 @@
|
||||
0221 core (2.0.3)
|
||||
X fix options parsing on loadTable() to handle spaces
|
||||
X add static versions of loadJSONObject and loadJSONArray that take File inputs
|
||||
X PVector.angleBetween() returns 0 for 3D vectors whenever x and y are both 0
|
||||
X https://github.com/processing/processing/issues/2045
|
||||
X https://github.com/processing/processing/pull/2046
|
||||
|
||||
andres
|
||||
X blendMode() change causes OpenGL renderer to be very slow
|
||||
X https://github.com/processing/processing/issues/2021
|
||||
X serious OpenGL performance issues on OS X (fixed earlier?)
|
||||
X https://github.com/processing/processing/issues/1714
|
||||
X fixed with a recent JOGL update
|
||||
X P2D low quality text rendering
|
||||
X https://github.com/processing/processing/issues/1972
|
||||
X Rendering artifacts on the diagonal line (topleft to bottomright) in P2D
|
||||
X https://github.com/processing/processing/issues/1964
|
||||
X Fix issues with slow text rendering and OpenGL
|
||||
X https://github.com/processing/processing/issues/2025
|
||||
X loadShape doesn't load OBJ files in subdirectories properly
|
||||
X https://github.com/processing/processing/issues/2003
|
||||
X more OpenGL issues fixed by JOGL or newer drivers
|
||||
X https://github.com/processing/processing/issues/1986
|
||||
X Vertical offset when sketch height is indivisible by 2
|
||||
X https://github.com/processing/processing/issues/1985
|
||||
X ellipse() causes RuntimeException: java.lang.OutOfMemoryError
|
||||
X https://github.com/processing/processing/issues/1941
|
||||
X beginShape()..endShape() lines look wrong at joins/caps with P2D
|
||||
X https://github.com/processing/processing/issues/1927
|
||||
X Corrupted text with large font and OpenGL
|
||||
X https://github.com/processing/processing/issues/1869
|
||||
X loadFont hangs on Processing 2.0 with any OpenGL renderer
|
||||
X https://github.com/processing/processing/issues/1854
|
||||
X copy doesn't produce a true copy with P2D and P3D renderers
|
||||
X https://github.com/processing/processing/issues/1924
|
||||
X Additional improvements to memory handling with images
|
||||
X https://github.com/processing/processing/issues/1975
|
||||
X PShape does not draw arc properly
|
||||
X https://github.com/processing/processing/issues/1990
|
||||
|
||||
X Additional memory handling changes for render buffers
|
||||
X https://github.com/processing/processing/issues/1776
|
||||
X PShape style is not restored after calling enableStyle in P2D/P3D
|
||||
X https://github.com/processing/processing/issues/2061
|
||||
|
||||
video
|
||||
X problem with bit shifting
|
||||
X https://github.com/processing/processing/pull/2023
|
||||
X https://github.com/processing/processing/pull/2022
|
||||
X https://github.com/processing/processing/issues/2021
|
||||
|
||||
|
||||
0220 core (2.0.2)
|
||||
X basic getShape(ch) implementation for font glyph shapes
|
||||
X change QUAD_BEZIER_VERTEX to QUADRATIC_VERTEX to match the API call
|
||||
|
||||
@@ -1,53 +1,4 @@
|
||||
0221 core
|
||||
X fix options parsing on loadTable() to handle spaces
|
||||
X add static versions of loadJSONObject and loadJSONArray that take File inputs
|
||||
X PVector.angleBetween() returns 0 for 3D vectors whenever x and y are both 0
|
||||
X https://github.com/processing/processing/issues/2045
|
||||
X https://github.com/processing/processing/pull/2046
|
||||
|
||||
andres
|
||||
X blendMode() change causes OpenGL renderer to be very slow
|
||||
X https://github.com/processing/processing/issues/2021
|
||||
X serious OpenGL performance issues on OS X (fixed earlier?)
|
||||
X https://github.com/processing/processing/issues/1714
|
||||
X fixed with a recent JOGL update
|
||||
X P2D low quality text rendering
|
||||
X https://github.com/processing/processing/issues/1972
|
||||
X Rendering artifacts on the diagonal line (topleft to bottomright) in P2D
|
||||
X https://github.com/processing/processing/issues/1964
|
||||
X Fix issues with slow text rendering and OpenGL
|
||||
X https://github.com/processing/processing/issues/2025
|
||||
X loadShape doesn't load OBJ files in subdirectories properly
|
||||
X https://github.com/processing/processing/issues/2003
|
||||
X more OpenGL issues fixed by JOGL or newer drivers
|
||||
X https://github.com/processing/processing/issues/1986
|
||||
X Vertical offset when sketch height is indivisible by 2
|
||||
X https://github.com/processing/processing/issues/1985
|
||||
X ellipse() causes RuntimeException: java.lang.OutOfMemoryError
|
||||
X https://github.com/processing/processing/issues/1941
|
||||
X beginShape()..endShape() lines look wrong at joins/caps with P2D
|
||||
X https://github.com/processing/processing/issues/1927
|
||||
X Corrupted text with large font and OpenGL
|
||||
X https://github.com/processing/processing/issues/1869
|
||||
X loadFont hangs on Processing 2.0 with any OpenGL renderer
|
||||
X https://github.com/processing/processing/issues/1854
|
||||
X copy doesn't produce a true copy with P2D and P3D renderers
|
||||
X https://github.com/processing/processing/issues/1924
|
||||
X Additional improvements to memory handling with images
|
||||
X https://github.com/processing/processing/issues/1975
|
||||
X PShape does not draw arc properly
|
||||
X https://github.com/processing/processing/issues/1990
|
||||
|
||||
X Additional memory handling changes for render buffers
|
||||
X https://github.com/processing/processing/issues/1776
|
||||
X PShape style is not restored after calling enableStyle in P2D/P3D
|
||||
X https://github.com/processing/processing/issues/2061
|
||||
|
||||
video
|
||||
X problem with bit shifting
|
||||
X https://github.com/processing/processing/pull/2023
|
||||
X https://github.com/processing/processing/pull/2022
|
||||
X https://github.com/processing/processing/issues/2021
|
||||
0222 core
|
||||
|
||||
|
||||
critical
|
||||
|
||||
6
done.txt
6
done.txt
@@ -1,3 +1,9 @@
|
||||
0221 pde (2.0.3)
|
||||
X add double quotes to readlink call, fixes issue w/ paths and spaces
|
||||
X https://github.com/processing/processing/pull/2027
|
||||
X fix submitted by hamoid
|
||||
|
||||
|
||||
0220 pde (2.0.2)
|
||||
X fix "less less" typo
|
||||
X https://github.com/processing/processing/issues/1928
|
||||
|
||||
11
todo.txt
11
todo.txt
@@ -1,7 +1,4 @@
|
||||
0221 pde
|
||||
X add double quotes to readlink call, fixes issue w/ paths and spaces
|
||||
X https://github.com/processing/processing/pull/2027
|
||||
X fix submitted by hamoid
|
||||
0222 pde
|
||||
|
||||
|
||||
high
|
||||
@@ -45,6 +42,12 @@ _ appears to be line 138 of main.m
|
||||
_ maybe this is a holdover from OS X Java?
|
||||
_ bring back the splash screen?
|
||||
|
||||
no good installer, will need JDK anyway for the export
|
||||
require that this folder exists:
|
||||
/Library/Java/JavaVirtualMachines/jdk1.7.0_40.jdk
|
||||
could also require that it's b40, but probably more trouble than it's worth
|
||||
that would be 'java -version' for string 'build 1.7.0_40-b40'
|
||||
|
||||
direct link for download (replace .md5 with .dmg on that page)
|
||||
http://www.java.net/download/jdk7u40/archive/b38/binaries/jre-7u40-ea-bin-b38-macosx-x86_64-07_aug_2013.dmg
|
||||
http://www.java.net/download/jdk7u40/archive/b40/binaries/jre-7u40-fcs-bin-b40-macosx-x86_64-16_aug_2013.dmg
|
||||
|
||||
Reference in New Issue
Block a user