Skip to content

Commit 4b4fa84

Browse files
committed
starting the next release
1 parent 47de733 commit 4b4fa84

8 files changed

Lines changed: 59 additions & 50 deletions

File tree

android/done.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0214 android (2.0b6)
2+
X No changes on the Android side of things
3+
4+
15
0213 android (2.0b5)
26
no changes
37

android/todo.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
0214 android (2.0b6)
2-
X No changes on the Android side of things
1+
0215 android
32

43

54
_ implement Android version of command line tools

app/src/processing/app/Base.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
* files and images, etc) that comes from that.
4545
*/
4646
public class Base {
47-
static public final int REVISION = 214;
47+
static public final int REVISION = 215;
4848
/** This might be replaced by main() if there's a lib/version.txt file. */
49-
static public String VERSION_NAME = "0214";
49+
static public String VERSION_NAME = "0215";
5050
/** Set true if this a proper release rather than a numbered revision. */
5151
static public boolean RELEASE = false;
5252

@@ -2338,12 +2338,12 @@ static public String getLibContentsPath(String filename) {
23382338
}
23392339
*/
23402340

2341-
/**
2342-
* Adjacent the executable on Windows and Linux,
2341+
/**
2342+
* Adjacent the executable on Windows and Linux,
23432343
* or inside Contents/Resources/Java on Mac OS X.
23442344
*/
2345-
static protected File processingRoot;
2346-
2345+
static protected File processingRoot;
2346+
23472347
static public File getContentFile(String name) {
23482348
if (processingRoot == null) {
23492349
// Get the path to the .jar file that contains Base.class
@@ -2356,7 +2356,7 @@ static public File getContentFile(String name) {
23562356
// The main Processing installation directory
23572357
processingRoot = libFolder.getParentFile();
23582358
} else {
2359-
Base.log("Could not find lib in " +
2359+
Base.log("Could not find lib in " +
23602360
libFolder.getAbsolutePath() + ", switching to user.dir");
23612361
processingRoot = new File(System.getProperty("user.dir"));
23622362
}

core/done.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0214 core (2.0b6)
2+
A Patch for /trunk/processing/core/src/processing/opengl/PGraphicsOpenGL.java
3+
A http://code.google.com/p/processing/issues/detail?id=1306
4+
A reverted back to earlier version of JOGL
5+
A several fixes for GMA 950
6+
A video was broken due to JOGL issues
7+
A http://code.google.com/p/processing/issues/detail?id=1364
8+
X icon loading causes an error if you use a package
9+
X http://code.google.com/p/processing/issues/detail?id=1346
10+
11+
112
0213 core (2.0b5)
213
X mouseButton not being set properly on Windows (and probably Linux) in 2.0b4
314
X http://code.google.com/p/processing/issues/detail?id=1332

core/src/processing/core/PApplet.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10419,7 +10419,7 @@ public void textureMode(int mode) {
1041910419
* Description to come...
1042010420
*
1042110421
* ( end auto-generated from textureWrap.xml )
10422-
*
10422+
*
1042310423
* @webref image:textures
1042410424
* @param wrap Either CLAMP (default) or REPEAT
1042510425
*/
@@ -10588,7 +10588,7 @@ public void noClip() {
1058810588
* This is a new reference entry for Processing 2.0. It will be updated shortly.
1058910589
*
1059010590
* ( end auto-generated )
10591-
*
10591+
*
1059210592
* @webref Rendering
1059310593
* @param mode the blending mode to use
1059410594
*/
@@ -10632,7 +10632,7 @@ public PShape createShape(int kind, float... p) {
1063210632
* This is a new reference entry for Processing 2.0. It will be updated shortly.
1063310633
*
1063410634
* ( end auto-generated )
10635-
*
10635+
*
1063610636
* @webref rendering:shaders
1063710637
* @param fragFilename name of fragment shader file
1063810638
*/
@@ -10655,7 +10655,7 @@ public PShader loadShader(String fragFilename, String vertFilename) {
1065510655
* This is a new reference entry for Processing 2.0. It will be updated shortly.
1065610656
*
1065710657
* ( end auto-generated )
10658-
*
10658+
*
1065910659
* @webref rendering:shaders
1066010660
* @param shader name of shader file
1066110661
*/
@@ -10680,7 +10680,7 @@ public void shader(PShader shader, int kind) {
1068010680
* This is a new reference entry for Processing 2.0. It will be updated shortly.
1068110681
*
1068210682
* ( end auto-generated )
10683-
*
10683+
*
1068410684
* @webref rendering:shaders
1068510685
*/
1068610686
public void resetShader() {
@@ -11561,9 +11561,9 @@ public void smooth() {
1156111561

1156211562

1156311563
/**
11564-
*
11564+
*
1156511565
* @param level either 2, 4, or 8
11566-
*/
11566+
*/
1156711567
public void smooth(int level) {
1156811568
if (recorder != null) recorder.smooth(level);
1156911569
g.smooth(level);

core/todo.txt

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
1-
0214 core (2.0b6)
2-
A Patch for /trunk/processing/core/src/processing/opengl/PGraphicsOpenGL.java
3-
A http://code.google.com/p/processing/issues/detail?id=1306
4-
A reverted back to earlier version of JOGL
5-
A several fixes for GMA 950
6-
A video was broken due to JOGL issues
7-
A http://code.google.com/p/processing/issues/detail?id=1364
8-
X icon loading causes an error if you use a package
9-
X http://code.google.com/p/processing/issues/detail?id=1346
1+
0215 core
102

113

124
_ mouseButton not being set properly in mouseClicked

done.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
0214 pde (2.0b6)
2+
X Input Method support (for Japanese et al.) has been disabled
3+
X implement as an option inside Preferences
4+
X http://code.google.com/p/processing/issues/detail?id=526
5+
X remove preferences that refer to applets
6+
X remove applet folder from the Java stuff
7+
X remove old 'cmd' folder from the Java build directory
8+
X Import statements are executed within multiline comments
9+
X http://code.google.com/p/processing/issues/detail?id=911
10+
X write preferences file sorted
11+
X Major change to how lib folder is found, hopefully handles cmd line better
12+
o caretBlinks always true.. just remove the pref?
13+
o blockCaret always false.. remove it?
14+
X report from someone about blinking caret
15+
X http://code.google.com/p/processing/issues/detail?id=1136
16+
X added caret options
17+
X editor.caret.blink = true
18+
X editor.caret.block = false
19+
X see if commander is still headless
20+
X check to see if sketchbook is getting picked up for cmd line
21+
X don't use --request on OS X 10.6, it's not available
22+
X processing-java ClassNotFoundException: BatchCompiler (Linux)
23+
X http://code.google.com/p/processing/issues/detail?id=1334
24+
X 2.0 beta editor does not respond properly if External Editor was enabled
25+
X http://code.google.com/p/processing/issues/detail?id=1355
26+
27+
128
0213 pde (2.0b5)
229
X Console disappears with increased editor font size
330
X http://code.google.com/p/processing/issues/detail?id=1275

todo.txt

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,4 @@
1-
0214 pde (2.0b6)
2-
X Input Method support (for Japanese et al.) has been disabled
3-
X implement as an option inside Preferences
4-
X http://code.google.com/p/processing/issues/detail?id=526
5-
X remove preferences that refer to applets
6-
X remove applet folder from the Java stuff
7-
X remove old 'cmd' folder from the Java build directory
8-
X Import statements are executed within multiline comments
9-
X http://code.google.com/p/processing/issues/detail?id=911
10-
X write preferences file sorted
11-
X Major change to how lib folder is found, hopefully handles cmd line better
12-
o caretBlinks always true.. just remove the pref?
13-
o blockCaret always false.. remove it?
14-
X report from someone about blinking caret
15-
X http://code.google.com/p/processing/issues/detail?id=1136
16-
X added caret options
17-
X editor.caret.blink = true
18-
X editor.caret.block = false
19-
X see if commander is still headless
20-
X check to see if sketchbook is getting picked up for cmd line
21-
X don't use --request on OS X 10.6, it's not available
22-
X processing-java ClassNotFoundException: BatchCompiler (Linux)
23-
X http://code.google.com/p/processing/issues/detail?id=1334
24-
X 2.0 beta editor does not respond properly if External Editor was enabled
25-
X http://code.google.com/p/processing/issues/detail?id=1355
1+
0215 pde
262

273

284
_ Sketch that exported to Linux doesn't get the command line arguments

0 commit comments

Comments
 (0)