Aquileo | Recent changes to patcheshttps://sourceforge.net/p/sweep/patches/Recent changes to patchesenTue, 14 Jun 2022 16:07:59 -0000Aquileo | Fix typos in binaryhttps://sourceforge.net/p/sweep/patches/8/<div class="markdown_content"><p>I'm sent this patch to fix some typos.</p></div>Guilherme XavierTue, 14 Jun 2022 16:07:59 -0000https://sourceforge.net44c7bfcd0cdb25640069965bc9336c05bb75e0a6Aquileo | Fix for a locale encoding related segfaulthttps://sourceforge.net/p/sweep/patches/7/<div class="markdown_content"><p>Sweep crashes on my Debian system with a non-UTF-8 German locale.</p>
<p>gettext delivers translated strings in the system encoding (latin), while GTK/Pango seem to expect UTF-8 encoded strings. There are warnings like this:<br />
(sweep:5369): Pango-WARNING **: Invalid UTF-8 string passed to pango_layout_set_text()</p>
<p>Eventually the program crashes:<br />
Program received signal SIGSEGV, Segmentation fault.<br />
0xb7421108 in g_markup_escape_text () from /lib/libglib-2.0.so.0<br />
(gdb) bt<br />
#0 0xb7421108 in g_markup_escape_text () from /lib/libglib-2.0.so.0<br />
#1 0xb7e5a30b in ?? () from /usr/lib/libgtk-x11-2.0.so.0<br />
#2 0xb78bcf9c in g_object_set_valist () from /usr/lib/libgobject-2.0.so.0<br />
#3 0xb78bd5c6 in g_object_set () from /usr/lib/libgobject-2.0.so.0<br />
#4 0xb7e4ace1 in gtk_widget_set_tooltip_text () from /usr/lib/libgtk-x11-2.0.so.0<br />
#5 0x0806f79c in create_pixmap_button ()<br />
#6 0x0808fb18 in view_new ()<br />
#7 0x08093d29 in view_new_all ()<br />
#8 0x08084618 in ?? ()<br />
#9 0xb78c5cac in g_cclosure_marshal_VOID__VOID () from /usr/lib/libgobject-2.0.so.0<br />
#10 0xb78b813a in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0<br />
#11 0xb78ce61d in ?? () from /usr/lib/libgobject-2.0.so.0<br />
#12 0xb78cfbfc in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0<br />
#13 0xb78d0076 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0<br />
#14 0xb7c63a8a in gtk_button_clicked () from /usr/lib/libgtk-x11-2.0.so.0<br />
#15 0xb7c65048 in ?? () from /usr/lib/libgtk-x11-2.0.so.0<br />
#16 0xb78c5cac in g_cclosure_marshal_VOID__VOID () from /usr/lib/libgobject-2.0.so.0<br />
#17 0xb78b67a9 in ?? () from /usr/lib/libgobject-2.0.so.0<br />
#18 0xb78b813a in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0<br />
#19 0xb78cdeba in ?? () from /usr/lib/libgobject-2.0.so.0<br />
#20 0xb78cfbfc in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0<br />
#21 0xb78d0076 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0<br />
#22 0xb7c63b2a in gtk_button_released () from /usr/lib/libgtk-x11-2.0.so.0<br />
#23 0xb7c63b73 in ?? () from /usr/lib/libgtk-x11-2.0.so.0<br />
#24 0xb7d20e74 in ?? () from /usr/lib/libgtk-x11-2.0.so.0<br />
#25 0xb78b67a9 in ?? () from /usr/lib/libgobject-2.0.so.0<br />
#26 0xb78b813a in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0<br />
#27 0xb78ce266 in ?? () from /usr/lib/libgobject-2.0.so.0<br />
#28 0xb78cfa7b in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0<br />
#29 0xb78d0076 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0<br />
#30 0xb7e4d156 in ?? () from /usr/lib/libgtk-x11-2.0.so.0<br />
#31 0xb7d194cd in gtk_propagate_event () from /usr/lib/libgtk-x11-2.0.so.0<br />
#32 0xb7d1a857 in gtk_main_do_event () from /usr/lib/libgtk-x11-2.0.so.0<br />
#33 0xb7ba3dda in ?? () from /usr/lib/libgdk-x11-2.0.so.0<br />
#34 0xb741c305 in g_main_context_dispatch () from /lib/libglib-2.0.so.0<br />
#35 0xb741ffe8 in ?? () from /lib/libglib-2.0.so.0<br />
#36 0xb7420527 in g_main_loop_run () from /lib/libglib-2.0.so.0<br />
#37 0xb7d1ae19 in gtk_main () from /usr/lib/libgtk-x11-2.0.so.0<br />
#38 0x0805699a in main ()</p>
<p>This patch forces gettext to deliver UTF-8 encoded strings, which seems to fix the issue.</p></div>Christian HenzSun, 06 Mar 2011 14:54:07 -0000https://sourceforge.net4c58b8ba6ed89b7ef466a9e147ffed68bb56c280Aquileo | some fixes for NetBSDhttps://sourceforge.net/p/sweep/patches/6/<div class="markdown_content"><p>I've made a sweep package for NetBSD. Although, I've<br />
encountered some problems that you may want to know.<br />
The first one is that when you detect ossaudio, you do<br />
not add it to linker flags. The patch I propose may not<br />
be good (you will prefer AC_CHECK_LIB, I've just seen<br />
it). The second problem is with the solaris audio. I<br />
have an audioio.h header in NetBSD, but no stropts.h,<br />
so it fails. The patch also fixes it. The other patch<br />
adds a NULL argument when calling ioctl's (two<br />
arguments won't work). I'm not sure if this is ok.</p>
<p>Regards</p></div>Julio MerinoFri, 30 Aug 2002 15:29:54 -0000https://sourceforge.net2cebf3a937943ec559d02458383e51ade619a876Aquileo | scroll while playing 3https://sourceforge.net/p/sweep/patches/5/<div class="markdown_content"><p>This patch fixes a problem with multiple selections.</p>
<p>Patrick.</p></div>Patrick ShirkeyMon, 07 May 2001 07:03:40 -0000https://sourceforge.net2769e6d6bee6d49b02a6b983b28bd035583c5117Aquileo | auto scroll while playing 2https://sourceforge.net/p/sweep/patches/4/<div class="markdown_content"><p>This fixes the bug with resizing the window and the<br />
syncing getting out of whack.</p>
<p>Now the window scrolls much more fluidly. </p>
<p>Patrick.</p></div>Patrick ShirkeySun, 06 May 2001 13:13:37 -0000https://sourceforge.netefa55d4163a5994cd15bbfa9bd855f6c1c5d6ae5Aquileo | auto scroll while playinghttps://sourceforge.net/p/sweep/patches/3/<div class="markdown_content"><p>This patch allows the sample to automatically scroll<br />
while it is playing.</p>
<p>Very simple and has many bugs but it works ;-]</p>
<p>Patrick.</p></div>Patrick ShirkeySat, 05 May 2001 04:31:34 -0000https://sourceforge.net1bf444bef73d53b9017e16a47e30c9872f05001bAquileo | patch to view.c menu for segregated filthttps://sourceforge.net/p/sweep/patches/2/<div class="markdown_content"><p>small patch to view.c</p>
<p>Beware as this patch has additions for hotkeys that you<br />
may or may not want.</p></div>Patrick ShirkeySat, 28 Apr 2001 12:26:30 -0000https://sourceforge.netd4261cb48308c27f8ce126d048b3b5e54e8dc7c9Aquileo | Segregated filters menu.https://sourceforge.net/p/sweep/patches/1/<div class="markdown_content"><p>This patch should arrnge the filters menu so that the<br />
ladspa plugins have thier own submenu and the native<br />
plugins are on the top level.</p></div>Patrick ShirkeySat, 28 Apr 2001 12:24:43 -0000https://sourceforge.net9dd05c8d584d26125c26fd33a6364bc6a8fb4d4d