Changeset 311
- Timestamp:
- Jan 4, 2004, 12:21:27 AM (19 years ago)
- Location:
- libcaca
- Files:
-
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
libcaca/branches/0.6/ChangeLog
r283 r311 1 ------------------------------------------------------------------------ 2 r207 | sam | 2004-01-04 00:15:48 +0100 (Sun, 04 Jan 2004) | 9 lines 3 Changed paths: 4 M /trunk/NEWS 5 M /trunk/configure.ac 6 M /trunk/debian/changelog 7 M /trunk/debian/control 8 M /trunk/debian/rules 9 M /trunk/doc/Makefile.am 10 M /trunk/libcaca.spec 11 12 * configure.ac NEWS: 13 + Prepared the 0.6 release. 14 * libcaca.spec: 15 + Split the RPM into libcaca-devel and caca-utils. 16 + More detailed descriptions. 17 + Packages are now rpmlint clean. 18 * doc/Makefile.am: 19 + Symlink cacafire.1 to cacademo.1 upon manpage installation. 20 21 ------------------------------------------------------------------------ 22 r206 | sam | 2004-01-03 18:31:44 +0100 (Sat, 03 Jan 2004) | 3 lines 23 Changed paths: 24 M /trunk/configure.ac 25 M /trunk/src/caca.c 26 M /trunk/src/graphics.c 27 M /trunk/src/io.c 28 29 * configure.ac: 30 + Search for <slang/slang.h> in addition of <slang.h>. 31 32 ------------------------------------------------------------------------ 33 r205 | sam | 2004-01-03 15:33:35 +0100 (Sat, 03 Jan 2004) | 5 lines 34 Changed paths: 35 M /trunk/src/bitmap.c 36 37 * src/bitmap.c: 38 + Dither H/S/V when looking up the two nearest colours. 39 + Weigh pixels in the distance calculation. 40 + Factorised the lookup table calculation. 41 42 ------------------------------------------------------------------------ 43 r204 | sam | 2004-01-03 15:28:39 +0100 (Sat, 03 Jan 2004) | 3 lines 44 Changed paths: 45 M /trunk/test 46 M /trunk/test/Makefile.am 47 A /trunk/test/hsv.c 48 49 * test/hsv.c: 50 + Trivial saturation/value rendering test. 51 52 ------------------------------------------------------------------------ 53 r203 | sam | 2004-01-02 19:09:29 +0100 (Fri, 02 Jan 2004) | 5 lines 54 Changed paths: 55 M /trunk/src/bitmap.c 56 M /trunk/src/caca.c 57 M /trunk/src/caca_internals.h 58 59 * src/bitmap.c: 60 + Fixed a minor overflow in the saturation computation. 61 + Use a global lookup table for foreground/background colour selection 62 in the bitmap rendering routine. This broke dithering, sorry. 63 64 ------------------------------------------------------------------------ 65 r202 | sam | 2004-01-02 17:52:10 +0100 (Fri, 02 Jan 2004) | 3 lines 66 Changed paths: 67 M /trunk/examples/aafire.c 68 M /trunk/examples/cacaview.c 69 M /trunk/src/bitmap.c 70 M /trunk/src/caca.c 71 M /trunk/src/caca.h 72 M /trunk/src/graphics.c 73 M /trunk/src/line.c 74 M /trunk/src/sprite.c 75 M /trunk/test/optipal.c 76 77 * src/ examples/ test/: 78 + Changed <const type> constructs into <type const>. 79 80 ------------------------------------------------------------------------ 81 r201 | sam | 2004-01-02 16:35:53 +0100 (Fri, 02 Jan 2004) | 4 lines 82 Changed paths: 83 M /trunk/examples/aafire.c 84 85 * examples/aafire.c: 86 + Do not call caca_get_width() 10000 times per frame. Cache the value 87 instead. 88 89 ------------------------------------------------------------------------ 90 r200 | sam | 2004-01-02 16:34:16 +0100 (Fri, 02 Jan 2004) | 4 lines 91 Changed paths: 92 M /trunk/src/graphics.c 93 94 * src/graphics.c: 95 + Split the drawing of foreground and background colours in the X11 96 driver. Nice performance improvement. 97 98 ------------------------------------------------------------------------ 99 r199 | sam | 2004-01-02 16:23:54 +0100 (Fri, 02 Jan 2004) | 3 lines 100 Changed paths: 101 M /trunk/examples/cacaview.c 102 103 * examples/cacaview.c: 104 + If Imlib2 was not activated, warn the user that only BMP is supported. 105 106 ------------------------------------------------------------------------ 107 r198 | sam | 2004-01-01 19:21:13 +0100 (Thu, 01 Jan 2004) | 5 lines 108 Changed paths: 109 M /trunk/AUTHORS 110 M /trunk/Makefile.am 111 A /trunk/THANKS 112 A /trunk/libcaca.spec 113 114 * libcaca.spec: 115 + RPM specfile, courtesy of Richard Zidlicky. 116 * THANKS: 117 + Added a THANKS file for contributors. 118 119 ------------------------------------------------------------------------ 120 r197 | sam | 2004-01-01 18:51:57 +0100 (Thu, 01 Jan 2004) | 10 lines 121 Changed paths: 122 M /trunk/README 123 M /trunk/src/caca.c 124 M /trunk/src/graphics.c 125 126 * src/graphics.c: 127 + Minor optimisation in caca_set_color(). 128 + Added an X11 error handler to avoid BadFont aborts in the X11 driver. 129 + Optimised the X11 caca_refresh() routine by handling strings of the 130 same colour as one text chunk. 131 * src/caca.c: 132 + Bugfix in caca_init when conio is the only compiled-in driver. 133 * README: 134 + Minor documentation updates. 135 136 ------------------------------------------------------------------------ 137 r196 | sam | 2004-01-01 17:29:50 +0100 (Thu, 01 Jan 2004) | 5 lines 138 Changed paths: 139 M /trunk/examples/aafire.c 140 M /trunk/examples/cacaview.c 141 142 * examples/cacaview.c: 143 + Use sprintf() instead of snprintf() so that cacaview builds with DJGPP. 144 * examples/aafire.c: 145 + bzero the pixel buffer in the initialisation routine. 146 147 ------------------------------------------------------------------------ 148 r195 | sam | 2003-12-31 15:21:08 +0100 (Wed, 31 Dec 2003) | 5 lines 149 Changed paths: 150 M /trunk/doc/doxygen.cfg.in 151 M /trunk/src/bitmap.c 152 M /trunk/src/box.c 153 M /trunk/src/caca.h 154 M /trunk/src/conic.c 155 M /trunk/src/graphics.c 156 M /trunk/src/io.c 157 M /trunk/src/line.c 158 M /trunk/src/math.c 159 M /trunk/src/triangle.c 160 161 * doc/doxygen.cfg.in: 162 + Removed caca_internal.h from the list of documented files. 163 * src/: 164 + Minor documentation updates. 165 166 ------------------------------------------------------------------------ 167 r194 | sam | 2003-12-31 14:55:34 +0100 (Wed, 31 Dec 2003) | 9 lines 168 Changed paths: 169 M /trunk/BUGS 170 M /trunk/debian/rules 171 M /trunk/doc/Makefile.am 172 M /trunk/test/dithering.c 173 174 * test/dithering.c: 175 + Fixed a minor compilation warning. 176 * debian/rules: 177 + Explicitely use --enable-imlib2. 178 * BUGS: 179 + Added a note about blinking consoles. 180 * doc/Makefile.am: 181 + Fixed a bashism in the HTML files installation. 182 183 ------------------------------------------------------------------------ 184 r193 | sam | 2003-12-31 14:32:14 +0100 (Wed, 31 Dec 2003) | 4 lines 185 Changed paths: 186 M /trunk/doc/Makefile.am 187 188 * doc/Makefile.am: 189 + Do not install doxygen.png directly, because it can be doxygen.gif on 190 old installations. 191 192 ------------------------------------------------------------------------ 193 r192 | sam | 2003-12-31 14:26:47 +0100 (Wed, 31 Dec 2003) | 3 lines 194 Changed paths: 195 M /trunk/examples/aafire.c 196 197 * examples/aafire.c: 198 + Only quit upon keypress, not mouse motion. 199 200 ------------------------------------------------------------------------ 201 r191 | sam | 2003-12-31 14:24:46 +0100 (Wed, 31 Dec 2003) | 3 lines 202 Changed paths: 203 M /trunk/examples/aafire.c 204 205 * examples/aafire.c: 206 + Render cacafire at full speed. 207 208 ------------------------------------------------------------------------ 209 r190 | sam | 2003-12-31 14:20:18 +0100 (Wed, 31 Dec 2003) | 6 lines 210 Changed paths: 211 M /trunk/src/graphics.c 212 M /trunk/test 213 M /trunk/test/Makefile.am 214 A /trunk/test/optipal.c 215 216 * test/optipal.c: 217 + Optimised S-Lang palette generator. 218 * src/graphics: 219 + Removed the S-Lang palette generator and replaced it with the tables 220 generated by optipal. 221 222 ------------------------------------------------------------------------ 223 r189 | sam | 2003-12-31 13:26:22 +0100 (Wed, 31 Dec 2003) | 5 lines 224 Changed paths: 225 M /trunk/Makefile.am 226 M /trunk/configure.ac 227 M /trunk/examples/Makefile.am 228 A /trunk/test 229 A /trunk/test/Makefile.am 230 A /trunk/test/dithering.c 231 232 * Makefile.am: 233 + Added a test directory for test programs. 234 * test/dithering.c: 235 + The value/saturation dithering example. 236 237 ------------------------------------------------------------------------ 238 r188 | sam | 2003-12-31 13:05:44 +0100 (Wed, 31 Dec 2003) | 5 lines 239 Changed paths: 240 M /trunk/examples/cacaview.c 241 M /trunk/src/caca.c 242 243 * src/caca.c: 244 + Do not try the X11 driver if DISPLAY is set to the empty string. 245 * examples/cacaview.c: 246 + Cosmetic fixes. 247 248 ------------------------------------------------------------------------ 249 r187 | sam | 2003-12-31 13:00:18 +0100 (Wed, 31 Dec 2003) | 3 lines 250 Changed paths: 251 M /trunk/examples/Makefile.am 252 A /trunk/examples/cacaview.c (from /trunk/examples/view.c:182) 253 D /trunk/examples/view.c 254 255 * example/: 256 + Renamed view.c into cacaview.c. 257 258 ------------------------------------------------------------------------ 259 r186 | sam | 2003-12-31 12:17:47 +0100 (Wed, 31 Dec 2003) | 3 lines 260 Changed paths: 261 M /trunk/src/io.c 262 263 * src/io.c: 264 + Fixed mouse support under ncurses and slang. 265 266 ------------------------------------------------------------------------ 267 r185 | sam | 2003-12-31 12:17:00 +0100 (Wed, 31 Dec 2003) | 3 lines 268 Changed paths: 269 M /trunk/configure.ac 270 271 * configure.ac: 272 + Error out if Imlib2 was not found. Override with --disable-imlib2. 273 274 ------------------------------------------------------------------------ 275 r184 | sam | 2003-12-31 02:16:47 +0100 (Wed, 31 Dec 2003) | 6 lines 276 Changed paths: 277 M /trunk/doc 278 M /trunk/examples/demo.c 279 M /trunk/src/caca.h 280 M /trunk/src/io.c 281 282 * src/io.c: 283 + Mouse support under X11. 284 + Split the mouse motion and mouse click events. 285 * examples/demo.c: 286 + Mouse motion support. 287 288 ------------------------------------------------------------------------ 289 r183 | sam | 2003-12-31 02:02:08 +0100 (Wed, 31 Dec 2003) | 5 lines 290 Changed paths: 291 M /trunk/src/caca.c 292 M /trunk/src/graphics.c 293 294 * src/graphics.c: 295 + Compilation fix. 296 * src/caca.c: 297 + Minor indentation fix. 298 299 ------------------------------------------------------------------------ 300 r182 | sam | 2003-12-26 00:59:48 +0100 (Fri, 26 Dec 2003) | 6 lines 301 Changed paths: 302 M /trunk/configure.ac 303 M /trunk/src/caca.c 304 305 * src/caca.c: 306 + Prefer the X11 driver if $DISPLAY is set. 307 + The slang driver is now preferred over the ncurses driver. 308 * configure.ac: 309 + Autodetect conio.h. 310 311 ------------------------------------------------------------------------ 312 r181 | sam | 2003-12-26 00:22:13 +0100 (Fri, 26 Dec 2003) | 4 lines 313 Changed paths: 314 M /trunk/configure.ac 315 316 * configure.ac: 317 + Autodetect ncurses, slang and X11. 318 + Abort if no output driver was selected or detected. 319 320 ------------------------------------------------------------------------ 321 r180 | sam | 2003-12-25 22:38:46 +0100 (Thu, 25 Dec 2003) | 2 lines 322 Changed paths: 323 A /branches/0.5 (from /trunk:179) 324 M /branches/0.5/ChangeLog 325 M /trunk/ChangeLog 326 327 * 0.5 branch. 328 1 329 ------------------------------------------------------------------------ 2 330 r179 | sam | 2003-12-25 22:36:52 +0100 (Thu, 25 Dec 2003) | 3 lines -
libcaca/trunk/ChangeLog
r283 r311 1 ------------------------------------------------------------------------ 2 r207 | sam | 2004-01-04 00:15:48 +0100 (Sun, 04 Jan 2004) | 9 lines 3 Changed paths: 4 M /trunk/NEWS 5 M /trunk/configure.ac 6 M /trunk/debian/changelog 7 M /trunk/debian/control 8 M /trunk/debian/rules 9 M /trunk/doc/Makefile.am 10 M /trunk/libcaca.spec 11 12 * configure.ac NEWS: 13 + Prepared the 0.6 release. 14 * libcaca.spec: 15 + Split the RPM into libcaca-devel and caca-utils. 16 + More detailed descriptions. 17 + Packages are now rpmlint clean. 18 * doc/Makefile.am: 19 + Symlink cacafire.1 to cacademo.1 upon manpage installation. 20 21 ------------------------------------------------------------------------ 22 r206 | sam | 2004-01-03 18:31:44 +0100 (Sat, 03 Jan 2004) | 3 lines 23 Changed paths: 24 M /trunk/configure.ac 25 M /trunk/src/caca.c 26 M /trunk/src/graphics.c 27 M /trunk/src/io.c 28 29 * configure.ac: 30 + Search for <slang/slang.h> in addition of <slang.h>. 31 32 ------------------------------------------------------------------------ 33 r205 | sam | 2004-01-03 15:33:35 +0100 (Sat, 03 Jan 2004) | 5 lines 34 Changed paths: 35 M /trunk/src/bitmap.c 36 37 * src/bitmap.c: 38 + Dither H/S/V when looking up the two nearest colours. 39 + Weigh pixels in the distance calculation. 40 + Factorised the lookup table calculation. 41 42 ------------------------------------------------------------------------ 43 r204 | sam | 2004-01-03 15:28:39 +0100 (Sat, 03 Jan 2004) | 3 lines 44 Changed paths: 45 M /trunk/test 46 M /trunk/test/Makefile.am 47 A /trunk/test/hsv.c 48 49 * test/hsv.c: 50 + Trivial saturation/value rendering test. 51 52 ------------------------------------------------------------------------ 53 r203 | sam | 2004-01-02 19:09:29 +0100 (Fri, 02 Jan 2004) | 5 lines 54 Changed paths: 55 M /trunk/src/bitmap.c 56 M /trunk/src/caca.c 57 M /trunk/src/caca_internals.h 58 59 * src/bitmap.c: 60 + Fixed a minor overflow in the saturation computation. 61 + Use a global lookup table for foreground/background colour selection 62 in the bitmap rendering routine. This broke dithering, sorry. 63 64 ------------------------------------------------------------------------ 65 r202 | sam | 2004-01-02 17:52:10 +0100 (Fri, 02 Jan 2004) | 3 lines 66 Changed paths: 67 M /trunk/examples/aafire.c 68 M /trunk/examples/cacaview.c 69 M /trunk/src/bitmap.c 70 M /trunk/src/caca.c 71 M /trunk/src/caca.h 72 M /trunk/src/graphics.c 73 M /trunk/src/line.c 74 M /trunk/src/sprite.c 75 M /trunk/test/optipal.c 76 77 * src/ examples/ test/: 78 + Changed <const type> constructs into <type const>. 79 80 ------------------------------------------------------------------------ 81 r201 | sam | 2004-01-02 16:35:53 +0100 (Fri, 02 Jan 2004) | 4 lines 82 Changed paths: 83 M /trunk/examples/aafire.c 84 85 * examples/aafire.c: 86 + Do not call caca_get_width() 10000 times per frame. Cache the value 87 instead. 88 89 ------------------------------------------------------------------------ 90 r200 | sam | 2004-01-02 16:34:16 +0100 (Fri, 02 Jan 2004) | 4 lines 91 Changed paths: 92 M /trunk/src/graphics.c 93 94 * src/graphics.c: 95 + Split the drawing of foreground and background colours in the X11 96 driver. Nice performance improvement. 97 98 ------------------------------------------------------------------------ 99 r199 | sam | 2004-01-02 16:23:54 +0100 (Fri, 02 Jan 2004) | 3 lines 100 Changed paths: 101 M /trunk/examples/cacaview.c 102 103 * examples/cacaview.c: 104 + If Imlib2 was not activated, warn the user that only BMP is supported. 105 106 ------------------------------------------------------------------------ 107 r198 | sam | 2004-01-01 19:21:13 +0100 (Thu, 01 Jan 2004) | 5 lines 108 Changed paths: 109 M /trunk/AUTHORS 110 M /trunk/Makefile.am 111 A /trunk/THANKS 112 A /trunk/libcaca.spec 113 114 * libcaca.spec: 115 + RPM specfile, courtesy of Richard Zidlicky. 116 * THANKS: 117 + Added a THANKS file for contributors. 118 119 ------------------------------------------------------------------------ 120 r197 | sam | 2004-01-01 18:51:57 +0100 (Thu, 01 Jan 2004) | 10 lines 121 Changed paths: 122 M /trunk/README 123 M /trunk/src/caca.c 124 M /trunk/src/graphics.c 125 126 * src/graphics.c: 127 + Minor optimisation in caca_set_color(). 128 + Added an X11 error handler to avoid BadFont aborts in the X11 driver. 129 + Optimised the X11 caca_refresh() routine by handling strings of the 130 same colour as one text chunk. 131 * src/caca.c: 132 + Bugfix in caca_init when conio is the only compiled-in driver. 133 * README: 134 + Minor documentation updates. 135 136 ------------------------------------------------------------------------ 137 r196 | sam | 2004-01-01 17:29:50 +0100 (Thu, 01 Jan 2004) | 5 lines 138 Changed paths: 139 M /trunk/examples/aafire.c 140 M /trunk/examples/cacaview.c 141 142 * examples/cacaview.c: 143 + Use sprintf() instead of snprintf() so that cacaview builds with DJGPP. 144 * examples/aafire.c: 145 + bzero the pixel buffer in the initialisation routine. 146 147 ------------------------------------------------------------------------ 148 r195 | sam | 2003-12-31 15:21:08 +0100 (Wed, 31 Dec 2003) | 5 lines 149 Changed paths: 150 M /trunk/doc/doxygen.cfg.in 151 M /trunk/src/bitmap.c 152 M /trunk/src/box.c 153 M /trunk/src/caca.h 154 M /trunk/src/conic.c 155 M /trunk/src/graphics.c 156 M /trunk/src/io.c 157 M /trunk/src/line.c 158 M /trunk/src/math.c 159 M /trunk/src/triangle.c 160 161 * doc/doxygen.cfg.in: 162 + Removed caca_internal.h from the list of documented files. 163 * src/: 164 + Minor documentation updates. 165 166 ------------------------------------------------------------------------ 167 r194 | sam | 2003-12-31 14:55:34 +0100 (Wed, 31 Dec 2003) | 9 lines 168 Changed paths: 169 M /trunk/BUGS 170 M /trunk/debian/rules 171 M /trunk/doc/Makefile.am 172 M /trunk/test/dithering.c 173 174 * test/dithering.c: 175 + Fixed a minor compilation warning. 176 * debian/rules: 177 + Explicitely use --enable-imlib2. 178 * BUGS: 179 + Added a note about blinking consoles. 180 * doc/Makefile.am: 181 + Fixed a bashism in the HTML files installation. 182 183 ------------------------------------------------------------------------ 184 r193 | sam | 2003-12-31 14:32:14 +0100 (Wed, 31 Dec 2003) | 4 lines 185 Changed paths: 186 M /trunk/doc/Makefile.am 187 188 * doc/Makefile.am: 189 + Do not install doxygen.png directly, because it can be doxygen.gif on 190 old installations. 191 192 ------------------------------------------------------------------------ 193 r192 | sam | 2003-12-31 14:26:47 +0100 (Wed, 31 Dec 2003) | 3 lines 194 Changed paths: 195 M /trunk/examples/aafire.c 196 197 * examples/aafire.c: 198 + Only quit upon keypress, not mouse motion. 199 200 ------------------------------------------------------------------------ 201 r191 | sam | 2003-12-31 14:24:46 +0100 (Wed, 31 Dec 2003) | 3 lines 202 Changed paths: 203 M /trunk/examples/aafire.c 204 205 * examples/aafire.c: 206 + Render cacafire at full speed. 207 208 ------------------------------------------------------------------------ 209 r190 | sam | 2003-12-31 14:20:18 +0100 (Wed, 31 Dec 2003) | 6 lines 210 Changed paths: 211 M /trunk/src/graphics.c 212 M /trunk/test 213 M /trunk/test/Makefile.am 214 A /trunk/test/optipal.c 215 216 * test/optipal.c: 217 + Optimised S-Lang palette generator. 218 * src/graphics: 219 + Removed the S-Lang palette generator and replaced it with the tables 220 generated by optipal. 221 222 ------------------------------------------------------------------------ 223 r189 | sam | 2003-12-31 13:26:22 +0100 (Wed, 31 Dec 2003) | 5 lines 224 Changed paths: 225 M /trunk/Makefile.am 226 M /trunk/configure.ac 227 M /trunk/examples/Makefile.am 228 A /trunk/test 229 A /trunk/test/Makefile.am 230 A /trunk/test/dithering.c 231 232 * Makefile.am: 233 + Added a test directory for test programs. 234 * test/dithering.c: 235 + The value/saturation dithering example. 236 237 ------------------------------------------------------------------------ 238 r188 | sam | 2003-12-31 13:05:44 +0100 (Wed, 31 Dec 2003) | 5 lines 239 Changed paths: 240 M /trunk/examples/cacaview.c 241 M /trunk/src/caca.c 242 243 * src/caca.c: 244 + Do not try the X11 driver if DISPLAY is set to the empty string. 245 * examples/cacaview.c: 246 + Cosmetic fixes. 247 248 ------------------------------------------------------------------------ 249 r187 | sam | 2003-12-31 13:00:18 +0100 (Wed, 31 Dec 2003) | 3 lines 250 Changed paths: 251 M /trunk/examples/Makefile.am 252 A /trunk/examples/cacaview.c (from /trunk/examples/view.c:182) 253 D /trunk/examples/view.c 254 255 * example/: 256 + Renamed view.c into cacaview.c. 257 258 ------------------------------------------------------------------------ 259 r186 | sam | 2003-12-31 12:17:47 +0100 (Wed, 31 Dec 2003) | 3 lines 260 Changed paths: 261 M /trunk/src/io.c 262 263 * src/io.c: 264 + Fixed mouse support under ncurses and slang. 265 266 ------------------------------------------------------------------------ 267 r185 | sam | 2003-12-31 12:17:00 +0100 (Wed, 31 Dec 2003) | 3 lines 268 Changed paths: 269 M /trunk/configure.ac 270 271 * configure.ac: 272 + Error out if Imlib2 was not found. Override with --disable-imlib2. 273 274 ------------------------------------------------------------------------ 275 r184 | sam | 2003-12-31 02:16:47 +0100 (Wed, 31 Dec 2003) | 6 lines 276 Changed paths: 277 M /trunk/doc 278 M /trunk/examples/demo.c 279 M /trunk/src/caca.h 280 M /trunk/src/io.c 281 282 * src/io.c: 283 + Mouse support under X11. 284 + Split the mouse motion and mouse click events. 285 * examples/demo.c: 286 + Mouse motion support. 287 288 ------------------------------------------------------------------------ 289 r183 | sam | 2003-12-31 02:02:08 +0100 (Wed, 31 Dec 2003) | 5 lines 290 Changed paths: 291 M /trunk/src/caca.c 292 M /trunk/src/graphics.c 293 294 * src/graphics.c: 295 + Compilation fix. 296 * src/caca.c: 297 + Minor indentation fix. 298 299 ------------------------------------------------------------------------ 300 r182 | sam | 2003-12-26 00:59:48 +0100 (Fri, 26 Dec 2003) | 6 lines 301 Changed paths: 302 M /trunk/configure.ac 303 M /trunk/src/caca.c 304 305 * src/caca.c: 306 + Prefer the X11 driver if $DISPLAY is set. 307 + The slang driver is now preferred over the ncurses driver. 308 * configure.ac: 309 + Autodetect conio.h. 310 311 ------------------------------------------------------------------------ 312 r181 | sam | 2003-12-26 00:22:13 +0100 (Fri, 26 Dec 2003) | 4 lines 313 Changed paths: 314 M /trunk/configure.ac 315 316 * configure.ac: 317 + Autodetect ncurses, slang and X11. 318 + Abort if no output driver was selected or detected. 319 320 ------------------------------------------------------------------------ 321 r180 | sam | 2003-12-25 22:38:46 +0100 (Thu, 25 Dec 2003) | 2 lines 322 Changed paths: 323 A /branches/0.5 (from /trunk:179) 324 M /branches/0.5/ChangeLog 325 M /trunk/ChangeLog 326 327 * 0.5 branch. 328 1 329 ------------------------------------------------------------------------ 2 330 r179 | sam | 2003-12-25 22:36:52 +0100 (Thu, 25 Dec 2003) | 3 lines
Note: See TracChangeset
for help on using the changeset viewer.