aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-12-12replace all %x patterns with %lx to support 64-bitHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=15813
2011-12-12fixed debug messages to only show when set to DEBUGHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=15812
2011-10-21turn off debug messagesHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=15632
2011-10-19port to 0.43's pdsend proc in pd-guiHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=15622
2011-10-07install kludge to include example gif for [image]Hans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=15541
2011-10-03fixed typo on libdir_install kludgeHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=15475
2011-10-03updated template/Makefile to 1.0.11Hans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=15474
2011-08-19updated Makefile to latest template version to get things building on ↵Hans-Christoph Steiner
Debian/kFreeBSD and Debian/HURD svn path=/trunk/externals/ggee/; revision=15249
2011-08-01replace .x%x 32-bit only canvas id with .x%lx canvas id which supports ↵Hans-Christoph Steiner
32-bit and 64-bit svn path=/trunk/externals/ggee/; revision=15186
2010-11-27added symbol arg to ticker-help.pdJonathan Wilkes
svn path=/trunk/externals/ggee/; revision=14528
2010-11-22added filesystem to KEYWORDSJonathan Wilkes
svn path=/trunk/externals/ggee/; revision=14474
2010-11-15added META subpatch and filled in some missing help patchesJonathan Wilkes
svn path=/trunk/externals/ggee/; revision=14439
2010-11-12bumped version post-releaseHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=14427
2010-11-12uploaded Debian package to pkg-multimedia so removing 'debian' folder: ↵Hans-Christoph Steiner
http://git.debian.org/?p=pkg-multimedia/pd-ggee.git;a=summary svn path=/trunk/externals/ggee/; revision=14426
2010-11-12bumping version to 0.26 for releaseHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=14424
2010-11-12fully debianized, now ready to tag and release 0.26Hans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=14421
2010-11-12removed VBAP code from ggee since it hasn't been used in many years and has ↵Hans-Christoph Steiner
an annoying license (BSD with advertisement clause) svn path=/trunk/externals/ggee/; revision=14420
2010-11-11copied over template Makefile and got things building from itHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=14394
2010-11-11fixed typoHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=14393
2010-11-11renamed helppatch to include ~Hans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=14392
2010-09-17merged relevant changes from Pd-extended 0.42Hans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=14153
2010-04-13allow spaces in filenames by concating all the atoms in image_new and ↵Hans-Christoph Steiner
image_open args with spaces between them, fixing bug #1770553 svn path=/trunk/externals/ggee/; revision=13448
2010-04-13cast pointer to struct to long unsigned int to get rid of warningHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=13440
2010-04-13converted all %x to %lx following Pd itself so things work smoothly on WindowsHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=13439
2010-04-09added most basic help patchHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=13416
2009-12-27the included sys_* functions are different than the ones in s_stuff.h, so ↵Hans-Christoph Steiner
use them instead of the standard Pd ones svn path=/trunk/externals/ggee/; revision=12847
2009-12-27following up on bug report #2921689, fixed a bunch of 'implicit declaration ↵Hans-Christoph Steiner
of function' warnings, which could cause problems on 64-bit svn path=/trunk/externals/ggee/; revision=12846
2009-06-09replaced -export_dynamic with --export-dynamic and -Wl,--export-dynamic whereHans-Christoph Steiner
appropriate. It seems that once upon a time -export_dynamic was a real flag. Now it means -e xport_dynamic, meaning set the entry symbol to xport_dynamic, giving this error message: /usr/bin/ld: warning: cannot find entry symbol xport_dynamic; defaulting to 0000000000001b60 svn path=/trunk/externals/ggee/; revision=11724
2008-12-07updated gcanvas help patch to document some of the hidden features for ↵Hans-Christoph Steiner
drawing to the canvas svn path=/trunk/externals/ggee/; revision=10430
2008-12-05made all help patches actually control a [biquad~] with a [noise~] inputHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=10427
2008-12-05renamed to standard help file nameHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=10426
2008-06-19removed the svn:executable bit for code, patches and textIOhannes m zmölnig
svn path=/trunk/externals/ggee/; revision=10048
2008-05-12checked in updated gcanvas.c from PDa-0.7-pre1-src.tgz and updated help ↵Hans-Christoph Steiner
files; builds and works fine on Mac OS X, will test other platforms later svn path=/trunk/externals/ggee/; revision=9788
2008-04-22quickly added third outlet from PDa source so that this object won't break ↵Hans-Christoph Steiner
PDa patches when they are edited in Pd-extended svn path=/trunk/externals/ggee/; revision=9720
2008-01-06(Merge the rest of my changes from issue #1848356)Russell Bryant
When I first starting looking into different ways to stream audio into Pd, I spent a little bit of time looking at streamin~/streamout~. While looking at it, I fixed the security issue from the previous commit, and made the following updates to stream.h. - Adding doxygen style comments. - Add an ifdef to prevent against multiple or recursive includes of the header. - Document most of the fields in the defined data structures. - Fix potential alignment bugs (at least on platforms using GNUC) by using the packed attribute for structures defining network frames. See http://gcc.gnu.org/onlinedocs/gcc-4.2.2/gcc/Variable-Attributes.html#Variable%20Attributes - Point out the fact that this code is not endianness-safe, and that it should eventually be updated to respect network byte order. - Point out that the version field of the frame header is ignored when parsing incoming frames. - Change a list of #defines to an enum. - Instead of using "int" in the frame header structure, use int32_t to explicitly state that the field is 32-bits. svn path=/trunk/externals/ggee/; revision=9134
2008-01-06Fix a security issue.Russell Bryant
streamin~ was vulnerable to a remotely exploitable heap buffer overflow that could potentially allow an attacker to execute arbitrary code on a machine that is using streamin~. The issue is that the defined frame header includes a field for frame size which indicates how much additional data is available. However, this frame size was not checked to ensure that it was smaller than the size of the buffer that was allocated to store this data. (one of my patches from issue #1848356) svn path=/trunk/externals/ggee/; revision=9133
2007-10-29Following this thread:Hans-Christoph Steiner
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html I have changed the save functions so that they will save the name of the object that it was actually instantiated with. This allows objects with savefns to work properly with namespaces. This is a fix for this bug: http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=478070 svn path=/trunk/externals/ggee/; revision=8902
2007-08-15added [open( and [size( messages and updated help patchHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=8591
2007-08-09Hopefully fixed problem with spaces in parent directory names.Frank Barknecht
svn path=/trunk/externals/ggee/; revision=8496
2007-07-08added pd_error when sustain message is out of rangeHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=7909
2007-07-03changed helpfile name to match standardHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=7891
2007-07-03updated windows macro to automatically defined _WIN32 to smooth Windows buildingHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=7890
2007-07-03added notes about the messages and en example about state savingHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=7889
2007-07-03added error report to [sustain( messageHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=7888
2007-04-27Added linux Makefile for ggee stk external and removed deprecated STK includesJamie Bullock
svn path=/trunk/externals/ggee/; revision=7608
2006-12-11converted to use the standard help file name (*-help.pd)Hans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=6776
2006-11-29added a tiny bit of explanationHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=6509
2006-09-20made a functional exampleHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=5974
2006-06-01compilation of fofsynthGuenter Geiger
svn path=/trunk/externals/ggee/; revision=5154
2006-05-25ifdef'ed so it doesn't get compiled on Windows, since it doesn't compile anywayHans-Christoph Steiner
svn path=/trunk/externals/ggee/; revision=5135