Ben Fry
f26cff6493
Merge pull request #5251 from Prince-Polka/master
...
BezierPoint
2017-10-18 15:41:29 -04:00
Ben Fry
7715f57cf0
notes on recent bug reports and updates
2017-10-17 23:10:07 -04:00
Ben Fry
a86e220096
fix minor spacing issue with indent
2017-10-17 23:09:17 -04:00
Ben Fry
8b9b976d67
minor type erasure edits
2017-10-17 23:08:50 -04:00
Ben Fry
6aa8c62017
move to Java 8u152 ( fixes #5284 , broken JRE download)
2017-10-17 23:05:31 -04:00
Ben Fry
09de1fad83
fix entries() Iterator in IntDict, FloatDict, StringDict
2017-10-11 16:25:16 -04:00
Ben Fry
7572e266dc
remove unnecessary types on save
2017-10-10 21:00:54 -04:00
Ben Fry
2dde225eae
erase unnecessary types
2017-10-10 21:00:32 -04:00
Ben Fry
65b138de31
added resize() to IntDict, FloatDict, StringDict
2017-10-10 20:57:27 -04:00
Ben Fry
2327009d88
add setIndex() method
2017-10-10 20:34:40 -04:00
Ben Fry
28ee67ff22
gst
2017-09-29 23:19:33 -04:00
Ben Fry
5d4a48a814
handle version number parsing for JDK 9 ( fixes #5275 )
2017-09-29 23:15:17 -04:00
Ben Fry
bc4471bf38
Merge pull request #5152 from GKFX/featurefixbadquotes
...
Handle curly quotes well
2017-09-24 11:00:34 -04:00
Ben Fry
fb6a4a01df
Merge pull request #5265 from JakubValtar/fix-scrub-comments
...
Fix scrub comments for empty block comment /**/
2017-09-22 11:17:28 -04:00
Prince-Polka
6a018b7a94
Update PGraphics.java
2017-09-20 17:18:50 +02:00
Jakub Valtar
fbc7befa84
Fix scrub comments for empty block comment /**/
...
Fixes #5219
2017-09-20 14:58:41 +02:00
George Bateman
632d19c6ca
Merge pull request #1 from JakubValtar/GKFX-featurefixbadquotes-pull
...
Curly quotes followup
2017-09-20 03:03:58 +01:00
Jakub Valtar
8c66a8c33d
Make sure we don't try to get code out of bounds
2017-09-19 23:14:26 +02:00
Jakub Valtar
25ac5db0ab
Remove problem priority since we're going to do it manually in PDEX.ErrorChecker
2017-09-19 23:04:56 +02:00
Jakub Valtar
46b5e29fb3
Gather error checking code in PDEX.ErrorChecker
2017-09-19 22:52:49 +02:00
Jakub Valtar
f506a1df42
In case of multiple problems on a line give priority to error
2017-09-19 16:54:37 +02:00
Jakub Valtar
c583d2aaa9
To create Problems use pdeCode instead of messing with editor
2017-09-19 16:23:38 +02:00
Prince-Polka
4dd1f29cb8
Update PGraphics.java
2017-09-08 19:16:33 +02:00
Prince-Polka
3052c1f384
Update PGraphics.java
2017-09-08 19:15:09 +02:00
Prince-Polka
2746369547
Update PGraphics.java
...
At row 3214 changed
public float bezierPoint(float a, float b, float c, float d, float t) {
float t1 = 1.0f - t;
return a*t1*t1*t1 + 3*b*t*t1*t1 + 3*c*t*t*t1 + d*t*t*t;
}
to
float bezierPoint (float a, float b, float c, float d, float t) {
float t1 = t-1.0f;
return t * ( 3*t1*(b*t1-c*t) + d*t*t ) - a*t1*t1*t1;
}
, works the same but faster
2017-09-08 19:12:59 +02:00
Ben Fry
8bf2ec1c6f
starting the next release
2017-09-04 19:56:40 -04:00
Ben Fry
4810535683
how about some release notes?
processing-0263-3.3.6
2017-09-04 16:28:54 -04:00
Ben Fry
c03eddfbb1
additional clarifications
2017-09-04 11:38:28 -04:00
Ben Fry
3b1b8e80ee
tweak the issue template
2017-09-04 11:33:31 -04:00
Ben Fry
7ebb633271
recent todo items
2017-09-04 11:33:25 -04:00
Ben Fry
f163b1d8f3
Merge pull request #5245 from jeremydouglass/jeremydouglass-issue-template
...
Create ISSUE_TEMPLATE.md
2017-09-04 11:14:08 -04:00
Jeremy Douglass
7041ef8126
Create ISSUE_TEMPLATE.md
...
Create GitHub issue template.
Template should help avoid issues being posted without enough info. Based on best practices at https://github.com/stevemao/github-issue-templates
Closes #5239
2017-09-03 20:56:34 -07:00
Ben Fry
82c772f178
Windows ignores setMinimumSize(), add workaround for #5052
2017-09-03 08:36:23 -04:00
Ben Fry
f1dd1554ee
Merge pull request #5234 from kisarur/master
...
A fix for the window resizing problem in Windows
2017-09-03 08:26:45 -04:00
Ben Fry
f8cd2c3357
Merge pull request #5230 from GKFX/bugfix-moviemaker5168
...
Unlock "Create Movie" in Movie Maker after use
2017-08-29 12:58:20 -04:00
Ben Fry
9227a32b2c
Merge pull request #5229 from GKFX/bugfix-linuxgitignore
...
Add more build products to linux/.gitignore
2017-08-29 12:55:59 -04:00
kisarur
b6b1ed8c79
removed partial fixes added earlier
2017-08-28 03:43:10 +05:30
kisarur
114d3788c1
a working fix for the window resizing to zero issue in Windows was added
2017-08-28 03:23:47 +05:30
George Bateman
106435e579
Unlock "Create Movie" in Movie Maker after use
...
Fixes #5168 .
2017-08-25 21:09:12 +01:00
George Bateman
7f704f9900
Add more build products to linux/.gitignore
2017-08-25 20:23:22 +01:00
Ben Fry
b94b98c385
notes to cover recent issues and merges
2017-08-22 10:06:48 -04:00
Ben Fry
4742cea88e
Merge branch 'master' of github.com:processing/processing
2017-08-22 10:04:57 -04:00
Ben Fry
501021f7d6
was calling remove() on the value, not the key for the contribs, meaning that nothing was ever removed
2017-08-22 10:04:53 -04:00
Ben Fry
2f8f3f8ce3
Merge pull request #5186 from JakubValtar/fx-runtime
...
Add JavaFX runtime to error checker class path
2017-08-22 09:59:00 -04:00
Ben Fry
f8616cad9f
Merge pull request #5184 from JakubValtar/fix-line-vert
...
Fix bugs in line vert shader
2017-08-22 09:47:55 -04:00
Ben Fry
1af59565f1
Merge pull request #5222 from gohai/vc4-fixes
...
Workaround issues with Raspbian release August 2017
2017-08-22 09:35:18 -04:00
gohai
da50b1884d
Workaround issues with Raspbian release August 2017
...
The latest Raspbian release moved Broadcom's GLESv2 and EGL library to a custom name (libbrcm*), so Processing ended up falling back to llvmpipe (software rendering). Fixed this with a custom bandaid for JOGL in my bcm-test branch (currently at c46af91).
2017-08-19 23:56:46 +02:00
Ben Fry
b2f96d3814
todo notes and disable unused shellQuoted() method
2017-08-07 22:21:59 -04:00
Ben Fry
c3ae3ba063
Merge pull request #5195 from karlre/master
...
Fixes German typo
2017-08-02 15:47:40 -04:00
kisarur
4261788a57
partial fix was applied to solve window reszing to zero height issue
2017-08-02 22:57:10 +05:30