mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
starting revision 0180
This commit is contained in:
@@ -1,3 +1,15 @@
|
||||
0179
|
||||
X screenWidth/Height instead of screenW/H
|
||||
X errors that happen inside events (e.g. keys) not highlighting lines
|
||||
X useful stack trace information not coming through.. why?
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1384
|
||||
|
||||
previous
|
||||
X don't require JDK installation and PATH setting
|
||||
X if using processing with java download, should be able to use its tools.jar
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1470
|
||||
|
||||
|
||||
0178 (private)
|
||||
X noLoop() is broken (draw is never called)
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1467
|
||||
|
||||
+1
-10
@@ -1,13 +1,4 @@
|
||||
0179
|
||||
X screenWidth/Height instead of screenW/H
|
||||
X errors that happen inside events (e.g. keys) not highlighting lines
|
||||
X useful stack trace information not coming through.. why?
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1384
|
||||
|
||||
previous
|
||||
X don't require JDK installation and PATH setting
|
||||
X if using processing with java download, should be able to use its tools.jar
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1470
|
||||
0180 android
|
||||
|
||||
|
||||
_ make size() work to place the component at the center of the screen
|
||||
|
||||
@@ -40,13 +40,14 @@ import processing.core.*;
|
||||
* files and images, etc) that comes from that.
|
||||
*/
|
||||
public class Base {
|
||||
static final int REVISION = 179;
|
||||
static final int REVISION = 180;
|
||||
/** This might be replaced by main() if there's a lib/version.txt file. */
|
||||
static public String VERSION_NAME = "0179";
|
||||
static public String VERSION_NAME = "0180";
|
||||
/** Set true if this a proper release rather than a numbered revision. */
|
||||
static public boolean RELEASE = false;
|
||||
|
||||
static HashMap<Integer, String> platformNames = new HashMap<Integer, String>();
|
||||
static HashMap<Integer, String> platformNames =
|
||||
new HashMap<Integer, String>();
|
||||
static {
|
||||
platformNames.put(PConstants.WINDOWS, "windows");
|
||||
platformNames.put(PConstants.MACOSX, "macosx");
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
|
||||
<!-- all these need to change for new releases -->
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>1.1, Copyright © Ben Fry and Casey Reas</string>
|
||||
<string>1.x, Copyright © Ben Fry and Casey Reas</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.1</string>
|
||||
<string>1.x</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.1</string>
|
||||
<string>1.x</string>
|
||||
<!-- now stop changing things and get outta here -->
|
||||
|
||||
<key>CFBundleAllowMixedLocalizations</key>
|
||||
|
||||
@@ -1,3 +1,31 @@
|
||||
0179 core (1.1)
|
||||
X screenWidth/Height instead of screenW/H
|
||||
X open up the pdf library more (philho)
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1343
|
||||
X cache font information for the PDF library to improve setup time
|
||||
X when using createFont("xxxx.ttf"), should use textMode(SHAPE) with PDF
|
||||
X because ttf files will not be installed on the system when opening pdf
|
||||
X added error messages for users
|
||||
X bring back old-style textAscent()
|
||||
X needs to just quickly run characters d and p
|
||||
X only takes a couple ms, so no problem
|
||||
X pdf library
|
||||
X throw an error with the black boxes
|
||||
X throw an error if loading fonts from a file, and not using mode(SHAPE)
|
||||
X implement default font
|
||||
X this can be done to replace the exception handler in PGraphics
|
||||
o however it needs to be a legit font, so that it works w/ pdf
|
||||
o or maybe pdf just has its own default?
|
||||
X create characters on the fly when createFont() is used
|
||||
o memory leak problem with fonts in JAVA2D
|
||||
X can't get this to crash anymore
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=1252
|
||||
|
||||
earlier
|
||||
X if no draw() method, and renderer is not displayable, then exit
|
||||
X static mode PDFs shouldn't just hang
|
||||
|
||||
|
||||
0178 core (private)
|
||||
X filter(DILATE/ERODE)
|
||||
X dilate(boolean) has bug in clamping of top kernel coordinate
|
||||
|
||||
+1
-26
@@ -1,29 +1,4 @@
|
||||
0179 core
|
||||
X screenWidth/Height instead of screenW/H
|
||||
X open up the pdf library more (philho)
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1343
|
||||
X cache font information for the PDF library to improve setup time
|
||||
X when using createFont("xxxx.ttf"), should use textMode(SHAPE) with PDF
|
||||
X because ttf files will not be installed on the system when opening pdf
|
||||
X added error messages for users
|
||||
X bring back old-style textAscent()
|
||||
X needs to just quickly run characters d and p
|
||||
X only takes a couple ms, so no problem
|
||||
X pdf library
|
||||
X throw an error with the black boxes
|
||||
X throw an error if loading fonts from a file, and not using mode(SHAPE)
|
||||
X implement default font
|
||||
X this can be done to replace the exception handler in PGraphics
|
||||
o however it needs to be a legit font, so that it works w/ pdf
|
||||
o or maybe pdf just has its own default?
|
||||
X create characters on the fly when createFont() is used
|
||||
o memory leak problem with fonts in JAVA2D
|
||||
X can't get this to crash anymore
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=1252
|
||||
|
||||
earlier
|
||||
X if no draw() method, and renderer is not displayable, then exit
|
||||
X static mode PDFs shouldn't just hang
|
||||
0180 core
|
||||
|
||||
|
||||
big ones
|
||||
|
||||
@@ -1,3 +1,15 @@
|
||||
0179 pde (1.1)
|
||||
X another fix for CDATA section in applet.html for exported applets
|
||||
X updated about.jpg
|
||||
X Cannot find PDF library
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1473
|
||||
X new examples.zip
|
||||
o Fixes for invoking Processing from arbitrary locations
|
||||
X already fixed with earlier code
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1214
|
||||
X hide android tools if it's an actual release version
|
||||
|
||||
|
||||
0178 pde
|
||||
X no changes, only android work from jdf
|
||||
|
||||
|
||||
@@ -1,19 +1,10 @@
|
||||
0179 pde
|
||||
X another fix for CDATA section in applet.html for exported applets
|
||||
X updated about.jpg
|
||||
X Cannot find PDF library
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1473
|
||||
X new examples.zip
|
||||
o Fixes for invoking Processing from arbitrary locations
|
||||
X already fixed with earlier code
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1214
|
||||
X hide android tools if it's an actual release version
|
||||
0180 pde
|
||||
|
||||
|
||||
_ finish build instructions for 1.1
|
||||
_ update build/howto.txt (of course) because it says no ant
|
||||
_ this would also mean requiring a java installation for building
|
||||
|
||||
|
||||
_ simple prefs implementation to set key/value pairs using a JTable
|
||||
_ the .macosx, .linux, etc prefs should be stripped
|
||||
_ only use them on first load, and merge into preferences.txt
|
||||
|
||||
Reference in New Issue
Block a user