mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
rolling revision, plus reload library paths when changing bits
This commit is contained in:
@@ -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 */
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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
@@ -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?
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user