diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java
index a3101677d..204343a6b 100644
--- a/app/src/processing/app/Base.java
+++ b/app/src/processing/app/Base.java
@@ -500,7 +500,7 @@ public class Base {
// Fix a problem with systems that use a non-ASCII languages. Paths are
// being passed in with 8.3 syntax, which makes the sketch loader code
// unhappy, since the sketch folder naming doesn't match up correctly.
- // http://dev.processing.org/bugs/show_bug.cgi?id=1089
+ // https://download.processing.org/bugzilla/1089.html
if (Platform.isWindows()) {
try {
File file = new File(args[i]);
diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java
index 2420fd81f..75638077f 100644
--- a/app/src/processing/app/Sketch.java
+++ b/app/src/processing/app/Sketch.java
@@ -82,7 +82,7 @@ public class Sketch {
* will be the same as code.length, because the getCode() method returns
* just the code[] array, rather than a copy of it, or an array that's been
* resized to just the relevant files themselves.
- * http://dev.processing.org/bugs/show_bug.cgi?id=940
+ * https://download.processing.org/bugzilla/940.html
*/
private int codeCount;
private SketchCode[] code;
@@ -228,7 +228,7 @@ public class Sketch {
*/
public void reload() {
// set current to null so that the tab gets updated
- // http://dev.processing.org/bugs/show_bug.cgi?id=515
+ // https://download.processing.org/bugzilla/515.html
current = null;
// nuke previous files and settings
load();
@@ -1475,7 +1475,7 @@ public class Sketch {
// If it's a replacement, delete the old file first,
// otherwise case changes will not be preserved.
- // http://dev.processing.org/bugs/show_bug.cgi?id=969
+ // https://download.processing.org/bugzilla/969.html
if (replacement) {
boolean muchSuccess = destFile.delete();
if (!muchSuccess) {
diff --git a/app/src/processing/app/syntax/JEditTextArea.java b/app/src/processing/app/syntax/JEditTextArea.java
index 49cc203c3..7c3800aa5 100644
--- a/app/src/processing/app/syntax/JEditTextArea.java
+++ b/app/src/processing/app/syntax/JEditTextArea.java
@@ -157,7 +157,7 @@ public class JEditTextArea extends JComponent
painter.addMouseMotionListener(new DragHandler());
addFocusListener(new FocusHandler());
// send tab keys through to the text area
- // http://dev.processing.org/bugs/show_bug.cgi?id=1267
+ // https://download.processing.org/bugzilla/1267.html
setFocusTraversalKeysEnabled(false);
// Load the defaults
diff --git a/app/src/processing/app/tools/CreateFont.java b/app/src/processing/app/tools/CreateFont.java
index 5095c80fc..886fda6e5 100644
--- a/app/src/processing/app/tools/CreateFont.java
+++ b/app/src/processing/app/tools/CreateFont.java
@@ -149,7 +149,7 @@ public class CreateFont extends JFrame implements Tool {
sample = new SampleComponent(this);
// Seems that in some instances, no default font is set
- // http://dev.processing.org/bugs/show_bug.cgi?id=777
+ // https://download.processing.org/bugzilla/777.html
sample.setFont(new Font("Dialog", Font.PLAIN, 12));
pain.add(sample);
diff --git a/app/src/processing/app/ui/Editor.java b/app/src/processing/app/ui/Editor.java
index 163c11781..3d928a57e 100644
--- a/app/src/processing/app/ui/Editor.java
+++ b/app/src/processing/app/ui/Editor.java
@@ -173,7 +173,7 @@ public abstract class Editor extends JFrame implements RunnerListener {
});
// don't close the window when clicked, the app will take care
// of that via the handleQuitInternal() methods
- // http://dev.processing.org/bugs/show_bug.cgi?id=440
+ // https://download.processing.org/bugzilla/440.html
setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
// When bringing a window to front, let the Base know
@@ -2107,7 +2107,7 @@ public abstract class Editor extends JFrame implements RunnerListener {
if (!sketch.isModified()) return true;
// As of Processing 1.0.10, this always happens immediately.
- // http://dev.processing.org/bugs/show_bug.cgi?id=1456
+ // https://download.processing.org/bugzilla/1456.html
// With Java 7u40 on OS X, need to bring the window forward.
toFront();
@@ -2314,7 +2314,7 @@ public abstract class Editor extends JFrame implements RunnerListener {
* save is happening. If 'immediately' is true, then it will happen
* immediately. This is used during a quit, because invokeLater()
* won't run properly while a quit is happening. This fixes
- * Bug 276.
+ * Bug 276.
*/
public boolean handleSave(boolean immediately) {
// This was a mistake (rectified in 0136) that would cause long-running
diff --git a/core/done.txt b/core/done.txt
index 2f44b2ee8..2d61e4d50 100644
--- a/core/done.txt
+++ b/core/done.txt
@@ -3369,7 +3369,7 @@ A http://code.google.com/p/processing/issues/detail?id=534
C some docs missing (therefore not syntax highlighting)
C http://code.google.com/p/processing/issues/detail?id=84
C constants that are not highlighting (WINDOWS the only one?)
-C http://dev.processing.org/bugs/show_bug.cgi?id=662
+C https://download.processing.org/bugzilla/662.html
0206 core (2.0a7)
@@ -3560,7 +3560,7 @@ o this will help for exported applets that don't need 'present'
X only doing this via sketchXxxx() methods, but should work well
o add option to use full screen exclusive mode on present inside pde?
o override default setting of macosx (yes) and linux/win (no)
-o http://dev.processing.org/bugs/show_bug.cgi?id=1043
+o https://download.processing.org/bugzilla/1043.html
o linux present mode isn't working properly
X removing FSEM, too buggy and problematic
X --display not working on osx
@@ -3680,7 +3680,7 @@ o http://code.google.com/p/processing/issues/detail?id=646
o http://code.google.com/p/chromium/issues/detail?id=62004
o http://code.google.com/p/chromium/issues/detail?id=79939
A ortho() behaving differently in P3D vs OPENGL
-A http://dev.processing.org/bugs/show_bug.cgi?id=100
+A https://download.processing.org/bugzilla/100.html
A http://code.google.com/p/processing/issues/detail?id=37
A shows a blank canvas
A (was only happening once b/c was drawing first in perspective)
@@ -3698,12 +3698,12 @@ A Resizing window in OPENGL breaks ImageCaches
A http://code.google.com/p/processing/issues/detail?id=184
X need to make sure the createFont() reference is up to date for charset
o opengl + resize window => window content garbled
-o http://dev.processing.org/bugs/show_bug.cgi?id=1360
+o https://download.processing.org/bugzilla/1360.html
o P2D transformation bug from ira
-X http://dev.processing.org/bugs/show_bug.cgi?id=1175
+X https://download.processing.org/bugzilla/1175.html
X resize not working in revision 5707
X camera() and perspective() were commented out in setSize()
-X http://dev.processing.org/bugs/show_bug.cgi?id=1391
+X https://download.processing.org/bugzilla/1391.html
X this was fixed for 0176
o changing vertex alpha in P3D in a QUAD_STRIP is ignored
o with smoothing, it works fine, but with PTriangle, it's not
@@ -3713,17 +3713,17 @@ o P3D also seems to have trouble w/ textures edges.. bad math?
o No textures render with hint(ENABLE_ACCURATE_TEXTURES)
X http://code.google.com/p/processing/issues/detail?id=129
o textAlign(JUSTIFY) (with implementation)
-o http://dev.processing.org/bugs/show_bug.cgi?id=1309
+o https://download.processing.org/bugzilla/1309.html
X http://code.google.com/p/processing/issues/detail?id=186
X decided with casey not to include
o resizing opengl destroys context and textures
-o http://dev.processing.org/bugs/show_bug.cgi?id=1176
+o https://download.processing.org/bugzilla/1176.html
o in P2D, two vertex() line calls with fill() causes duplicate output
o works fine in other renderers, has to do with tesselation
-X http://dev.processing.org/bugs/show_bug.cgi?id=1191
+X https://download.processing.org/bugzilla/1191.html
X http://code.google.com/p/processing/issues/detail?id=162
o extra triangles being seen in P2D
-X http://dev.processing.org/bugs/show_bug.cgi?id=1192
+X https://download.processing.org/bugzilla/1192.html
X http://code.google.com/p/processing/issues/detail?id=163
A implement repeating textures
A http://code.google.com/p/processing/issues/detail?id=94
@@ -3804,7 +3804,7 @@ X textures truly did get worse in P3D
o problem is that bilinear is turned on by default starting in 0124(?)
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Programs;action=display;num=1205171649
o Implement support for complex shapes when using P2D and P3D
-X http://dev.processing.org/bugs/show_bug.cgi?id=1053
+X https://download.processing.org/bugzilla/1053.html
X http://code.google.com/p/processing/issues/detail?id=145
o smooth in P3D has zbuffer glitches
X http://code.google.com/p/processing/issues/detail?id=131
@@ -3813,13 +3813,13 @@ X http://code.google.com/p/processing/issues/detail?id=132
o textured sphere example needs to set normals
o also needs fix for last edge and the seam
o text() not setting zbuffer in P3D because not fully opaque
-X http://dev.processing.org/bugs/show_bug.cgi?id=696
+X https://download.processing.org/bugzilla/696.html
X http://code.google.com/p/processing/issues/detail?id=88
o osx 10.5 (not 10.4) performing text width calculation differently
-o http://dev.processing.org/bugs/show_bug.cgi?id=972
+o https://download.processing.org/bugzilla/972.html
X http://code.google.com/p/processing/issues/detail?id=128
o Automatically use textMode(SCREEN) with text() when possible
-o http://dev.processing.org/bugs/show_bug.cgi?id=1020
+o https://download.processing.org/bugzilla/1020.html
X http://code.google.com/p/processing/issues/detail?id=134
o writing image file (missing a flush() call?) on exit() fails
o lots of zero length files
@@ -3836,7 +3836,7 @@ o catch OutOfMemoryError inside size() and let the user know
o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1038847001
o remove some of the bloat, how can we make things more compact?
o i.e. if not using 3D, can leave out PGraphics3, PTriangle, PLine
-o http://dev.processing.org/bugs/show_bug.cgi?id=127
+o https://download.processing.org/bugzilla/127.html
o fix-up the curve_init() and the rest to use matrices
o and not have ugly names (i.e. just g.curveDetail is good)
o weird ellipse bug with an alpha line in same image
@@ -3858,14 +3858,14 @@ o mgorbet stroke transparency problem
o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1076383048;start=0
o make sure line() commands don't try to have a fill
o make thick lines draw perpendicular to the screen with P3D
-o http://dev.processing.org/bugs/show_bug.cgi?id=956
+o https://download.processing.org/bugzilla/956.html
o ewjordan suggests building the quad in screen coords after perspective
o images are losing pixels at the edges
X http://code.google.com/p/processing/issues/detail?id=38
o odd error with some pixels from images not drawing properly
o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115681453
o clipping not implemented
-o http://dev.processing.org/bugs/show_bug.cgi?id=1393
+o https://download.processing.org/bugzilla/1393.html
X http://code.google.com/p/processing/issues/detail?id=210
o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1114184516
o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1058491568;start=0
@@ -3913,7 +3913,7 @@ o disabling error reporting (what's taking it so long?)
o maybe use a hint() to enable it? or a getError() function?
o make cached display list of filled/non-filled ellipse.. rect.. etc
o these don't work when the vertex colors change, but..
-o http://dev.processing.org/bugs/show_bug.cgi?id=657
+o https://download.processing.org/bugzilla/657.html
o or maybe should be using vertex arrays?
o maybe break out a separate timage object in textures?
o needs tindex and tbuffer, both gl specific
@@ -3929,22 +3929,22 @@ o cache for type should be per-renderer
o make the opengl textmode shape stuff get better and use PShape
o because opengl needs vectors, but also the image cache for textures
X stroke showing above fill when used with P3D
-X http://dev.processing.org/bugs/show_bug.cgi?id=1032
+X https://download.processing.org/bugzilla/1032.html
X fixed in release 0160
o Stroked polygons losing stroke pixels due to z-buffer issues in P3D
o http://code.google.com/p/processing/issues/detail?id=73
X refactor PApplet.main() and Runner.startInternal() to remove duplication
-X http://dev.processing.org/bugs/show_bug.cgi?id=245
+X https://download.processing.org/bugzilla/245.html
o PFont.size not available.. other font accessors?
-o http://dev.processing.org/bugs/show_bug.cgi?id=1510
+o https://download.processing.org/bugzilla/1510.html
o implement method for lightweight components with processing applets
-o http://dev.processing.org/bugs/show_bug.cgi?id=686
+o https://download.processing.org/bugzilla/686.html
X closed as LATER in the original bugs db
o add getSketchSize() and getSketchRenderer()
o these could simply have the defaults at the outset
X added in the more recent revisions
X Use getContextClassLoader() instead of Class.forName()
-X http://dev.processing.org/bugs/show_bug.cgi?id=514
+X https://download.processing.org/bugzilla/514.html
X cursor functions don't work in present mode
X just add a note to the reference
X http://code.google.com/p/processing/issues/detail?id=160
@@ -3961,7 +3961,7 @@ X should beginRecord inherit settings from its parent renderer?
X textFont() is null on beginRecord
X same would be the case for strokeWeight, background, etc.
X add note to begin/endRecord, that settings are not inherited
-X http://dev.processing.org/bugs/show_bug.cgi?id=346
+X https://download.processing.org/bugzilla/346.html
o or actually inherit the settings
X decision: too many minor glitches possible, just note in the ref
X i.e. some fonts don't work with PDF, or bg color can't be re-set
@@ -4034,7 +4034,7 @@ X XMLElemnt.parse() or new XMLElement(xmldata)?
X same goes for PShape.. parse from a string?
X http://code.google.com/p/processing/issues/detail?id=277
o Writing XML files (clean up the API)
-o http://dev.processing.org/bugs/show_bug.cgi?id=964
+o https://download.processing.org/bugzilla/964.html
X XMLElement lacks add/set/remove methods
X http://code.google.com/p/processing/issues/detail?id=440
X PNode is final(?) name, get that implemented
@@ -4062,7 +4062,7 @@ o updatePixels() is slow to create a BufferedImage
o therefore the incomplete rendering
o could this be an issue fixed by a MediaTracker?
o first line of applets is missing on java 1.4+ on the mac
-X http://dev.processing.org/bugs/show_bug.cgi?id=283
+X https://download.processing.org/bugzilla/283.html
o make the PFont index lookup use numbers up to 256?
X change JAVA2D surface to be RGB instead of ARGB
X seeing some strange behavior, hopefully this won't be a regression
@@ -4082,7 +4082,7 @@ A OPENGL2 record only saves one line in a LINES shape
A http://code.google.com/p/processing/issues/detail?id=579
X add isClosed() and getChildren() methods to PShape
X Frame skipping with processor intensive applets using 1.6
-X http://dev.processing.org/bugs/show_bug.cgi?id=766
+X https://download.processing.org/bugzilla/766.html
X may be fixed, but not verified
o definite present-mode weirdness with background colors
X normal() command commented out in sphere() method
@@ -4119,7 +4119,7 @@ X present mode is no longer centering on macosx
X problem with setExtendedState(), which doesn't seem to be necessary
o only top left 100 x 100 pixels are displayed in presentation mode (Linux 1.1+)
o also was just crashing in main() for me, check on this later
-o http://dev.processing.org/bugs/show_bug.cgi?id=1560
+o https://download.processing.org/bugzilla/1560.html
0192 core (pre)
@@ -4133,12 +4133,12 @@ X appears to have been some old code that wasn't removed
X anglebetween regression
X http://code.google.com/p/processing/issues/detail?id=435
X more chatter with this
-X http://dev.processing.org/bugs/show_bug.cgi?id=131
+X https://download.processing.org/bugzilla/131.html
X http://code.google.com/p/processing/issues/detail?id=43
X shearX and shearY not implemented with P2D and JAVA2D
X http://code.google.com/p/processing/issues/detail?id=452
L PGraphicsJava2D.resize() not working the same as PGraphics2D.resize()
-L http://dev.processing.org/bugs/show_bug.cgi?id=1107
+L https://download.processing.org/bugzilla/1107.html
X http://code.google.com/p/processing/issues/detail?id=150
X resize is not available with renderers, use createGraphics()
X added a note to the reference
@@ -4149,11 +4149,11 @@ X http://code.google.com/p/processing/issues/detail?id=467
stop/destroy/dispose
L stop() not working very well
L as a result, dispose() methods aren't being called on libraries
-L http://dev.processing.org/bugs/show_bug.cgi?id=131
-L http://dev.processing.org/bugs/show_bug.cgi?id=77 (dupe)
-L http://dev.processing.org/bugs/show_bug.cgi?id=183 (dupe)
+L https://download.processing.org/bugzilla/131.html
+L https://download.processing.org/bugzilla/77.html (dupe)
+L https://download.processing.org/bugzilla/183.html (dupe)
L double stop() called with noLoop()
-L http://dev.processing.org/bugs/show_bug.cgi?id=1270
+L https://download.processing.org/bugzilla/1270.html
L http://code.google.com/p/processing/issues/detail?id=180
@@ -4188,12 +4188,12 @@ X changing getIntAttribute() et al to getInt()
X need to make the reference change for the next release
X add listChildren() method
X XML attributes named "xmlns" always return NULL
-X http://dev.processing.org/bugs/show_bug.cgi?id=1196
+X https://download.processing.org/bugzilla/1196.html
X http://code.google.com/p/processing/issues/detail?id=166
X when re-saving and ods file, not including all the name spaces at the top
X several fixes to how namespaces are handled (or not handled)
X save xml elements back out again
-X http://dev.processing.org/bugs/show_bug.cgi?id=963
+X https://download.processing.org/bugzilla/963.html
X http://code.google.com/p/processing/issues/detail?id=126
X or make the call that it's read-only, and remove the saving code
X adding write() method?
@@ -4221,7 +4221,7 @@ X more Linux PDF fixes from Matthias Breuer
fixed in 0185
X PDF library matrix is not reset between frames
-X http://dev.processing.org/bugs/show_bug.cgi?id=1227
+X https://download.processing.org/bugzilla/1227.html
0185 core (pre)
@@ -4229,10 +4229,10 @@ X fix two bugs with fonts created with specific charsets
X fix from jdf for PImage(java.awt.Image img) and ARGB images
X public PImage(java.awt.Image) sets format to RGB (but could be ARGB)
X large number of beginShape(POINTS) not rendering correctly on first frame
-X http://dev.processing.org/bugs/show_bug.cgi?id=1572
+X https://download.processing.org/bugzilla/1572.html
X pass actual exceptions from InvocationTargetException in registered methods
o svg issue with implicit path command
-o http://dev.processing.org/bugs/show_bug.cgi?id=1561
+o https://download.processing.org/bugzilla/1561.html
o http://code.google.com/p/processing/issues/detail?id=257
X appears to be faulty code
X remove call to requestFocus() that broke the ColorSelector (and Editor)
@@ -4259,7 +4259,7 @@ X implement support for svgz files
0184 core (pre)
X copy and blend scale when unnecessary
-X http://dev.processing.org/bugs/show_bug.cgi?id=1482
+X https://download.processing.org/bugzilla/1482.html
X add Pattern caching to match() to speed things up
X make saveStream() return a boolean to indicate success
@@ -4274,9 +4274,9 @@ X fix other problems with font use in PDF
X remove debug message from PDF
X add skewX/skewY
o do them as shearX/Y?
-X http://dev.processing.org/bugs/show_bug.cgi?id=1448
+X https://download.processing.org/bugzilla/1448.html
X PImage.copy() not including the bottom and rightmost pixels of srcImage
-X http://dev.processing.org/bugs/show_bug.cgi?id=1174
+X https://download.processing.org/bugzilla/1174.html
0181 core (pre-release)
@@ -4285,15 +4285,15 @@ X no changes for 0181
0180 core (pre-release)
X add implicit path commands to svg loader, thanks to Ben S
-X http://dev.processing.org/bugs/show_bug.cgi?id=1503
+X https://download.processing.org/bugzilla/1503.html
X don't allow sketch windows to open with the title bar off screen
-X http://dev.processing.org/bugs/show_bug.cgi?id=1508
+X https://download.processing.org/bugzilla/1508.html
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 https://download.processing.org/bugzilla/1343.html
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
@@ -4311,7 +4311,7 @@ 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
+o https://download.processing.org/bugzilla/1252.html
earlier
X if no draw() method, and renderer is not displayable, then exit
@@ -4321,7 +4321,7 @@ 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
-X http://dev.processing.org/bugs/show_bug.cgi?id=1477
+X https://download.processing.org/bugzilla/1477.html
X deprecated 'screen', adding screenW and screenH
X write implementation for get/set methods inside PImage (w/o pixels[])
@@ -4333,19 +4333,19 @@ X no changes
0176 core (private)
X opengl sketches run at 30fps in present mode on OS X
o still having problems w/ full screen non-FSEM
-X http://dev.processing.org/bugs/show_bug.cgi?id=1425
+X https://download.processing.org/bugzilla/1425.html
X PFont not working well with lots of characters
X only create bitmap chars on the fly when needed (in createFont)
X Implement better caching mechanism when creating large fonts
-X http://dev.processing.org/bugs/show_bug.cgi?id=1111
+X https://download.processing.org/bugzilla/1111.html
X fix problem with "create font" still showing anti-aliased text
X don't make fonts power of 2
X PGraphics3D: beginDraw does not release old textures
-X http://dev.processing.org/bugs/show_bug.cgi?id=1423
+X https://download.processing.org/bugzilla/1423.html
X fix from taifun_browser
X removing camera() and perspective() from setSize() trashes resize
X probably regression b/c camera/perspective can't be called then
-X http://dev.processing.org/bugs/show_bug.cgi?id=1391
+X https://download.processing.org/bugzilla/1391.html
0175 core (private)
@@ -4354,13 +4354,13 @@ X changed createInputRaw() to only bother checking URLs if : present
0174 core (private)
X svg paths that use 'e' (exponent) not handled properly
-X http://dev.processing.org/bugs/show_bug.cgi?id=1408
+X https://download.processing.org/bugzilla/1408.html
0173 core (private)
X Re-enabled hack for temporary clipping.
X Clipping still needs to be implemented properly, however. Please help!
-X http://dev.processing.org/bugs/show_bug.cgi?id=1393
+X https://download.processing.org/bugzilla/1393.html
0172 core (private)
@@ -4370,14 +4370,14 @@ X no changes to the core (or were there?)
0171 core (1.0.9)
X Blurred PImages in OPENGL sketches
X removed NPOT texture support (for further testing)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1352
+X https://download.processing.org/bugzilla/1352.html
0170 core (1.0.8)
X added some min/max functions that work with doubles
X not sure if those are staying in or not
X filter(RGB) supposed to be filter(OPAQUE)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1346
+X https://download.processing.org/bugzilla/1346.html
X implement non-power-of-2 textures
X fix get() when used with save() in OpenGL mode
X immediately update projection with OpenGL
@@ -4385,7 +4385,7 @@ X in the past, projection updates required a new frame
X also prevents camera/project from being reset with setSize() (regression?)
X which was a problem anyway because it made GL calls outside draw()
X partial fix for texture edge problems with opengl
-o http://dev.processing.org/bugs/show_bug.cgi?id=602
+o https://download.processing.org/bugzilla/602.html
X some camera problems may be coming from "cameraNear = -8" line
X this may cause other problems with drawing/clipping however
X opengl camera does not update on current frame (has to do a second frame)
@@ -4396,18 +4396,18 @@ X remove methods from PApplet that use doubles
X remove major try/catch block from PApplet.main()
X hopefully will allow some exception stuff to come through properly
X PVector.angleDistance() returns NaN
-X http://dev.processing.org/bugs/show_bug.cgi?id=1316
+X https://download.processing.org/bugzilla/1316.html
0168 core (1.0.6)
X getImage() setting the wrong image type
-X http://dev.processing.org/bugs/show_bug.cgi?id=1282
+X https://download.processing.org/bugzilla/1282.html
X strokeWeight() makes lines 2x too thick with P2D
-X http://dev.processing.org/bugs/show_bug.cgi?id=1283
+X https://download.processing.org/bugzilla/1283.html
X image() doesn't work with P2D, P3D, and OPENGL with noFill()
-X http://dev.processing.org/bugs/show_bug.cgi?id=1299
+X https://download.processing.org/bugzilla/1299.html
o maybe using rgb instead of tint inside drawing loops?
-X http://dev.processing.org/bugs/show_bug.cgi?id=1222
+X https://download.processing.org/bugzilla/1222.html
0167 core (1.0.5)
@@ -4421,32 +4421,32 @@ X also causes problems with PDF
X preliminary thread() implementation
X double param version of map()
X PImage cacheMap problem when using PImage.get()
-X http://dev.processing.org/bugs/show_bug.cgi?id=1245
+X https://download.processing.org/bugzilla/1245.html
X problems with > 512 points and P3D/OPENGL (thx DopeShow)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1255
+X https://download.processing.org/bugzilla/1255.html
X imageMode(CENTER) doesn't work properly with P2D
-X http://dev.processing.org/bugs/show_bug.cgi?id=1232
+X https://download.processing.org/bugzilla/1232.html
X reset matrices when using beginRecord() with PDF
-X http://dev.processing.org/bugs/show_bug.cgi?id=1227
+X https://download.processing.org/bugzilla/1227.html
X resizing window distorts gl graphics
X patch from Pablo Funes
-X http://dev.processing.org/bugs/show_bug.cgi?id=1176
+X https://download.processing.org/bugzilla/1176.html
X significant point() and set() slowdown on OS X
-X http://dev.processing.org/bugs/show_bug.cgi?id=1094
+X https://download.processing.org/bugzilla/1094.html
0165 core (1.0.3)
X update to itext 2.1.4
X endRecord or endRaw produces RuntimeException with PDF library
-X http://dev.processing.org/bugs/show_bug.cgi?id=1169
+X https://download.processing.org/bugzilla/1169.html
X problem with beginRaw/endRaw and OpenGL
-X http://dev.processing.org/bugs/show_bug.cgi?id=1171
+X https://download.processing.org/bugzilla/1171.html
X set strokeWeight with begin/endRaw
-X http://dev.processing.org/bugs/show_bug.cgi?id=1172
+X https://download.processing.org/bugzilla/1172.html
X fix strokeWeight with P3D (better version of line hack)
X make P3D use proper weights
X ArrayIndexOutOfBoundsException with point()
-X http://dev.processing.org/bugs/show_bug.cgi?id=1168
+X https://download.processing.org/bugzilla/1168.html
0164 core (1.0.2)
@@ -4457,55 +4457,55 @@ o add documentation
o add this for text in a rectangle?
X minor bug fix to svg files that weren't being resized properly
X OpenGL is rendering darker in 0149+
-X http://dev.processing.org/bugs/show_bug.cgi?id=958
+X https://download.processing.org/bugzilla/958.html
X the fix has been found, just incorporate it
X thanks to dave bollinger
X OutOfMemoryError with ellipse() in P3D and OPENGL
-X http://dev.processing.org/bugs/show_bug.cgi?id=1086
+X https://download.processing.org/bugzilla/1086.html
X should also fix problem with AIOOBE
-X http://dev.processing.org/bugs/show_bug.cgi?id=1117
+X https://download.processing.org/bugzilla/1117.html
X point(x,y) ignores noStroke() (in some renderers)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1090
+X https://download.processing.org/bugzilla/1090.html
X fix startup problem when scheme coloring was odd
-X http://dev.processing.org/bugs/show_bug.cgi?id=1109
+X https://download.processing.org/bugzilla/1109.html
X fix several point() problems with P3D
-X http://dev.processing.org/bugs/show_bug.cgi?id=1110
+X https://download.processing.org/bugzilla/1110.html
X nextPage() not working properly with PDF as the renderer
-X http://dev.processing.org/bugs/show_bug.cgi?id=1131
+X https://download.processing.org/bugzilla/1131.html
X save styles when nextPage() is called
X beginRaw() broken (no DXF, etc working)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1099
-X http://dev.processing.org/bugs/show_bug.cgi?id=1144
+X https://download.processing.org/bugzilla/1099.html
+X https://download.processing.org/bugzilla/1144.html
X Fix algorithm for quadratic to cubic curve conversion
X wrong algorithm in PGraphicsOpenGL and PShapeSVG
X (thanks to user 'shambles')
-X http://dev.processing.org/bugs/show_bug.cgi?id=1122
+X https://download.processing.org/bugzilla/1122.html
X tint() not working in P2D
-X http://dev.processing.org/bugs/show_bug.cgi?id=1132
+X https://download.processing.org/bugzilla/1132.html
X blend() y coordinates inverted when using OpenGL
-X http://dev.processing.org/bugs/show_bug.cgi?id=1137
+X https://download.processing.org/bugzilla/1137.html
invalid/wontfix/dupe
X Processing will not start with non-standard disk partitioning on OS X
-X http://dev.processing.org/bugs/show_bug.cgi?id=1127
+X https://download.processing.org/bugzilla/1127.html
X Got NoClassDefFoundError exception when accessing quicktime API
-X http://dev.processing.org/bugs/show_bug.cgi?id=1128
-X http://dev.processing.org/bugs/show_bug.cgi?id=1129
-X http://dev.processing.org/bugs/show_bug.cgi?id=1130
+X https://download.processing.org/bugzilla/1128.html
+X https://download.processing.org/bugzilla/1129.html
+X https://download.processing.org/bugzilla/1130.html
X not using present mode correctly
-X http://dev.processing.org/bugs/show_bug.cgi?id=1138
+X https://download.processing.org/bugzilla/1138.html
X apparent graphics driver conflict on vista
-X http://dev.processing.org/bugs/show_bug.cgi?id=1140
+X https://download.processing.org/bugzilla/1140.html
X PImage.save() does not create parent directories
-X http://dev.processing.org/bugs/show_bug.cgi?id=1124
+X https://download.processing.org/bugzilla/1124.html
X sketch turning blue and not working on osx
-X http://dev.processing.org/bugs/show_bug.cgi?id=1164
+X https://download.processing.org/bugzilla/1164.html
X dupe: blend() inaccurary
-X http://dev.processing.org/bugs/show_bug.cgi?id=1008
+X https://download.processing.org/bugzilla/1008.html
X glPushAttrib style function
-X http://dev.processing.org/bugs/show_bug.cgi?id=1150
+X https://download.processing.org/bugzilla/1150.html
X calling saveFrame() in noLoop() (update reference)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1155
+X https://download.processing.org/bugzilla/1155.html
xml
X fix for xml elements that have null names
@@ -4515,9 +4515,9 @@ X added optional toString(boolean) parameter to enable/disable indents
0163 core (1.0.1)
X do not parse split() with regexp
-X http://dev.processing.org/bugs/show_bug.cgi?id=1060
+X https://download.processing.org/bugzilla/1060.html
X ArrayIndexOutOfBoundsException in ellipseImpl() with 1.0
-X http://dev.processing.org/bugs/show_bug.cgi?id=1068
+X https://download.processing.org/bugzilla/1068.html
0162 core (1.0)
@@ -4527,12 +4527,12 @@ X no additional changes for 1.0
0161 core
X present on macosx causing strange flicker/jump while window opens
X using validate() for present mode, pack() otherwise
-X http://dev.processing.org/bugs/show_bug.cgi?id=1051
+X https://download.processing.org/bugzilla/1051.html
0160 core
X stroked lines drawing on top of everything else in P3D
-X http://dev.processing.org/bugs/show_bug.cgi?id=1032
+X https://download.processing.org/bugzilla/1032.html
X 100x100 sketches not working
@@ -4546,7 +4546,7 @@ X do we need to do glEnable for multisample with gl?
o just need to test this on a few platforms
X doesn't seem to be the case
X Present mode and OPENGL not working in 0156 with Windows Vista
-X http://dev.processing.org/bugs/show_bug.cgi?id=1009
+X https://download.processing.org/bugzilla/1009.html
X Seems to be limited to Java 6u10 (but verify)
o -Dsun.java2d.d3d=false seems to fix the problem
o can probably add that to PApplet.main()
@@ -4556,18 +4556,18 @@ X does not work
0158 core
X beginShape(TRIANGLE_FAN), and therefore arc(), broken in P2D
X also a typo in the ColorWheel example
-X http://dev.processing.org/bugs/show_bug.cgi?id=1019
+X https://download.processing.org/bugzilla/1019.html
X P2D - null pointer exception drawing line with alpha stroke
-X http://dev.processing.org/bugs/show_bug.cgi?id=1023
+X https://download.processing.org/bugzilla/1023.html
X P2D endShape() is working like endShape(CLOSE)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1021
-X http://dev.processing.org/bugs/show_bug.cgi?id=1028 (mark as dupe)
+X https://download.processing.org/bugzilla/1021.html
+X https://download.processing.org/bugzilla/1028.html (mark as dupe)
X arc() center transparent
-X http://dev.processing.org/bugs/show_bug.cgi?id=1027
+X https://download.processing.org/bugzilla/1027.html
X mark as dupe of bug #200
X but fixed for the P2D case, still afflicts P2D
X P2D - alpha stroke rendered at full opacity
-X http://dev.processing.org/bugs/show_bug.cgi?id=1024
+X https://download.processing.org/bugzilla/1024.html
X smooth() on single line ellipses not coming out smooth
X sort of works, just not great
X improve (slightly) the quality of ellipse() and arc() with P2D
@@ -4576,7 +4576,7 @@ X split out ellipseImpl and arcImpl from PGraphics into P2D and P3D
X figure out better model for adaptive sizing of circles
X also goes for arcs, though will be weighted based on arc size
X Bring back CENTER_RADIUS but deprecate it
-X http://dev.processing.org/bugs/show_bug.cgi?id=1035
+X https://download.processing.org/bugzilla/1035.html
X enable smoothing by default in opengl
X change hints to instead only be able to DISABLE 2X or 4X
X bring back .width and .height fields for PShape
@@ -4589,36 +4589,36 @@ X rev the version number
0157 core
X SVG polygon shapes not drawing since loadShape() and PShape changes
-X http://dev.processing.org/bugs/show_bug.cgi?id=1005
+X https://download.processing.org/bugzilla/1005.html
X image(a, x, y) not honoring imageMode(CENTER)
X need to just pass image(a, x, y) to image(a, x, y, a.width, a.height)
X rather than passing it directly to imageImpl()
-X http://dev.processing.org/bugs/show_bug.cgi?id=1013
+X https://download.processing.org/bugzilla/1013.html
o disable P2D before releasing (unless implementation is finished)
0156 core
X clarify the "no variables in size() command" rule
-X http://dev.processing.org/bugs/show_bug.cgi?id=992
+X https://download.processing.org/bugzilla/992.html
X present mode broken in general?
X placement of elements in present mode is messed up
X "stop" button hops around, window not centered on screen
-X http://dev.processing.org/bugs/show_bug.cgi?id=923
+X https://download.processing.org/bugzilla/923.html
X disable P2D for size() and createGraphics() before releasing
X already was disabled, just a bug in detecting it
0155 core
X hint(DISABLE_DEPTH_TEST) throws null pointer exception with OpenGL
-X http://dev.processing.org/bugs/show_bug.cgi?id=984
+X https://download.processing.org/bugzilla/984.html
0154 core
X only set apple.awt.graphics.UseQuartz on osx, otherwise security error
-X http://dev.processing.org/bugs/show_bug.cgi?id=976
+X https://download.processing.org/bugzilla/976.html
X add skewX() and skewY() to PMatrix
X Add support style attribute for path tag to Candy SVG (ricard)
-X http://dev.processing.org/bugs/show_bug.cgi?id=771
+X https://download.processing.org/bugzilla/771.html
X remove setX/Y/Z from PVector, copy() (use get() instead), add mult/div
X remove copy() from PVector?
X add mult() and div() with vector inputs?
@@ -4634,22 +4634,22 @@ X no changes to 0152 core
0151 core
X NullPointerException on curveVertex() when using more than 128 vertices
-X http://dev.processing.org/bugs/show_bug.cgi?id=952
+X https://download.processing.org/bugzilla/952.html
X Text not bounding correctly with x, y, w, h
-X http://dev.processing.org/bugs/show_bug.cgi?id=954
+X https://download.processing.org/bugzilla/954.html
o dataFolder() might be flawed b/c it's referring to contents of jar file
o for input, better to use openStream
X clear up the javadoc on this
X odd-size height will make blue line across image in saveFrame()
-X http://dev.processing.org/bugs/show_bug.cgi?id=944
+X https://download.processing.org/bugzilla/944.html
X probably the pixel flipping code (and endian sorting) not happening
X because the blue comes from the byte order flip
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=post;num=1219196429
X ArrayIndexOutOfBoundsException in PLine
-X http://dev.processing.org/bugs/show_bug.cgi?id=246
-X http://dev.processing.org/bugs/show_bug.cgi?id=462
+X https://download.processing.org/bugzilla/246.html
+X https://download.processing.org/bugzilla/462.html
X random AIOOBE with P3D and points
-X http://dev.processing.org/bugs/show_bug.cgi?id=937
+X https://download.processing.org/bugzilla/937.html
cleanup
X alter bezier and curve matrices to use PMatrix
@@ -4678,18 +4678,18 @@ X remove MACOS9 constant from processing.core.*
X because code no longer runs on os9 since dropping 1.1 support
X specular() with alpha has been removed
X GLDrawableFactory.chooseGraphicsConfiguration() error with OpenGL
-X http://dev.processing.org/bugs/show_bug.cgi?id=891
-X http://dev.processing.org/bugs/show_bug.cgi?id=908
+X https://download.processing.org/bugzilla/891.html
+X https://download.processing.org/bugzilla/908.html
X fix problem with unregisterXxxx()
-X http://dev.processing.org/bugs/show_bug.cgi?id=910
+X https://download.processing.org/bugzilla/910.html
X make parseFloat() with String[] array return NaN for missing values
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1220880375
X fix problems with text in a rectangle
-X http://dev.processing.org/bugs/show_bug.cgi?id=893
-X http://dev.processing.org/bugs/show_bug.cgi?id=899
+X https://download.processing.org/bugzilla/893.html
+X https://download.processing.org/bugzilla/899.html
X finish getImage() method inside PImage
X delay() is broken
-X http://dev.processing.org/bugs/show_bug.cgi?id=894
+X https://download.processing.org/bugzilla/894.html
X remove extra ~ files from core.jar
X also fix for other libraries in the make scripts across platforms
X fix problems in PApplet regarding signed code
@@ -4712,11 +4712,11 @@ X also add a note to the hint() reference
X DISABLE_DEPTH_TEST bad results
X have to clear the zbuffer to make it work
X this may be specific to lines
-X http://dev.processing.org/bugs/show_bug.cgi?id=827
+X https://download.processing.org/bugzilla/827.html
X though it also seems to be a problem with opengl
X also make a note of disabling as a way to help font appearance
o Font width calculation fails when using vectorfonts and PDF
-o http://dev.processing.org/bugs/show_bug.cgi?id=920
+o https://download.processing.org/bugzilla/920.html
X um, this is gross: getMatrix((PMatrix2D) null)
X no changing point sizes when using beginShape(POINTS)
X this is an opengl restriction, should we stick with it elsewhere?
@@ -4737,7 +4737,7 @@ o since camera functions don't even look at it or set it
o registerSize() in arcball is causing trouble
o some sort of infinite loop issue
o textMode(SCREEN) is broken for opengl
-o http://dev.processing.org/bugs/show_bug.cgi?id=426
+o https://download.processing.org/bugzilla/426.html
o textSpace(SCREEN) for opengl and java2d
o don't use loadPixels for either
o use font code to set the cached color of the font, then call set()
@@ -4757,7 +4757,7 @@ X need to implement point() as actual gl points
X this means adding points to the pipeline
X point() doesn't work with some graphics card setups
X particularly with opengl and java2d
-X http://dev.processing.org/bugs/show_bug.cgi?id=121
+X https://download.processing.org/bugzilla/121.html
X point() issues
o point() being funneled through beginShape is terribly slow
X go the other way 'round
@@ -4768,7 +4768,7 @@ X fix getFontMetrics() warning
X need to have a getGraphics() to get the actual Graphics object
X where drawing is happening. parent.getGraphics() works except for OpenGL
X Java2D textLinePlacedImpl should check for ENABLE_NATIVE_FONTS hint
-X http://dev.processing.org/bugs/show_bug.cgi?id=633
+X https://download.processing.org/bugzilla/633.html
X also try to check native font on textFont() commands
X in case the hint() has been enabled in the meantime
X or rather, always load native font, even w/o the hint() being set
@@ -4812,7 +4812,7 @@ X bring svg into main lib
X need to straighten out 'table' object for quick object lookup
X maybe add to all parent tables? (no, this gets enormous quickly)
X fix svg caps/joins for opengl with svg library
-X http://dev.processing.org/bugs/show_bug.cgi?id=628
+X https://download.processing.org/bugzilla/628.html
X save/restore more of the p5 graphics drawing state
X not setting colorMode(), strokeCap, etc.
X ignoreStyles is broken - how to handle
@@ -4837,12 +4837,12 @@ X so really, flush is required whenever the depth sort is called
X need to check this--isn't this referring to DISABLE_DEPTH_TEST?
X ENABLE_DEPTH_SORT causing trouble with MovieMaker
X need to make the flush() api accessible
-X http://dev.processing.org/bugs/show_bug.cgi?id=692
+X https://download.processing.org/bugzilla/692.html
X image smoothing
X straighten out default vs. ACCURATE vs. whatever
X Java2D and P3D and OpenGL are all inconsistent
o need to be able to do hint() to do nearest neighbor filtering
-X http://dev.processing.org/bugs/show_bug.cgi?id=685
+X https://download.processing.org/bugzilla/685.html
o imageDetail(), textDetail(), etc?
o decisions on image smoothing vs. text smoothing vs. all
@@ -4853,11 +4853,11 @@ X tweaks to PGraphicsOpenGL to support GLGraphics
0147 core
X processing sketches not restarting after switching pages in safari
-X http://dev.processing.org/bugs/show_bug.cgi?id=581
+X https://download.processing.org/bugzilla/581.html
cleaning
X misshapen fonts on osx (apple fixed their bug)
-X http://dev.processing.org/bugs/show_bug.cgi?id=404
+X https://download.processing.org/bugzilla/404.html
0146 core
@@ -4872,9 +4872,9 @@ X add imageMode(CENTER) implementation
X add a bunch of changes to the reference to support this
X Duplicate 3d faces in beginRaw() export
X this was actually doubling geometry, potentially a bit of a disaster
-X http://dev.processing.org/bugs/show_bug.cgi?id=737
+X https://download.processing.org/bugzilla/737.html
o bezierVertex YZ Plane fill problem
-X http://dev.processing.org/bugs/show_bug.cgi?id=752
+X https://download.processing.org/bugzilla/752.html
X weird coplanar stuff, shouldn't be doing 3D anyway
cleanup
@@ -4882,14 +4882,14 @@ X switch to requestImage() (done in 0145)
o can bug 77 be fixed with a finalizer? (no, it cannot)
X make sure that images with alpha still have alpha in current code
X text in rectangle is drawing outside the box
-X http://dev.processing.org/bugs/show_bug.cgi?id=844
+X https://download.processing.org/bugzilla/844.html
X points missing in part of screen
-X http://dev.processing.org/bugs/show_bug.cgi?id=269
+X https://download.processing.org/bugzilla/269.html
0145 core
X separate x/y axis on sphereDetail() params
-X http://dev.processing.org/bugs/show_bug.cgi?id=856
+X https://download.processing.org/bugzilla/856.html
X make sure docs for PImage use createImage
X add notes about JOGLAppletLauncher
X http://download.java.net/media/jogl/builds/nightly/javadoc_public/com/sun/opengl/util/JOGLAppletLauncher.html
@@ -4899,7 +4899,7 @@ o exit() will actually leave the application
o this may in fact only be internal
X this is just the stop() method, though maybe we need to document it
X text(String, float, float, float, float) draws text outside box
-X http://dev.processing.org/bugs/show_bug.cgi?id=844
+X https://download.processing.org/bugzilla/844.html
X implement textAlign() for y coords in text rect
X need to add reference for this
X textAlign() bottom now takes textDescent() into account
@@ -4907,7 +4907,7 @@ X remove gzip-related hint()
threading
X major threading overhaul before 1.0 (compendium)
-X http://dev.processing.org/bugs/show_bug.cgi?id=511
+X https://download.processing.org/bugzilla/511.html
X ewjordan has added a good trace of the badness
X need to move off anim off the main event thread
X move away from using method like display
@@ -4915,41 +4915,41 @@ X look into opengl stuff for dealing with this
X move addListeners() calls back out of PGraphics
X resize window will nuke font setting
X textFont() used in setup() is null once draw() arrives
-X http://dev.processing.org/bugs/show_bug.cgi?id=726
+X https://download.processing.org/bugzilla/726.html
X colorMode() set inside setup() sometimes not set once draw() arrives
-X http://dev.processing.org/bugs/show_bug.cgi?id=767
+X https://download.processing.org/bugzilla/767.html
X applet sizing issues with external vm
X could this possibly be related to the linux bug?
-X http://dev.processing.org/bugs/show_bug.cgi?id=430
+X https://download.processing.org/bugzilla/430.html
X alloc() stuff not fixed because of thread halting
X problem where alloc happens inside setup(), so, uh..
-X http://dev.processing.org/bugs/show_bug.cgi?id=369
+X https://download.processing.org/bugzilla/369.html
X should instead create new buffer, and swap it in next time through
X sonia (and anything awt) is locking up on load in rev 91
X prolly something w/ the threading issues
X paint is synchronized in 0091
X however this is a necessity, otherwise nasty flickering ensues
X and using a "glock" object seems to completely deadlock
-X http://dev.processing.org/bugs/show_bug.cgi?id=46
+X https://download.processing.org/bugzilla/46.html
o claim that things are much slower in 107 vs 92
o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1141763531
X hopefully this is cleaned up by removing some of the synchronization
X sketches lock up when system time is changed
-X http://dev.processing.org/bugs/show_bug.cgi?id=639
+X https://download.processing.org/bugzilla/639.html
X can draw() not be run on awt event thread?
X look into opengl stuff for dealing with this
o "is there a better way to do this" thread in lists folder
X framerate that's reported is out of joint with actual
-X http://dev.processing.org/bugs/show_bug.cgi?id=512
+X https://download.processing.org/bugzilla/512.html
X accuracy of frame timer is incorrect
X seems to be aliasing effect of low resolution on millis()
X so rates coming out double or half of their actual
X probably need to integrate over a rolling array of 10 frames or so
X frameRate() speeds up temporarily if CPU load drops dramatically
-X http://dev.processing.org/bugs/show_bug.cgi?id=297
+X https://download.processing.org/bugzilla/297.html
o perhaps add a hint(DISABLE_FRAMERATE_DAMPER)
X fix the flicker in java2d mode
-X http://dev.processing.org/bugs/show_bug.cgi?id=122
+X https://download.processing.org/bugzilla/122.html
X framerate(30) is still flickery and jumpy..
X not clear what's happening here
X appears to be much worse (unfinished drawing) on macosx
@@ -4974,7 +4974,7 @@ X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action
0143 core
X some fonts broken in java 1.5 on osx have changed again
-X http://dev.processing.org/bugs/show_bug.cgi?id=407
+X https://download.processing.org/bugzilla/407.html
X filed as bug #4769141 with apple http://bugreport.apple.com/
X appears that asking for the postscript name no longer works
o fix "create font" and associated font stuff to straighten it out
@@ -4999,7 +4999,7 @@ X add resize() method to PImage
0142 core
X update iText in PDF library to 2.1.2u
X loadStrings(".") should not list directory contents
-X http://dev.processing.org/bugs/show_bug.cgi?id=716
+X https://download.processing.org/bugzilla/716.html
0141 core
@@ -5017,7 +5017,7 @@ X no changes to core in 0139
0138 core
X improve tessellation accuracy by using doubles internally
-X http://dev.processing.org/bugs/show_bug.cgi?id=774
+X https://download.processing.org/bugzilla/774.html
0137 core
@@ -5030,49 +5030,49 @@ X deprecate openStream() naming
0136 core
X add static version of saveStream() (uses a File and InputStream object)
X A "noLoop()" sketch may be unresponsive to exit request
-X http://dev.processing.org/bugs/show_bug.cgi?id=694
+X https://download.processing.org/bugzilla/694.html
X Fixed bug with subset() when no length parameter was specified
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1196366408
-X http://dev.processing.org/bugs/show_bug.cgi?id=707
+X https://download.processing.org/bugzilla/707.html
X figure out why tiff images won't open with after effects
-X http://dev.processing.org/bugs/show_bug.cgi?id=153
+X https://download.processing.org/bugzilla/153.html
X open with photoshop, resave, see which tags change
X specifically, which tags that were in the original image file
X perhaps something gets corrected?
X had a fix, but decided not to re-implement the loadTIFF stuff too
X fix for bezierTangent() problem from dave bollinger
-X http://dev.processing.org/bugs/show_bug.cgi?id=710
+X https://download.processing.org/bugzilla/710.html
X implement curveTangent (thanks to davbol)
-X http://dev.processing.org/bugs/show_bug.cgi?id=715
+X https://download.processing.org/bugzilla/715.html
X fix problem with get() when imageMode(CORNERS) was in use
X fix bug with splice() and arrays
-X http://dev.processing.org/bugs/show_bug.cgi?id=734
+X https://download.processing.org/bugzilla/734.html
X 'screen' is now static
X undo this--may need to be better about specifying screen and all
X PImage mask doesn't work after first call
-X http://dev.processing.org/bugs/show_bug.cgi?id=744
+X https://download.processing.org/bugzilla/744.html
X load and save tga results in upside down tga
-X http://dev.processing.org/bugs/show_bug.cgi?id=742
+X https://download.processing.org/bugzilla/742.html
X fix problem with g.smooth always returning false in JAVA2D
-X http://dev.processing.org/bugs/show_bug.cgi?id=762
+X https://download.processing.org/bugzilla/762.html
X add XMLElement (not filename) constructor to SVG lib
-X http://dev.processing.org/bugs/show_bug.cgi?id=773
+X https://download.processing.org/bugzilla/773.html
0135 core
X modelX/Y/Z still having trouble
-X http://dev.processing.org/bugs/show_bug.cgi?id=486
+X https://download.processing.org/bugzilla/486.html
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1186614415
X add docs for model/screen/Y/Z
X added for model, along with example.
X screen was already complete
X bring back opengl mipmaps (create them myself? try w/ newer jogl?)
X opengl mipmaps are leaking (regression in spite of #150 fix)
-X http://dev.processing.org/bugs/show_bug.cgi?id=610
+X https://download.processing.org/bugzilla/610.html
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1193967684
X seems to not actually be a problem on mbp, try desktop?
X copy() was needing updatePixels() when used with OPENGL or JAVA2D
-X http://dev.processing.org/bugs/show_bug.cgi?id=681
+X https://download.processing.org/bugzilla/681.html
X check on the bug report for this one as well
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1173394373
@@ -5097,17 +5097,17 @@ X fix mini p5 bugs for eugene
0134 core
X add noLights() method
-X http://dev.processing.org/bugs/show_bug.cgi?id=666
+X https://download.processing.org/bugzilla/666.html
X redraw the screen after resize events (even with noLoop)
-X http://dev.processing.org/bugs/show_bug.cgi?id=664
+X https://download.processing.org/bugzilla/664.html
o problem with transparency in mask()
-o http://dev.processing.org/bugs/show_bug.cgi?id=674
+o https://download.processing.org/bugzilla/674.html
X mark bug as invalid, using fill() instead of tint()
X move to UTF-8 as native format for core file i/o operations
X update reference to document the change
o jogl glibc 2.4 problem on linux
o move back to previous jogl until 1.1.1 is released
-X http://dev.processing.org/bugs/show_bug.cgi?id=675
+X https://download.processing.org/bugzilla/675.html
o deal with opengl applet export changes
o what is deployment suggestion for all the different platforms?
o can the jar files actually provide the DLLs properly?
@@ -5118,7 +5118,7 @@ X revert back to jogl 1.0
X fix problem with "export to application" and opengl
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1193142573
X add focus requests so that better chance of keys etc working
-X http://dev.processing.org/bugs/show_bug.cgi?id=645
+X https://download.processing.org/bugzilla/645.html
X argh, these make things worse (P3D run internal)
X add stuff about classversionerrors to the reference
X also update the libraries page
@@ -5135,7 +5135,7 @@ o this causes everything to be reset once the draw occurs
o kinda seems problematic and prone to errors?
X nope, just need to say to do all commands inside begin/endDraw
o finish implementation so 1.1 support can return
-X http://dev.processing.org/bugs/show_bug.cgi?id=125
+X https://download.processing.org/bugzilla/125.html
o check into ricard's problems with beginRecord()
X i believe these were caused by linux java2d issues
X beginFrame()/beginDraw() and defaults()
@@ -5203,10 +5203,10 @@ o if loadImage() with spaces when online(), throw an error
o get tiff exporter for p5 to support argb and gray
X would also need to modify the tiff loading code,
X because the header would be different
-X http://dev.processing.org/bugs/show_bug.cgi?id=343
+X https://download.processing.org/bugzilla/343.html
X map() is not colored, neither is norm
X image outofmemoryerror for casey's students
-X http://dev.processing.org/bugs/show_bug.cgi?id=355
+X https://download.processing.org/bugzilla/355.html
X this may be related to a ton of other memory bugs
X 1.5.0_07 and 1.4.2_12 contain the -XX:+HeapDumpOnOutOfMemoryError switch
X invaluable for tracking down memory leaks
@@ -5214,7 +5214,7 @@ X can't replicate anymore
X texture mapping
X very odd, "doom era" stuff
X would it be possible to have a 'slow but accurate' mode?
-X http://dev.processing.org/bugs/show_bug.cgi?id=103
+X https://download.processing.org/bugzilla/103.html
X fixed in release 0125
X add hint() and unhint()
X also add unhint() to the keywords file
@@ -5227,25 +5227,25 @@ X seems to be fixed in later java versions
X rewrite getImpl/setImpl inside opengl
X placement of 100x100 items is odd
X happens with P3D and maybe also P2D?
-X http://dev.processing.org/bugs/show_bug.cgi?id=128
+X https://download.processing.org/bugzilla/128.html
0132 core
X an image marked RGB but with 0s for the alpha won't draw in JAVA2D
X images with 0x00 in their high bits being drawn transparent
X also if transparency set but RGB is setting, still honors transparency
-X http://dev.processing.org/bugs/show_bug.cgi?id=351
+X https://download.processing.org/bugzilla/351.html
X improve memory requirements for drawing images with JAVA2D
X now using significantly less memory
tint/textures
X tint() and noTint() switching problem in P2D
X this should be a quick fix
-X http://dev.processing.org/bugs/show_bug.cgi?id=222
+X https://download.processing.org/bugzilla/222.html
X related to the fill bugs: when fill is identical, no fill applied
X actually tint() should take over for fill as per-vertex color
X when textured images are being used
-X http://dev.processing.org/bugs/show_bug.cgi?id=169
+X https://download.processing.org/bugzilla/169.html
X tint() should set texture color, fill() is ignored with textures
X add to the reference
X fix tint() for PGraphics3 (what could be wrong?)
@@ -5253,12 +5253,12 @@ X tint() honoring alpha but not colored tint
X maybe not setting fill color when drawing textures
X guessing it's an implementation issue in sami's renderer
X check with the a_Displaying example and tint(255, 0, 0, 100);
-X http://dev.processing.org/bugs/show_bug.cgi?id=90
+X https://download.processing.org/bugzilla/90.html
0131 core
X hint(DISABLE_DEPTH_TEST) not behaving consistently
-X http://dev.processing.org/bugs/show_bug.cgi?id=483
+X https://download.processing.org/bugzilla/483.html
o make hints static - cannot do that
X clean up hinting mechanism a bit
X look into jogl anti-aliasing on osx
@@ -5271,7 +5271,7 @@ X update to JOGL 1.1.0
X add gluegen-rt back to the applet export
X http://download.java.net/media/jogl/builds/nightly/javadoc_public/com/sun/opengl/util/JOGLAppletLauncher.html
X add print() and println() for long and double
-X http://dev.processing.org/bugs/show_bug.cgi?id=652
+X https://download.processing.org/bugzilla/652.html
X fix minor bug in saveStream() (undocumented)
X "this file is named" errors don't like subdirectories
X need to strip off past the file separator or something
@@ -5281,16 +5281,16 @@ X need to strip off past the file separator or something
X fixed problem with size() and the default renderer
X the renderer was being reset after setup(),
X so anything that occurred inside setup() was completely ignored.
-X http://dev.processing.org/bugs/show_bug.cgi?id=646
-X http://dev.processing.org/bugs/show_bug.cgi?id=648
-X http://dev.processing.org/bugs/show_bug.cgi?id=649
+X https://download.processing.org/bugzilla/646.html
+X https://download.processing.org/bugzilla/648.html
+X https://download.processing.org/bugzilla/649.html
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1192873557
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1192731014
0129 core
X width and height not always set properly
-X http://dev.processing.org/bugs/show_bug.cgi?id=642
+X https://download.processing.org/bugzilla/642.html
X bring back background() with alpha
@@ -5311,14 +5311,14 @@ o should loadFont() work with ttf files (instead of createFont?)
X otherwise loadFont() would work with font names as well, awkward
X better to use createFont() for both
o jogl issues with some cards on linux, might be fixed with newer jogl
-X http://dev.processing.org/bugs/show_bug.cgi?id=367
+X https://download.processing.org/bugzilla/367.html
X remove methods for background() to include an alpha value
X this is undefined territory because of zbuffer and all
X if you want that effect, use a rect()
X saveFrame() produces a black background because bg not set correctly:
-X http://dev.processing.org/bugs/show_bug.cgi?id=421
+X https://download.processing.org/bugzilla/421.html
X background not being set properly
-X http://dev.processing.org/bugs/show_bug.cgi?id=454
+X https://download.processing.org/bugzilla/454.html
X having shut off the defaults reset, background not getting called for java2d
X so this will make that other stuff regress again
X in particular, when the applet is resized, but renderer not changed
@@ -5326,14 +5326,14 @@ X why aren't background() / defaults() being called for opengl?
o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Contribution_3DOpenGL;action=display;num=1118784331
o simon reports borders on P3D and OPENGL if background() not called
X window fixed at 100x100 pixels
-X http://dev.processing.org/bugs/show_bug.cgi?id=197
+X https://download.processing.org/bugzilla/197.html
X width/height on problem machine prints out as:
X 100x100 issues are exhibited on bh140c PCs, test and fix!
X 100,200 and 128,200
o AIOOBE on PLine 757.. halts renderer
o fix erik's problems with export (also in bugs db)
X draw() called twice in vista with java 1.6
-X http://dev.processing.org/bugs/show_bug.cgi?id=587
+X https://download.processing.org/bugzilla/587.html
cleanup from previous releases
X P3D not doing bilinear interpolation in text and images
@@ -5343,7 +5343,7 @@ X probably just allow smooth() but don't smooth anything
o pdf export ignoring transparency on linux
o check to see if this is the case on other linux machines
o seems to be working fine on windows
-o http://dev.processing.org/bugs/show_bug.cgi?id=345
+o https://download.processing.org/bugzilla/345.html
X change how java version is determined on mac
X http://developer.apple.com/technotes/tn2002/tn2110.html
X (this tn provides no guidance for macos8/9.. gah)
@@ -5358,11 +5358,11 @@ X set upper bound on framerate so as not to completely hose things?
fixed in 0127
X ARGB problems with createGraphics
o P3D from createGraphics needs to be marked RGB not ARGB
-X http://dev.processing.org/bugs/show_bug.cgi?id=160
-X http://dev.processing.org/bugs/show_bug.cgi?id=428
-X http://dev.processing.org/bugs/show_bug.cgi?id=482
-X http://dev.processing.org/bugs/show_bug.cgi?id=530
-X http://dev.processing.org/bugs/show_bug.cgi?id=527
+X https://download.processing.org/bugzilla/160.html
+X https://download.processing.org/bugzilla/428.html
+X https://download.processing.org/bugzilla/482.html
+X https://download.processing.org/bugzilla/530.html
+X https://download.processing.org/bugzilla/527.html
reasons to drop 1.1 support (and support 1.3+)
X remove reflection from createFont() constructor/methods in PFont
@@ -5385,9 +5385,9 @@ X get(), set(), copy(), blend(), loadPixels, updatePixels()
X set(x, y, image) y reversed in openGL
X background(image) also broken
X also textMode(SCREEN)
-X http://dev.processing.org/bugs/show_bug.cgi?id=91
+X https://download.processing.org/bugzilla/91.html
o replaceAll() not supported by 1.1
-o http://dev.processing.org/bugs/show_bug.cgi?id=561
+o https://download.processing.org/bugzilla/561.html
o make version of loadBytes that checks length of the stream first
o this might not be worth it
o the number of cases where this works is small (half of url streams)
@@ -5397,10 +5397,10 @@ o (i.e. will it be the uncompressed or compressed size of the data?)
createGraphics() issues
X offscreen buffers fail with texture mapping
X pixels not being set opaque (only with textures?)
-X http://dev.processing.org/bugs/show_bug.cgi?id=594
+X https://download.processing.org/bugzilla/594.html
X add note to createGraphics() docs that opacity at edges is binary
X PGraphics problem with fillColor
-X http://dev.processing.org/bugs/show_bug.cgi?id=468
+X https://download.processing.org/bugzilla/468.html
fixed earlier
X add to open() reference problems with mac
@@ -5412,16 +5412,16 @@ X they can call Runtime.getRuntime().exec() if they want more control
fixed earlier (in 0125) by ewjordan
X accuracy in P3D is very low
-X http://dev.processing.org/bugs/show_bug.cgi?id=95
+X https://download.processing.org/bugzilla/95.html
X textured polys throwing a lot of exceptions (ouch)
-X http://dev.processing.org/bugs/show_bug.cgi?id=546
+X https://download.processing.org/bugzilla/546.html
X polygons in z axis with nonzero x or y not filling properly
-X http://dev.processing.org/bugs/show_bug.cgi?id=547
+X https://download.processing.org/bugzilla/547.html
0126 core
o rect() after strokeWeight(1) gives wrong coords
-X http://dev.processing.org/bugs/show_bug.cgi?id=535
+X https://download.processing.org/bugzilla/535.html
X bug in osx java 1.4 vs 1.5
X fix bug in str() methods that take arrays
X method was not working properly, was using the object reference
@@ -5430,7 +5430,7 @@ X implement auto-gzip and gunzip
X fix bug where sort() on 0 length array would return null
X instead, returns an array
X unregisterXxxx() calls to remove methods from libs
-X http://dev.processing.org/bugs/show_bug.cgi?id=312
+X https://download.processing.org/bugzilla/312.html
X implemented by ewjordan
X sort() on strings ignores case
X mention the change in the reference
@@ -5446,13 +5446,13 @@ o add auto-gunzip to loadStrings()
X others for auto-gunzip?
X do the same for createWriter() et al
X disable mipmaps in 0126
-X http://dev.processing.org/bugs/show_bug.cgi?id=610
+X https://download.processing.org/bugzilla/610.html
X add match() method that returns an array of matched items
0125 core
X more blend() modes (the five listed on the thread below?)
-X http://dev.processing.org/bugs/show_bug.cgi?id=132
+X https://download.processing.org/bugzilla/132.html
X figure out what the modes should actually be:
X photoshop: normal, dissolve; darken, multiply, color burn,
X linear burn; lighten, screen, color dodge, linear
@@ -5475,7 +5475,7 @@ X OVERLAY: C = B < 128 ? (2*A*B/255) : 255-2*(255-A)*(255-B)/255
X HARD_LIGHT: C = A < 128 ? (2*A*B/255) : 255-2*(255-A)*(255-B)/255
X SOFT_LIGHT: C = B < 128 ? 2*((A>>1)+64)*B/255 : 255-(2*(255-((A>>1)+64))*(255-B)/255)
X jre 1.5.0_10 is still default at java.com.. blech
-X http://dev.processing.org/bugs/show_bug.cgi?id=513
+X https://download.processing.org/bugzilla/513.html
X constant CENTER_RADIUS will be changed to just RADIUS
X CENTER_RADIUS is being deprecated, not removed
X remove CENTER_RADIUS from any p5 code (i.e. examples)
@@ -5514,29 +5514,29 @@ X given to andy
0125p3
X PImage.save() method is not working with get()
-X http://dev.processing.org/bugs/show_bug.cgi?id=558
+X https://download.processing.org/bugzilla/558.html
X NullPointerException in Create Font with "All Characters" enabled
-X http://dev.processing.org/bugs/show_bug.cgi?id=564
+X https://download.processing.org/bugzilla/564.html
X added min() and max() for float and int arrays
X need to update reference
X moved around min/max functions
X opengl image memory leaking
X when creating a new PImage on every frame, slurps a ton of memory
X workaround is to write the code properly, but suggests something bad
-X http://dev.processing.org/bugs/show_bug.cgi?id=150
+X https://download.processing.org/bugzilla/150.html
X opengl keeping memory around..
X could this be in vertices that have an image associated
X or the image buffer used for textures
X that never gets cleared fully?
X registerSize() was registering as pre() instead
-X http://dev.processing.org/bugs/show_bug.cgi?id=582
+X https://download.processing.org/bugzilla/582.html
X set() doesn't bounds check
X this shouldn't actually be the case
-X http://dev.processing.org/bugs/show_bug.cgi?id=522
+X https://download.processing.org/bugzilla/522.html
X get()/set() in PGraphicsJava2D don't bounds check
X was actually a dumb error in setDataElements()
X set modified to true on endDraw() so that image updates properly
-X http://dev.processing.org/bugs/show_bug.cgi?id=526
+X https://download.processing.org/bugzilla/526.html
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1171574044
0125p4 (in progress)
@@ -5549,29 +5549,29 @@ X probably threading issue, 98 doesn't have any trouble
X signs point to Runner or PApplet changes between 98 and 99
X commenting out applet.setupFrameResizeListener()
X in line 307 from Runner.java solved the problem
-X http://dev.processing.org/bugs/show_bug.cgi?id=282
+X https://download.processing.org/bugzilla/282.html
X size of sketch different in setup() and draw() on linux
X make sure that the sketch isn't being sized based on bad insets
X problem with resizing the component when the frame wasn't resizable
-X http://dev.processing.org/bugs/show_bug.cgi?id=341
+X https://download.processing.org/bugzilla/341.html
X major rework of the open() command
X add gnome-open/kde-open for with PApplet.open()
X add open (-a?) on osx to the open() command
X make changes in the javadoc and reference
X opengl crashes when depth sorting more than two textured shapes
-X http://dev.processing.org/bugs/show_bug.cgi?id=560
+X https://download.processing.org/bugzilla/560.html
ewjordan stuff (changes checked in)
X rect() changes size as it changes position
-X http://dev.processing.org/bugs/show_bug.cgi?id=95
+X https://download.processing.org/bugzilla/95.html
X strange texture warping in P3D
X hint(ENABLE_ACCURATE_TEXTURES)
-X http://dev.processing.org/bugs/show_bug.cgi?id=103
+X https://download.processing.org/bugzilla/103.html
X lines skip on 200x200 surface because of fixed point rounding error
-X http://dev.processing.org/bugs/show_bug.cgi?id=267
+X https://download.processing.org/bugzilla/267.html
X this may be same as 95
X Polygons parallel to z-axis not always filling with nonzero x or y
-X http://dev.processing.org/bugs/show_bug.cgi?id=547
+X https://download.processing.org/bugzilla/547.html
0124 core
@@ -5585,9 +5585,9 @@ X fix weird situation where fonts used in more than one renderer wouldn't show
X opengl doesn't draw a background for the raw recorder
X change P3D to smooth images nicely (bilinear was disabled)
X ambientLight(r,g,b) was still ambientLight(r,g,r)
-X http://dev.processing.org/bugs/show_bug.cgi?id=465
+X https://download.processing.org/bugzilla/465.html
X fix from dave bollinger for the POSTERIZE filter
-X http://dev.processing.org/bugs/show_bug.cgi?id=399
+X https://download.processing.org/bugzilla/399.html
X fix PImage regression in 0124 and the cache crap
X added a version of trim() that handles an entire array
X removed contract(), one can use expand() and subset() instead
@@ -5598,7 +5598,7 @@ X otherwise people have to use strange hacks to get around it
X also chop off ? from url detritus
X also just pass off to default createImage() if no extension available
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1165174666
-X http://dev.processing.org/bugs/show_bug.cgi?id=500
+X https://download.processing.org/bugzilla/500.html
X java 1.5.0_10 breaks jogl
X add error message to p5 about it
X http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6504460
@@ -5611,10 +5611,10 @@ X no disk in drive error
X was this something that changed with the java updates? (1.5_10)
X doesn't seem to be, still not sure
X problem was the floppy drive.. gak
-X http://dev.processing.org/bugs/show_bug.cgi?id=478
+X https://download.processing.org/bugzilla/478.html
X copy() sort of broken in JAVA2D
X example sketch posted with bug report
-X http://dev.processing.org/bugs/show_bug.cgi?id=372
+X https://download.processing.org/bugzilla/372.html
o saveStrings(filename, strings, count)
o otherwise the save is kinda wonky
o or maybe that should just be done with the array fxns
@@ -5622,14 +5622,14 @@ o or maybe that should just be done with the array fxns
fixed earlier
o sketches often freeze when stop is hit on an HT machine
o need to test the examples cited on pardis' machine
-o http://dev.processing.org/bugs/show_bug.cgi?id=232
+o https://download.processing.org/bugzilla/232.html
X debug NumberFormat InterruptedException on dual proc machine
X use notify() instead of interrupt()?
X or Thread.currentThread() should be checked first?
o svg loader is on the list for 1.0
o maybe include as part of PApplet (casey thinks so)
X using gl, lines don't show up in pdf with record (they're ok with p3d)
-X http://dev.processing.org/bugs/show_bug.cgi?id=325
+X https://download.processing.org/bugzilla/325.html
o with network connection
o download a copy of the source for 0069, get the renderer
o svn mv PGraphics2 PGraphicsJava
@@ -5638,7 +5638,7 @@ o version of BApplet that replaces g. with ai. or pdf.
0123 core
X setup() and basic mode apps not working
-X http://dev.processing.org/bugs/show_bug.cgi?id=463
+X https://download.processing.org/bugzilla/463.html
0122 core
@@ -5651,13 +5651,13 @@ o though that's awkward b/c colors always RGB
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1160096087
X regression in P3D that prevents point() from drawing
X problem is with setup_vertex() not adding similar points
-X http://dev.processing.org/bugs/show_bug.cgi?id=444
+X https://download.processing.org/bugzilla/444.html
X if doing openstream on url, says that "the file" is missing or invalid
X add notes about it being a url
fixed earlier, bug cleaning
X gray background in pdf (using both gl and p3d)
-X http://dev.processing.org/bugs/show_bug.cgi?id=324
+X https://download.processing.org/bugzilla/324.html
X verified as fixed in 0122
@@ -5669,7 +5669,7 @@ X how to clear the screen with alpha? background(0, 0, 0, 0)?
o background(EMPTY) -> background(0x01000000) or something?
X size(), beginRecords(), beginRaw(), createGraphics()
X broken for file-based renderers in 0120
-X http://dev.processing.org/bugs/show_bug.cgi?id=434
+X https://download.processing.org/bugzilla/434.html
0120 core
@@ -5677,25 +5677,25 @@ X fixed error when using hint(ENABLE_NATIVE_FONTS) with JAVA2D
X java.lang.IllegalArgumentException:
X null incompatible with Global antialiasing enable key
X fix issue where ambientLight(r, g, b) was instead ambientLight(r, g, r)
-X http://dev.processing.org/bugs/show_bug.cgi?id=412
+X https://download.processing.org/bugzilla/412.html
X createFont() should always use native fonts
X need to warn that fonts may not be installed
X recommend that people include the ttf if that's the thing
X or rather, that this is only recommended for offline use
X fix 3D tessellation problems with curveVertex and bezierVertex
X actually was z = Float.MAX_VALUE regression
-X http://dev.processing.org/bugs/show_bug.cgi?id=390
+X https://download.processing.org/bugzilla/390.html
X two examples in sketchbook
X this has been reported several times
X concave polygons having trouble if points come back to meet
X tesselator/triangulator gets confused when points doubled up
X might need to avoid previous vertex hitting itself
-X http://dev.processing.org/bugs/show_bug.cgi?id=97
+X https://download.processing.org/bugzilla/97.html
X graphics gems 5 has more about tessellation
X polygons perpendicular to axis not drawing
X is this a clipping error?
X probably a triangulation error, because triangles work ok
-X http://dev.processing.org/bugs/show_bug.cgi?id=111
+X https://download.processing.org/bugzilla/111.html
X problem is that the area of the polygon isn't taking into account z
X lookat is now camera(), but not fixed in the docs
X add notes to the faq about the camera changes on the changes page
@@ -5712,7 +5712,7 @@ X passing applet into createGraphics.. problems with re-adding listeners
X since the listeners are added to the PApplet
X i think the listeners aren't re-added, but need to double check
X createGraphics() having problems with JAVA2D, and sometimes with P3D
-X http://dev.processing.org/bugs/show_bug.cgi?id=419
+X https://download.processing.org/bugzilla/419.html
X with default renderer, no default background color?
X only sometimes.. why is this?
X only call defaults() when it's part of a PApplet canvas
@@ -5730,14 +5730,14 @@ o otherwise the end will look like it's time to update
o which may not actually be the case
o i.e. calling filter() inside begin/end block
X get creating new PGraphics/2/3 working again
-X http://dev.processing.org/bugs/show_bug.cgi?id=92
+X https://download.processing.org/bugzilla/92.html
X maybe createGraphics(200, 200) to create same as source
X createGraphics(200, 200, P2D) to create 2D from 3D
X also, drawing a PGraphics2 doesn't seem to work
X new PGraphics2 objects are set as RGB, but on loadPixels/updatePixels
X they're drawn as transparent and don't have their high bits set
X problems between modelX between alpha and beta
-X http://dev.processing.org/bugs/show_bug.cgi?id=386
+X https://download.processing.org/bugzilla/386.html
X y may be flipped in modelX/Y/Z stuff on opengl
X is this the same bug? assuming that it is
@@ -5762,7 +5762,7 @@ X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Contribution_3DOpen
0119 core
X add saveStream() method
X change to handle Java 1.5 f-up where URLs now give FileNotFoundException
-X http://dev.processing.org/bugs/show_bug.cgi?id=403
+X https://download.processing.org/bugzilla/403.html
X add unlerp() method
@@ -5789,16 +5789,16 @@ X see if reflection will allow expand for all class types
X expand, append, contract, subset, splice, concat, reverse
X typed version of array functions:
X append(), shorten(), splice, slice, subset, concat, reverse
-X http://dev.processing.org/bugs/show_bug.cgi?id=115
+X https://download.processing.org/bugzilla/115.html
X fix issue where processing applets would run extremely fast
X after having been starved of resources where there framerate dropped
-X http://dev.processing.org/bugs/show_bug.cgi?id=336
+X https://download.processing.org/bugzilla/336.html
X added color/stroke/tint/fill(#FF8800, 30);
X test imageio with images that have alpha (does it work?)
X nope, doesn't, didn't finish support
-X http://dev.processing.org/bugs/show_bug.cgi?id=350
+X https://download.processing.org/bugzilla/350.html
X openStream() fails with java plug-in because non-null stream returned
-X http://dev.processing.org/bugs/show_bug.cgi?id=359
+X https://download.processing.org/bugzilla/359.html
X update jogl to latest beta 5
X make framerate into frameRate (to match frameCount)
X AIOOBE in P3D during defaults/background/clear
@@ -5808,7 +5808,7 @@ X actually it'll work if it's only on size()
X the sync on the mac hangs an applet running by itself
X even though it seems to be ok for a component
X thread sync problem with allocation
-X http://dev.processing.org/bugs/show_bug.cgi?id=369
+X https://download.processing.org/bugzilla/369.html
X major threading change to use wait()/notifyAll() instead of interrupt/sleep
X noLoop() at end of setup is prolly b/c of interruptedex
X need to not call Thread.interrupt()
@@ -5816,20 +5816,20 @@ X opengl + noLoop() causes InterruptedException
X check to see noLoop() breakage is fixed in 92 vs 91
X checked, not fixed
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115330568
-X http://dev.processing.org/bugs/show_bug.cgi?id=164
+X https://download.processing.org/bugzilla/164.html
X remove image(filename) and textFont(filename) et al.
X revision 115 may be saving raw files as TIFF format
X may be a bug specific to java 1.5 (nope)
-X http://dev.processing.org/bugs/show_bug.cgi?id=378
+X https://download.processing.org/bugzilla/378.html
X saveFrame() not working for casey
X problem with tiff loading in photoshop etc
X check http:// stuff to see if it's a url first on openStream()
X it's the most harmless, since prolly just a MFUEx
X fix problem where root of exported sketch won't be checked
-X http://dev.processing.org/bugs/show_bug.cgi?id=389
+X https://download.processing.org/bugzilla/389.html
X createFont not working from applets (only with .ttf?)
X throws a security exception because of the reflection stuff
-X http://dev.processing.org/bugs/show_bug.cgi?id=101
+X https://download.processing.org/bugzilla/101.html
X urls with ampersands don't work with link()
X Runtime.getRuntime().exec("cmd /c start " + url.replaceAll("&","^&"));
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1149974261
@@ -5844,15 +5844,15 @@ X jpeg loading may be extremely slow (loadBytes?)
X seems specific to 0115 versus the others
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1158111639
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1154714548
-X http://dev.processing.org/bugs/show_bug.cgi?id=392
+X https://download.processing.org/bugzilla/392.html
X loadImage() problems with png and jpg
X actually it's an issue with some types of jpeg files
-X http://dev.processing.org/bugs/show_bug.cgi?id=279
+X https://download.processing.org/bugzilla/279.html
X java.lang.IllegalArgumentException:
X Width (-1) and height (-1) cannot be <= 0
X identical to what happens when the image data is bad
X for instance, trying to load a tiff image with the jpg loader
-X http://dev.processing.org/bugs/show_bug.cgi?id=305
+X https://download.processing.org/bugzilla/305.html
o blend() mode param should be moved to the front
X nah, works better with the other format
X make sure there's parity with the copy() functions
@@ -5861,7 +5861,7 @@ o blend() should prolly have its mode be the first param
X move blend() to blendColor() when applying it to a color
X added lerpColor(), though it needs a new name
X went back to old image i/o (sometimes caused trouble when exported)
-X http://dev.processing.org/bugs/show_bug.cgi?id=376
+X https://download.processing.org/bugzilla/376.html
X change reader() to createReader() for consistency?
X though printwriter is odd for output..
X also createWriter() and the rest
@@ -5889,13 +5889,13 @@ X also clean up some of the casting silliness
more recent
X only update mouse pos on moved and dragged
-X http://dev.processing.org/bugs/show_bug.cgi?id=170
+X https://download.processing.org/bugzilla/170.html
X also updates a bug that caused sketches to jump in funny ways
fixed in 0115 / quicktime 7.1
X color values on camera input flipped on intel macs
X checked in a change for this recommended on qtjava list
-X http://dev.processing.org/bugs/show_bug.cgi?id=313
+X https://download.processing.org/bugzilla/313.html
really old stuff
o get loop, noLoop, redraw, and framerate all working in opengl
@@ -5918,13 +5918,13 @@ X saveTIFF, saveHeaderTIFF, saveTGA no longer public/static in PImage
X this was a mistake to expose the api this way
X more image file i/o in java 1.4
X add dynamic loading of the jpeg, png, and gif(?) encoder classes
-X http://dev.processing.org/bugs/show_bug.cgi?id=165
+X https://download.processing.org/bugzilla/165.html
X http://java.sun.com/products/java-media/jai/index.jsp
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Programs;action=display;num=1120174647
X P5 cannot read files generated by saveFrame()
X need to update docs re: tga
X and add support for reading its own uncompressed TIFs
-X http://dev.processing.org/bugs/show_bug.cgi?id=260
+X https://download.processing.org/bugzilla/260.html
0114 core
@@ -5936,7 +5936,7 @@ X remove "max texture size" debug message
X flicker with depth sort enabled
X implement basic depth sorting for triangles in P3D and OPENGL
X add option to sort triangles back to front so alpha works
-X http://dev.processing.org/bugs/show_bug.cgi?id=176
+X https://download.processing.org/bugzilla/176.html
o at least add it to the faq, or this would be a test case w/ the sorting
@@ -5946,7 +5946,7 @@ X fix for open() on macosx submitted by chandler
0112 core
X saveFrame() issues with JAVA2D on osx
-X http://dev.processing.org/bugs/show_bug.cgi?id=189
+X https://download.processing.org/bugzilla/189.html
o implement hint(NO_DEPTH_TEST) for opengl
X already done hint(DISABLE_DEPTH_TEXT);
X check min/max texture sizes when binding to avoid problems
@@ -5954,7 +5954,7 @@ X minimum texture size may be 64x64
X maximum appears to be 2048, on macs maybe 512
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Contribution_3DOpenGL;action=display;num=1137130317
X fix non-bound textures from mangling everything else
-X http://dev.processing.org/bugs/show_bug.cgi?id=322
+X https://download.processing.org/bugzilla/322.html
X fix enable/disable textures for some objects
X also a big problem for fonts
X calling updatePixels() on each frame fixes the issue (sorta)
@@ -5989,9 +5989,9 @@ o Unsupported control type: Master Gain
o what's actually causing this error?
o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115467831
o PSound.play() won't play the sound a 2nd time (reopened)
-o http://dev.processing.org/bugs/show_bug.cgi?id=208
+o https://download.processing.org/bugzilla/208.html
o loadSound apparently broken in java 1.5?
-o http://dev.processing.org/bugs/show_bug.cgi?id=285
+o https://download.processing.org/bugzilla/285.html
X need to just remove PSound altogether
@@ -6000,11 +6000,11 @@ X need to have a better way of getting/figuring out the endian
X use ByteOrder class in jdk 1.4, since issue is local to JOGL
X security ex when run as an applet
X also can no longer assume that macosx is big endian
-X http://dev.processing.org/bugs/show_bug.cgi?id=309
+X https://download.processing.org/bugzilla/309.html
o making 'run' synchronized caused a freeze on start w/ opengl
X display() as a function name is problematic
X causes nothing to show up.. either rename or mark it final
-X http://dev.processing.org/bugs/show_bug.cgi?id=213
+X https://download.processing.org/bugzilla/213.html
X fix for lights throwing a BufferOverflowException
@@ -6083,7 +6083,7 @@ X add dispose() call to the shutdown part of PApplet
X user.dir wasn't getting set properly
X when graphics can be resized, resize rather than creating new context
X change savePath() et al a great deal, include better docs
-X http://dev.processing.org/bugs/show_bug.cgi?id=199
+X https://download.processing.org/bugzilla/199.html
X straighten out save() and saveFrame()
o use File object for when people know what they're doing?
X same issue occurs with pdf and creating graphics obj
@@ -6110,26 +6110,26 @@ X removed playing() method from PSound
X integrate destroy() method from shiffman as dispose() in PSound2
X ComponentListener is probably what's needed for resize()
X make sure that components can be resized properly via size()
-X http://dev.processing.org/bugs/show_bug.cgi?id=209
+X https://download.processing.org/bugzilla/209.html
X or that it properly responds to a setBounds() call
X calling size() elsewhere in the app doesn't quite work
X A second call to size almost works.
X The buffer apparently gets allocated and saveFrame saves the
X new size but drawing appears to be disabled.
-X http://dev.processing.org/bugs/show_bug.cgi?id=243
+X https://download.processing.org/bugzilla/243.html
0098 core
X change recordShapes() to just record() and recordRaw()
X width, height set to zero in static mode
-X http://dev.processing.org/bugs/show_bug.cgi?id=198
+X https://download.processing.org/bugzilla/198.html
X probably only set when resize() is called, and it's not happening
X be careful when fixing this, bugs 195/197 were a result:
-X http://dev.processing.org/bugs/show_bug.cgi?id=195
-X http://dev.processing.org/bugs/show_bug.cgi?id=197
+X https://download.processing.org/bugzilla/195.html
+X https://download.processing.org/bugzilla/197.html
X PSound.play() won't play the sound a 2nd time
X (have to call stop() first)
-X http://dev.processing.org/bugs/show_bug.cgi?id=208
+X https://download.processing.org/bugzilla/208.html
0097 core
@@ -6144,9 +6144,9 @@ X also need to add to PGraphicsGL
X access logs are being spammed because openStream() gets a 404
X the default should be to check the .jar file
X openStream() doesn't work with subfolders
-X http://dev.processing.org/bugs/show_bug.cgi?id=218
+X https://download.processing.org/bugzilla/218.html
X screwed up movie loading paths (quick fix)
-X http://dev.processing.org/bugs/show_bug.cgi?id=216
+X https://download.processing.org/bugzilla/216.html
X additional cleanup in the Movie class
X make path thing into getPath() or something?
X sketchPath(), dataPath(), savePath(), createPath()
@@ -6162,7 +6162,7 @@ X "not available in P3D" should read "OPENGL" in opengl lib
X keypressed ref: repeating keys
X also remove "no drawing inside keypressed"
X text block wrap problem with manual break character (\n)
-X http://dev.processing.org/bugs/show_bug.cgi?id=188
+X https://download.processing.org/bugzilla/188.html
draw mode issues
X when run externally without a draw, applets will exit immediately
@@ -6171,16 +6171,16 @@ X shouldn't quit draw mode apps immediately
X otherwise something gets drawn then the applet exits
X should instead use exit() when they need to exit
X NullPointerException when no draw()
-X http://dev.processing.org/bugs/show_bug.cgi?id=210
+X https://download.processing.org/bugzilla/210.html
X window closing immediately with library imports
-X http://dev.processing.org/bugs/show_bug.cgi?id=204
+X https://download.processing.org/bugzilla/204.html
X check into loadImage() with jars bug, very frustrating
o when using loadImage() on a jar, turn off "no cache" option?
X image no load halts the program (rather than returning null)
X note in the reference: png images work with java 1.3+
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=WebsiteBugs;action=display;num=1125968697
X add bug re: gif image break missing to revisions.txt
-X http://dev.processing.org/bugs/show_bug.cgi?id=217
+X https://download.processing.org/bugzilla/217.html
image pile
X get loadImage() to work properly with data folder
@@ -6221,7 +6221,7 @@ X undo the fix that causes the width/height to be properly set
0094 core
X fix bug that was causing font sizes not to be set on opengl
-X http://dev.processing.org/bugs/show_bug.cgi?id=174
+X https://download.processing.org/bugzilla/174.html
X apply fix from toxi to make targa files less picky
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1127999630
X "folder" has been renamed to "path" to match savePath().
@@ -6232,7 +6232,7 @@ X (i.e. if needing a File object)
X width, height set to zero in static mode
X probably only set when resize() is called, and it's not happening
X g.smooth is always false in opengl
-X http://dev.processing.org/bugs/show_bug.cgi?id=192
+X https://download.processing.org/bugzilla/192.html
o triangleColors are different because they're per-triangle
o as opposed to per-vertex, because it's based on the facet of the tri
@@ -6258,7 +6258,7 @@ X textMode(SHAPE) throws ex when drawing and font not installed
X fix a bug with filename capitalization error throwing
X add NO_DEPTH_TEST to PGraphics3
X java 1.4 code snuck into PApplet, causing problems on the mac
-X http://dev.processing.org/bugs/show_bug.cgi?id=146
+X https://download.processing.org/bugzilla/146.html
X prevent PGraphics.save() from inserting a file prefix
X so that people can use absolute paths
X or add a version that takes a file object
diff --git a/core/src/processing/awt/PSurfaceAWT.java b/core/src/processing/awt/PSurfaceAWT.java
index 397611953..30200f3b9 100644
--- a/core/src/processing/awt/PSurfaceAWT.java
+++ b/core/src/processing/awt/PSurfaceAWT.java
@@ -325,7 +325,7 @@ public class PSurfaceAWT extends PSurfaceNone {
// Need to save the window bounds at full screen,
// because pack() will cause the bounds to go to zero.
- // http://dev.processing.org/bugs/show_bug.cgi?id=923
+ // https://download.processing.org/bugzilla/923.html
boolean spanDisplays = sketch.sketchDisplay() == PConstants.SPAN;
screenRect = spanDisplays ? getDisplaySpan() :
displayDevice.getDefaultConfiguration().getBounds();
@@ -390,8 +390,8 @@ public class PSurfaceAWT extends PSurfaceNone {
// needed before a GLDrawable can be created. So pack() needs to be
// called on the Frame before applet.init(), which itself calls size(),
// and launches the Thread that will kick off setup().
- // http://dev.processing.org/bugs/show_bug.cgi?id=891
- // http://dev.processing.org/bugs/show_bug.cgi?id=908
+ // https://download.processing.org/bugzilla/891.html
+ // https://download.processing.org/bugzilla/908.html
frame.add(canvas);
setSize(sketchWidth / windowScaleFactor, sketchHeight / windowScaleFactor);
@@ -679,7 +679,7 @@ public class PSurfaceAWT extends PSurfaceNone {
Point frameLoc = frame.getLocation();
if (frameLoc.y < 0) {
// Windows actually allows you to place frames where they can't be
- // closed. Awesome. http://dev.processing.org/bugs/show_bug.cgi?id=1508
+ // closed. Awesome. https://download.processing.org/bugzilla/1508.html
frame.setLocation(frameLoc.x, 30);
}
@@ -820,7 +820,7 @@ public class PSurfaceAWT extends PSurfaceNone {
Point frameLoc = frame.getLocation();
if (frameLoc.y < 0) {
// Windows actually allows you to place frames where they can't be
- // closed. Awesome. http://dev.processing.org/bugs/show_bug.cgi?id=1508
+ // closed. Awesome. https://download.processing.org/bugzilla/1508.html
frame.setLocation(frameLoc.x, 30);
}
// make sure that windowX and windowY are set on startup
@@ -1046,9 +1046,9 @@ public class PSurfaceAWT extends PSurfaceNone {
@Override
public void componentResized(ComponentEvent e) {
// Ignore bad resize events fired during setup to fix
- // http://dev.processing.org/bugs/show_bug.cgi?id=341
+ // https://download.processing.org/bugzilla/341.html
// This should also fix the blank screen on Linux bug
- // http://dev.processing.org/bugs/show_bug.cgi?id=282
+ // https://download.processing.org/bugzilla/282.html
if (frame.isResizable()) {
// might be multiple resize calls before visible (i.e. first
// when pack() is called, then when it's resized for use).
diff --git a/core/src/processing/awt/ShimAWT.java b/core/src/processing/awt/ShimAWT.java
index 309444ed0..a8c64e1a9 100644
--- a/core/src/processing/awt/ShimAWT.java
+++ b/core/src/processing/awt/ShimAWT.java
@@ -380,7 +380,7 @@ public class ShimAWT implements PConstants {
// For jpeg, gif, and png, load them using createImage(),
// because the javax.imageio code was found to be much slower.
- // http://dev.processing.org/bugs/show_bug.cgi?id=392
+ // https://download.processing.org/bugzilla/392.html
try {
if (extension.equals("jpg") || extension.equals("jpeg") ||
extension.equals("gif") || extension.equals("png") ||
diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java
index cf41b0b3e..87f886325 100644
--- a/core/src/processing/core/PApplet.java
+++ b/core/src/processing/core/PApplet.java
@@ -6713,7 +6713,7 @@ public class PApplet implements PConstants {
} catch (FileNotFoundException fnfe) {
// Added in 0119 b/c Java 1.5 throws FNFE when URL not available.
- // http://dev.processing.org/bugs/show_bug.cgi?id=403
+ // https://download.processing.org/bugzilla/403.html
} catch (IOException e) {
// changed for 0117, shouldn't be throwing exception
@@ -6728,7 +6728,7 @@ public class PApplet implements PConstants {
// Moved this earlier than the getResourceAsStream() checks, because
// calling getResourceAsStream() on a directory lists its contents.
- // http://dev.processing.org/bugs/show_bug.cgi?id=716
+ // https://download.processing.org/bugzilla/716.html
try {
// First see if it's in a data folder. This may fail by throwing
// a SecurityException. If so, this whole block will be skipped.
@@ -6782,7 +6782,7 @@ public class PApplet implements PConstants {
// this is an irritation of sun's java plug-in, which will return
// a non-null stream for an object that doesn't exist. like all good
// things, this is probably introduced in java 1.5. awesome!
- // http://dev.processing.org/bugs/show_bug.cgi?id=359
+ // https://download.processing.org/bugzilla/359.html
if (!cn.equals("sun.plugin.cache.EmptyInputStream")) {
return stream;
}
@@ -6790,7 +6790,7 @@ public class PApplet implements PConstants {
// When used with an online script, also need to check without the
// data folder, in case it's not in a subfolder called 'data'.
- // http://dev.processing.org/bugs/show_bug.cgi?id=389
+ // https://download.processing.org/bugzilla/389.html
stream = cl.getResourceAsStream(filename);
if (stream != null) {
String cn = stream.getClass().getName();
@@ -6932,7 +6932,7 @@ public class PApplet implements PConstants {
} catch (FileNotFoundException fnfe) {
// Java 1.5+ throws FNFE when URL not available
- // http://dev.processing.org/bugs/show_bug.cgi?id=403
+ // https://download.processing.org/bugzilla/403.html
} catch (IOException e) {
printStackTrace(e);
diff --git a/core/src/processing/core/PFont.java b/core/src/processing/core/PFont.java
index 3f7e691c2..1b54396c5 100644
--- a/core/src/processing/core/PFont.java
+++ b/core/src/processing/core/PFont.java
@@ -281,7 +281,7 @@ public class PFont implements PConstants {
} else {
// The charset needs to be sorted to make index lookup run quickly
- // http://dev.processing.org/bugs/show_bug.cgi?id=494
+ // https://download.processing.org/bugzilla/494.html
// First make copy of charset[] so the user's array is not modified
// https://github.com/processing/processing4/issues/197
char[] sortedCharset = Arrays.copyOf(charset, charset.length);
@@ -916,7 +916,7 @@ public class PFont implements PConstants {
/**
* Starting with Java 1.5, Apple broke the ability to specify most fonts.
* This bug was filed years ago as #4769141 at bugreporter.apple.com. More:
- * Bug 407.
+ * Bug 407.
*
* This function displays a warning when the font is not found
* and Java's system font is used.
diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java
index f62e8f505..3f07dcf96 100644
--- a/core/src/processing/core/PGraphics.java
+++ b/core/src/processing/core/PGraphics.java
@@ -1456,7 +1456,7 @@ public class PGraphics extends PImage implements PConstants {
// only do this if we're using an irregular (POLYGON) shape that
// will go through the triangulator. otherwise it'll do thinks like
// disappear in mathematically odd ways
- // http://dev.processing.org/bugs/show_bug.cgi?id=444
+ // https://download.processing.org/bugzilla/444.html
if (shape == POLYGON) {
if (vertexCount > 0) {
float[] pvertex = vertices[vertexCount-1];
diff --git a/core/src/processing/core/PShape.java b/core/src/processing/core/PShape.java
index 16eaf6f1d..0448a2ef8 100644
--- a/core/src/processing/core/PShape.java
+++ b/core/src/processing/core/PShape.java
@@ -1846,7 +1846,7 @@ public class PShape implements PConstants {
protected void drawPath(PGraphics g) {
// Paths might be empty (go figure)
- // http://dev.processing.org/bugs/show_bug.cgi?id=982
+ // https://download.processing.org/bugzilla/982.html
if (vertices == null) return;
boolean insideContour = false;
diff --git a/core/src/processing/core/PShapeSVG.java b/core/src/processing/core/PShapeSVG.java
index a77bd316c..e125f9620 100644
--- a/core/src/processing/core/PShapeSVG.java
+++ b/core/src/processing/core/PShapeSVG.java
@@ -541,7 +541,7 @@ public class PShapeSVG extends PShape {
}
if (c == '-' && !lastSeparate) {
// allow for 'e' notation in numbers, e.g. 2.10e-9
- // http://dev.processing.org/bugs/show_bug.cgi?id=1408
+ // https://download.processing.org/bugzilla/1408.html
if (i == 0 || pathDataChars[i-1] != 'e') {
pathBuffer.append("|");
}
diff --git a/core/src/processing/opengl/PSurfaceJOGL.java b/core/src/processing/opengl/PSurfaceJOGL.java
index d3be8d34d..8bec77415 100644
--- a/core/src/processing/opengl/PSurfaceJOGL.java
+++ b/core/src/processing/opengl/PSurfaceJOGL.java
@@ -528,7 +528,7 @@ public class PSurfaceJOGL implements PSurface {
// this is an irritation of sun's java plug-in, which will return
// a non-null stream for an object that doesn't exist. like all good
// things, this is probably introduced in java 1.5. awesome!
- // http://dev.processing.org/bugs/show_bug.cgi?id=359
+ // https://download.processing.org/bugzilla/359.html
if (!cn.equals("sun.plugin.cache.EmptyInputStream")) {
stream.close();
return "data/" + filename;
@@ -537,7 +537,7 @@ public class PSurfaceJOGL implements PSurface {
// When used with an online script, also need to check without the
// data folder, in case it's not in a subfolder called 'data'.
- // http://dev.processing.org/bugs/show_bug.cgi?id=389
+ // https://download.processing.org/bugzilla/389.html
stream = cl.getResourceAsStream(filename);
if (stream != null) {
String cn = stream.getClass().getName();
@@ -620,7 +620,7 @@ public class PSurfaceJOGL implements PSurface {
Point frameLoc = new Point(x, y);
if (frameLoc.y < 0) {
// Windows actually allows you to place frames where they can't be
- // closed. Awesome. http://dev.processing.org/bugs/show_bug.cgi?id=1508
+ // closed. Awesome. https://download.processing.org/bugzilla/1508.html
window.setTopLevelPosition(frameLoc.x, 30);
}
}
diff --git a/core/todo.txt b/core/todo.txt
index f13f9933d..980ca8ec3 100644
--- a/core/todo.txt
+++ b/core/todo.txt
@@ -221,7 +221,7 @@ _ idea: set frameCount to -1 when setup not run yet?
_ then set frameCount to 0 when setup() starts?
_ need to clean up the hints in the reference/source
_ exactly how should pixel filling work with single pixel strokes?
-_ http://dev.processing.org/bugs/show_bug.cgi?id=1025 (no gcode)
+_ https://download.processing.org/bugzilla/1025.html (no gcode)
_ y2 position of rectangles not same as y2 position of lines
_ happens when the rectangle is flipped on the x or y axis
_ probably a hack that draws the "last" point differently
@@ -255,7 +255,7 @@ _ pdf.textMode(SHAPE)
_ also set the font *after* the record has started
_ maybe should instead make textMode(SHAPE) the norm?
_ and people can change it to textMode(MODEL) if they want?
-_ http://dev.processing.org/bugs/show_bug.cgi?id=1535 (no gcode)
+_ https://download.processing.org/bugzilla/1535.html (no gcode)
_ explain the new PGL interface
_ decide how disconnectEvent should actually be handled (and name?)
_ was disconnect always there?
@@ -732,7 +732,7 @@ _ rounding errors on color conversion
_ colorMode(RGB, 1.0); colorMode(255); println(red(color(0.5,1,1)));
_ will return 127, instead of 128.
_ gray that's greater than the colorMode() can produce strange colors
-_ http://dev.processing.org/bugs/show_bug.cgi?id=432 (no gcode)
+_ https://download.processing.org/bugzilla/432.html (no gcode)
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1083650609
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1082481891
_ add stroke() to type
@@ -743,7 +743,7 @@ _ don't add api to main p5 stuff (though maybe setPaint/noPaint api?)
_ gradient-painted lines and fills
_ java2d will do both line and fill, illusfarter only does fills
_ gradients not supported in java2d
-_ http://dev.processing.org/bugs/show_bug.cgi?id=371 (no gcode)
+_ https://download.processing.org/bugzilla/371.html (no gcode)
_ bspline or nurbs (later, want to do the 3D/arch stuff correctly)
_ non-homogenous coloring for curve vertices
_ consider bringing back text/image using cache/names
diff --git a/done.txt b/done.txt
index 04d921699..836a70bab 100644
--- a/done.txt
+++ b/done.txt
@@ -4978,24 +4978,24 @@ o http://java.sun.com/javase/6/docs/api/java/io/File.html#setExecutable(boolea
o specifically add "eclipse" to integration description
o link books and sample chapters from the "getting started" portion of the faq
o if export fails (compile error) need to un-highlight the export button
-o http://dev.processing.org/bugs/show_bug.cgi?id=39
+o https://download.processing.org/bugzilla/39.html
o [LaunchRunner Error] processing.app.Base.main(String[]) threw an exception
-o http://dev.processing.org/bugs/show_bug.cgi?id=821
+o https://download.processing.org/bugzilla/821.html
o http://code.google.com/p/processing/issues/detail?id=102
X not seen for a long time, closed
o dragging title bar while sketch running causes strange selection behavior
-o http://dev.processing.org/bugs/show_bug.cgi?id=504
+o https://download.processing.org/bugzilla/504.html
X closed as no longer causing a problem
o "page setup" sucks in java
-o http://dev.processing.org/bugs/show_bug.cgi?id=435
+o https://download.processing.org/bugzilla/435.html
X marked later.. but not really gonna get into it
o fonts smaller than 10 cause problems in the editor
o generally causes trouble on osx
o on windows and linux, changing the size throws things off
-o http://dev.processing.org/bugs/show_bug.cgi?id=51
+o https://download.processing.org/bugzilla/51.html
X ppl weren't restarting the editor
o implement emacs keybindings (list is at the bug report)
-o http://dev.processing.org/bugs/show_bug.cgi?id=401
+o https://download.processing.org/bugzilla/401.html
X decided not to
o error messages run off the edge and go invisible
X http://code.google.com/p/processing/issues/detail?id=18
@@ -5009,7 +5009,7 @@ o implement and remove PdeEditorStatus stuff
X http://code.google.com/p/processing/issues/detail?id=20
X decided nobody cared
o errors during export don't show up properly (no red status bar)
-o http://dev.processing.org/bugs/show_bug.cgi?id=194
+o https://download.processing.org/bugzilla/194.html
X could not reproduce
X prefs window not visible on windows taskbar
X http://code.google.com/p/processing/issues/detail?id=63
@@ -5027,12 +5027,12 @@ o /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK
o will return 1.5.0 (or maybe 1.6 for others?)
X nope, just using a local JRE/JDK from now on
o need to decide how to handle "stop" button in present mode
-o http://dev.processing.org/bugs/show_bug.cgi?id=63
+o https://download.processing.org/bugzilla/63.html
o when running externally, people need to write their own stop function
o just get export to application working so this can be supported
o for now, they're stuck w/ running in the env and getting the ugliness
X quitting from present mode doesn't kill run button
-X http://dev.processing.org/bugs/show_bug.cgi?id=80
+X https://download.processing.org/bugzilla/80.html
X fixed earlier (verified in 1.0.9)
o slow save/new because of large sketchbook
o this is a total cluster, the rebuild is being called incessantly
@@ -5088,28 +5088,28 @@ o port buffering not working properly
o may just be a problem with thread starvation
o bufferUntil() fires an event but continues to fill up the buffer
o bug report includes patch from mellis
-o http://dev.processing.org/bugs/show_bug.cgi?id=96
+o https://download.processing.org/bugzilla/96.html
X fixed in 0140
o add prompt() method to Serial (simple dialog box that pops up)
o Add Mark and Space parity to the Serial library
-o http://dev.processing.org/bugs/show_bug.cgi?id=1087
+o https://download.processing.org/bugzilla/1087.html
X opted not to a long while ago
o process still visible in Sysinternals Process Explorer after quit
X http://code.google.com/p/processing/issues/detail?id=259
X closed after no follow-up
o setup() and draw() are not bold on osx (10.4)
o likely osx refuses to do monaco bold
-X http://dev.processing.org/bugs/show_bug.cgi?id=1047
+X https://download.processing.org/bugzilla/1047.html
X closed a long while ago
o track down error in PdeCompiler for message parsing
o was missing the error about a package being gone
o can comment out /System/Library/ as a test
X way too old to know this one
o Editor stops receiving keyboard input after running a program (8.10)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1161
+X https://download.processing.org/bugzilla/1161.html
X had been closed as invalid
o if someone has monaco disabled in font book, the app won't start
-o http://dev.processing.org/bugs/show_bug.cgi?id=562
+o https://download.processing.org/bugzilla/562.html
X Monaco can no longer be disabled
X modes have their own methods for digging through sketch & libraries folders
o therefore it need only check the sketch.txt file to see if it's ok
@@ -5187,7 +5187,7 @@ X disallow underscore at beginning of sketch name
X http://code.google.com/p/processing/issues/detail?id=1047
X fix problem with sanitized names potentially overwriting existing sketches (!)
o do some testing for windows 7 on 64-bit
-X http://dev.processing.org/bugs/show_bug.cgi?id=1424
+X https://download.processing.org/bugzilla/1424.html
X add general outline of 1.5 and 2.0 releases to the faq
X video is on its way out, no good/simple solution for fixing now
X andreas' library will do good things eventually
@@ -5209,7 +5209,7 @@ X get rid of restore sketch feature
o remove pref for restoring sketches
X implement recent sketches menu
X add "recent files" list to open menu?
-o http://dev.processing.org/bugs/show_bug.cgi?id=1335
+o https://download.processing.org/bugzilla/1335.html
o don't re-open new window on top of another
X changing how this is handled
X detect mode and library example folders for recent menu
@@ -5231,7 +5231,7 @@ o add tool to "Add custom html to sketch"
o that copies applet.html,
o opens sketch folder,
o and gives info about what to do next (how to edit)
-o http://dev.processing.org/bugs/show_bug.cgi?id=143
+o https://download.processing.org/bugzilla/143.html
cleaning/earlier
o PApplet.this doesn't work
@@ -5243,9 +5243,9 @@ o can't use PApplet.this, doesn't seem to like that
o instead, must pass variable to inner class
X should be working (for a while) now because no longer using a temp name
o quicktime likes to crash (not just on windows)
-o http://dev.processing.org/bugs/show_bug.cgi?id=791
+o https://download.processing.org/bugzilla/791.html
o strange insets for PApplet on certain window managers
-o http://dev.processing.org/bugs/show_bug.cgi?id=1187
+o https://download.processing.org/bugzilla/1187.html
X http://code.google.com/p/processing/issues/detail?id=161
X cannot fix
o computationally intensive stuff runs really slow inside p5
@@ -5253,7 +5253,7 @@ o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action
o some reports of it not quitting properly, but not confirmed
X problem with startup on vista 64
X try this with windows 7 64-bit (install on laptop?)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1246
+X https://download.processing.org/bugzilla/1246.html
X System.getProperty("sun.arch.data.model").equals("32").
o add to troubleshooting:
X remove/rename the preferences file
@@ -5262,11 +5262,11 @@ o need to only load p5 libs from the p5 directory
o update the text on the bugzilla page
o NPE when double-clicking PDE on Mac OS X
o is thread sync the problem? rebuild menus being called 2x?
-o http://dev.processing.org/bugs/show_bug.cgi?id=1251
+o https://download.processing.org/bugzilla/1251.html
o http://code.google.com/p/processing/issues/detail?id=177
X not seen for a while, closed
o multiple entries in file menu
-o http://dev.processing.org/bugs/show_bug.cgi?id=1260
+o https://download.processing.org/bugzilla/1260.html
X should be fixed, not seen
o "src/processing/xxxx/Xxxxxxxx.java uses unchecked or unsafe operations."
X http://code.google.com/p/processing/issues/detail?id=101
@@ -5274,7 +5274,7 @@ o use pack200/unpack200 to make p5 download smaller
X http://code.google.com/p/processing/issues/detail?id=95
X decided not to--no good way to do cross-platform version
o problem with keyboard shortcuts when building from source
-o http://dev.processing.org/bugs/show_bug.cgi?id=1231
+o https://download.processing.org/bugzilla/1231.html
X either fixed or never confirmed
o make source link on p5 site go direct to the source
o or at least explain how to navigate
@@ -5289,35 +5289,35 @@ X add stuff about the history into the people section
X descended from dbn, but not dbn, etc..
o remove the 'search' item from yabb.cgi
o add note to linux troubleshooting re: key input
-o http://dev.processing.org/bugs/show_bug.cgi?id=1161
+o https://download.processing.org/bugzilla/1161.html
X marked wontfix
o add a command to launch an external editor
-o http://dev.processing.org/bugs/show_bug.cgi?id=141
+o https://download.processing.org/bugzilla/141.html
X getting rid of external editor
o clipboard implementation example
-X http://dev.processing.org/bugs/show_bug.cgi?id=167
+X https://download.processing.org/bugzilla/167.html
o include a note that 'applet' folder will get emptied/rewritten
o or rename the old applet folder to something else? (too messy)
X http://code.google.com/p/processing/issues/detail?id=21
X added preference in more recent release
X after deleting a tab code still get's preprocessed, pde file is not forgotten
-X http://dev.processing.org/bugs/show_bug.cgi?id=1092
+X https://download.processing.org/bugzilla/1092.html
X fixed in 1.0.8 (!)
X export and export to application fail with umlauts in folder name
-X http://dev.processing.org/bugs/show_bug.cgi?id=252
+X https://download.processing.org/bugzilla/252.html
X fixed in 0140, but no confirmation
o stop button needs to update itself and work properly
o also editor buttons to light up and clear properly
-X http://dev.processing.org/bugs/show_bug.cgi?id=396
+X https://download.processing.org/bugzilla/396.html
o need someone to go out and test all scenarios of this
X this particular version was fixed (though broken again later)
o video library threading problems with other libraries
-X http://dev.processing.org/bugs/show_bug.cgi?id=882
+X https://download.processing.org/bugzilla/882.html
o using Capture.list() before size() sometimes works
o also placing OpenGL inside the extensions directory
X closing because was specific to QTJava
o serial.available() broken with video
-X http://dev.processing.org/bugs/show_bug.cgi?id=829
+X https://download.processing.org/bugzilla/829.html
X old video library, so closed
o sometimes not launching
o this seems to be a threading problem, like an NPE on load/open
@@ -5326,7 +5326,7 @@ X need something more specific than this
X can't run opengl in 64-bit
X http://code.google.com/p/processing/issues/detail?id=255
o PDE locks up during setup() (since no window shown)
-o http://dev.processing.org/bugs/show_bug.cgi?id=687
+o https://download.processing.org/bugzilla/687.html
o maybe better to do an example of running code on another thread
o when it's done as a script
X http://code.google.com/p/processing/issues/detail?id=86
@@ -5336,7 +5336,7 @@ X use wget to grab it if it doesn't exist
o and include an md5hash to see if the file is correct
X not necessary -- ant takes care of it
o notes about getting best results from text in each renderer
-o http://dev.processing.org/bugs/show_bug.cgi?id=466
+o https://download.processing.org/bugzilla/466.html
X http://code.google.com/p/processing/issues/detail?id=64
X marked wontfix
o Debugger highlights wrong line, and sometimes the wrong file
@@ -5348,14 +5348,14 @@ o maybe a dropdown list thing, with the first just shown?
X http://code.google.com/p/processing/issues/detail?id=19
X marked cantfix
o using a processing keyword as a variable name gives unhelpful error message
-X http://dev.processing.org/bugs/show_bug.cgi?id=213
+X https://download.processing.org/bugzilla/213.html
X fixed issue specific to handleDisplay
o not enough args for triangle (or args in general)
o throws out bizarre message
-o http://dev.processing.org/bugs/show_bug.cgi?id=17
+o https://download.processing.org/bugzilla/17.html
X fixed up later
X expecting RPAREN messages are ugly
-X http://dev.processing.org/bugs/show_bug.cgi?id=15
+X https://download.processing.org/bugzilla/15.html
o unchecking 'use external editor' sketch should not set modified
o dangerous if a version that hasn't been re-loaded has possibility
o to overwrite. i.e. make a change and save in external editor,
@@ -5369,16 +5369,16 @@ X merged into new editor issue
o failed export still copies random files
o Failed compile on Export or Export to Application
o still creates folder and leaves mess behind
-X http://dev.processing.org/bugs/show_bug.cgi?id=1050
+X https://download.processing.org/bugzilla/1050.html
X opted not to fix (rationale in the report)
o javadoc comment in a static mode app doesn't get moved to the top
-o http://dev.processing.org/bugs/show_bug.cgi?id=924
+o https://download.processing.org/bugzilla/924.html
X http://code.google.com/p/processing/issues/detail?id=115
o make export put a timestamp in the html code (hidden or visible)
-o http://dev.processing.org/bugs/show_bug.cgi?id=66
+o https://download.processing.org/bugzilla/66.html
X http://code.google.com/p/processing/issues/detail?id=22
X when holding down shift, show the alternate behavior for EditorHeader
-X http://dev.processing.org/bugs/show_bug.cgi?id=37
+X https://download.processing.org/bugzilla/37.html
o implement new version of history
o make history folder, and a zip (not gz) file for each entry
o history causing trouble - super slow with a huge sketch
@@ -5395,11 +5395,11 @@ X http://code.google.com/p/processing/issues/detail?id=26
video/nixed
o if read() hasn't been called, can cause an error with java2d
-o http://dev.processing.org/bugs/show_bug.cgi?id=1041
+o https://download.processing.org/bugzilla/1041.html
o threading problems with video
-o http://dev.processing.org/bugs/show_bug.cgi?id=868
+o https://download.processing.org/bugzilla/868.html
o audio stops working after two seconds
-o http://dev.processing.org/bugs/show_bug.cgi?id=277
+o https://download.processing.org/bugzilla/277.html
o add more information about multiple camera inputs
o add info about "access" errors being quicktime errors
o documented in faq, add something to the lib "camera not installed"
@@ -5414,10 +5414,10 @@ o need to prevent multiple QTSession open or close
o static method shared across the lib, or some such
o reading movie is really really slow (2-3 fps)
o possible improvement from qtjava list added
-X http://dev.processing.org/bugs/show_bug.cgi?id=40
+X https://download.processing.org/bugzilla/40.html
o tearing and incomplete updates on capture?
o putting read() inside draw() seems to eliminate this?
-o http://dev.processing.org/bugs/show_bug.cgi?id=114
+o https://download.processing.org/bugzilla/114.html
o when drawing large video, the two triangles for the rect are out of sync
o only shows up in P3D
o pause and frameRate aren't working
@@ -5425,7 +5425,7 @@ o framerate does set the frequency which movieEvent will be called,
o but it is not setting the "available" field corrrectly.
o in fact, speed() should be used to set the rate, not frameRate
o sketch .zip file in casey's email message
-X http://dev.processing.org/bugs/show_bug.cgi?id=370
+X https://download.processing.org/bugzilla/370.html
o wrong device name for video capture will cause a crash
o couldn't get req'd component also happens when the capture isn't ready
o may also mean that no camera is plugged in
@@ -5441,7 +5441,7 @@ o when an exception comes through during cameraEvent, not printed
o need to show an actual stack trace (InvocationTargetEx)
o because otherwise it's impossible to debug this stuff
o video library not working on export to web
-o http://dev.processing.org/bugs/show_bug.cgi?id=1421
+o https://download.processing.org/bugzilla/1421.html
o Movie needs the crop() functions ala Capture
bugzilla (ouch)
@@ -5474,13 +5474,13 @@ o need to change what people can edit in the bug report
o do something about the bug summary field to not make it editable
o maybe just move it away from its current location?
o call it "bug title" instead of "summary"?
-o http://dev.processing.org/bugs/show_bug.cgi?id=253
+o https://download.processing.org/bugzilla/253.html
o layout problems with attachments page
-o http://dev.processing.org/bugs/show_bug.cgi?id=254
+o https://download.processing.org/bugzilla/254.html
o layout problems with logout page
-o http://dev.processing.org/bugs/show_bug.cgi?id=255
+o https://download.processing.org/bugzilla/255.html
o bug duplicate text field doesn't retain focus
-o http://dev.processing.org/bugs/show_bug.cgi?id=256
+o https://download.processing.org/bugzilla/256.html
o finish putting all the bugs into bugzilla
o add a notation to the bugs site re: reading the faq and searching first
X move p5 site bug reporting to bugzilla
@@ -5704,7 +5704,7 @@ X http://code.google.com/p/processing/issues/detail?id=707
X Badly formed character constant exception
X http://code.google.com/p/processing/issues/detail?id=714
o people not knowing how to use Java w/ OpenGL renderer
-o http://dev.processing.org/bugs/show_bug.cgi?id=1259
+o https://download.processing.org/bugzilla/1259.html
o add deployJava.js to local sketch folder (causes internet requirement)
X http://code.google.com/p/processing/issues/detail?id=650
X http://www.java.com/js/deployJava.js
@@ -5768,18 +5768,18 @@ 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 https://download.processing.org/bugzilla/49.html
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 https://download.processing.org/bugzilla/1126.html
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 https://download.processing.org/bugzilla/688.html
o Processing IDE icon ALT + Tab low res in Windows XP
-o http://dev.processing.org/bugs/show_bug.cgi?id=1040
+o https://download.processing.org/bugzilla/1040.html
0196 pde (1.5)
@@ -5791,12 +5791,12 @@ X would help with beta releases, and not having to edit by hand
X add another fix for text focus handling
X http://code.google.com/p/processing/issues/detail?id=627
X file-save stops running sketch
-X http://dev.processing.org/bugs/show_bug.cgi?id=810
+X https://download.processing.org/bugzilla/810.html
X http://code.google.com/p/processing/issues/detail?id=100
X fix bug in loadfile2 example
X http://code.google.com/p/processing/issues/detail?id=522
o when running with external editor, hide the editor text area
-o http://dev.processing.org/bugs/show_bug.cgi?id=20
+o https://download.processing.org/bugzilla/20.html
X http://code.google.com/p/processing/issues/detail?id=9
X shift-indent without selection increases indention
X http://code.google.com/p/processing/issues/detail?id=458
@@ -5824,17 +5824,17 @@ X need to check behavior for word and bbedit
X http://code.google.com/p/processing/issues/detail?id=59
X http://code.google.com/p/processing/issues/detail?id=576
X find/replace all around very ugly, fix it up
-o http://dev.processing.org/bugs/show_bug.cgi?id=67
+o https://download.processing.org/bugzilla/67.html
X http://code.google.com/p/processing/issues/detail?id=23
X http://code.google.com/p/processing/issues/detail?id=580
X several tweaks
-o http://dev.processing.org/bugs/show_bug.cgi?id=68
+o https://download.processing.org/bugzilla/68.html
o only enable "find next" in menu after a find has happened
X http://code.google.com/p/processing/issues/detail?id=24
several changes to the undo setup
X sketch marked as modified too aggressively
-o http://dev.processing.org/bugs/show_bug.cgi?id=328
+o https://download.processing.org/bugzilla/328.html
X http://code.google.com/p/processing/issues/detail?id=57
X "save" clears undo information
X http://code.google.com/p/processing/issues/detail?id=411
@@ -5845,7 +5845,7 @@ fixed in 0195
X rename/saveas doesn't properly have its focus set
X under windows, immediately typing after rename doesn't select
X the whole thing is selected, but not directly editable
-o http://dev.processing.org/bugs/show_bug.cgi?id=31
+o https://download.processing.org/bugzilla/31.html
X http://code.google.com/p/processing/issues/detail?id=13
@@ -5865,7 +5865,7 @@ X only affects linux and windows
X http://code.google.com/p/processing/issues/detail?id=569
X move library examples to the examples menu
o do this once the library documentation has been fixed up
-X http://dev.processing.org/bugs/show_bug.cgi?id=1278
+X https://download.processing.org/bugzilla/1278.html
X http://code.google.com/p/processing/issues/detail?id=181
X ctrl-slash not working with esfera on linux (line ending trouble?)
X or maybe ctrl-slash just broken on linux?
@@ -5905,7 +5905,7 @@ X save untitled sketch, then try to rename, says "save before renaming"
earlier
X Unsatisfied Link Error running OPENGL on 64-bit ubuntu
-X http://dev.processing.org/bugs/show_bug.cgi?id=1557
+X https://download.processing.org/bugzilla/1557.html
X on linux, mozilla shouldn't be the default browser anymore
X is there a way to query the default browser? gnome-open? xdg-open?
X cleaned up some things inside settings, but this was already done
@@ -5941,7 +5941,7 @@ J http://code.google.com/p/processing/issues/detail?id=462
X fix for linux build script (thanks to Kevin Keraudren)
X http://code.google.com/p/processing/issues/detail?id=466
o occasional exception in "copy for discourse"
-o http://dev.processing.org/bugs/show_bug.cgi?id=729
+o https://download.processing.org/bugzilla/729.html
X move compiler to mode.java.* instead of runner
X fix the encoding on OS X for the "Fix Encoding and Reload" function
X broken link on ye olde' http://processing.org/bugs/bugzilla
@@ -6013,7 +6013,7 @@ X http://code.google.com/p/processing/issues/detail?id=335
X disabled input method support for now
X make some fancy extendo things because the tabs get too big
X either condense or popdown menu thingy
-o http://dev.processing.org/bugs/show_bug.cgi?id=54
+o https://download.processing.org/bugzilla/54.html
X http://code.google.com/p/processing/issues/detail?id=17
X don't show tabs when there are too many
X maybe move the list of files to the top?
@@ -6059,7 +6059,7 @@ J http://code.google.com/p/processing/issues/detail?id=420
J matching brace problem in PDE
J http://code.google.com/p/processing/issues/detail?id=417
J fix syntax highlighting of focusGained and others
-J http://dev.processing.org/bugs/show_bug.cgi?id=659
+J https://download.processing.org/bugzilla/659.html
J http://code.google.com/p/processing/issues/detail?id=82
J compiling with static final global variable
J http://code.google.com/p/processing/issues/detail?id=427
@@ -6077,14 +6077,14 @@ J http://code.google.com/p/processing/issues/detail?id=462
X fix for linux build script (thanks to Kevin Keraudren)
X http://code.google.com/p/processing/issues/detail?id=466
o occasional exception in "copy for discourse"
-o http://dev.processing.org/bugs/show_bug.cgi?id=729
+o https://download.processing.org/bugzilla/729.html
fixed earlier
X should really be doing the 'right' thing with sketch file handling
X create temporary file when saving
X once done writing, use remove the original and rename the old
X some basic stuff like this..
-X http://dev.processing.org/bugs/show_bug.cgi?id=968
+X https://download.processing.org/bugzilla/968.html
X http://code.google.com/p/processing/issues/detail?id=127
@@ -6122,7 +6122,7 @@ X add warning message when not using a version of sun java w/ p5 on linux
X Ctrl-Z will undo, but not scroll to where the undo happens.
X is this now somehow fixed? (or only on os x?)
X so user thinks nothing is happening and overundo.
-X http://dev.processing.org/bugs/show_bug.cgi?id=35
+X https://download.processing.org/bugzilla/35.html
X http://code.google.com/p/processing/issues/detail?id=15
@@ -6145,7 +6145,7 @@ X and if it's there, don't require people to quit
X Prevent horizontal scroll offset from disappearing
X http://code.google.com/p/processing/issues/detail?id=280
o horizontal scroller gets weird sometimes
-o http://dev.processing.org/bugs/show_bug.cgi?id=23
+o https://download.processing.org/bugzilla/23.html
X Fix NullPointerException when making a new sketch on non-English systems
X http://code.google.com/p/processing/issues/detail?id=283
X show warning message on linux if sun java is not in use
@@ -6167,58 +6167,58 @@ X http://code.google.com/p/processing/issues/detail?id=278
0185 pde (pre)
X add option to launch a sketch directly w/ linux
X thanks to Larry Kyrala
-X http://dev.processing.org/bugs/show_bug.cgi?id=1549
+X https://download.processing.org/bugzilla/1549.html
X fix for PDF library to support createFont() on Linux
-X http://dev.processing.org/bugs/show_bug.cgi?id=1566
+X https://download.processing.org/bugzilla/1566.html
X thanks to Matthias Breuer
X add option to change the formatting for untitled sketch naming
-X http://dev.processing.org/bugs/show_bug.cgi?id=1091
+X https://download.processing.org/bugzilla/1091.html
X Can't input full-width space when Japanese IME is on.
-X http://dev.processing.org/bugs/show_bug.cgi?id=1531
+X https://download.processing.org/bugzilla/1531.html
X fix from takachin
X PDF library matrix is not reset between frames
X also added begin/endDraw between frames
-X http://dev.processing.org/bugs/show_bug.cgi?id=1227
+X https://download.processing.org/bugzilla/1227.html
X add loading.gif to the js version of the applet loader
X updating JRE to 6u20, and use new Google URL
X copy the html tool from the arduino guys
X http://code.google.com/p/processing/issues/detail?id=271
X Java update on OS X causing lots of problems
-X http://dev.processing.org/bugs/show_bug.cgi?id=1564
-X http://dev.processing.org/bugs/show_bug.cgi?id=1569
+X https://download.processing.org/bugzilla/1564.html
+X https://download.processing.org/bugzilla/1569.html
X http://code.google.com/p/processing/issues/detail?id=258
o check into focus issues--probably using old focus api
X add option to disable re-opening previous projects
-X http://dev.processing.org/bugs/show_bug.cgi?id=1501
+X https://download.processing.org/bugzilla/1501.html
X http://code.google.com/p/processing/issues/detail?id=245
0184 pde (pre)
X other libraries that use opengl weren't using the jnlp launcher
X fix OpenGL detection in sketches so that proper version of
X export template is used
-X http://dev.processing.org/bugs/show_bug.cgi?id=1530
+X https://download.processing.org/bugzilla/1530.html
X single-line html comments not handled properly on export
-X http://dev.processing.org/bugs/show_bug.cgi?id=1419
+X https://download.processing.org/bugzilla/1419.html
X antlr grammar should not need to re-build unless changed
-X http://dev.processing.org/bugs/show_bug.cgi?id=1541
+X https://download.processing.org/bugzilla/1541.html
X many syntax errors now report "you're mixing active and static modes"
-X http://dev.processing.org/bugs/show_bug.cgi?id=1539
+X https://download.processing.org/bugzilla/1539.html
jdf stuff
J unterminated string constant with '\"'
-J http://dev.processing.org/bugs/show_bug.cgi?id=1534
+J https://download.processing.org/bugzilla/1534.html
J "expecting LPAREN, found '='" with syntax errors
-J http://dev.processing.org/bugs/show_bug.cgi?id=1532
+J https://download.processing.org/bugzilla/1532.html
J Bracket idenfication {} is not aware of comments //
-J http://dev.processing.org/bugs/show_bug.cgi?id=1450
+J https://download.processing.org/bugzilla/1450.html
J inconsistent bracket highlighting with comments
-J http://dev.processing.org/bugs/show_bug.cgi?id=43
+J https://download.processing.org/bugzilla/43.html
J "unexpected token void" -> "You're mixing dynamic and static mode"
-J http://dev.processing.org/bugs/show_bug.cgi?id=14
+J https://download.processing.org/bugzilla/14.html
can't reproduce
o shortcuts not working after rename? (osx and windows confirmed)
-o http://dev.processing.org/bugs/show_bug.cgi?id=505
+o https://download.processing.org/bugzilla/505.html
o undo has become sluggish
o http://processing.org/bugs/show_bug.cgi?id=36
@@ -6228,7 +6228,7 @@ X additional updates to autoformat, jdf adding tests
fixed in earlier releases
X export application including video capture broken in snowleopard
-X http://dev.processing.org/bugs/show_bug.cgi?id=1440
+X https://download.processing.org/bugzilla/1440.html
X fixed in an earlier release
@@ -6236,7 +6236,7 @@ X fixed in an earlier release
preprocessor fixes
J Compile errors for greater than/less than with parentheses
-J http://dev.processing.org/bugs/show_bug.cgi?id=1525
+J https://download.processing.org/bugzilla/1525.html
autoformat fixes
o install astyle formatter
@@ -6244,68 +6244,68 @@ o build on each platform, then "lipo -create astyle.* -output astyle"
o break out as its own plugin
J removes code with extra parens or braces
J (an extra } brace deleting everything after it)
-J http://dev.processing.org/bugs/show_bug.cgi?id=109
+J https://download.processing.org/bugzilla/109.html
J progressively eats code w/ certain brace settings
-J http://dev.processing.org/bugs/show_bug.cgi?id=235
+J https://download.processing.org/bugzilla/235.html
J Auto Format hangs when a non-terminated ' is included
-J http://dev.processing.org/bugs/show_bug.cgi?id=236
+J https://download.processing.org/bugzilla/236.html
J hex colors don't get formatted
-J http://dev.processing.org/bugs/show_bug.cgi?id=303
+J https://download.processing.org/bugzilla/303.html
J another code example that crashes
-J http://dev.processing.org/bugs/show_bug.cgi?id=363
+J https://download.processing.org/bugzilla/363.html
J arrays are reformatted on each autoformat
-J http://dev.processing.org/bugs/show_bug.cgi?id=259
+J https://download.processing.org/bugzilla/259.html
J Auto Format says "too many right parentheses" when last line is a comment
-J http://dev.processing.org/bugs/show_bug.cgi?id=754
+J https://download.processing.org/bugzilla/754.html
J japanese characters in comments cause trouble with auto-format
J (this may have been fixed in recent releases, not checked)
J http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1153505384
J "too many right parens" error when there are not
-J http://dev.processing.org/bugs/show_bug.cgi?id=867
+J https://download.processing.org/bugzilla/867.html
J code without a new line at end crashes
-J http://dev.processing.org/bugs/show_bug.cgi?id=880
+J https://download.processing.org/bugzilla/880.html
J autoformat screws up with color arrays
-J http://dev.processing.org/bugs/show_bug.cgi?id=760
+J https://download.processing.org/bugzilla/760.html
0181 pde (pre-release)
preprocessor
J unterminated string not caught by debugger
-J http://dev.processing.org/bugs/show_bug.cgi?id=425
+J https://download.processing.org/bugzilla/425.html
J allow doubles in preproc
J (for casting, etc) particularly for Math.cos() et al
J http://processing.org/bugs/show_bug.cgi?id=7
J Comments with non-ascii characters before import -> java.lang.OutOfMemoryError
-J http://dev.processing.org/bugs/show_bug.cgi?id=1511
+J https://download.processing.org/bugzilla/1511.html
J more preprocessor issues with new syntax
-J http://dev.processing.org/bugs/show_bug.cgi?id=1515
-J http://dev.processing.org/bugs/show_bug.cgi?id=1516
-J http://dev.processing.org/bugs/show_bug.cgi?id=1517
-J http://dev.processing.org/bugs/show_bug.cgi?id=1518
-J http://dev.processing.org/bugs/show_bug.cgi?id=1519
+J https://download.processing.org/bugzilla/1515.html
+J https://download.processing.org/bugzilla/1516.html
+J https://download.processing.org/bugzilla/1517.html
+J https://download.processing.org/bugzilla/1518.html
+J https://download.processing.org/bugzilla/1519.html
0180 pde (pre-release)
preprocessor
J Update ANTLR grammar to support 1.5 syntax
-J http://dev.processing.org/bugs/show_bug.cgi?id=598
+J https://download.processing.org/bugzilla/598.html
J non-void functions confuse preprocessor
-J http://dev.processing.org/bugs/show_bug.cgi?id=1442
+J https://download.processing.org/bugzilla/1442.html
J casting problems in the parser
J straighten out int() -> toInt() conversions
J float u = float(x)/width; works.
J float u = (float(x)/width); doesn't work: "unexpected token: float".
J float u = (x/float(width)); works!
-J http://dev.processing.org/bugs/show_bug.cgi?id=4
+J https://download.processing.org/bugzilla/4.html
J return (int(5.5)) causes an error
J preprocessor error if last line of code is a comment with no CR after it,
J an OutOfMemoryError wants to happen,
J but right now there's a hack to add a CR in PdePreprocessor
-J http://dev.processing.org/bugs/show_bug.cgi?id=5
+J https://download.processing.org/bugzilla/5.html
J preproc can't handle labels to break/continue nested loops
-J http://dev.processing.org/bugs/show_bug.cgi?id=631
+J https://download.processing.org/bugzilla/631.html
J toInt() needs to go away in time for the book.. fix parser bugs
J add local variables to PdeRecognizer
J remove static methods in PdePreprocessor, instead pull things from recog
@@ -6314,44 +6314,44 @@ J (just gets removed by the preprocessor)
J http://processing.org/bugs/show_bug.cgi?id=6
J unspecified return type creates compile error
J or maybe not? followup said maybe not
-J http://dev.processing.org/bugs/show_bug.cgi?id=379
+J https://download.processing.org/bugzilla/379.html
J (already marked invalid -- jdf)
J Blah.class will confuse the preproc
-J http://dev.processing.org/bugs/show_bug.cgi?id=481
+J https://download.processing.org/bugzilla/481.html
J non-matching curly brackets sometimes don't cause an error
-J http://dev.processing.org/bugs/show_bug.cgi?id=507
+J https://download.processing.org/bugzilla/507.html
J (duplicate of #6)
J NullPointerException on unterminated comment at end of code
J and OutOfMemoryError and weird lockup
-J http://dev.processing.org/bugs/show_bug.cgi?id=16
+J https://download.processing.org/bugzilla/16.html
J "missing a /* from the end of a comment" message
-J http://dev.processing.org/bugs/show_bug.cgi?id=1512
+J https://download.processing.org/bugzilla/1512.html
J "multipart/*" produces the error
J even though things are inside a quoted txt block
J NullPointerException on unterminated comment at end of code
J and OutOfMemoryError and weird lockup
-J http://dev.processing.org/bugs/show_bug.cgi?id=16
+J https://download.processing.org/bugzilla/16.html
J also OutOfMemoryError if a quote is not terminated
-J http://dev.processing.org/bugs/show_bug.cgi?id=763
+J https://download.processing.org/bugzilla/763.html
J Error compiling when 'new' is first word in an 'else' block
-J http://dev.processing.org/bugs/show_bug.cgi?id=1362
+J https://download.processing.org/bugzilla/1362.html
J Parsing error when using char literals
-J http://dev.processing.org/bugs/show_bug.cgi?id=281
+J https://download.processing.org/bugzilla/281.html
J support for assertions
-J http://dev.processing.org/bugs/show_bug.cgi?id=1188
+J https://download.processing.org/bugzilla/1188.html
J syntax highlighting error with // and /*
-J http://dev.processing.org/bugs/show_bug.cgi?id=609
+J https://download.processing.org/bugzilla/609.html
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 https://download.processing.org/bugzilla/1473.html
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 https://download.processing.org/bugzilla/1214.html
X hide android tools if it's an actual release version
@@ -6365,18 +6365,18 @@ X no changes
0176 pde (private)
X hitting ESC inside Color Selector will quit Processing
-X http://dev.processing.org/bugs/show_bug.cgi?id=1006
+X https://download.processing.org/bugzilla/1006.html
X need to set exported applications to only run as 32-bit on osx
X otherwise quicktime will break
X lock the minimum size for the main processing editor frame
X fix from Chris Lonnen
X if it's made too small, stuff from the bottom disappears
-X http://dev.processing.org/bugs/show_bug.cgi?id=25
+X https://download.processing.org/bugzilla/25.html
X http://java.sun.com/javase/6/webnotes/install/jre/autodownload.html
X http://java.sun.com/update/1.6.0/jinstall-6u18-windows-i586.cab
X http://java.sun.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html
X http://java.sun.com/javase/6/webnotes/family-clsid.html
-X http://dev.processing.org/bugs/show_bug.cgi?id=1353
+X https://download.processing.org/bugzilla/1353.html
X switch to better deployment script for applets
o download java kernel
X not gonna bother with this -- download is not the issue w/ java
@@ -6385,31 +6385,31 @@ X compile antlr inside the initial setup of the work dir
X done for macosx
X fix this for windows and linux
X PApplet.main() overwritten
-X http://dev.processing.org/bugs/show_bug.cgi?id=1446
+X https://download.processing.org/bugzilla/1446.html
o need to do a better job of error handling inside main()
X applets now use the deployjava.js file
X not opengl, but the others do
X NullPointerException in JOGLAppletLanucher with Java 6 Update 18 on Windows
X switching to more efficient JNLP export
-X http://dev.processing.org/bugs/show_bug.cgi?id=1452
+X https://download.processing.org/bugzilla/1452.html
X lack of java.awt.Polygon import breaks the yellowtail example
X and java.io.File (other exceptions?)
o just add a simple poly class? or don't use a poly?
X add imports for anything that's in the reference (selections from java.io)
o 'Array' in reference should be 'arrays' lowercase
X processing 0142 japanese input problem
-X http://dev.processing.org/bugs/show_bug.cgi?id=854
+X https://download.processing.org/bugzilla/854.html
X update JNA to version 3.2.4 to support Windows 7 64-bit
-X http://dev.processing.org/bugs/show_bug.cgi?id=1424
+X https://download.processing.org/bugzilla/1424.html
X fix LITERAL_class in PDE code (help from Christian Thiemann)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1466
+X https://download.processing.org/bugzilla/1466.html
X replace applet.html and applet-opengl.html
-X http://dev.processing.org/bugs/show_bug.cgi?id=1057
+X https://download.processing.org/bugzilla/1057.html
X update applet.html to point at java 6u10 with the new auto-update stuff
o also update applet on the home page to do the same
X move build scripts to something better like ant
X too much to maintain the multiple versions, too much code
-X http://dev.processing.org/bugs/show_bug.cgi?id=151
+X https://download.processing.org/bugzilla/151.html
X remove the intermediate build folders
X move the jdk stuff outside of the build
X http://processing.org/download/jre-6u18.zip, .tgz
@@ -6426,10 +6426,10 @@ X this was fixed in a much earlier release
X create font with user-specified charsets
o remember previous font selection when returning to the window
X "smooth" option being ignored in the Create Font tool
-X http://dev.processing.org/bugs/show_bug.cgi?id=1461
+X https://download.processing.org/bugzilla/1461.html
X other font bugs handled
-X http://dev.processing.org/bugs/show_bug.cgi?id=98
-X http://dev.processing.org/bugs/show_bug.cgi?id=1111
+X https://download.processing.org/bugzilla/98.html
+X https://download.processing.org/bugzilla/1111.html
o when resizing window, only resize the text display area
o just a matter of moving around the panels and BorderLayout
X it's a mess, just disable resizing
@@ -6439,11 +6439,11 @@ X update to jogl 1.1.1
X do this with enhanced library/platform support
X see how platform is determined by jogl / use for lib import
X apple bug may have been fixed
-X http://dev.processing.org/bugs/show_bug.cgi?id=786
+X https://download.processing.org/bugzilla/786.html
X javadoc "advanced" reference by beta
X and then finalizing it towards 1.0
X not saving sketch when exiting (only with windows lan setup)
-X http://dev.processing.org/bugs/show_bug.cgi?id=1193
+X https://download.processing.org/bugzilla/1193.html
0175 pde (private)
@@ -6454,7 +6454,7 @@ X when shift is down, change text of the toolbar item
0174 pde (private)
X fix ant.jar/ant-launcher.jar error in the windows/linux build scripts
-X http://dev.processing.org/bugs/show_bug.cgi?id=1403
+X https://download.processing.org/bugzilla/1403.html
X replace com.apple.eawt.Application invocation to deal with deprecation
X this may cause problems with older releases (or on 10.4 or 10.5), not sure
X application = new com.apple.eawt.Application();
@@ -6463,106 +6463,106 @@ X application = com.apple.eawt.Application.getApplication();
0173 pde (private)
X change build scripts to use UTF-8 for encoding with javac
-X http://dev.processing.org/bugs/show_bug.cgi?id=1394
+X https://download.processing.org/bugzilla/1394.html
X fix problem with Android HTML dialog box
X several
items showing up when first loading
-X http://dev.processing.org/bugs/show_bug.cgi?id=1395
+X https://download.processing.org/bugzilla/1395.html
0172 pde (private)
X use xdg-open as launcher on linux
-X http://dev.processing.org/bugs/show_bug.cgi?id=1358
+X https://download.processing.org/bugzilla/1358.html
X change to different class id for export and export-opengl
X Default wildcard imports are causing naming conflicts
-X http://dev.processing.org/bugs/show_bug.cgi?id=1103
+X https://download.processing.org/bugzilla/1103.html
X imports inside comments are being included
0171 pde (1.0.9)
X ugh, remove the dimmed menus
-X http://dev.processing.org/bugs/show_bug.cgi?id=786
+X https://download.processing.org/bugzilla/786.html
0170 pde (1.0.8)
X update java on linux/windows to 6u16
X update quaqua to 6.0.1
X preferences broken
-X http://dev.processing.org/bugs/show_bug.cgi?id=1320
-X http://dev.processing.org/bugs/show_bug.cgi?id=1322
-X http://dev.processing.org/bugs/show_bug.cgi?id=1325
-X http://dev.processing.org/bugs/show_bug.cgi?id=1329
-X http://dev.processing.org/bugs/show_bug.cgi?id=1336
-X http://dev.processing.org/bugs/show_bug.cgi?id=1337
-X http://dev.processing.org/bugs/show_bug.cgi?id=1344
+X https://download.processing.org/bugzilla/1320.html
+X https://download.processing.org/bugzilla/1322.html
+X https://download.processing.org/bugzilla/1325.html
+X https://download.processing.org/bugzilla/1329.html
+X https://download.processing.org/bugzilla/1336.html
+X https://download.processing.org/bugzilla/1337.html
+X https://download.processing.org/bugzilla/1344.html
X check for usequartz problems in snow leopard
X "Unrecognized option: -d32" on OS X 10.4
-X http://dev.processing.org/bugs/show_bug.cgi?id=1324
+X https://download.processing.org/bugzilla/1324.html
X slow response or spinning wheel on osx
X remove menu dimming code
-X http://dev.processing.org/bugs/show_bug.cgi?id=786
+X https://download.processing.org/bugzilla/786.html
X new version of minim: 2.0.2
X http://code.compartmental.net/tools/minim/
X Outdated "Get the latest Java Plug-in here"
-X http://dev.processing.org/bugs/show_bug.cgi?id=1331
+X https://download.processing.org/bugzilla/1331.html
X when disk is full, Processing zeroes files when it tries to save changes
X even saveStream() does this.. simple fix, b/c it's all one fxn
X or at least should be routed through a single fxn
-X http://dev.processing.org/bugs/show_bug.cgi?id=967
+X https://download.processing.org/bugzilla/967.html
X problems with save on close
-X http://dev.processing.org/bugs/show_bug.cgi?id=1193
+X https://download.processing.org/bugzilla/1193.html
X deleting new tab causes troubles
X florian had another version of this
-X http://dev.processing.org/bugs/show_bug.cgi?id=1332
+X https://download.processing.org/bugzilla/1332.html
X Saving the project with the same name as an existing tab may delete code
-X http://dev.processing.org/bugs/show_bug.cgi?id=1102
+X https://download.processing.org/bugzilla/1102.html
X after deleting a tab code still get's preprocessed, pde file is not forgotten
-X http://dev.processing.org/bugs/show_bug.cgi?id=1092
+X https://download.processing.org/bugzilla/1092.html
0169 pde (1.0.7)
X Erroneous line highlighting is off by one if there is no setup() routine
-X http://dev.processing.org/bugs/show_bug.cgi?id=1263
+X https://download.processing.org/bugzilla/1263.html
X Auto-format kills Unicode characters
-X http://dev.processing.org/bugs/show_bug.cgi?id=1312
+X https://download.processing.org/bugzilla/1312.html
X tweaks for Mac OS X Snow Leopard, to force it to run in 32-bit mode
0168 pde (1.0.6)
X suggest declaring PDF's members protected
-X http://dev.processing.org/bugs/show_bug.cgi?id=1276
+X https://download.processing.org/bugzilla/1276.html
X update Info.plist to be 32/64 explicit and also the stubs for update 4
X problems with jogl expired certificates
X https://jogl.dev.java.net/servlets/ProjectDocumentList?folderID=9260&expandFolder=9260&folderID=0
-X http://dev.processing.org/bugs/show_bug.cgi?id=1271
+X https://download.processing.org/bugzilla/1271.html
X preferences.txt selectable (or open parent folder)
X but probably needs to prevent people from editing while in use
-X http://dev.processing.org/bugs/show_bug.cgi?id=1279
+X https://download.processing.org/bugzilla/1279.html
X Auto format problem with program deeper then 10 levels
-X http://dev.processing.org/bugs/show_bug.cgi?id=1297
+X https://download.processing.org/bugzilla/1297.html
X fix a crash on startup problem (console being null)
X Recursive subfolder copy when exporting application
-X http://dev.processing.org/bugs/show_bug.cgi?id=1295
+X https://download.processing.org/bugzilla/1295.html
X java update 15 for windows and linux
fixed earlier (java 6 update)
X mangled menu text with java 6u10
o need to try adding the d3d flag to the .exe
-X http://dev.processing.org/bugs/show_bug.cgi?id=1065
+X https://download.processing.org/bugzilla/1065.html
o -Dsun.java2d.noddraw=true
contributed
X can't launch from a symlink in /usr/bin
-X http://dev.processing.org/bugs/show_bug.cgi?id=825
+X https://download.processing.org/bugzilla/825.html
X fixed by Ferdinand Kasper of Vienna
0167 pde (1.0.5)
X fix tab key and focus issue in the editor
-X http://dev.processing.org/bugs/show_bug.cgi?id=1267
+X https://download.processing.org/bugzilla/1267.html
X Support for smooth text in the PDE editor
-X http://dev.processing.org/bugs/show_bug.cgi?id=1266
+X https://download.processing.org/bugzilla/1266.html
X duplicate entries for sketchbook in the file menu
-X http://dev.processing.org/bugs/show_bug.cgi?id=1260
+X https://download.processing.org/bugzilla/1260.html
0166 pde (1.0.4)
@@ -6570,18 +6570,18 @@ X try adding a space to the name of the help menu for beachball problems
X this works, might be useful to make the switch (done)
X remove isManagingFocus problem inside JEditTextArea
X IDE crashed when changing color scheme on windows
-X http://dev.processing.org/bugs/show_bug.cgi?id=1237
+X https://download.processing.org/bugzilla/1237.html
X space in front of linux shell script prevents it from running
-X http://dev.processing.org/bugs/show_bug.cgi?id=1250
+X https://download.processing.org/bugzilla/1250.html
X macosx finder info on application says 1.0.1 for 1.0.3
X fix build script to catch this / make it update the file
-X http://dev.processing.org/bugs/show_bug.cgi?id=1226
+X https://download.processing.org/bugzilla/1226.html
X update to java 6u13 on windows
X fix error message "Non-String for 8 value in 'Properties' sub-dictionary in 'Java' sub-dictionary of Info.plist"
X -X option not supported in 10.4
-X http://dev.processing.org/bugs/show_bug.cgi?id=1179
+X https://download.processing.org/bugzilla/1179.html
X Slow response or spinning wheel from the menu bar on Mac OS X
-X http://dev.processing.org/bugs/show_bug.cgi?id=786
+X https://download.processing.org/bugzilla/786.html
X disable sketchbook and examples menus on os x?
X update to java 6u14 on windows
X update to java 6u14 on linux
@@ -6593,62 +6593,62 @@ X no changes in this release
0164 pde (1.0.2)
X Empty "code" folder causes problems with Export
-X http://dev.processing.org/bugs/show_bug.cgi?id=1084
+X https://download.processing.org/bugzilla/1084.html
X 8.3 filenames being used when opening sketch
-X http://dev.processing.org/bugs/show_bug.cgi?id=1089
+X https://download.processing.org/bugzilla/1089.html
X add -X switch to cp on osx build so that extended attrs are not copied
-X http://dev.processing.org/bugs/show_bug.cgi?id=1098
+X https://download.processing.org/bugzilla/1098.html
X add JVMArchs to Info.plist so that stupid Apple error msg doesn't appear
X StringIndexOutOfBoundsException caused by import statements with no dots
-X http://dev.processing.org/bugs/show_bug.cgi?id=1145
+X https://download.processing.org/bugzilla/1145.html
X Pressing in "Are you sure you want to Quit?" dialog quits Processing
-X http://dev.processing.org/bugs/show_bug.cgi?id=1134
+X https://download.processing.org/bugzilla/1134.html
X Fix QUADS and QUAD_STRIP with P2D
-X http://dev.processing.org/bugs/show_bug.cgi?id=1162
+X https://download.processing.org/bugzilla/1162.html
X ArrayIndexOutOfBoundsException when drawing curves in P3D and OPENGL
-X http://dev.processing.org/bugs/show_bug.cgi?id=1153
+X https://download.processing.org/bugzilla/1153.html
X problems with negatve arc() angles in OpenGL, P3D, other inconsistencies
-X http://dev.processing.org/bugs/show_bug.cgi?id=1095
+X https://download.processing.org/bugzilla/1095.html
invalid
X Sketchbook sub-menu is empty after changing Sketchbook location preference
-X http://dev.processing.org/bugs/show_bug.cgi?id=1123
+X https://download.processing.org/bugzilla/1123.html
X something about setting memory options
-X http://dev.processing.org/bugs/show_bug.cgi?id=1159
+X https://download.processing.org/bugzilla/1159.html
X something bizarre about syntax errors
-X http://dev.processing.org/bugs/show_bug.cgi?id=1161
+X https://download.processing.org/bugzilla/1161.html
X "JDWP unable to initialize: Error 111 from JNI GetEnv" on Mac OS X PPC
-X http://dev.processing.org/bugs/show_bug.cgi?id=959
+X https://download.processing.org/bugzilla/959.html
X Saving sketch with the same name as a class or primitive breaks sketch
-X http://dev.processing.org/bugs/show_bug.cgi?id=1165
+X https://download.processing.org/bugzilla/1165.html
earlier
X "An error occurred while starting the application" with Processing 0154+
X Maybe provide the old exe or another alternative?
X Have someone try this on lab machines until we can find one that breaks
-X http://dev.processing.org/bugs/show_bug.cgi?id=986
+X https://download.processing.org/bugzilla/986.html
0163 pde (1.0.1)
X ArrayIndexOutOfBoundsException with File > New (Processing 1.0)
X maybe a /tmp permissions problem?
X are we not checking errors properly on this route?
-X http://dev.processing.org/bugs/show_bug.cgi?id=1067
+X https://download.processing.org/bugzilla/1067.html
X need to look into why this didn't give a better error message
X "[JavaAppLauncher Error] CallStaticVoidMethod() threw an exception"
X on startup with OS X
-X http://dev.processing.org/bugs/show_bug.cgi?id=1063
-X http://dev.processing.org/bugs/show_bug.cgi?id=1078
+X https://download.processing.org/bugzilla/1063.html
+X https://download.processing.org/bugzilla/1078.html
X Fix some "An error occurred while starting the application" problems
X due to the weird sketch folder naming issue
X implement multi-line tab via tab key (also outdent)
o add preference for indent size
X the bracket isn't working on osx because of an apple menu bug
-X http://dev.processing.org/bugs/show_bug.cgi?id=1075
+X https://download.processing.org/bugzilla/1075.html
X "editor.indent" setting does not work properly
-X http://dev.processing.org/bugs/show_bug.cgi?id=1073
+X https://download.processing.org/bugzilla/1073.html
X "space-import-space-quote-semicolon" Causes Error in String or Comment
-X http://dev.processing.org/bugs/show_bug.cgi?id=1064
+X https://download.processing.org/bugzilla/1064.html
X the changes page doesn't have a toc entry for the 1.0 release notes
X add minim to the changes page
@@ -6657,7 +6657,7 @@ X add minim to the changes page
X update revisions.html
X write revisions.txt
X in 0149, removed /System/Library/Java
-X http://dev.processing.org/bugs/show_bug.cgi?id=1045
+X https://download.processing.org/bugzilla/1045.html
X do we need to shore up server setup for 1.0 release pounding?
o what's the deal with disk space?
o update known problems reference
@@ -6671,7 +6671,7 @@ X fix dist scripts so that the name "1.0" can be used
X Ignore dot files (.DS_Store), dot folders (.svn) while copying
X on mac, window opens to prevent quit on close
X but the window is not properly set as untitled
-X http://dev.processing.org/bugs/show_bug.cgi?id=700
+X https://download.processing.org/bugzilla/700.html
X doesn't need to be fixed because of new setup for closing
@@ -6698,12 +6698,12 @@ o why is quaqua making the error window enormous?
X not sure why, but just inserted
elements to fix it
X write revisions.txt updates based on 0158 changes
X Error after creating more than 26 temporary sketches in one day
-X http://dev.processing.org/bugs/show_bug.cgi?id=1039
+X https://download.processing.org/bugzilla/1039.html
X AIOOBE when you get to z on new sketches
X improve export application window layout spacing (osx)
X also disable stop button item when full screen not selected
o Focus not returning to editor properly on Linux
-X http://dev.processing.org/bugs/show_bug.cgi?id=1031
+X https://download.processing.org/bugzilla/1031.html
X can't get this to replicate
in previous release (0158)
@@ -6715,7 +6715,7 @@ X update to java 6u10 for linux and windows
0158 pde
X missing semicolons - better error message
-o http://dev.processing.org/bugs/show_bug.cgi?id=12
+o https://download.processing.org/bugzilla/12.html
o need to highlight the previous line as well (or instead)
X clean up some of the new/open code internally
X export to application options dialog
@@ -6743,7 +6743,7 @@ X this seems to have fixed itself
X change windows and linux to use jdk 6u10
X pressing run turns up nothing
o (in particular while cpu load is a little higher on g5?)
-o http://dev.processing.org/bugs/show_bug.cgi?id=852
+o https://download.processing.org/bugzilla/852.html
o this may just be a macosx (ppc?) bug
o check if platform is MACOSX and font is monospaced (?)
o if so, nuke the setting and change it back to Monaco
@@ -6763,9 +6763,9 @@ X also deal with hint() changes
0157 pde
X show sketch folder fails for directories containing umlauts
-X http://dev.processing.org/bugs/show_bug.cgi?id=1010
+X https://download.processing.org/bugzilla/1010.html
X Find in Reference does not open Firefox in 0156 for Linux
-X http://dev.processing.org/bugs/show_bug.cgi?id=1012
+X https://download.processing.org/bugzilla/1012.html
X add error message when trying to open sketch from the menu
X check into use of platform names in export sketch / export application
X opting not to deal with this because of size of populations
@@ -6778,36 +6778,36 @@ X fix typo in sketch renaming notice message
X line numbers not showing up for unknown var or class names
o "anything named" error is weird
X don't open more than one "create font" or "color selector"
-X http://dev.processing.org/bugs/show_bug.cgi?id=830
+X https://download.processing.org/bugzilla/830.html
X make processing tools use the tools api
-X http://dev.processing.org/bugs/show_bug.cgi?id=886
+X https://download.processing.org/bugzilla/886.html
X rename GettingStarted_Shape example
invalid
o launch4j "An error occurred while starting the application"
-o http://dev.processing.org/bugs/show_bug.cgi?id=986
+o https://download.processing.org/bugzilla/986.html
o tabs menu not working on osx ppc (can't confirm)
-o http://dev.processing.org/bugs/show_bug.cgi?id=993
+o https://download.processing.org/bugzilla/993.html
0155 pde
X "Save canceled" message when saving untitled sketches without first renaming
-X http://dev.processing.org/bugs/show_bug.cgi?id=987
+X https://download.processing.org/bugzilla/987.html
X when saving a sketch over itself with "Save As", just do "Save" instead
X fix loadShape() transformation parsing and empty paths (thanks ricardmp)
-X http://dev.processing.org/bugs/show_bug.cgi?id=982
+X https://download.processing.org/bugzilla/982.html
X moviemaker can't make exact 30fps output
-X http://dev.processing.org/bugs/show_bug.cgi?id=988
+X https://download.processing.org/bugzilla/988.html
X automatically create and open the 'libraries' folder when there's an error
0154 pde
X clean up PATH for users who have garbage in the PATH
-X http://dev.processing.org/bugs/show_bug.cgi?id=974
+X https://download.processing.org/bugzilla/974.html
X disallow .java tabs with same name as the sketch
X a .java tab with same name as the sketch is allowed (oog!)
X particularly look at "save as" scenario
-X http://dev.processing.org/bugs/show_bug.cgi?id=543
+X https://download.processing.org/bugzilla/543.html
X bug report:
X create a new sketch, write something in it
X create a new tab, name it "something.java", write something into it
@@ -6816,34 +6816,34 @@ X the contents in the files are not the same, but the main-tab is
X showing the contents of the .java tab, so if you press save
X you will overwrite your original code from the main-tab.
X com.sun.jdi.AbsentInformationException when running a sketch
-X http://dev.processing.org/bugs/show_bug.cgi?id=971
+X https://download.processing.org/bugzilla/971.html
cleaning
X processing cancels shutdown on mac os x
-X http://dev.processing.org/bugs/show_bug.cgi?id=539
+X https://download.processing.org/bugzilla/539.html
X fixed in an older version
X jikes bugs mean some code just won't compile:
X include javac? would this be a good solution for linux?
-X http://dev.processing.org/bugs/show_bug.cgi?id=8
+X https://download.processing.org/bugzilla/8.html
X an empty .java tab will throw an error
-X http://dev.processing.org/bugs/show_bug.cgi?id=10
+X https://download.processing.org/bugzilla/10.html
X warn about writing non-1.1 code.
-X http://dev.processing.org/bugs/show_bug.cgi?id=11
+X https://download.processing.org/bugzilla/11.html
X java.lang.NoClassDefFoundError: quicktime/std/StdQTException
X people not installing qt? no QTJAVA set?
-X http://dev.processing.org/bugs/show_bug.cgi?id=669
+X https://download.processing.org/bugzilla/669.html
o simulate this by removing qtjava.zip, then make a handler for it
o which will open the reference for it
X use the registry key, and warn the user when it's not there
X mouse wheel broken in the text editor? (windows jdk 1.5?)
-X http://dev.processing.org/bugs/show_bug.cgi?id=24
+X https://download.processing.org/bugzilla/24.html
0153 pde
X delete files before adding, otherwise case changes are not preserved
-X http://dev.processing.org/bugs/show_bug.cgi?id=969
+X https://download.processing.org/bugzilla/969.html
X ClassNotFoundException: quicktime.std.StdQTException with release 0152
-X http://dev.processing.org/bugs/show_bug.cgi?id=970
+X https://download.processing.org/bugzilla/970.html
previous
o put the "had to rename sketch" message in the msg bar
@@ -6853,28 +6853,28 @@ X just print it to the console
0152 pde
X movie.read() breaking, which breaks the examples
-X http://dev.processing.org/bugs/show_bug.cgi?id=961
+X https://download.processing.org/bugzilla/961.html
X movie width/height broken
-X http://dev.processing.org/bugs/show_bug.cgi?id=962
+X https://download.processing.org/bugzilla/962.html
0151 pde
o Fix error message spew on Linux when using "Save As"
-X http://dev.processing.org/bugs/show_bug.cgi?id=951
+X https://download.processing.org/bugzilla/951.html
X can't fix, it's a sun bug
X Change sketch naming error to only print to the console
0150 pde
X ArrayIndexOutOfBoundsException after pressing Run with release 0149
-X http://dev.processing.org/bugs/show_bug.cgi?id=949
+X https://download.processing.org/bugzilla/949.html
X update java to release 1.6.0_07 on windows and linux
-X http://dev.processing.org/bugs/show_bug.cgi?id=950
+X https://download.processing.org/bugzilla/950.html
0149 pde
X fix problem with error line highlighting
-X http://dev.processing.org/bugs/show_bug.cgi?id=888
+X https://download.processing.org/bugzilla/888.html
X additional cleanup to various Sketch, Runner, Compiler classes
X preproc cleanup
X remove various preproc imports
@@ -6883,7 +6883,7 @@ X use accurate line numbering internally rather than mashing lines in preproc
X remove preprocName
X remove appletClassName
X command line support
-X http://dev.processing.org/bugs/show_bug.cgi?id=219
+X https://download.processing.org/bugzilla/219.html
o would still require awt, but would take a sketch on cmd line
X modify showError() et al to not use awt when running from command line
X build it and then exit
@@ -6891,23 +6891,23 @@ X notations have been added to the bug report that cover the plw changes
X also an option to launch p5, load a sketch and run it
X command to launch p5, load sketch and run in present mode
X not that useful because users should just use export application
-X http://dev.processing.org/bugs/show_bug.cgi?id=889
+X https://download.processing.org/bugzilla/889.html
X Toolmenu won't show until I compile Mangler
-X http://dev.processing.org/bugs/show_bug.cgi?id=892
+X https://download.processing.org/bugzilla/892.html
X update quaqua to 4.4.7 on macosx (http://www.randelshofer.ch/quaqua/)
X now supports 10.5 an 64 bit jnilib
X add note to prefs dialog that multiple jar export only works w/o libs
-X http://dev.processing.org/bugs/show_bug.cgi?id=907
+X https://download.processing.org/bugzilla/907.html
X transport error 202
-X http://dev.processing.org/bugs/show_bug.cgi?id=895
+X https://download.processing.org/bugzilla/895.html
X renaming the main tab adds .pde to the sketch folder name 0148
-X http://dev.processing.org/bugs/show_bug.cgi?id=922
+X https://download.processing.org/bugzilla/922.html
X not always updating on rename (maybe a mac problem?)
-X http://dev.processing.org/bugs/show_bug.cgi?id=56
+X https://download.processing.org/bugzilla/56.html
X error messages not clearing the message area
-X http://dev.processing.org/bugs/show_bug.cgi?id=912
+X https://download.processing.org/bugzilla/912.html
o expecting EOF, found 'void?
-o http://dev.processing.org/bugs/show_bug.cgi?id=905
+o https://download.processing.org/bugzilla/905.html
o last fixed 5/30, maybe check the svn for those two days
o this might be the MULTILINE mess
X was a typo in the code
@@ -6917,13 +6917,13 @@ X add "environment" to the help menu
X fix other instances of match() using the wrong array indices
X add additional newline hack so that autoformat complains less
X video capture problems with opengl (on mac os x)
-X http://dev.processing.org/bugs/show_bug.cgi?id=882
+X https://download.processing.org/bugzilla/882.html
X sketch export results in 100x100 default size, regardless of size() setting
-X http://dev.processing.org/bugs/show_bug.cgi?id=945
+X https://download.processing.org/bugzilla/945.html
X third tab throws NullPointerException
-X http://dev.processing.org/bugs/show_bug.cgi?id=940
+X https://download.processing.org/bugzilla/940.html
o sketch must be saved to use a constructor
-X http://dev.processing.org/bugs/show_bug.cgi?id=929
+X https://download.processing.org/bugzilla/929.html
X reference bug, example cannot have same name as an inner class
structural
@@ -6956,7 +6956,7 @@ o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs
o if size() not found in export/compile, ask the user
o have size(myWidth, myHeight) set a static var in PGraphics
o for the last size that was used, use as default for fill-in field
-o http://dev.processing.org/bugs/show_bug.cgi?id=64
+o https://download.processing.org/bugzilla/64.html
X using beginGL().. also import javax.media.opengl.*;
o lighting will not work
o move stuff about getting gl object and java2d stuff here
@@ -6988,13 +6988,13 @@ X update match(), write new reference for matchAll()
windows launcher
X windows jdk sometimes not getting picked up, even if it's there
X notes somewhere about choosing the right jvm...
-X http://dev.processing.org/bugs/show_bug.cgi?id=878
+X https://download.processing.org/bugzilla/878.html
X finding older versions of java on windows
-X http://dev.processing.org/bugs/show_bug.cgi?id=545
+X https://download.processing.org/bugzilla/545.html
o eclipse launcher for windows
o http://dev.eclipse.org/viewcvs/index.cgi/platform-launcher/library/win32/eclipseWin.c?view=markup&content-type=text%2Fvnd.viewcvs-markup&revision=1.12
X make .pde files double-clickable from windows
-X http://dev.processing.org/bugs/show_bug.cgi?id=683
+X https://download.processing.org/bugzilla/683.html
X on drag, are these already passed to argv[]?
o http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/getcommandline.asp
o http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/programmersguide/shell_basics/shell_basics_extending/fileassociations/fa_intro.asp
@@ -7043,11 +7043,11 @@ X add tools folder to make and dist scripts
0147 pde
X inside Sketch.java, don't hardwire the file extension types
X arduino uses .c, .cpp, .h instead of .java
-X http://dev.processing.org/bugs/show_bug.cgi?id=807
+X https://download.processing.org/bugzilla/807.html
X major changes to save/save as/rename setup - keep an eye out
X need to add local java folder to path on linux
X otherwise if no linux installed, complaining that no java found
-X http://dev.processing.org/bugs/show_bug.cgi?id=879
+X https://download.processing.org/bugzilla/879.html
tools
X refactor code to use more getter/setter methods
@@ -7078,7 +7078,7 @@ X get/setSelStart/End
X get/setSelText
X get/setText
X make dynamically loaded plugins and "tools" menu
-X http://dev.processing.org/bugs/show_bug.cgi?id=124
+X https://download.processing.org/bugzilla/124.html
X tools api:
X init() -> run when p5 is first launched
o isAvailable() -> true/false whether the option should be dimmed
@@ -7108,7 +7108,7 @@ X and getting the error to show up in the window inside p5
X also highlighting the correct line
X Exceptions not being reported properly to the PDE
X lines with errors not highlighting
-X http://dev.processing.org/bugs/show_bug.cgi?id=877
+X https://download.processing.org/bugzilla/877.html
X was ok in 0144, but 0145 things broke
X probably b/c not catching ex inside the run() method
X getMessage() not sufficient for exceptions coming through
@@ -7123,15 +7123,15 @@ cleaning
X NullPointerException inside setup() comes up weird
X because NullPointerException is a RuntimeException
X maybe the renderer exception is something different? newrendex?
-X http://dev.processing.org/bugs/show_bug.cgi?id=78
+X https://download.processing.org/bugzilla/78.html
o weird exception in the run button watcher
X http://processing.org/bugs/show_bug.cgi?id=42
X exceptions in draw() apps aren't caught
X the program resize(200, 200); just does nothing (doesn't complain)
-X http://dev.processing.org/bugs/show_bug.cgi?id=81
+X https://download.processing.org/bugzilla/81.html
X exception in setup() on external app doesn't kill run button
X also doesn't kill external vm
-X http://dev.processing.org/bugs/show_bug.cgi?id=79
+X https://download.processing.org/bugzilla/79.html
X fixed in the 0140s
o make editor nicer
o tab on selection indents whole block
@@ -7153,7 +7153,7 @@ X write revisions.txt entry that covers changes since 0135
X format for discourse is ignoring the selection
X also shouldn't add (so much) extra space to the beginning and end
o add tool for running in jview
-o http://dev.processing.org/bugs/show_bug.cgi?id=142
+o https://download.processing.org/bugzilla/142.html
o calls export, or only available after export (or when an applet dir exists)
o warn user that applet html will be over-written
X no longer supporting 1.1
@@ -7161,7 +7161,7 @@ X on startup, make sure that the jdi classes are available
X if not, tell the user to install a friggin jdk
X this way we can release a windows version w/o java
X don't open more than one copy of the preferences window
-X http://dev.processing.org/bugs/show_bug.cgi?id=830
+X https://download.processing.org/bugzilla/830.html
X modify namespace handling in xml lib
X changed getFullName() to getName()
X changed getName() to getLocalName()
@@ -7171,9 +7171,9 @@ text handling
X block comment - don't bother with last line if starting it
X (same behavior as eclipse)
X add block comment to right-click menu
-X http://dev.processing.org/bugs/show_bug.cgi?id=840
+X https://download.processing.org/bugzilla/840.html
X add increase/decrease indent to edit and right-click edit menu
-X http://dev.processing.org/bugs/show_bug.cgi?id=841
+X https://download.processing.org/bugzilla/841.html
fix problems with vm crashing errors (OutOfMemoryError, etc)
o too many NPEs on loadimage may freeze the app (visualizar example?)
@@ -7188,38 +7188,38 @@ o this is particularly bad with threaded applications
0143 pde
X fixed build problems with macosx and linux, thanks to reports
o need to compare with localized version of javac strings
-X http://dev.processing.org/bugs/show_bug.cgi?id=828
+X https://download.processing.org/bugzilla/828.html
X just moving to ecj instead of javac
X preproc code showing through since it's on line 0:
-X http://dev.processing.org/bugs/show_bug.cgi?id=831
+X https://download.processing.org/bugzilla/831.html
X also need to handle "unexpected type" error in that example
X "Target VM failed to initialize: VM initialization failed" when trying to run
-X http://dev.processing.org/bugs/show_bug.cgi?id=796
+X https://download.processing.org/bugzilla/796.html
X add better error message for memory too high
0142 pde
X fix "cannot parse error text" with duplicate var declaration
X also found that errors were continuing to process after the first
-X http://dev.processing.org/bugs/show_bug.cgi?id=820
+X https://download.processing.org/bugzilla/820.html
X web colors < 6 chars produce bizarre error:
-X http://dev.processing.org/bugs/show_bug.cgi?id=196
+X https://download.processing.org/bugzilla/196.html
X fix a problem with errors that are at the end of the codea
0141 pde
X hide javac warning messages
X "xxxx xxxx uses unsafe operations.", "recompile with -Xlint:xxxx"
-X http://dev.processing.org/bugs/show_bug.cgi?id=817
+X https://download.processing.org/bugzilla/817.html
X move copy for discourse into the edit menu (ctrl-shift-c)
X nanoxml getChildren() et al should use getFullName() not getName()
-X http://dev.processing.org/bugs/show_bug.cgi?id=813
+X https://download.processing.org/bugzilla/813.html
charset changes
X make sure that export is using utf8 for writing the .pde files etc
X should be primarily loadFile() and saveFile() inside Base
X change pde files to use utf8
-X http://dev.processing.org/bugs/show_bug.cgi?id=743
+X https://download.processing.org/bugzilla/743.html
o 1) if file contains binary data and
o 2) its mod date is earlier than when p5 0125 was installed
o point the user to Tools -> Reload sketch with local encoding
@@ -7232,24 +7232,24 @@ X need to specify the default encoding
fixed earlier
X stop button sometimes causes lockups when libraries or code folder is in use
-X http://dev.processing.org/bugs/show_bug.cgi?id=126
+X https://download.processing.org/bugzilla/126.html
0140 pde
X fallback locations for sketchbook and data folders are disabled
X move openFolder, openFolderAvailable, openURL to Platform classes
X can't get documents/prefs folder on vista
-X http://dev.processing.org/bugs/show_bug.cgi?id=585
+X https://download.processing.org/bugzilla/585.html
X closing until further notice
o vista disables aero theme when p5 is run
o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1196016889
X can't seem to verify this
X occasional division by zero on windows
-X http://dev.processing.org/bugs/show_bug.cgi?id=777
+X https://download.processing.org/bugzilla/777.html
X should be fixed, but need to verify once a release candidate is ready
X two fixes for readBytesUntil() and bufferUntil()
X also not calling serialEvent()
-X http://dev.processing.org/bugs/show_bug.cgi?id=96
+X https://download.processing.org/bugzilla/96.html
X fix goof with console preference in preferences.txt
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1213042400
X need to add usequartz when running externally?
@@ -7266,9 +7266,9 @@ X use proper external launcher via debugger api
X http://java.sun.com/javase/technologies/core/toolsapis/jpda/
X small gray gap shows up in color picker
X getMaximumSize() not being respected on Windows (Linux?)
-X http://dev.processing.org/bugs/show_bug.cgi?id=310
+X https://download.processing.org/bugzilla/310.html
X same as bug #656
-X http://dev.processing.org/bugs/show_bug.cgi?id=656
+X https://download.processing.org/bugzilla/656.html
further cleanup for simpler building (refactor lots of Base)
o settings.path.fallback not being used
@@ -7283,7 +7283,7 @@ X even though that location might exist already (just word it better)
X "changing back to default sketchbook location"
X move tools.jar into jre/lib folder
X implement windows registry lookups via reflection
-X http://dev.processing.org/bugs/show_bug.cgi?id=723
+X https://download.processing.org/bugzilla/723.html
X or move to jna for registry?
X https://jna.dev.java.net/source/browse/jna/trunk/jnalib/contrib/ntservice/src/jnacontrib/win32/Registry.java?rev=293&view=markup
X remove libs from build/shared that are in app/lib
@@ -7297,30 +7297,30 @@ X make.sh creating work/lib dirs.. no longer necessary?
wontfix
X Programs run with release 0136+ are sometimes slower due to Java 1.5
-X http://dev.processing.org/bugs/show_bug.cgi?id=798
+X https://download.processing.org/bugzilla/798.html
0139 pde
X update quaqua to 3.9.5 on macosx (http://www.randelshofer.ch/quaqua/)
X xml.getIntAttribute() returns a float
-X http://dev.processing.org/bugs/show_bug.cgi?id=790
+X https://download.processing.org/bugzilla/790.html
X include memory settings with exported applications on macosx
-X http://dev.processing.org/bugs/show_bug.cgi?id=803
+X https://download.processing.org/bugzilla/803.html
X error highlighting broken
-X http://dev.processing.org/bugs/show_bug.cgi?id=795
+X https://download.processing.org/bugzilla/795.html
0138 pde
X importing a library results in "expecting EOF, found ..." error
-X http://dev.processing.org/bugs/show_bug.cgi?id=788
+X https://download.processing.org/bugzilla/788.html
X remove console variable from preferences.txt
X run only works with primary window in 0136, 0137
-X http://dev.processing.org/bugs/show_bug.cgi?id=784
+X https://download.processing.org/bugzilla/784.html
X throwing a stackoverflowexception because the console is broken
o hint(ENABLE_AUTO_GUNZIP) or rather hint(DISABLE_AUTO_GUNZIP)
X cannot do this because hint() lives in PGraphics, this is PApplet
X code folder being ignored on export to application
-X http://dev.processing.org/bugs/show_bug.cgi?id=469
+X https://download.processing.org/bugzilla/469.html
X fixed in release 0137
X remove debug messages from export
@@ -7331,13 +7331,13 @@ X 1) a lib is in use, 2) code folder, 3) multiple files
X remove oro.jar dependency (not needed with PApplet.match)
X this is kind of messy and requires a bit of testing to ensure proper
X sometimes huge jar files when exporting with a code folder
-X http://dev.processing.org/bugs/show_bug.cgi?id=541
+X https://download.processing.org/bugzilla/541.html
X applet export with multiple jars having trouble (related?)
-X http://dev.processing.org/bugs/show_bug.cgi?id=701
+X https://download.processing.org/bugzilla/701.html
X applet export fails with opengl/code folder
-X http://dev.processing.org/bugs/show_bug.cgi?id=714
+X https://download.processing.org/bugzilla/714.html
X synchronized (something) { } is horking up the preproc
-X http://dev.processing.org/bugs/show_bug.cgi?id=136
+X https://download.processing.org/bugzilla/136.html
o inside the preproc
o change the arrays of default imports (now using 1.5+, so no 1.1,1.3,1.4)
X don't bother, they're cumulative
@@ -7346,27 +7346,27 @@ X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=os_core_pde;action=
X update preferences.txt whenever opening/closing
X otherwise recovery from restart can be annoying
X fix classpath problem with processing.exe
-X http://dev.processing.org/bugs/show_bug.cgi?id=780
+X https://download.processing.org/bugzilla/780.html
0136 pde
X fix XMLElement(String s), had a bad constructor
X color selector not drawing properly (fix thanks to fli)
-X http://dev.processing.org/bugs/show_bug.cgi?id=656
+X https://download.processing.org/bugzilla/656.html
X color selector broken on vista (no colors at all)
-X http://dev.processing.org/bugs/show_bug.cgi?id=584
+X https://download.processing.org/bugzilla/584.html
X added fonts, quadratic curves to svg
X need to remove the font stuff, also the changes for 'public'
X move my edits into a subclass
o Capture.settings() mangles external iSight image
X fixed in newer qtjava
-o http://dev.processing.org/bugs/show_bug.cgi?id=496
+o https://download.processing.org/bugzilla/496.html
X add to p5 app bundle
X mention re: apple slowness
X -Dapple.awt.graphics.UseQuartz=true
X net library dies unceremoniously on "Connection Refused"
X just need to catch another exception
-X http://dev.processing.org/bugs/show_bug.cgi?id=751
+X https://download.processing.org/bugzilla/751.html
X ctrl-/ to comment block
X eeepc support for environment:
X splitPane.setMinimumSize(new Dimension(600, 600));
@@ -7374,9 +7374,9 @@ X change to: splitPane.setMinimumSize(new Dimension(600, 400));
o prolly need to have a param for this guy
X switch to nanoxml instead of nanoxml-lite (29k vs. 5k)
X check against ods
-X http://dev.processing.org/bugs/show_bug.cgi?id=757
+X https://download.processing.org/bugzilla/757.html
X space after OPENGL param breaks export
-X http://dev.processing.org/bugs/show_bug.cgi?id=769
+X https://download.processing.org/bugzilla/769.html
X svg demos are broken
X because of weird ENTITY setup
X because of weird (default?) filling problem
@@ -7468,7 +7468,7 @@ X we'll support 1.5 a little more now, but only libraries, not syntax
X no support for java 1.6 anytime soon
X to use 1.5+ syntax, use p5 embedded in eclipse
X what's with this fill() bug?
-X http://dev.processing.org/bugs/show_bug.cgi?id=468
+X https://download.processing.org/bugzilla/468.html
X background() also not making it through to raw recorder
X this should be fixed, just double-check
X add option to prefs to override memory settings
@@ -7483,19 +7483,19 @@ X probably need to traverse into xml and candy folders.. others?
0134 pde
X fix problem with fractional px sizes and adobe cs3
-X http://dev.processing.org/bugs/show_bug.cgi?id=667
+X https://download.processing.org/bugzilla/667.html
X fix candy bug where width/height were undefined if "px" was used
X some svg files include "px" in the width/height parameters
X shortcuts in tab menu should use shift
X remove shortcut for rename, and use ctrl-shift-n for new tab
-X http://dev.processing.org/bugs/show_bug.cgi?id=665
+X https://download.processing.org/bugzilla/665.html
X fix problem with "save as" under linux
X say that quicktime 6 is no longer supported
X winvdig issues?
X add note that "quicktime alternative" is not sufficient
X problems with serial on leopard
X grab rxtx libraries from arduino, they've disabled locking
-X http://dev.processing.org/bugs/show_bug.cgi?id=227
+X https://download.processing.org/bugzilla/227.html
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Electronics;action=display;num=1193459849
X add note to reference about close/quit behavior
X also add note that export will delete folders
@@ -7505,7 +7505,7 @@ X lots of additional ref changes for array functions
0133 pde
X fix problem with 'cancel' on "move sketch, create folder, continue"? msg
-X http://dev.processing.org/bugs/show_bug.cgi?id=658
+X https://download.processing.org/bugzilla/658.html
o archive sketch shouldn't include applet or application dirs
o or should it? this was how projects were being uploaded for class...
X ESC won't cancel rename
@@ -7534,12 +7534,12 @@ X add note about gcj/gij to the platform notes
o when writing javadoc for p5 sketches, only write from first tab
X already was using code[0]
X processing.video not working on windows in 126 through 130
-X http://dev.processing.org/bugs/show_bug.cgi?id=654
+X https://download.processing.org/bugzilla/654.html
X auto-delete of sketches might be dangerous
X and probably no longer necessary
X should toolbar new/open replace the items in the current window?
X closing last sketch window... open an untitled document?
-X http://dev.processing.org/bugs/show_bug.cgi?id=634
+X https://download.processing.org/bugzilla/634.html
X when opening from the toolbar, replaces items in that window
X when new/open from menu, creates a new window
o don't bug the user about new release of p5 when they have it
@@ -7555,10 +7555,10 @@ X add server/client notification thing for the nyu guys
X add an event to Server that notifies when a Client disconnects
X add docs for disconnectEvent for Client
X proccessing.net.Client.write(int) terminates sketch when client disconnects.
-X http://dev.processing.org/bugs/show_bug.cgi?id=537
+X https://download.processing.org/bugzilla/537.html
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=LibraryProblems;action=display;num=1180713192
X Server.write(bytes[]) hangs sketch on client disconnect.
-X http://dev.processing.org/bugs/show_bug.cgi?id=538
+X https://download.processing.org/bugzilla/538.html
o move the useful serial buffering fxns into net library
X make the Client list public
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1116056805
@@ -7597,7 +7597,7 @@ X though this will only happen when the prefs file is deleted
X mark untitled sketches as modified when adding files
X opening an already open sketch will result in two identical sketches open
X just bring the other window to the front
-X http://dev.processing.org/bugs/show_bug.cgi?id=636
+X https://download.processing.org/bugzilla/636.html
X replace untitled windows with opened sketches
X but do so without opening a new window and hiding the other
X re-enable update check (0126 wasn't reporting anything.. ugh)
@@ -7613,7 +7613,7 @@ o or in the sketchbook in a subfolder named 'libraries'?
o what should the policy be?
X keywords.txt needs revamp
X CLOSE is missing
-X http://dev.processing.org/bugs/show_bug.cgi?id=637
+X https://download.processing.org/bugzilla/637.html
X syntax highlighting
X add MIN_FLOAT, MAX_FLOAT, MIN_INT, MAX_INT
X match() method
@@ -7629,7 +7629,7 @@ X http://processing.org/bugs/show_bug.cgi?id=41
0126 pde
o support for hashmap<> with 1.5 syntax
-o http://dev.processing.org/bugs/show_bug.cgi?id=459
+o https://download.processing.org/bugzilla/459.html
X handle open/sketchbook/examples differently
X move examples folder to top-level menu
X move open menu to its own
@@ -7640,16 +7640,16 @@ X added getChild(name/path), getChildren(name/path) to xml library
o add notes about these to the reference
o needs a better example that includes subitems
X fix problem with export.txt files not working
-X http://dev.processing.org/bugs/show_bug.cgi?id=625
+X https://download.processing.org/bugzilla/625.html
X readStringUntil broken in net library
-X http://dev.processing.org/bugs/show_bug.cgi?id=606
+X https://download.processing.org/bugzilla/606.html
X add imageicon for the find dialog
X also the tools menu items and preferences
-X http://dev.processing.org/bugs/show_bug.cgi?id=627
+X https://download.processing.org/bugzilla/627.html
X fix problem with ctrl-, typing a comma on linux
X on linux, drag and drop didn't accept
X gets a zillion different items that come in
-X http://dev.processing.org/bugs/show_bug.cgi?id=595
+X https://download.processing.org/bugzilla/595.html
X show sketch folder on linux
X fix for release 0126
X add notes to the docs about how to fix if not working
@@ -7698,24 +7698,24 @@ X make clear that open() with one param should only have a single param
0125 pde
X prev/next tab conflicting with typing brackets on french macs
-X http://dev.processing.org/bugs/show_bug.cgi?id=480
+X https://download.processing.org/bugzilla/480.html
X update javadoc reference to include xml, candy, etc
X update to 1.4.2_12 on linux and windows
X export to web, wrong character encoding in html
-X http://dev.processing.org/bugs/show_bug.cgi?id=474
+X https://download.processing.org/bugzilla/474.html
X generate xhtml-1.0-strict (standards compliant) code for exported applets
-X http://dev.processing.org/bugs/show_bug.cgi?id=490
+X https://download.processing.org/bugzilla/490.html
X add auto-install of cab file inside applet.html
-X http://dev.processing.org/bugs/show_bug.cgi?id=181
+X https://download.processing.org/bugzilla/181.html
X http://java.sun.com/j2se/1.4.2/docs/guide/plugin/developer_guide/using_tags.html
X http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/launch.html#creating
X http://java.sun.com/update/1.4.2/jinstall-1_4_2_09-windows-i586.cab
X or the 1.5 versions:
X http://java.sun.com/update/1.5.0/jinstall-1_5_0_03-windows-i586.cab
X PDE does not refresh code when using an External Editor
-X http://dev.processing.org/bugs/show_bug.cgi?id=515
+X https://download.processing.org/bugzilla/515.html
X preprocessor cannot handle L or l added to 'long' values
-X http://dev.processing.org/bugs/show_bug.cgi?id=492
+X https://download.processing.org/bugzilla/492.html
X change constructors for Capture, also framerate to frameRate
X need to update reference
X need to update example to use proper ordering
@@ -7735,10 +7735,10 @@ X find/replace - replace should do auto find next(?)
X or have a replace & find button
X placing "replace" next to "find" ... (hitting "replace all" by accident)
X have a button "replace & find next"
-X http://dev.processing.org/bugs/show_bug.cgi?id=68
+X https://download.processing.org/bugzilla/68.html
X only rebuild sketchbook on "save as" or "rename" of sketch
X currently it's rebuilding whenever "save" called too
-X http://dev.processing.org/bugs/show_bug.cgi?id=357
+X https://download.processing.org/bugzilla/357.html
X ignore ._ files when reading jar and zip
X Ignoring /Users/fry/coconut/processing/build/macosx/work/libraries/opengl/library/._jogl-natives-linux-i586.jar (error in opening zip file)
X look into deleting from p5 bugs db
@@ -7782,21 +7782,21 @@ X create "Documents" folder for the user if it doesn't exist
X just default to the user's home directory if no 'sketchbook' folder
X otherwise ask the user to select a folder
X fix QTSession.open/close problem in Capture.list()
-X http://dev.processing.org/bugs/show_bug.cgi?id=472
+X https://download.processing.org/bugzilla/472.html
X fix some of the error handling while running a sketch
X now a little better at highlighting the correct line
X slight improvements to some preproc/compiler error messages
-X http://dev.processing.org/bugs/show_bug.cgi?id=12
-X http://dev.processing.org/bugs/show_bug.cgi?id=13
-X http://dev.processing.org/bugs/show_bug.cgi?id=15
+X https://download.processing.org/bugzilla/12.html
+X https://download.processing.org/bugzilla/13.html
+X https://download.processing.org/bugzilla/15.html
X deal with strange problem with KeyListener and {} on same line
-X http://dev.processing.org/bugs/show_bug.cgi?id=484
+X https://download.processing.org/bugzilla/484.html
X copy custom applet.html file on "Save As"
-X http://dev.processing.org/bugs/show_bug.cgi?id=485
+X https://download.processing.org/bugzilla/485.html
o preferences file gone corrupt (on osx only?)
o changing font size,
o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1160057791
-X http://dev.processing.org/bugs/show_bug.cgi?id=406
+X https://download.processing.org/bugzilla/406.html
o temporarily added log4j and jalopy (for the autoformatter)
o need to decide where these go, or if they're included at all
@@ -7814,7 +7814,7 @@ X honor the svg designation for layers that are marked 'hidden'
X improve editor listener to not add so many extraneous indents
X with text selected, hitting left or right arrow should move to beginning/end
X right now, it deselects the text and moves over one char
-X http://dev.processing.org/bugs/show_bug.cgi?id=349
+X https://download.processing.org/bugzilla/349.html
X add alt-shift-arrow-down and command-shift-arrow-down
X select all from that point to beginning (or end) of doc
X ctrl-shift up/down has some weird issue, but oh well
@@ -7824,17 +7824,17 @@ o option for behavior of HOME and END
X right now goes to begin/end of line.. should be begin/end of file?
X change to begin/end of file, and use cmd or alt, based on platform
X cmd-{ and cmd-} no longer work after the menu is shown
-X http://dev.processing.org/bugs/show_bug.cgi?id=402
+X https://download.processing.org/bugzilla/402.html
X clicking "cancel" on close still quitting the app
-X http://dev.processing.org/bugs/show_bug.cgi?id=440
+X https://download.processing.org/bugzilla/440.html
X discourse format sucked, changed to format for discourse
-X http://dev.processing.org/bugs/show_bug.cgi?id=447
+X https://download.processing.org/bugzilla/447.html
X changing macosx to allow Java 1.5 to be used
X updated to antlr 2.7.7
fixed earlier or wontfix
X double-click only selects part of underscored word
-X http://dev.processing.org/bugs/show_bug.cgi?id=261
+X https://download.processing.org/bugzilla/261.html
X this is actually a feature
svg completed
@@ -7860,7 +7860,7 @@ X fix button fatness on osx
X quaqua already takes care of this for us
X implement page setup and print
X pretty printing of code in project
-X http://dev.processing.org/bugs/show_bug.cgi?id=27
+X https://download.processing.org/bugzilla/27.html
X also turn off line highlighting while printing
X fix bug with 'hidden' code causing an error inside rebuildMenu()
@@ -7877,7 +7877,7 @@ o file a bug for this stuff
X figure out how to cancel 'save changes' on macosx and windows
X macosx handleQuit seems to force termination (at least on 1.3)
X http://developer.apple.com/qa/qa2001/qa1187.html
-X http://dev.processing.org/bugs/show_bug.cgi?id=32
+X https://download.processing.org/bugzilla/32.html
X need to test on windows to make sure it works
X try the better mac l&f
o Contents/Resources/Java can take jnilib files
@@ -7885,7 +7885,7 @@ o set file type/creator for .pde files of examples
o use disk:// notation as panther alternative
o so that it doesn't download the disk, just mounts it
o although.. this only works on panther.. how many are using it?
-X filed as http://dev.processing.org/bugs/show_bug.cgi?id=431
+X filed as https://download.processing.org/bugzilla/431.html
o changing font size in editor not updating all font objects
o particularly after backspace
X make notice that restart is required
@@ -7901,9 +7901,9 @@ X several bits of reference are updated, incorporate new zip file
0119 pde
X .java files weren't working in 116+
-X http://dev.processing.org/bugs/show_bug.cgi?id=405
+X https://download.processing.org/bugzilla/405.html
X need new copy of Capture example that has a new name
-X http://dev.processing.org/bugs/show_bug.cgi?id=408
+X https://download.processing.org/bugzilla/408.html
0118 pde
@@ -7933,21 +7933,21 @@ X be more strict about opening sketches with illegal characters
X in previous releases, it was possible to rename sketches outside p5
X to something that was illegal. now those files are ignored
X better fix for find/replace focus issue on osx
-X http://dev.processing.org/bugs/show_bug.cgi?id=244
+X https://download.processing.org/bugzilla/244.html
X give that field focus explicitly, rather than just for typing
X menu option/command key to switch between tabs
-X http://dev.processing.org/bugs/show_bug.cgi?id=55
+X https://download.processing.org/bugzilla/55.html
X fix movie playback on intel macs
-X http://dev.processing.org/bugs/show_bug.cgi?id=313
+X https://download.processing.org/bugzilla/313.html
X when using external editor, update the code on export
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1158549785
o p5 becomes a memory hog (benelek and glen murphy)
o not confirmed for a long time
o even without sketches open, perhaps not gc'ing properly
o objects probably not getting finalized
-o http://dev.processing.org/bugs/show_bug.cgi?id=29
+o https://download.processing.org/bugzilla/29.html
X add pref item for setting the memory properly
-X http://dev.processing.org/bugs/show_bug.cgi?id=233
+X https://download.processing.org/bugzilla/233.html
o external apps should inherit memory settings from p5 itself
X too confusing to set the memory in two places
X or perhaps, have a setting in the ide for it
@@ -7959,7 +7959,7 @@ o menu weirdness (benelek)
o when you've got a menu open, move a cursor over the text area
o and back over the menu, the text-area cursor type remains.
X mark this as wontfix, since it's just a java bug
-X http://dev.processing.org/bugs/show_bug.cgi?id=30
+X https://download.processing.org/bugzilla/30.html
X remove the second movie from the movie playback example
X keep checking whether google has started to honor robots.txt
X http://www.google.com/search?hl=en&lr=&q=angleMode+site%3Aprocessing.org&btnG=Search
@@ -7967,7 +7967,7 @@ X add load/updatePixels stuff to the pixels[] reference
X make mention of doing it to main pix array, and on an image
X move fwd/back tab into the tab menu
X however it includes a bug that loses focus (at least on osx)
-X http://dev.processing.org/bugs/show_bug.cgi?id=402
+X https://download.processing.org/bugzilla/402.html
X "export folder" tool has been removed, if temporarily
X add info to the new faq
X where to find out about embedding PApplet (the dev ref)
@@ -7992,17 +7992,17 @@ video
X quicktime in applets
X probably need to do a better job with openStream
X video library in applets doesn't work
-X http://dev.processing.org/bugs/show_bug.cgi?id=44
+X https://download.processing.org/bugzilla/44.html
X may be fixed by simply signing the applet, or may just work in places
X exported movies seem to have trouble (windows only?)
-X http://dev.processing.org/bugs/show_bug.cgi?id=231
+X https://download.processing.org/bugzilla/231.html
X video doesn't work in applets
X on export, need to first import applet's packages before qt et al
X video working in applets? (no, never did in alpha so untested)
X Movie should perhaps work?
-X http://dev.processing.org/bugs/show_bug.cgi?id=44
+X https://download.processing.org/bugzilla/44.html
X capture.settings() changes size of capture
-X http://dev.processing.org/bugs/show_bug.cgi?id=366
+X https://download.processing.org/bugzilla/366.html
X fix submitted by hansi
faq additions
@@ -8085,7 +8085,7 @@ X on unix machines it's also possible to use a symlink
o what's the long delay when hitting "save as" on osx?
o the first time, it's very slow.. presumably an awt problem
X renaming a sketch should rebuild the sketch menu
-X http://dev.processing.org/bugs/show_bug.cgi?id=332
+X https://download.processing.org/bugzilla/332.html
0114 pde
@@ -8094,7 +8094,7 @@ X fix "ignoring illegal line...macosx is missing libjogl_cg.jnilib" error msg
0113 pde
X easier export to gl applet, finalize support for applets
-X http://dev.processing.org/bugs/show_bug.cgi?id=166
+X https://download.processing.org/bugzilla/166.html
X add additional html file (applet-jogl.html)
X parse for renderer on export (and remove comments)
X when the renderer is OPENGL, change to:
@@ -8104,7 +8104,7 @@ X include the jogl.jar file itself
X use separate jar files
o can natives be included as jar files without trouble?
X make multiple jar files thing work as an option
-X http://dev.processing.org/bugs/show_bug.cgi?id=62
+X https://download.processing.org/bugzilla/62.html
X applet default is one file, application default is multiple
X buttons on side of sketch do default (last) behavior
X don't slurp out the contents of code folders when exporting to application
@@ -8113,17 +8113,17 @@ X don't slurp out the contents of code folders when exporting to application
0112 pde
X PortInUseException with serial for 0111+ on Mac OS X
X need to fix the setup scripts to cover the new lock file location
-X http://dev.processing.org/bugs/show_bug.cgi?id=315
+X https://download.processing.org/bugzilla/315.html
0111 pde
X switch back to rev b3 of jogl so that applets will work
X fix color picker:
-X http://dev.processing.org/bugs/show_bug.cgi?id=308
+X https://download.processing.org/bugzilla/308.html
X also add esc/ctrl-w for closing the picker
X update information on mactels in the faq, also java 1.6
X find/build universal version of rxtx
-X http://dev.processing.org/bugs/show_bug.cgi?id=311
+X https://download.processing.org/bugzilla/311.html
X update the faq
@@ -8135,12 +8135,12 @@ X no changes to the pde, only fixes for jogl
X turn off resizing of the color picker window
X new set of windows quicktime issues introduced in 102+
X seems to be ignoring any paths that contain spaces
-X http://dev.processing.org/bugs/show_bug.cgi?id=299
+X https://download.processing.org/bugzilla/299.html
X fix windows make.sh (or move back to Makefile)
X currently rewrites exe on each build, even if not updated
X fix linux dist script to work more like the exported apps
X no relative paths, etc
-X http://dev.processing.org/bugs/show_bug.cgi?id=298
+X https://download.processing.org/bugzilla/298.html
0108 pde
@@ -8158,7 +8158,7 @@ X add discourse formatter tool
0107 pde
X fix yet another save bug, context menu paste/cut not setting modified
X undoing to the code's original state won't unset it as "modified"
-X http://dev.processing.org/bugs/show_bug.cgi?id=248
+X https://download.processing.org/bugzilla/248.html
0106 pde
@@ -8172,7 +8172,7 @@ X no changes, only fixes for opengl
0104 pde
X removed "yep yep yep" when using "Create Font"
X p5 not saving changes on quit, even if you say 'yes'
-X http://dev.processing.org/bugs/show_bug.cgi?id=276
+X https://download.processing.org/bugzilla/276.html
_ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1139519266
X update osx for intel binary (if necessary)
X if running on 10.4, univerals jikes installed in /usr/bin/jikes
@@ -8180,7 +8180,7 @@ X updated the jikes included with p5 to be the universal version
X add notes to the faq about status
X set java version to be 1.4, not 1.4+
X fix LD_LIBRARY_PATH issues for applications on some linux distros
-X http://dev.processing.org/bugs/show_bug.cgi?id=234
+X https://download.processing.org/bugzilla/234.html
0103 pde
@@ -8192,7 +8192,7 @@ X p5's exe has trouble when PATH has quotes (or spaces?)
X detect bad classpath or path settings
X some sort of path/classpath tester/fixer app for windows
X that " norton" thing in the path makes things a mess
-X http://dev.processing.org/bugs/show_bug.cgi?id=112
+X https://download.processing.org/bugzilla/112.html
X CLASSPATH figured out what to do with quotes, but not PATH
X quotes has issues on win2k vpc.. useful testbed
@@ -8203,7 +8203,7 @@ X no changes, only dipose() method fix for pdf
0100 pde
X missing import PApplet in library howto.txt
-X http://dev.processing.org/bugs/show_bug.cgi?id=263
+X https://download.processing.org/bugzilla/263.html
X switch to using date as default for archive sketch
@@ -8211,7 +8211,7 @@ X switch to using date as default for archive sketch
X make buttons for editor status taller on macosx
X also fix the editor text field placement a bit
X hack to fix find/replace issues on macosx
-X http://dev.processing.org/bugs/show_bug.cgi?id=70
+X https://download.processing.org/bugzilla/70.html
X right now, typing works, but no caret, no blue highlight
X and on second find run, should instead select all the find string
X so that typing will replace it directly
@@ -8222,14 +8222,14 @@ X involve adding key listeners to every friggin component
X ESC should fake a cancel button press
X ENTER should do the default option
X (might be a matter of setting the default action for the window?)
-X http://dev.processing.org/bugs/show_bug.cgi?id=34
+X https://download.processing.org/bugzilla/34.html
X hack to fix non-terminated multi-line comments
-X http://dev.processing.org/bugs/show_bug.cgi?id=16
+X https://download.processing.org/bugzilla/16.html
X improved error message for bad sketch names to include the sketch path
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1134466565
X make editor save button highlight on ctrl-s
X same goes for the other editor buttons
-X http://dev.processing.org/bugs/show_bug.cgi?id=242
+X https://download.processing.org/bugzilla/242.html
X deal with "could not delete stderr.txt" messages
X probably screwed up the temp folder stuff
X build folder is randomized, being recreated on each build
@@ -8247,7 +8247,7 @@ X rather than having it convert to spaces
X need a smarter handler (rather than the editor listener)
X could look at previous line for its indent
X and when hitting } do a proper outdent (if only spaces before it)
-X http://dev.processing.org/bugs/show_bug.cgi?id=22
+X https://download.processing.org/bugzilla/22.html
o if the previous line contains no ; then next line is indent
o need to strip out comments for this tho
o maybe preproc through and remove comments to spaces?
@@ -8268,20 +8268,20 @@ X move the readme stuff for each file into the files themselves
X also put a general rundown of the preproc into Preprocessor.java
X subclasses need to use "public void keyPressed" not "void keyPressed"
X tweak linux version shell script to properly set directory name
-X http://dev.processing.org/bugs/show_bug.cgi?id=234
+X https://download.processing.org/bugzilla/234.html
bugs in auto-format
X tools need to use a compound edit
-X http://dev.processing.org/bugs/show_bug.cgi?id=139
+X https://download.processing.org/bugzilla/139.html
X ArrayIndexOutOfBoundsException when trying to Auto Format
-X http://dev.processing.org/bugs/show_bug.cgi?id=110
+X https://download.processing.org/bugzilla/110.html
X if an error occurs during format, report it and don't change text
X this should already be happening anyway
0097 pde
export-to-application
-X http://dev.processing.org/bugs/show_bug.cgi?id=60
+X https://download.processing.org/bugzilla/60.html
X make a note in the faq that it's implemented
X add manifest.mf to exported applets so that applications will work
X include main class info for executable jar file with jdk > 1.2
@@ -8301,7 +8301,7 @@ X this will need to detect whether the user has their own main()
o or even PApplet.main(new String[] { getClass().getName() });
X save code before export, otherwise .pde exported is empty
X ask user ok or cancel to save code before exporting
-X http://dev.processing.org/bugs/show_bug.cgi?id=157
+X https://download.processing.org/bugzilla/157.html
X can macosx jnilib files be placed in the resources dir?
X shift-export should export as application
X write support for linux export
@@ -8319,7 +8319,7 @@ X how to handle qtjava in exports?
X problem because on export, the qtjava import happens before lib import
X why is this different between compiling and exporting?
X was a problem because example was named "Movie"
-X http://dev.processing.org/bugs/show_bug.cgi?id=230
+X https://download.processing.org/bugzilla/230.html
0096 pde
@@ -8330,12 +8330,12 @@ o gets messy because of how the classpath et al is handled
o maybe just split out the preproc?
o could avoid doing things like the packages etc
X subfolders in the 'data' directory don't work
-X http://dev.processing.org/bugs/show_bug.cgi?id=65
+X https://download.processing.org/bugzilla/65.html
X package macosx with a dmg
-X http://dev.processing.org/bugs/show_bug.cgi?id=116
+X https://download.processing.org/bugzilla/116.html
X add "reference" and "examples" categories to bugzilla
X add mayscript tag to html when javascript lib is in use
-X http://dev.processing.org/bugs/show_bug.cgi?id=211
+X https://download.processing.org/bugzilla/211.html
0095 pde
@@ -8345,24 +8345,24 @@ X no changes
0094 pde
X don't write stdout.txt/stderr.txt to the build folder
X writing to the p5 folder was causing security problems
-X http://dev.processing.org/bugs/show_bug.cgi?id=177
+X https://download.processing.org/bugzilla/177.html
X bug in console that was causing stderr and stdout
X to be written over one another.. oops
X console text selection immediately de-selects
X suspect console is updated every 250 ms even when the app isn't running
X simplest to just not update the console if nothing is waiting in buffer
-X http://dev.processing.org/bugs/show_bug.cgi?id=180
+X https://download.processing.org/bugzilla/180.html
X problem with using qtjava is probably the quotes..
X remove them because they're matching quotes elsewhere
X drag & drop implementation to add files to sketch
-X http://dev.processing.org/bugs/show_bug.cgi?id=21
+X https://download.processing.org/bugzilla/21.html
X test drag and drop on windows
o also test on linux
X make simple tool for casey to rebuild all the examples at once
X first select a folder, then will open each sketch in turn, and export
X just make it easier to go to the next sketch
X need to rebuild with this release because of 1.3/1.4 issues
-X http://dev.processing.org/bugs/show_bug.cgi?id=117
+X https://download.processing.org/bugzilla/117.html
o or add tool to hit 'next' to go through examples
o just make it "next file in folder" since examples are all over
o also need to copy examples locally
@@ -8379,19 +8379,19 @@ X scanning sketchbook folder may be extremely slow
X when lots of frames saved out, takes forever to scan the folder
X some dumb sorting code was responsible
X and each file was being treated as a directory. oops.
-X http://dev.processing.org/bugs/show_bug.cgi?id=84
+X https://download.processing.org/bugzilla/84.html
o rebuild jikes with --enable-static --disable-shared
-X http://dev.processing.org/bugs/show_bug.cgi?id=47
+X https://download.processing.org/bugzilla/47.html
X switched to use the version from the rpm on the sf.net site
X with fix of bug #47, svn binaries are no longer liabilities on linux
-X http://dev.processing.org/bugs/show_bug.cgi?id=48
+X https://download.processing.org/bugzilla/48.html
o auto-run the javadoc in dist.sh
o doctor a copy of the css file to use p5 defaults
o and re-copy the css in after generating the doc each time
X timing fix introduce regression on linux
X extra (NUL?) chars are added
X i.e. on first run, the ten blank lines each have a li'l box
-X http://dev.processing.org/bugs/show_bug.cgi?id=118
+X https://download.processing.org/bugzilla/118.html
X faq: "my applet doesn't work on export"... where to check for errors
X very common: cached version is being used
X go through methods to properly flush the cache
@@ -8423,7 +8423,7 @@ o convert spaces to underscores and vice versa for sketch/tab names
o underscoring everything is kinda nasty
o only needs to be underscored when passed off to java
o although then if people *want* underscores, there's gonna be trouble
-o http://dev.processing.org/bugs/show_bug.cgi?id=76
+o https://download.processing.org/bugzilla/76.html
o if in full java mode
o if extends PApplet.. or rather, put PApplet cast into a
o try/catch block.. if it doesn't work, try applet. if that
diff --git a/java/libraries/dxf/src/processing/dxf/RawDXF.java b/java/libraries/dxf/src/processing/dxf/RawDXF.java
index 1de48e4a3..1a603e005 100644
--- a/java/libraries/dxf/src/processing/dxf/RawDXF.java
+++ b/java/libraries/dxf/src/processing/dxf/RawDXF.java
@@ -233,7 +233,7 @@ public class RawDXF extends PGraphics {
public void write(String cmd, float val) {
writer.println(cmd);
// Don't number format, will cause trouble on systems that aren't en-US
- // http://dev.processing.org/bugs/show_bug.cgi?id=495
+ // https://download.processing.org/bugzilla/495.html
writer.println(val);
}
diff --git a/java/libraries/pdf/src/processing/pdf/PGraphicsPDF.java b/java/libraries/pdf/src/processing/pdf/PGraphicsPDF.java
index d937afaf6..c0bb22f17 100644
--- a/java/libraries/pdf/src/processing/pdf/PGraphicsPDF.java
+++ b/java/libraries/pdf/src/processing/pdf/PGraphicsPDF.java
@@ -167,7 +167,7 @@ public class PGraphicsPDF extends PGraphicsJava2D {
vertexCount = 0;
// Also need to push the matrix since the matrix doesn't reset on each run
- // http://dev.processing.org/bugs/show_bug.cgi?id=1227
+ // https://download.processing.org/bugzilla/1227.html
pushMatrix();
}
@@ -206,7 +206,7 @@ public class PGraphicsPDF extends PGraphicsJava2D {
// This won't fix the issue if the same thing happens with
// other removable drive devices, but should fix the
// initial/problem as cited by the bug report:
- // http://dev.processing.org/bugs/show_bug.cgi?id=478
+ // https://download.processing.org/bugzilla/478.html
// If not, will need to use the other fileExists() code below.
continue;
}
@@ -246,7 +246,7 @@ public class PGraphicsPDF extends PGraphicsJava2D {
/**
* Recursive walk to get all subdirectories for font fun.
* Patch submitted by Matthias Breuer.
- * (Bug 1566)
+ * (Bug 1566)
*/
static protected void traverseDir(File folder, DefaultFontMapper mapper) {
File[] files = folder.listFiles();
@@ -261,10 +261,10 @@ public class PGraphicsPDF extends PGraphicsJava2D {
// endDraw() needs to be overridden so that the endDraw() from
// PGraphicsJava2D is not inherited (it calls loadPixels).
- // http://dev.processing.org/bugs/show_bug.cgi?id=1169
+ // https://download.processing.org/bugzilla/1169.html
public void endDraw() {
// Also need to pop the matrix since the matrix doesn't reset on each run
- // http://dev.processing.org/bugs/show_bug.cgi?id=1227
+ // https://download.processing.org/bugzilla/1227.html
popMatrix();
}
diff --git a/java/libraries/svg/src/processing/svg/PGraphicsSVG.java b/java/libraries/svg/src/processing/svg/PGraphicsSVG.java
index 11ec0eb3f..3b170353b 100644
--- a/java/libraries/svg/src/processing/svg/PGraphicsSVG.java
+++ b/java/libraries/svg/src/processing/svg/PGraphicsSVG.java
@@ -1,7 +1,7 @@
/*
Part of the Processing project - http://processing.org
- Copyright (c) 2013-2015 The Processing Foundation
+ Copyright (c) 2013-2022 The Processing Foundation
Copyright (c) 2012 Ben Fry and Casey Reas
This library is free software; you can redistribute it and/or
@@ -95,14 +95,14 @@ public class PGraphicsSVG extends PGraphicsJava2D {
vertexCount = 0;
// Also need to push the matrix since the matrix doesn't reset on each run
- // http://dev.processing.org/bugs/show_bug.cgi?id=1227
+ // https://download.processing.org/bugzilla/1227.html
pushMatrix();
}
public void endDraw() {
// Also need to pop the matrix since the matrix doesn't reset on each run
- // http://dev.processing.org/bugs/show_bug.cgi?id=1227
+ // https://download.processing.org/bugzilla/1227.html
popMatrix();
// Figure out where the output goes. If the sketch is calling setOutput()
@@ -126,7 +126,7 @@ public class PGraphicsSVG extends PGraphicsJava2D {
// This needs to be overridden so that the endDraw() from PGraphicsJava2D
// is not inherited (it calls loadPixels).
- // http://dev.processing.org/bugs/show_bug.cgi?id=1169
+ // https://download.processing.org/bugzilla/1169.html
// Finally, stream out SVG to the standard output using UTF-8 encoding.
boolean useCSS = true; // we want to use CSS style attributes
diff --git a/java/src/processing/mode/java/JavaEditor.java b/java/src/processing/mode/java/JavaEditor.java
index b4aba29af..9ed68a20f 100644
--- a/java/src/processing/mode/java/JavaEditor.java
+++ b/java/src/processing/mode/java/JavaEditor.java
@@ -534,7 +534,7 @@ public class JavaEditor extends Editor {
* asks the user to save the sketch or cancel the export.
* This prevents issues where an incomplete version of the sketch
* would be exported, and is a fix for
- * Bug 157
+ * Bug 157
*/
protected boolean handleExportCheckModified() {
if (sketch.isReadOnly()) {
diff --git a/java/src/processing/mode/java/JavaInputHandler.java b/java/src/processing/mode/java/JavaInputHandler.java
index 8d42f114c..e4bb9bafd 100644
--- a/java/src/processing/mode/java/JavaInputHandler.java
+++ b/java/src/processing/mode/java/JavaInputHandler.java
@@ -242,7 +242,7 @@ public class JavaInputHandler extends PdeInputHandler {
if (braceCount > 0) {
int sel = textarea.getSelectionStart();
// sel - tabSize will be -1 if start/end parens on the same line
- // http://dev.processing.org/bugs/show_bug.cgi?id=484
+ // https://download.processing.org/bugzilla/484.html
if (sel - tabSize >= 0) {
textarea.select(sel - tabSize, sel);
String s = spaces(tabSize);
@@ -257,7 +257,7 @@ public class JavaInputHandler extends PdeInputHandler {
} else {
// Enter/Return was being consumed by somehow even if false
// was returned, so this is a band-aid to simply fire the event again.
- // http://dev.processing.org/bugs/show_bug.cgi?id=1073
+ // https://download.processing.org/bugzilla/1073.html
textarea.setSelectedText(String.valueOf(c));
}
// mark this event as already handled (all but ignored)
diff --git a/java/src/processing/mode/java/runner/Runner.java b/java/src/processing/mode/java/runner/Runner.java
index 7871a5dcd..2617b1d03 100644
--- a/java/src/processing/mode/java/runner/Runner.java
+++ b/java/src/processing/mode/java/runner/Runner.java
@@ -649,7 +649,7 @@ public class Runner implements MessageConsumer {
// System.out.println("in here");
// Bug #852 tracked to this next line in the code.
- // http://dev.processing.org/bugs/show_bug.cgi?id=852
+ // https://download.processing.org/bugzilla/852.html
errThread.join(); // Make sure output is forwarded
// System.out.println("and then");
outThread.join(); // before we exit
@@ -905,7 +905,7 @@ public class Runner implements MessageConsumer {
// made synchronized for 0087
// attempted to remove synchronized for 0136 to fix bug #775 (no luck tho)
- // http://dev.processing.org/bugs/show_bug.cgi?id=775
+ // https://download.processing.org/bugzilla/775.html
synchronized public void message(String s) {
// System.out.println("M" + s.length() + ":" + s.trim()); // + "MMM" + s.length());
diff --git a/todo.txt b/todo.txt
index ccd0af42c..5e97f7944 100755
--- a/todo.txt
+++ b/todo.txt
@@ -12,6 +12,14 @@ X git bisect good ccc62c6 / git bisect bad f583eef
X https://github.com/processing/processing4/commit/0f9b290398aac86ef56fe3c4e9c3ff88fdd53466
X introduces https://github.com/processing/processing4/issues/519
+bugs
+X re-post bugzilla entries at https://download.processing.org/bugzilla/
+X create an index.html page for easier scraping
+X replace dev.processing.org bug numbers
+X http://dev.processing.org/bugs/show_bug.cgi?id=1188
+X with http://processing.org/bugs/bugzilla/1188.html
+X or better yet, https://download.processing.org/bugzilla/1188.html
+
font
X can't ship before ui.font and language bits sorted out
X otherwise the override to use Source Sans Pro will hose other languages
@@ -97,6 +105,8 @@ X font for stack trace dialogs is too small (and wrong)
X overall layout/spacing/proportion
X icons for debug toolbar (VariableInspector.java)
X replace variables-1x and -2x with separate SVG files in debug
+X implement 2x versions of the icons for the debugger window/variable inspector
+X https://github.com/processing/processing/issues/3921
X visual fixes for tab sizes, etc (with Paul)
X weirdness with gaps in tabs (editor too big, manager too small)
X contrib mgr: filter/dropdown vertical centering is too high
@@ -350,12 +360,7 @@ _ https://github.com/processing/p5.js-web-editor/blob/develop/client/utils/g
_ p5.js uses predicate followed by an object
-housekeeping
-_ replace bug numbers
-_ http://dev.processing.org/bugs/show_bug.cgi?id=1188
-_ with http://processing.org/bugs/bugzilla/1188.html
-_ or better yet, https://download.processing.org/bugzilla/1188.html
-_ also code.google.com URLs with Github URLs (numbers are sorta in sync)
+_ replace code.google.com URLs with Github URLs (numbers are sorta in sync)
contribs
@@ -716,8 +721,6 @@ _ import suggestions box needs design review
_ https://github.com/processing/processing/issues/3407
_ fix background color for selected lines in VariableInspector
_ https://github.com/processing/processing/issues/3925
-_ implement 2x versions of the icons for the debugger window/variable inspector
-_ https://github.com/processing/processing/issues/3921
_ different design of squiggly line
_ easy to do inside JavaTextAreaPainter.paintSquiggle()
_ build custom scroll bar since the OS versions are so ugly
@@ -1135,7 +1138,7 @@ _ the /System one contains qtjava
_ the /Library one is empty (by default), maybe skip it?
_ classpath conflicts also problem with PDE itself
_ catch antlr conflicts, and put up an error message
-_ http://dev.processing.org/bugs/show_bug.cgi?id=1225 (no Google issue)
+_ https://download.processing.org/bugzilla/1225.html (no Google issue)
_ make sure there aren't library jar files named the same thing
_ i.e. if one library has db.jar, then that's gonna kill another db.jar
_ when the files are copied over