rolling revision, plus reload library paths when changing bits

This commit is contained in:
benfry
2011-11-08 22:55:22 +00:00
parent 418983b02f
commit 339e5056c0
6 changed files with 37 additions and 19 deletions
+2 -2
View File
@@ -50,9 +50,9 @@ import processing.core.*;
* files and images, etc) that comes from that.
*/
public class Base {
static public final int REVISION = 202;
static public final int REVISION = 203;
/** This might be replaced by main() if there's a lib/version.txt file. */
static public String VERSION_NAME = "0202";
static public String VERSION_NAME = "0203";
/** Set true if this a proper release rather than a numbered revision. */
static public boolean RELEASE = false;
/** True if heavy debugging error/log messages are enabled */
+10 -1
View File
@@ -570,8 +570,17 @@ public class Preferences {
}
*/
// If a change has been made between 32- and 64-bit, the libraries need
// to be reloaded so that their native paths are set correctly.
if (Base.isMacOS()) {
set("run.options.bits", bitsThirtyTwoButton.isSelected() ? "32" : "64");
String oldBits = get("run.options.bits");
String newBits = bitsThirtyTwoButton.isSelected() ? "32" : "64";
if (!oldBits.equals(newBits)) {
set("run.options.bits", newBits);
for (Mode m : editor.base.getModeList()) {
m.rebuildLibraryList();
}
}
}
String newSizeText = fontSizeField.getText();
+6
View File
@@ -1,3 +1,9 @@
0202 core (2.0a3)
X Rounded rect() does not have a maximum length for corner radius
X http://code.google.com/p/processing/issues/detail?id=813
A video problem with P3D
0201 core (2.0a2)
o moviemaker built into core to write uncompressed frames? or PNG?
X doing this via a tool instead
+2 -4
View File
@@ -1,7 +1,5 @@
0202 core
X Rounded rect() does not have a maximum length for corner radius
X http://code.google.com/p/processing/issues/detail?id=813
A video problem with P3D
0203 core
_ add inputPath() and outputPath() -> sketch folder or sd card
_ or should this just be a change to sketchPath() on Android?
+15
View File
@@ -1,3 +1,18 @@
0202 pde (2.0a3)
X fix problem with serial not loading on macosx
X fix problem with popup menus on the toolbar disappearing immediately (osx)
X http://code.google.com/p/processing/issues/detail?id=846
X http://code.google.com/p/processing/issues/detail?id=887
X Incorrect tab/line shown for preprocessor errors when more than 2 tabs
X http://code.google.com/p/processing/issues/detail?id=873
X Commenting via menu or shortcut does not set sketch to "need save"
X http://code.google.com/p/processing/issues/detail?id=766
earlier
X IDE Export Application button exports applet
X http://code.google.com/p/processing/issues/detail?id=863
0201 pde (2.0a2)
X implement movie maker tool
X http://code.google.com/p/processing/issues/detail?id=836
+2 -12
View File
@@ -1,16 +1,6 @@
0202 pde
X fix problem with serial not loading on macosx
X fix problem with popup menus on the toolbar disappearing immediately (osx)
X http://code.google.com/p/processing/issues/detail?id=846
X http://code.google.com/p/processing/issues/detail?id=887
X Incorrect tab/line shown for preprocessor errors when more than 2 tabs
X http://code.google.com/p/processing/issues/detail?id=873
X Commenting via menu or shortcut does not set sketch to "need save"
X http://code.google.com/p/processing/issues/detail?id=766
0203 pde
X changing between 32- and 64- bit mode on OS X wasn't reloading library paths
earlier
X IDE Export Application button exports applet
X http://code.google.com/p/processing/issues/detail?id=863
_ make note of when library is not available (serial) with error msg
_ i.e. if running in 64-bit mode on OS X, can't do serial