ticket summary product component version milestone type owner status created _changetime _description _reporter 50 transparency broken for caca_import_file libcaca core SVN defect Sam Hocevar new 2009-01-13T19:45:27+01:00 2009-08-03T23:26:43+02:00 When importing an ansi file with transparent background color([49m), using caca_import_file(), the transparent color becomes black. guest 84 cannot run executables with ASLR zzuf port: Windows SVN defect Sam Hocevar new 2010-09-21T00:19:33+02:00 2012-01-19T04:06:20+01:00 "As of now, zzuf cannot run a .exe if it uses ASLR. In bug #62 I put two links about defeating ALSR: * http://blogs.technet.com/b/mmpc/archive/2009/06/15/bugging-the-debuggers.aspx * http://www.rohitab.com/discuss/topic/34435-get-base-address-via-process-peb-and-hide-from-peb/" Sam Hocevar 91 Key event problem with gl and ncurses driver libcaca core SVN defect Sam Hocevar new 2011-07-05T09:54:32+02:00 2011-07-05T09:54:32+02:00 "1) With gl driver: The release key event isn't caught. {{{ CACA_DRIVER=gl ./key_event }}} 2) With ncurses driver: When you pass a libcaca program behind a pipe with ncurses driver, key event doesn't work and block program. {{{ echo ""a string"" | CACA_DRIVER=ncurses ./key_event }}} " Alex Foulon 23 Unicode broken in ncurses / (slang) libcaca core SVN Final defect Sam Hocevar new 2008-02-26T18:24:12+01:00 2009-12-19T01:05:04+01:00 "In some terminals (exact list to be investigated) ncurses fails to display Unicode characters even though the terminal is perfectly Unicode-capable." Sam Hocevar 34 we need a file browser cacaview core SVN Final defect Sam Hocevar new 2008-02-26T18:51:30+01:00 2009-08-03T23:18:45+02:00 cacaview is slightly unusable without a file browser Sam Hocevar 37 totally non-functional cacadraw core SVN Final defect Sam Hocevar new 2008-02-26T18:53:29+01:00 2009-08-03T23:21:13+02:00 cacadraw doesn't let us draw anything Sam Hocevar 56 write correct figfont implementation libcaca core SVN defect Sam Hocevar new 2009-05-19T02:09:46+02:00 2009-08-03T23:28:42+02:00 The figfont support functions are a total mess. They must be properly rewritten to be useful. Sam Hocevar 65 build-win32 leaves spurious bin/ directory zzuf build system SVN defect Sam Hocevar new 2009-11-20T23:45:27+01:00 2009-11-20T23:45:27+01:00 When build-win32 is used, a spurious bin/ directory containing libzzuf.dll is created and not removed. Sam Hocevar 66 Improve ANSI/VT100 support neercs core SVN defect Jean-Yves Lamoureux assigned 2009-11-27T12:04:39+01:00 2009-11-30T17:18:16+01:00 Most of xterm's vttests fail miserably Jean-Yves Lamoureux 69 No cursor with 'ncurses' output driver neercs core SVN defect Jean-Yves Lamoureux assigned 2009-11-30T13:07:53+01:00 2009-11-30T17:18:50+01:00 Using neercs with the 'ncurses' output driver doesn't display the terminal cursor. guest 70 display problems with the 'slang' output driver neercs core SVN defect Jean-Yves Lamoureux assigned 2009-11-30T13:11:07+01:00 2009-11-30T17:17:47+01:00 "Using the 'slang' output driver sometimes has a strange display (with htop, and with screensaver). (I assigned this ticket to neercs, but I guess this is a libcaca problem?)." guest 76 Allow zzat to output immediately zzuf core SVN defect Sam Hocevar new 2010-01-13T12:07:30+01:00 2010-02-17T00:05:12+01:00 "If a zzat sequence doesn't use rewind() or fseek(), we know that any read byte can be immediately sent to the standard output. This would improve zzcat's speed and memory usage: - design a simple bytecode language - write another parser that translates the sequence to bytecode - check for syntax BEFORE running the bytecode! - if rewinding functions don't appear in the bytecode, output characters immediately" Sam Hocevar 77 zzuf: fine-tune exit conditions zzuf core SVN defect Sam Hocevar assigned 2010-02-23T21:32:01+01:00 2011-02-26T00:58:37+01:00 "Currently, most exit scenarios are considered crashes. zzuf needs a way to refine how it exits, for instance by ignoring some signals, or ignoring excess time usage. It could be implemented with `-X` which is unused yet: {{{ zzuf -X SIGABRT,SIGSEGV,SIGFPE,TIME }}} " Sam Hocevar 80 check ie6/7/8, safari & opera web site trac SVN defect carmie new 2010-08-20T15:57:07+02:00 2010-08-20T16:27:55+02:00 carmie 81 Problem compiling libcaca 0.99.beta17 libcaca core defect Sam Hocevar new 2010-08-23T17:40:35+02:00 2012-02-29T12:27:45+01:00 "[...] Making all in caca-sharp make[2]: Entering directory `/tmp/libcaca-0.99.beta17/caca-sharp' /usr/local/bin/csc -debug -unsafe ./AssemblyInfo.cs ./Caca.cs ./Attr.cs ./Canvas.cs ./Display.cs ./Dither.cs ./Event.cs ./Font.cs -out:caca-sharp.dll -target:library \ -keyfile:./caca-sharp.snk -r:System.Drawing.dll csc: invalid option `-:' make[2]: *** [caca-sharp.dll] Error 64 make[2]: Leaving directory `/tmp/libcaca-0.99.beta17/caca-sharp' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/tmp/libcaca-0.99.beta17' make: *** [all] Error 2 " Pierre 82 neercs assumes that terms send utf8 libcaca core SVN defect Pascal Terjan new 2010-08-27T00:26:51+02:00 2010-08-27T00:28:02+02:00 "In ansi.c, the character goes through caca_utf8_to_utf32 and only if bytes is 0 it is considered to be a 1 byte character to keep. This does not really make sense as caca_utf8_to_utf32 returning 0 is not equivalent to invalid utf8 and bytes probably never 0 in this case. ==== If a null byte was reached before the expected end of the UTF-8 sequence, this function returns zero and the number of read bytes is set to zero. This function never fails, but its behaviour with illegal UTF-8 sequences is undefined. ==== " Pascal Terjan 83 Redirect stdin/stdout on Windows zzuf port: Windows SVN defect Sam Hocevar new 2010-09-21T00:17:22+02:00 2010-09-21T00:17:22+02:00 Zzuf cannot yet grab stdin/stdout under Windows. Sam Hocevar 87 Two-level enum bullets are misaligned web site core SVN defect carmie new 2011-01-02T15:47:18+01:00 2011-01-02T17:13:20+01:00 "Some