mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
starting revision 0198
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
0197 android (1.5.1)
|
||||
|
||||
fixed earlier
|
||||
X compiler errors on Windows not appearing, nor highlighting the line number
|
||||
X http://code.google.com/p/processing/issues/detail?id=253
|
||||
|
||||
|
||||
0196 android (1.5)
|
||||
X workaround for loadImage(url) bug in Google's Android source (via psoden)
|
||||
X http://code.google.com/p/processing/issues/detail?id=629
|
||||
|
||||
+1
-5
@@ -1,8 +1,4 @@
|
||||
0197 android
|
||||
|
||||
fixed earlier
|
||||
X compiler errors on Windows not appearing, nor highlighting the line number
|
||||
X http://code.google.com/p/processing/issues/detail?id=253
|
||||
0198 android
|
||||
|
||||
|
||||
_ go through all basics/topics examples
|
||||
|
||||
@@ -44,9 +44,9 @@ import processing.mode.java.*;
|
||||
* files and images, etc) that comes from that.
|
||||
*/
|
||||
public class Base {
|
||||
static public final int REVISION = 197;
|
||||
static public final int REVISION = 198;
|
||||
/** This might be replaced by main() if there's a lib/version.txt file. */
|
||||
static public String VERSION_NAME = "0197";
|
||||
static public String VERSION_NAME = "0198";
|
||||
/** 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 */
|
||||
|
||||
@@ -1,3 +1,16 @@
|
||||
0197 core (1.5.1)
|
||||
X Seeming problem displaying SVG data when layer data is grouped
|
||||
X http://code.google.com/p/processing/issues/detail?id=388
|
||||
X bug in SVG parser for shorthand curves (T/t and S/s)
|
||||
X http://code.google.com/p/processing/issues/detail?id=350
|
||||
X shape(PshapeSVG) fails if SVG contains <path d=""/>
|
||||
X http://code.google.com/p/processing/issues/detail?id=434
|
||||
X implement quadVertex()
|
||||
X fix svg issues when dealing with quadratic bezier curves
|
||||
X revert to old createFont() behavior
|
||||
X http://code.google.com/p/processing/issues/detail?id=662
|
||||
|
||||
|
||||
0196 core (1.5)
|
||||
o textAlign(RIGHT) is shutting off native fonts
|
||||
o makes salaryper super ugly
|
||||
|
||||
+1
-11
@@ -1,14 +1,4 @@
|
||||
0197 core
|
||||
X Seeming problem displaying SVG data when layer data is grouped
|
||||
X http://code.google.com/p/processing/issues/detail?id=388
|
||||
X bug in SVG parser for shorthand curves (T/t and S/s)
|
||||
X http://code.google.com/p/processing/issues/detail?id=350
|
||||
X shape(PshapeSVG) fails if SVG contains <path d=""/>
|
||||
X http://code.google.com/p/processing/issues/detail?id=434
|
||||
X implement quadVertex()
|
||||
X fix svg issues when dealing with quadratic bezier curves
|
||||
X revert to old createFont() behavior
|
||||
X http://code.google.com/p/processing/issues/detail?id=662
|
||||
0198 core
|
||||
|
||||
|
||||
for 2.0
|
||||
|
||||
@@ -1,3 +1,38 @@
|
||||
0197 pde (1.5.1)
|
||||
X Windows splash screen for version 1.5 says "1.2"
|
||||
X http://code.google.com/p/processing/issues/detail?id=631
|
||||
X fix broken UpdateCheck (base was never set)
|
||||
o osx splash screen may say 2010 (the one shown on startup in Info.plist)
|
||||
X HsvSpace example sketch in 1.5 download requires addition of import
|
||||
X http://code.google.com/p/processing/issues/detail?id=661
|
||||
X library imports are broken (using pretty name not folder name)
|
||||
X http://code.google.com/p/processing/issues/detail?id=637
|
||||
X 1.5 can't find java sdk -- patch shell script?
|
||||
X http://code.google.com/p/processing/issues/detail?id=633
|
||||
X Obsolete Network > HTTPClient sketch
|
||||
X http://code.google.com/p/processing/issues/detail?id=655
|
||||
X Applets exported by PDE don't find data folder in 1.5
|
||||
X http://code.google.com/p/processing/issues/detail?id=666
|
||||
X File > New and Command-N stop working on OS X after running a sketch
|
||||
X http://code.google.com/p/processing/issues/detail?id=664
|
||||
|
||||
cleaning
|
||||
X check to see whether this bug is fixed once 0140 is released
|
||||
X properly handle non-ascii chars in p5 folder name
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=49
|
||||
X (could also just warn user to install elsewhere)
|
||||
o perhaps the get around this by building into sketch folder
|
||||
o when non-ascii chars in use, just launch everything externally
|
||||
X "Could not find the main class: processing.app.Base. Program will exit."
|
||||
X http://code.google.com/p/processing/issues/detail?id=151
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=1126
|
||||
o "Fatal exception occurred. Program will exit." on startup
|
||||
o seems to be font related, deleting prefs will fix it
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=688
|
||||
o Processing IDE icon ALT + Tab low res in Windows XP
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=1040
|
||||
|
||||
|
||||
0196 pde (1.5)
|
||||
X upgrade to Quaqua 7.3.4 on OS X
|
||||
X fixes checkbox in mode menu smashing into things
|
||||
|
||||
@@ -1,36 +1,4 @@
|
||||
0197 pde
|
||||
X Windows splash screen for version 1.5 says "1.2"
|
||||
X http://code.google.com/p/processing/issues/detail?id=631
|
||||
X fix broken UpdateCheck (base was never set)
|
||||
o osx splash screen may say 2010 (the one shown on startup in Info.plist)
|
||||
X HsvSpace example sketch in 1.5 download requires addition of import
|
||||
X http://code.google.com/p/processing/issues/detail?id=661
|
||||
X library imports are broken (using pretty name not folder name)
|
||||
X http://code.google.com/p/processing/issues/detail?id=637
|
||||
X 1.5 can't find java sdk -- patch shell script?
|
||||
X http://code.google.com/p/processing/issues/detail?id=633
|
||||
X Obsolete Network > HTTPClient sketch
|
||||
X http://code.google.com/p/processing/issues/detail?id=655
|
||||
X Applets exported by PDE don't find data folder in 1.5
|
||||
X http://code.google.com/p/processing/issues/detail?id=666
|
||||
X File > New and Command-N stop working on OS X after running a sketch
|
||||
X http://code.google.com/p/processing/issues/detail?id=664
|
||||
|
||||
cleaning
|
||||
X check to see whether this bug is fixed once 0140 is released
|
||||
X properly handle non-ascii chars in p5 folder name
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=49
|
||||
X (could also just warn user to install elsewhere)
|
||||
o perhaps the get around this by building into sketch folder
|
||||
o when non-ascii chars in use, just launch everything externally
|
||||
X "Could not find the main class: processing.app.Base. Program will exit."
|
||||
X http://code.google.com/p/processing/issues/detail?id=151
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=1126
|
||||
o "Fatal exception occurred. Program will exit." on startup
|
||||
o seems to be font related, deleting prefs will fix it
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=688
|
||||
o Processing IDE icon ALT + Tab low res in Windows XP
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=1040
|
||||
0198 pde
|
||||
|
||||
|
||||
2.0
|
||||
|
||||
Reference in New Issue
Block a user