mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
minor tweaks to library handling, mostly updating the revisions.txt file
This commit is contained in:
+4
-1
@@ -90,6 +90,8 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
windowLocation.x + "," + windowLocation.y) :
|
||||
(PApplet.EXT_LOCATION + x1 + "," + y1);
|
||||
|
||||
System.out.println("library path is " + sketch.libraryPath);
|
||||
|
||||
String command[] = new String[] {
|
||||
//"cmd", "/c", "start",
|
||||
|
||||
@@ -97,7 +99,8 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
"-Djava.library.path=" +
|
||||
// sketch.libraryPath might be ""
|
||||
// librariesClassPath will always have sep char prepended
|
||||
sketch.libraryPath + PdeSketchbook.librariesClassPath +
|
||||
sketch.libraryPath +
|
||||
//PdeSketchbook.librariesClassPath +
|
||||
File.pathSeparator + System.getProperty("java.library.path"),
|
||||
"-cp",
|
||||
sketch.classPath + PdeSketchbook.librariesClassPath,
|
||||
|
||||
+3
-1
@@ -1146,9 +1146,11 @@ public class PdeSketch {
|
||||
// remove things up to the last dot
|
||||
String entry = imports[i].substring(0, imports[i].lastIndexOf('.'));
|
||||
//System.out.println("found package " + entry);
|
||||
Object libFolder = PdeSketchbook.importToLibraryTable.get(entry);
|
||||
File libFolder = (File) PdeSketchbook.importToLibraryTable.get(entry);
|
||||
//System.out.println(" found lib folder " + libFolder);
|
||||
importedLibraries.add(libFolder);
|
||||
|
||||
libraryPath += File.pathSeparator + libFolder.getAbsolutePath();
|
||||
}
|
||||
|
||||
|
||||
|
||||
+255
-2175
File diff suppressed because it is too large
Load Diff
+6
-6
@@ -14,7 +14,7 @@ X make grayscale image in p5
|
||||
X could be used with alpha() to properly set alpha values
|
||||
X made into filter(GRAYSCALE) and filter(BLACK_WHITE) functions
|
||||
X make g.depthTest settable as a hint
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1078428462;start=0
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096303102;start=0
|
||||
X #ifdef to remove client and server code as well
|
||||
X need to resolve issues between rendering screen/file
|
||||
X illustrator-based rendering needs to work for ars projects
|
||||
@@ -24,7 +24,7 @@ X rewrite bagel code..
|
||||
X for this release, because it will break things along with the lib stuff
|
||||
X switch to PImage, PApplet, etc
|
||||
o bug in BImage.smooth() when resizing an image
|
||||
o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1077669847
|
||||
o http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096303158;start=0
|
||||
X shut off the automatic gunzipping of streams, keep for fonts
|
||||
X fix for duplicated points in polygons that foiled the tesselator
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1077819175
|
||||
@@ -33,7 +33,7 @@ X not quite so much duplicated in cases etc.
|
||||
X lines: vertex coloring bug with my swap hack
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1085348942
|
||||
X last vertex on LINE_LOOP fades out
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1076911893
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096303406;start=0
|
||||
X include values in PConstants for additional blend modes:
|
||||
X DIFFERENCE, MULTIPLY, SCREEN, OVERLAY, HARD_LIGHT, SOFT_LIGHT
|
||||
X include a lerp()? is there one in flash?
|
||||
@@ -170,12 +170,12 @@ X tab key not working?
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1091853942;start=0
|
||||
X mousePressed, keyPressed, others.. queue them all
|
||||
X queue multiple times
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1079555200;start=0
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1079555200;start=0
|
||||
X strangeness with key codes on keyPressed
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1083406438;start=0
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1083406438;start=0
|
||||
X key codes not properly coming through for UP/DOWN/etc
|
||||
X had to bring back keyCode
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1075138932;start=0
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1075138932;start=0
|
||||
X add redraw() function
|
||||
X call redraw() on the first time through (to force initial draw)
|
||||
X otherwise noLoop() in setup means no drawing happens at all
|
||||
|
||||
@@ -7,7 +7,7 @@ o SystemColor doesn't differentiate between menu background and top
|
||||
o probably fixed in swing, but we're using java.awt.Menu
|
||||
o test by rewriting with java.awt.Menu
|
||||
X beautify is ignoring the setting for number of spaces on tabs
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1083708360;start=0
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096294561;start=0
|
||||
X clean up PdeTokenMarker, probably just alphabetize
|
||||
X saving issues (all the same bug, as it turns out)
|
||||
X save changes to null
|
||||
|
||||
@@ -128,12 +128,12 @@ X make BVideo subclass BImage
|
||||
o make sure the high bits are getting set as opaque
|
||||
X get() now sets high bits, reference will explain PVideo.pixels[]
|
||||
X video keeps running, cpu load high, even after app killed
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1086800853
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096302179;start=0
|
||||
X just locks up after running examples, then does the 'can't delete' thing
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1060313779
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096302509;start=0
|
||||
X problems with hanging video when not in the root of the c drive
|
||||
X is this because of the LIBRARY_PATH having spaces?
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1084464062;start=0
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096302580;start=0
|
||||
X first row of video pixels are black
|
||||
X casey says it may only be his camera (verified to be ok on my machine)
|
||||
X selecting input source (wintv board and quickcam installed.. problem)
|
||||
@@ -185,25 +185,28 @@ X c:/fry/processing/build/windows/work/lib/build/Temporary_8501_3382.java:1:63
|
||||
X fix dist.sh for macosx
|
||||
X include some of the simong libraries
|
||||
X move libraries around in distribution to resemble sketchbook
|
||||
X things will freeze if winvdig not installed (todo over in core)
|
||||
X video hanging without a camera installed
|
||||
X provide a useful error message when winvdig not installed (for capture)
|
||||
X http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096294414;start=0
|
||||
|
||||
040926 later
|
||||
X add "archive" option since history is gone
|
||||
|
||||
040927 morning
|
||||
X change how library path is setup (make simpler)
|
||||
|
||||
_ macosx - check to see if new linemetrics stuff is working better
|
||||
|
||||
|
||||
VIDEO
|
||||
_ things will freeze if winvdig not installed (todo over in core)
|
||||
_ video hanging without a camera installed
|
||||
_ provide a useful error message when winvdig not installed (for capture)
|
||||
_ also be able to set one in particular
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1065185464
|
||||
|
||||
README
|
||||
if you're having trouble with video examples crashing processing or locking up your system, you should try placing the processing folder into the root level of your C:\ drive, or at least inside a set of folders that have no spaces in the name. we haven't determined if this is a quicktime for java or processing bug yet, but it's been a problem for lots of people.
|
||||
_ write revisions.txt and readme.txt
|
||||
_ go through the board and move messages
|
||||
_ make the whole thing an html file?
|
||||
_ cut out some of the chatter
|
||||
_ a garbage filled classpath can cause trouble
|
||||
_ http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096302833;start=0
|
||||
_ processing won't start..
|
||||
_ people with non-ascii chars in the folder name
|
||||
_ at least try to catch this? is that possible?
|
||||
@@ -348,6 +351,10 @@ _ make preferences a modal dialog
|
||||
_ package processing.app for PdeBase, PdeEditor..
|
||||
|
||||
|
||||
_ video - try to replicate bug that causes hang with camera
|
||||
_ happens when winvdig, camera or quicktime are not properly installed
|
||||
|
||||
|
||||
0071 or later
|
||||
_ write export-to-application
|
||||
_ lock feature for present mode (part of export to application?)
|
||||
|
||||
Reference in New Issue
Block a user