Changeset 362 for libcaca/trunk
- Timestamp:
- Feb 2, 2004, 3:54:43 AM (19 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/ChangeLog
r356 r362 1 ------------------------------------------------------------------------ 2 r258 | sam | 2004-01-26 11:52:30 +0100 (Mon, 26 Jan 2004) | 5 lines 3 Changed paths: 4 M /trunk/configure.ac 5 M /trunk/debian/changelog 6 M /trunk/src/caca.c 7 M /trunk/src/event.c 8 M /trunk/src/graphics.c 9 10 * configure.ac: 11 + Check for curses.h as well as ncurses.h. 12 * src/caca.c src/event.c src/graphics.c: 13 + Include curses.h if ncurses.h was not found. 14 15 ------------------------------------------------------------------------ 16 r257 | sam | 2004-01-23 10:20:39 +0100 (Fri, 23 Jan 2004) | 3 lines 17 Changed paths: 18 M /trunk/examples/cacaview.c 19 20 * examples/cacaview.c: 21 + Moved statusbar and help menu handling in separate functions. 22 23 ------------------------------------------------------------------------ 24 r256 | sam | 2004-01-23 10:15:42 +0100 (Fri, 23 Jan 2004) | 4 lines 25 Changed paths: 26 M /trunk/src/caca.c 27 28 * src/caca.c: 29 + Alloc the AllocConsole() call to fail in case the process already has 30 a console. 31 32 ------------------------------------------------------------------------ 33 r255 | sam | 2004-01-21 18:25:18 +0100 (Wed, 21 Jan 2004) | 6 lines 34 Changed paths: 35 M /trunk/examples/cacaview.c 36 37 * examples/cacaview.c: 38 + Proper aspect ratio support. 39 + Finer zoom support. 40 + Handle mouse clicks as next/prev picture command. 41 + Removed useless iterations in draw_checkers(). 42 43 ------------------------------------------------------------------------ 44 r254 | sam | 2004-01-21 14:49:26 +0100 (Wed, 21 Jan 2004) | 8 lines 45 Changed paths: 46 M /trunk/THANKS 47 M /trunk/src/event.c 48 M /trunk/src/graphics.c 49 50 * src/graphics.c: 51 + Fixed a buffer overflow due to bad signed/unsigned handling. 52 * src/event.c: 53 + Disallow zero width or height in the X11 driver. 54 + Fixed resizing in ncurses and slang. 55 * THANKS: 56 + Added the Source Mage maintainer. 57 58 ------------------------------------------------------------------------ 59 r253 | sam | 2004-01-18 05:48:09 +0100 (Sun, 18 Jan 2004) | 2 lines 60 Changed paths: 61 A /branches/0.8 (from /trunk:252) 62 M /branches/0.8/ChangeLog 63 M /trunk/ChangeLog 64 65 * 0.8 branch. 66 1 67 ------------------------------------------------------------------------ 2 68 r252 | sam | 2004-01-18 05:45:28 +0100 (Sun, 18 Jan 2004) | 2 lines -
libcaca/trunk/NEWS
r355 r362 1 1 $Id$ 2 3 Changes between 0.8 and 0.9: 4 ---------------------------- 5 6 * fix for a buffer overflow in the line rendering 7 * fixed resizing in the ncurses and slang drivers 8 * aspect ratio and finer zoom support in cacaview 9 * minor compilation fixes 2 10 3 11 Changes between 0.7 and 0.8: -
libcaca/trunk/configure.ac
r361 r362 7 7 AC_CANONICAL_SYSTEM 8 8 9 AM_INIT_AUTOMAKE(libcaca, 0. 8)9 AM_INIT_AUTOMAKE(libcaca, 0.9) 10 10 AM_CONFIG_HEADER(config.h) 11 11 -
libcaca/trunk/debian/changelog
r361 r362 1 libcaca (0.9-1) unstable; urgency=low 2 3 * New upstream release. 4 5 -- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Mon, 2 Feb 2004 03:50:43 +0100 6 1 7 libcaca (0.8-2) unstable; urgency=low 2 8 -
libcaca/trunk/libcaca.spec
r355 r362 1 1 %define name libcaca 2 %define version 0. 82 %define version 0.9 3 3 %define release 1 4 4 … … 111 111 112 112 %changelog 113 * Sun Feb 2 2004 Sam Hocevar (RPM packages) <sam+rpm@zoy.org> 0.9-1 114 - new release 115 113 116 * Sun Jan 18 2004 Sam Hocevar (RPM packages) <sam+rpm@zoy.org> 0.8-1 114 117 - new release -
libcaca/trunk/msvc/config.h
r355 r362 3 3 #define ALLOCCONSOLE_IN_WINDOWS_H 1 4 4 /* #undef HAVE_CONIO_H */ 5 /* #undef HAVE_CURSES_H */ 5 6 /* #undef HAVE_ENDIAN_H */ 6 7 #define HAVE_GETENV 1 … … 8 9 /* #undef HAVE_IMLIB2_H */ 9 10 /* #undef HAVE_INTTYPES_H */ 11 /* #undef HAVE_IOCTL */ 10 12 #define HAVE_MEMORY_H 1 11 13 /* #undef HAVE_NCURSES_H */ … … 45 47 #define USE_WIN32 1 46 48 /* #undef USE_X11 */ 47 #define VERSION "0. 8"49 #define VERSION "0.9" 48 50 /* #undef const */ 49 51 #ifndef __cplusplus
Note: See TracChangeset
for help on using the changeset viewer.