mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
disable async image saving by default
This commit is contained in:
@@ -718,7 +718,9 @@ public class PGraphics extends PImage implements PConstants {
|
||||
|
||||
|
||||
public PGraphics() {
|
||||
// Allows subclasses to override
|
||||
// In 3.1.2, giving up on the async image saving as the default
|
||||
hints[DISABLE_ASYNC_SAVEFRAME] = true;
|
||||
System.out.println("disabling async saveFrame");
|
||||
}
|
||||
|
||||
|
||||
|
||||
+7
-5
@@ -3,6 +3,8 @@ X rewrite csv handling
|
||||
X fix parsing bugs, remove newlines option, improve performance
|
||||
X prevent random(low, high) from returning 'high'
|
||||
X https://github.com/processing/processing/issues/4551
|
||||
X disable async saveFrame() by default
|
||||
X https://github.com/processing/processing/issues/4578
|
||||
|
||||
gohai
|
||||
X Fix GLExceptions on Raspberry Pi when using offscreen PGraphics
|
||||
@@ -23,9 +25,6 @@ X fix crash when calling getUniformLoc() called in PShader.set()
|
||||
X https://github.com/processing/processing/issues/4542
|
||||
|
||||
|
||||
_ disable async saveFrame() by default?
|
||||
_ https://github.com/processing/processing/issues/4578
|
||||
|
||||
_ Can't render PGraphics object using image() within a PDF
|
||||
_ https://github.com/processing/processing/issues/4473
|
||||
|
||||
@@ -33,8 +32,6 @@ _ JSONObject get() method is private
|
||||
_ https://github.com/processing/processing/issues/4334
|
||||
_ https://github.com/processing/processing/pull/4336
|
||||
|
||||
_ add push() and pop() methods to mirror js?
|
||||
|
||||
_ textAlign(CENTER) and pixelDensity(2) aligning incorrectly with Java2D
|
||||
_ https://github.com/processing/processing/issues/4020
|
||||
_ add increment() that takes IntDict to merge things
|
||||
@@ -58,6 +55,11 @@ _ if not, need to add them to the block list
|
||||
_ the --hide-stop option not working (FX only? traces?)
|
||||
|
||||
|
||||
discussion
|
||||
_ add push() and pop() methods to mirror js?
|
||||
_ how to handle the touch api
|
||||
|
||||
|
||||
known
|
||||
_ window must close when using file dialogs with OpenGL on Windows
|
||||
_ https://github.com/processing/processing/issues/3831
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
0251 (3.1.2)
|
||||
|
||||
X update to Java 8u102 build 14
|
||||
|
||||
gohai
|
||||
X IO: Fix drawing for SPIAnalogDigital examples
|
||||
@@ -12,6 +12,9 @@ X IO: We want motors, they said (implements SoftwareServo)
|
||||
X https://github.com/processing/processing/pull/4546
|
||||
X Add a temporary workaround for the CHIP to deal with cursor problems
|
||||
X https://github.com/processing/processing/pull/4554
|
||||
X Fix the Downloader so that builds work again
|
||||
X https://github.com/processing/processing/issues/4496
|
||||
X https://github.com/processing/processing/pull/4511
|
||||
|
||||
jakub
|
||||
X Return of the error check toggle
|
||||
@@ -29,16 +32,23 @@ X updates to Japanese translation
|
||||
X https://github.com/processing/processing/pull/4564
|
||||
X Make preferences button wider for Japanese
|
||||
X https://github.com/processing/processing/pull/4558
|
||||
X Show warning message if mode cannot be changed
|
||||
X https://github.com/processing/processing/pull/4559
|
||||
|
||||
fixed in 3.1.1
|
||||
X debugger deadlocks when choosing "Step Into" on println()
|
||||
X https://github.com/processing/processing/issues/3923
|
||||
X Suggestions switch scope to first import
|
||||
X https://github.com/processing/processing/issues/4016
|
||||
X loadImage() immediately after saveFrame() foiled by async default
|
||||
X https://github.com/processing/processing/issues/4218
|
||||
X the hint() mostly works, but gross to use a hint frequently
|
||||
|
||||
|
||||
high
|
||||
_ update to 8 102 14
|
||||
_ NullPointerException in SketchCode.getDocumentText()
|
||||
_ https://github.com/processing/processing/issues/4555
|
||||
_ https://github.com/processing/processing/pull/4547
|
||||
_ Pasting code from editor to empty editor produces Exception
|
||||
_ https://github.com/processing/processing/issues/4522
|
||||
_ did we lose settings.path because it was too buggy?
|
||||
@@ -113,13 +123,6 @@ _ Tweak Mode sometimes freezes while running, require a force quit
|
||||
_ https://github.com/processing/processing/issues/3928
|
||||
|
||||
|
||||
discussion
|
||||
_ loadImage() immediately after saveFrame() foiled by async default
|
||||
_ https://github.com/processing/processing/issues/4218
|
||||
_ the hint() mostly works, but gross to use a hint frequently
|
||||
_ how to handle the touch api
|
||||
|
||||
|
||||
gui
|
||||
_ Tooltip over variable decl has wrong style and content
|
||||
_ make all tooltips run through our style
|
||||
|
||||
Reference in New Issue
Block a user