aboutsummaryrefslogtreecommitdiff
path: root/packages/patches
AgeCommit message (Collapse)Author
2008-05-27patch # 1975056 show whole subpatch name in window titleHans-Christoph Steiner
http://sourceforge.net/tracker/index.php?func=detail&aid=1975056&group_id=55736&atid=478072 svn path=/trunk/; revision=9927
2008-05-14added Home/End suport to object/message boxes (and emacs home end on Mac OS ↵Hans-Christoph Steiner
X, since that is a standard binding), patch #1964023 svn path=/trunk/; revision=9804
2008-05-14ok, this time really removed all bits of add_tilde_support_toopen-0.41.4.patchHans-Christoph Steiner
svn path=/trunk/; revision=9800
2008-05-14added patch to fix problems of saving patches into folders with extended ↵Hans-Christoph Steiner
chars in it svn path=/trunk/; revision=9799
2008-05-14oops, removed add_tilde_support_toopen-0.41.4.patch from this oneHans-Christoph Steiner
svn path=/trunk/; revision=9798
2008-05-14patch #1963983Hans-Christoph Steiner
On Windows, FILENAME_MAX is much smaller than MAXPDSTRING, so I replaced MAXPDSTRING with FILENAME_MAX everywhere I could find that is related to filenames. FILENAME_MAX is a POSIX standard macro for defining the max length of a complete filename. The current situation could result in crashes on Windows. svn path=/trunk/; revision=9797
2008-05-14updated to fix crasher bug on GNU/LinuxHans-Christoph Steiner
svn path=/trunk/; revision=9796
2008-05-12patch #1962700 two embedded prefs for Mac: default and override allHans-Christoph Steiner
svn path=/trunk/; revision=9793
2008-05-11created sys_expandpath() to replace ~ with /Users/hans and expand env vars ↵Hans-Christoph Steiner
on Windows. This function is then used in sys_trytoopenone() so that ~ works with all opening operations. svn path=/trunk/; revision=9780
2008-05-09fixed up Tab, Space, Return, Escape for [key]/[keyup]/[keyname]Hans-Christoph Steiner
svn path=/trunk/; revision=9777
2008-05-09cleaned up canvas_key handling code to fix backspace and deleteHans-Christoph Steiner
svn path=/trunk/; revision=9775
2008-05-01included jleben's patch for fixing GOP red rect being drawn on the parent, ↵Hans-Christoph Steiner
patch #1953853 svn path=/trunk/; revision=9749
2008-04-28Whenever saving, update the window list for the Window menu in case the saveHans-Christoph Steiner
was a "Save As" that changed the name of the window. svn path=/trunk/; revision=9742
2008-04-28simpler patch using pdtk_enquote instead of custom kludgeHans-Christoph Steiner
svn path=/trunk/; revision=9740
2008-04-28Sets canvas dirty flag for all canvas-related properties panels (i.e. NOT ↵Hans-Christoph Steiner
the audio/midi/path/startup pref panels). This should work for adding and deleting cords, and properties panels for: canvas, arrays, iemguis, and atom boxes. The only downside is that with the properties panels, there is no checking whether there has actually be any change. I just sets the dirty flag if the user clicks on OK or Apply. svn path=/trunk/; revision=9735
2008-04-28wrote a function to switch the [pd filename] callback message to use aHans-Christoph Steiner
A_GIMME instead of two symbols, thereby correctly receiving any directory names with spaces in it. svn path=/trunk/; revision=9729
2008-04-28Luke Iannini's proxy_icon_and_modified_state.patch fixed to eliminate crashHans-Christoph Steiner
(caused by using %f in sys_vgui for an int value). Also, made the title bar fully Mac OS X-style. svn path=/trunk/; revision=9727
2008-04-25removed executable flagIOhannes m zmölnig
svn path=/trunk/; revision=9723
2008-04-15checked in Thomas' patch 1930681 to fix buffer overflowsHans-Christoph Steiner
svn path=/trunk/; revision=9711
2008-04-15checked in Thomas' patch 1930769 to fix a memory leak in g_array.c in the ↵Hans-Christoph Steiner
sine/cosine sum code svn path=/trunk/; revision=9709
2008-04-15checked in Thomas' patch 1930733 to prevent an buffer overrunHans-Christoph Steiner
svn path=/trunk/; revision=9708
2008-04-15checked in danomatika's patch 1939017 to allow hiding of hidden files on ↵Hans-Christoph Steiner
GNU/Linux open/save panel svn path=/trunk/; revision=9705
2008-04-15added in IOhannes' jack fixes, patch 1942258Hans-Christoph Steiner
svn path=/trunk/; revision=9703
2008-03-22patch to fix tiny issue with schedlib file names: there are two dots ↵Hans-Christoph Steiner
separating the file name and file extension svn path=/trunk/; revision=9625
2008-02-22upgraded to JackOSX 0.76, which has a framework with a different name. The ↵Hans-Christoph Steiner
old version was called 'Jack.framework', this one is called 'Jackmp.framework' svn path=/trunk/; revision=9465
2008-02-01Remove a couple of patches that can't go into mainline pd due to licensing. I'dRussell Bryant
rather start over with a way that could be merged there ... svn path=/trunk/; revision=9163
2008-01-10rename file from buildversion to makeversion to match actual function nameRussell Bryant
svn path=/trunk/; revision=9146
2008-01-10(from issue #1836228)Russell Bryant
This little patch slightly improves pd_makeversion(). Namely, I didn't like the use of sprintf() which ignored the possibility of the version string being longer than the allowed buffer size. Also, I changed malloc+strcpy to the slightly simpler strdup(). svn path=/trunk/; revision=9145
2008-01-10This commit adds configure script checking for a number of functions inRussell Bryant
libm: - sinf, cosf, atanf, atan2f, ... Previously, in x_arithmetic.c, these functions were redefined for MSW / Apple. Now, they will only be redefined if the configure script does not find them. The results of the checks for these functions are placed in the config.h header file. The config.h.in file was generated using autoheader. (Note that this patch requires the inclusion of acinclude.m4. You must run aclocal before running autoconf to generate the configure script.) svn path=/trunk/; revision=9144
2008-01-10(add patch from issue #1852385)Russell Bryant
This patch provides a revised implementation of the strtokcpy() function in s_path.c. It provides the following benefits: 1) Prevent potential overflow of a stack buffer. This function did nothing to ensure that it didn't write past the end of the destination buffer. It is possible to cause this to happen by providing certain command line arguments that are longer than MAXPDSTRING. Also, there may be other ways to trigger this bug if namelist_append_files() is used anywhere beyond the uses I reviewed, which are the ones in pd/*.c. 2) Copy bytes from the string in the same loop that looks for the delimiter. This is simply for efficiency in that the string only has to be traversed once, instead of twice (one to find the delimiter, and the second to copy up to it). svn path=/trunk/; revision=9143
2008-01-10This patch will add a new file, acinclude.m4, which is a small library ofRussell Bryant
m4 macros used to make adding certain things to the configure script much easier. It is a raw copy from the file's source (Asterisk). All of the macro prefixes are AST, but they have been left intact, to ease keeping this file up to date with the original one. This is required before any of the other configure script related patches can be applied. svn path=/trunk/; revision=9142
2007-12-05russell bryant's format string checking (patch #1841002Hans-Christoph Steiner
svn path=/trunk/; revision=9082
2007-12-05improved makefile.dependencies generation so that will be regenerated if the ↵Hans-Christoph Steiner
pd sources change svn path=/trunk/; revision=9081
2007-12-04fixed two bugs, time for a new patchHans-Christoph Steiner
svn path=/trunk/; revision=9080
2007-11-26added a version of oskude's 'arrow keys update scrollbars' patchHans-Christoph Steiner
svn path=/trunk/; revision=9045
2007-11-26quick hack to make print post all argumentsHans-Christoph Steiner
svn path=/trunk/; revision=9039
2007-11-07strings are now blobs. replaced "string' by "blob" everywhereMartin Peach
svn path=/trunk/; revision=8954
2007-11-06allow dynamic cursor configuration by move cursor name variables to ↵Hans-Christoph Steiner
u_main.tk, this is patch 1826507 svn path=/trunk/; revision=8939
2007-11-04patch #1825692 fixed up keybindings and panelsHans-Christoph Steiner
svn path=/trunk/; revision=8933
2007-11-04added variables to tailer the color scheme, and designed a color scheme. ↵Hans-Christoph Steiner
This could be set back to the default Pd colors also svn path=/trunk/; revision=8929
2007-10-17checked in fix for when Pd launchs the browser directly. It needs to start ↵Hans-Christoph Steiner
it with an & so that Pd doesn't wait for it to finish svn path=/trunk/; revision=8833
2007-10-11added IRC link to the Help menuHans-Christoph Steiner
svn path=/trunk/; revision=8800
2007-10-10added useful content to the very short help menuHans-Christoph Steiner
svn path=/trunk/; revision=8797
2007-10-10This patch adds a number of better commands for opening HTML files and URLs onHans-Christoph Steiner
GNU/Linux. These commands use the defaults systems, plus each command is tested before executed, so it should be more fault tolerant. svn path=/trunk/; revision=8796
2007-10-05replaced 80 char limit on postatom() with MAXPDSTRING follow this thread: ↵Hans-Christoph Steiner
http://lists.puredata.info/pipermail/pd-list/2007-10/054514.html svn path=/trunk/; revision=8788
2007-08-15updated libquicktime patch to use [file normalize] and to work with other ↵Hans-Christoph Steiner
updated patches svn path=/trunk/; revision=8590
2007-08-15replaced by normalize_pd_guidir-0.40.3.patchHans-Christoph Steiner
svn path=/trunk/; revision=8589
2007-08-15use Tcl to normalize the pd_guidir filename to get rid of ../ and other ↵Hans-Christoph Steiner
oddnesses svn path=/trunk/; revision=8583
2007-08-03removed misplaced libquicktime chunk from u_main.tk since it is in its own patchHans-Christoph Steiner
svn path=/trunk/; revision=8375
2007-07-31added patch from tracker # 1688540 since it applies and compiles on 0.40.3Hans-Christoph Steiner
svn path=/trunk/; revision=8306