Commit Graph

7856 Commits

Author SHA1 Message Date
Ben Fry 2848f0ffd8 Merge pull request #2474 from kfeuz/Issue74
Catch SocketException separately and report
2014-05-08 16:22:13 -04:00
Ben Fry bf9b7137d0 tweak 64- and 32-bit export on Windows to include JNA switch 2014-05-08 16:14:52 -04:00
Ben Fry 72fb419c3d todo notes plus start on fixes for #2239 on Windows 2014-05-08 16:10:50 -04:00
Scott Murray a95babb4b3 Added background() as related method in reference to draw() 2014-05-05 19:12:27 -07:00
codeanticode c7c99b80a0 fixes loadPixels() regression in opengl renderer 2014-05-05 14:33:22 -04:00
Ben Fry b8d4b62158 fix for #2349, use embedded Java with Linux 2014-05-04 17:03:41 -04:00
Ben Fry f9c2704979 notes about fix for #2468 2014-05-04 16:55:35 -04:00
Ben Fry a700862f4c looking into embedded Java issue w/ 64-bit Windows batch script 2014-05-04 16:25:58 -04:00
Ben Fry d1a181a4a7 cleanups and format fixes 2014-05-04 16:16:12 -04:00
Ben Fry 88a5071423 clearing things up a bit 2014-05-04 16:15:29 -04:00
Ben Fry 179eda39e9 fix for #2463 and other todo notes 2014-05-04 16:06:40 -04:00
Ben Fry 24446524da minor edits 2014-05-04 15:55:32 -04:00
Ben Fry 0d0c7275a7 Merge pull request #2492 from jdf/master
Add methods for reading and manipulating horizontal scollbars in text editor.
2014-05-04 15:43:32 -04:00
Jonathan Feinberg 035cb6e7a4 Add methods for reading and manipulating horizontal scollbars in text editor.
Deprecate old methods to prefer methods with Vertical/Horizontal in their names.
2014-05-04 12:38:29 -04:00
Daniel Shiffman 7623a9faa2 Merge pull request #2491 from AmnonOwed/FixProcessing-web#410
Conform PVector.set() reference to standard practice
2014-05-04 09:52:33 -04:00
AmnonOwed 0be7fe3bea Conform PVector.set() reference to standard practice 2014-05-04 14:04:45 +02:00
Casey Reas a965e7b3da Merge pull request #2490 from AmnonOwed/FixProcessing-web#357
Add related entry (frameCount) to saveFrame() reference
2014-05-02 12:48:56 -07:00
Casey Reas 48927a1666 Merge pull request #2489 from AmnonOwed/FixProcessing-web#313
Fix conflicting variable name (frame) in Sequential example
2014-05-02 12:48:34 -07:00
AmnonOwed 51aedcd35d Add related entry (frameCount) to saveFrame() reference 2014-05-02 11:35:01 +02:00
AmnonOwed c57c78293f Fix conflicting variable name (frame) in Sequential example 2014-05-02 11:18:48 +02:00
Casey Reas fc1fc89cd9 Merge pull request #2487 from AmnonOwed/FixMissingImports
Adding missing library import (PDF)
2014-05-01 13:37:59 -07:00
Ben Fry 468d4f26a9 add canDraw() method for embedding 2014-04-30 20:36:06 -04:00
Ben Fry 59093e0e24 fixes for sketchPath() when embedding 2014-04-30 20:35:50 -04:00
AmnonOwed 3230236051 Adding missing library import (PDF) 2014-04-30 20:26:15 +02:00
codeanticode 29e034fbc1 added limit=2 parameter to split() so Windows paths are properly parsed. 2014-04-30 10:09:06 -04:00
codeanticode f4a81e0c45 Merge branch 'master' of https://github.com/processing/processing.git 2014-04-28 00:03:05 -04:00
codeanticode 7097691f8f testing non-blocking seek 2014-04-28 00:02:43 -04:00
Daniel Shiffman 3d5b64da06 Merge pull request #2481 from AmnonOwed/ClarifyPVector.fromAngle()
Clarify fromAngle() input (in radians)
2014-04-27 21:15:44 -04:00
AmnonOwed 776d1eb75c Clarify fromAngle() input (in radians) 2014-04-27 01:51:53 +02:00
codeanticode e3ccd69ce6 missing categories are correctly saved in binary 2014-04-25 22:53:50 -04:00
codeanticode 34a3ed1852 take care of #2465 2014-04-22 16:53:17 -04:00
Kyle Feuz 7ae40bed1a Keep basic error reporting 2014-04-21 16:24:30 -07:00
Kyle Feuz 43d1d5a2fe Fix for #Issue74 2014-04-21 15:55:59 -07:00
Ben Fry e3bcb85b19 Merge pull request #2455 from davidfokkema/fix-not-starting
Do not wait for debugger to start running sketch
2014-04-19 04:47:54 -04:00
Ben Fry ad583897a1 other tweaks to server class 2014-04-19 04:45:06 -04:00
Ben Fry cd4f74cd50 Merge pull request #2466 from kfeuz/Issue2133
Adds disconnectEvent() to Server... merging and will make additions
2014-04-19 04:37:00 -04:00
David Fokkema e3090697e4 Wait for VMStartEvent before resuming VM
Fixes processing#2402

(Oh, yes!)
2014-04-19 10:36:00 +02:00
David Fokkema c46c34c033 Another 'fix': added a timeout before vm.resume()
I think we have a race condition: vm.resume() is called *before* the VM is
actually ready to resume.  That is strange, since the debugger is
attached, eventQueues are set up and ready...  Still, waiting for a bit
ensures that the VM actually resumes.  This behavior was not present when
Java 1.6 was still used.  Is this a bug in Java 1.7? Or is it simply that
the VM in 1.6 started up quickly enough to hide the race condition?

I'll continue looking...
2014-04-19 10:09:10 +02:00
Kyle Feuz fca59082a8 Fixed missing disconnect for some clients 2014-04-18 15:48:14 -07:00
David Fokkema fd40dbfb31 Revert "Do not wait for debugger to start running sketch"
This reverts commit 5d5a5841c8.
2014-04-18 21:11:05 +02:00
Kyle Feuz 0b50a98219 Implements disconnectEvent for the Server code as requested in Issue #2133 2014-04-18 01:42:54 -07:00
Ben Fry 17fe76c153 Merge pull request #2457 from jdf/master
Switch modes: reopen current sketch in new mode editor if file extension is compatible.
2014-04-17 21:49:35 -04:00
Jonathan Feinberg 406f2c3ffa Roll back introduction of enum for handleClose param. 2014-04-17 13:14:04 -04:00
Ben Fry 33b3ed4aed Merge pull request #2461 from kfeuz/Issue1445
Fixed splice() ClassCastException issue 1445
2014-04-17 11:15:55 -04:00
Kyle Feuz 2ede696737 Fixed splice() ClassCastException issue 1445 2014-04-16 21:08:08 -07:00
Jonathan Feinberg 13ec3ce8ee Merge remote-tracking branch 'upstream/master' 2014-04-16 23:17:59 -04:00
Ben Fry 511f5a8208 update to u55 for OS X build, and disallow 1.8 2014-04-16 19:09:30 -04:00
Ben Fry 400fda8bb0 fix for categorical missing values 2014-04-16 15:40:33 -04:00
Jonathan Feinberg f42d4e6742 Fix "switch mode" to edit current code in new mode when compatible. 2014-04-16 09:45:43 -04:00
Ben Fry 20ce7605e3 starting the next revision 2014-04-15 15:58:23 -04:00