Changeset 258
- Timestamp:
- Dec 18, 2003, 1:41:28 AM (19 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/ChangeLog
r242 r258 1 ------------------------------------------------------------------------ 2 r154 | sam | 2003-12-18 01:11:52 +0100 (Thu, 18 Dec 2003) | 3 lines 3 Changed paths: 4 M /trunk/src/bitmap.c 5 M /trunk/src/box.c 6 M /trunk/src/caca.c 7 M /trunk/src/caca.h 8 M /trunk/src/conic.c 9 M /trunk/src/graphics.c 10 M /trunk/src/io.c 11 M /trunk/src/line.c 12 M /trunk/src/math.c 13 M /trunk/src/sprite.c 14 M /trunk/src/triangle.c 15 16 * src/: 17 + Doxygenated public functions. 18 19 ------------------------------------------------------------------------ 20 r153 | sam | 2003-12-17 16:03:05 +0100 (Wed, 17 Dec 2003) | 3 lines 21 Changed paths: 22 M /trunk/src/caca.h 23 24 * src/caca.h: 25 + Documented environment variables. 26 27 ------------------------------------------------------------------------ 28 r152 | sam | 2003-12-17 00:25:54 +0100 (Wed, 17 Dec 2003) | 4 lines 29 Changed paths: 30 M /trunk/examples/view.c 31 32 * examples/view.c: 33 + Fixed a bug in the loading of 1bpp BMPs. 34 + Commented stuff. 35 36 ------------------------------------------------------------------------ 37 r151 | sam | 2003-12-17 00:06:54 +0100 (Wed, 17 Dec 2003) | 7 lines 38 Changed paths: 39 M /trunk/examples/Makefile.am 40 M /trunk/examples/view.c 41 42 * examples/view.c: 43 + If Imlib2 is not available, use a custom simple BMP loader. 44 + Draw the bottom bar one line higher to leave room for a status line. 45 + '?' now properly toggles help. 46 * examples/Makefile.am: 47 + Always build cacaview. 48 49 ------------------------------------------------------------------------ 50 r150 | sam | 2003-12-16 10:06:46 +0100 (Tue, 16 Dec 2003) | 5 lines 51 Changed paths: 52 M /trunk/configure.ac 53 M /trunk/src/bitmap.c 54 55 * src/bitmap.c: 56 + If the alpha palette is all-zero, forget the alpha channel. 57 * configure.ac: 58 + Export HAVE_IMLIB2_H and the like. 59 60 ------------------------------------------------------------------------ 61 r149 | sam | 2003-12-15 16:02:50 +0100 (Mon, 15 Dec 2003) | 4 lines 62 Changed paths: 63 M /trunk/src/bitmap.c 64 65 * src/bitmap.c: 66 + If the alpha mask is 0, ignore alpha information. 67 + Ditto if no alpha information is given with the palette. 68 69 ------------------------------------------------------------------------ 70 r148 | sam | 2003-12-15 11:38:03 +0100 (Mon, 15 Dec 2003) | 4 lines 71 Changed paths: 72 M /trunk/configure.ac 73 M /trunk/src/caca.c 74 M /trunk/src/caca_internals.h 75 M /trunk/src/graphics.c 76 M /trunk/src/io.c 77 78 * src/graphics.c src/io.c: 79 + Beginning of an X11 driver. Currently we merely open the window and 80 check keyboard events. 81 82 ------------------------------------------------------------------------ 83 r147 | sam | 2003-12-12 17:19:44 +0100 (Fri, 12 Dec 2003) | 7 lines 84 Changed paths: 85 M /trunk/configure.ac 86 M /trunk/debian/changelog 87 M /trunk/src/caca.c 88 89 * configure.ac debian/changelog: 90 + Prepare for 0.3 release. 91 + Check for strcasecmp(). 92 * src/caca.c: 93 + Honor CACA_BACKGROUND, CACA_DITHERING and CACA_ANTIALIASING environment 94 variables. 95 96 ------------------------------------------------------------------------ 97 r146 | sam | 2003-12-12 15:49:41 +0100 (Fri, 12 Dec 2003) | 13 lines 98 Changed paths: 99 M /trunk/examples/aafire.c 100 M /trunk/examples/demo.c 101 M /trunk/examples/view.c 102 M /trunk/src/bitmap.c 103 M /trunk/src/caca.c 104 M /trunk/src/caca.h 105 M /trunk/src/caca_internals.h 106 107 * src/bitmap.c: 108 + Added antialiasing support. 109 + Dithering, antialiasing and background mode can now be selected at 110 runtime. 111 * src/caca.c src/caca.h: 112 + Renamed caca_dithering into caca_feature and extended the type to 113 express background colour and antialiasing mode. 114 * examples/demo.c: 115 + Fixed a bug that disabled the sprite demo. 116 + Draw solid flares. 117 * examples/view.c: 118 + Select antialiasing and background mode at runtime. 119 120 ------------------------------------------------------------------------ 121 r145 | sam | 2003-12-11 18:01:09 +0100 (Thu, 11 Dec 2003) | 2 lines 122 Changed paths: 123 M /trunk/BUGS 124 M /trunk/TODO 125 M /trunk/debian/control 126 M /trunk/doc/cacademo.1 127 M /trunk/doc/cacaview.1 128 129 * Minor updates to manpages, BUGS, TODO and the Debian control file. 130 131 ------------------------------------------------------------------------ 132 r144 | sam | 2003-12-11 17:56:35 +0100 (Thu, 11 Dec 2003) | 5 lines 133 Changed paths: 134 M /trunk/src/Makefile.am 135 M /trunk/src/bitmap.c 136 M /trunk/src/caca.c 137 M /trunk/src/caca.h 138 M /trunk/src/caca_internals.h 139 M /trunk/src/graphics.c 140 141 * src/caca.c: 142 + Moved global variables to src/graphics.c. 143 * src/bitmap.c: 144 + Sanitised prototypes. 145 146 ------------------------------------------------------------------------ 147 r143 | sam | 2003-12-11 17:31:49 +0100 (Thu, 11 Dec 2003) | 17 lines 148 Changed paths: 149 M /trunk/examples 150 M /trunk/examples/aafire.c 151 M /trunk/examples/demo.c 152 M /trunk/examples/view.c 153 M /trunk/src/bitmap.c 154 M /trunk/src/box.c 155 M /trunk/src/caca.c 156 M /trunk/src/caca.h 157 M /trunk/src/caca_internals.h 158 M /trunk/src/conic.c 159 M /trunk/src/graphics.c 160 M /trunk/src/line.c 161 M /trunk/src/sprite.c 162 M /trunk/src/triangle.c 163 164 * src/graphics.c: 165 + Internally cache screen width and height. 166 * src/bitmap.c: 167 + Added alpha support to caca_draw_bitmap(). For now, we only treat 0% 168 alpha as fully transparent, and any other value as fully opaque. 169 + Slightly tuned colour weights in the renderer. 170 + caca_set_bitmap_palette() takes unsigned ints. 171 * examples/demo.c: 172 + Added a crap render demo. 173 * examples/aafire.c: 174 + Set a 20ms delay. 175 + Added alpha values to the palette. 176 * examples/view.c: 177 + Draw a gray checkered grid below the image so that transparent images 178 look a lot nicer. 179 + 'f' toggles "fullscreen" mode. 180 181 ------------------------------------------------------------------------ 182 r142 | sam | 2003-12-11 16:54:53 +0100 (Thu, 11 Dec 2003) | 6 lines 183 Changed paths: 184 M /trunk/caca-config.in 185 M /trunk/configure.ac 186 187 * configure.ac: 188 + Set the executable bit of caca-config when regenerating that file. 189 * caca-config.in: 190 + No longer use USE_SLANG_TRUE and USE_NCURSES_TRUE since we now 191 have @CACA_LIBS@. 192 193 ------------------------------------------------------------------------ 194 r141 | sam | 2003-12-02 23:27:27 +0100 (Tue, 02 Dec 2003) | 6 lines 195 Changed paths: 196 M /trunk/configure.ac 197 M /trunk/examples/Makefile.am 198 A /trunk/examples/aafire.c 199 200 * configure.ac: 201 + Removed unused USE_* variables. 202 + Export -lslang and -lncurses as @CACA_LIBS@. 203 * examples/aafire.c: 204 + Imported aafire.c from the AAlib tree and ported it to libcaca. 205 206 ------------------------------------------------------------------------ 207 r139 | sam | 2003-11-30 18:15:31 +0100 (Sun, 30 Nov 2003) | 2 lines 208 Changed paths: 209 M /trunk/ChangeLog 210 M /trunk/NEWS 211 M /trunk/TODO 212 M /trunk/debian/changelog 213 M /trunk/debian/control 214 215 * 0.2 release. 216 1 217 ------------------------------------------------------------------------ 2 218 r138 | sam | 2003-11-30 18:14:19 +0100 (Sun, 30 Nov 2003) | 3 lines -
libcaca/trunk/NEWS
r242 r258 1 1 $Id$ 2 3 Changes between 0.2 and 0.3: 4 ---------------------------- 5 6 * antialiasing support 7 * dithering, antialiasing and background mode can now be selected at 8 runtime or in the environment using the CACA_BACKGROUND, CACA_DITHERING 9 and CACA_ANTIALIASING variables 10 * alpha channel support in cacaview 11 * BMP loading support in cacaview even if Imlib2 is not present 12 * cacafire, a libcaca port of aafire 2 13 3 14 Changes between 0.1 and 0.2: -
libcaca/trunk/README
r223 r258 5 5 o Run configure then make. Useful configure flags are: 6 6 7 --enable- slang: use the SLanglibrary (default)8 --enable- ncurses: use the ncurseslibrary7 --enable-ncurses: use the ncurses library (default) 8 --enable-slang: use the SLang library 9 9 --enable-conio: use MS-DOS conio.h 10 10 -
libcaca/trunk/debian/changelog
r250 r258 1 1 libcaca (0.3-1) unstable; urgency=low 2 2 3 * XXX3 * New upstream release. 4 4 5 -- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Thu, 1 1 Dec 2003 22:10:45+01005 -- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Thu, 18 Dec 2003 01:38:17 +0100 6 6 7 7 libcaca (0.2-2) unstable; urgency=low -
libcaca/trunk/debian/control
r248 r258 28 28 cacaview is a simple image viewer for the terminal. It opens most image 29 29 formats such as JPEG, PNG, GIF etc. and renders them on the terminal using 30 ASCII art. The user can zoom and scroll the image and set the dithering 31 method. 30 ASCII art. The user can zoom and scroll the image, set the dithering method 31 or enable anti-aliasing. 32 . 33 cacafire is a port of AALib's aafire and displays burning ASCII art flames. 32 34 . 33 35 cacademo is a simple application that shows the libcaca rendering features -
libcaca/trunk/doc/doxygen.cfg
r207 r258 24 24 # if some version control system is used. 25 25 26 PROJECT_NUMBER = 0. 126 PROJECT_NUMBER = 0.3 27 27 28 28 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
Note: See TracChangeset
for help on using the changeset viewer.