source: libcaca/branches/0.6/ChangeLog @ 1275

Last change on this file since 1275 was 311, checked in by Sam Hocevar, 19 years ago
  • 0.6 branch.
File size: 84.7 KB
Line 
1------------------------------------------------------------------------
2r207 | sam | 2004-01-04 00:15:48 +0100 (Sun, 04 Jan 2004) | 9 lines
3Changed 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------------------------------------------------------------------------
22r206 | sam | 2004-01-03 18:31:44 +0100 (Sat, 03 Jan 2004) | 3 lines
23Changed 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------------------------------------------------------------------------
33r205 | sam | 2004-01-03 15:33:35 +0100 (Sat, 03 Jan 2004) | 5 lines
34Changed 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------------------------------------------------------------------------
43r204 | sam | 2004-01-03 15:28:39 +0100 (Sat, 03 Jan 2004) | 3 lines
44Changed 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------------------------------------------------------------------------
53r203 | sam | 2004-01-02 19:09:29 +0100 (Fri, 02 Jan 2004) | 5 lines
54Changed 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------------------------------------------------------------------------
65r202 | sam | 2004-01-02 17:52:10 +0100 (Fri, 02 Jan 2004) | 3 lines
66Changed 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------------------------------------------------------------------------
81r201 | sam | 2004-01-02 16:35:53 +0100 (Fri, 02 Jan 2004) | 4 lines
82Changed 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------------------------------------------------------------------------
90r200 | sam | 2004-01-02 16:34:16 +0100 (Fri, 02 Jan 2004) | 4 lines
91Changed 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------------------------------------------------------------------------
99r199 | sam | 2004-01-02 16:23:54 +0100 (Fri, 02 Jan 2004) | 3 lines
100Changed 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------------------------------------------------------------------------
107r198 | sam | 2004-01-01 19:21:13 +0100 (Thu, 01 Jan 2004) | 5 lines
108Changed 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------------------------------------------------------------------------
120r197 | sam | 2004-01-01 18:51:57 +0100 (Thu, 01 Jan 2004) | 10 lines
121Changed 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------------------------------------------------------------------------
137r196 | sam | 2004-01-01 17:29:50 +0100 (Thu, 01 Jan 2004) | 5 lines
138Changed 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------------------------------------------------------------------------
148r195 | sam | 2003-12-31 15:21:08 +0100 (Wed, 31 Dec 2003) | 5 lines
149Changed 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------------------------------------------------------------------------
167r194 | sam | 2003-12-31 14:55:34 +0100 (Wed, 31 Dec 2003) | 9 lines
168Changed 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------------------------------------------------------------------------
184r193 | sam | 2003-12-31 14:32:14 +0100 (Wed, 31 Dec 2003) | 4 lines
185Changed 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------------------------------------------------------------------------
193r192 | sam | 2003-12-31 14:26:47 +0100 (Wed, 31 Dec 2003) | 3 lines
194Changed paths:
195   M /trunk/examples/aafire.c
196
197  * examples/aafire.c:
198    + Only quit upon keypress, not mouse motion.
199
200------------------------------------------------------------------------
201r191 | sam | 2003-12-31 14:24:46 +0100 (Wed, 31 Dec 2003) | 3 lines
202Changed paths:
203   M /trunk/examples/aafire.c
204
205  * examples/aafire.c:
206    + Render cacafire at full speed.
207
208------------------------------------------------------------------------
209r190 | sam | 2003-12-31 14:20:18 +0100 (Wed, 31 Dec 2003) | 6 lines
210Changed 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------------------------------------------------------------------------
223r189 | sam | 2003-12-31 13:26:22 +0100 (Wed, 31 Dec 2003) | 5 lines
224Changed 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------------------------------------------------------------------------
238r188 | sam | 2003-12-31 13:05:44 +0100 (Wed, 31 Dec 2003) | 5 lines
239Changed 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------------------------------------------------------------------------
249r187 | sam | 2003-12-31 13:00:18 +0100 (Wed, 31 Dec 2003) | 3 lines
250Changed 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------------------------------------------------------------------------
259r186 | sam | 2003-12-31 12:17:47 +0100 (Wed, 31 Dec 2003) | 3 lines
260Changed paths:
261   M /trunk/src/io.c
262
263  * src/io.c:
264    + Fixed mouse support under ncurses and slang.
265
266------------------------------------------------------------------------
267r185 | sam | 2003-12-31 12:17:00 +0100 (Wed, 31 Dec 2003) | 3 lines
268Changed paths:
269   M /trunk/configure.ac
270
271  * configure.ac:
272    + Error out if Imlib2 was not found. Override with --disable-imlib2.
273
274------------------------------------------------------------------------
275r184 | sam | 2003-12-31 02:16:47 +0100 (Wed, 31 Dec 2003) | 6 lines
276Changed 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------------------------------------------------------------------------
289r183 | sam | 2003-12-31 02:02:08 +0100 (Wed, 31 Dec 2003) | 5 lines
290Changed 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------------------------------------------------------------------------
300r182 | sam | 2003-12-26 00:59:48 +0100 (Fri, 26 Dec 2003) | 6 lines
301Changed 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------------------------------------------------------------------------
312r181 | sam | 2003-12-26 00:22:13 +0100 (Fri, 26 Dec 2003) | 4 lines
313Changed 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------------------------------------------------------------------------
321r180 | sam | 2003-12-25 22:38:46 +0100 (Thu, 25 Dec 2003) | 2 lines
322Changed 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
329------------------------------------------------------------------------
330r179 | sam | 2003-12-25 22:36:52 +0100 (Thu, 25 Dec 2003) | 3 lines
331Changed paths:
332   M /trunk/NEWS
333   M /trunk/configure.ac
334   M /trunk/debian/changelog
335
336  * configure.ac NEWS debian/changelog:
337    + New 0.5 release.
338
339------------------------------------------------------------------------
340r178 | sam | 2003-12-25 22:28:55 +0100 (Thu, 25 Dec 2003) | 5 lines
341Changed paths:
342   M /trunk/BUGS
343   M /trunk/NOTES
344   M /trunk/configure.ac
345   M /trunk/src/graphics.c
346
347  * NOTES BUGS:
348    + Updated information about the S-Lang colour pair shortage bug.
349  * src/graphics.c:
350    + Implemented the solution explained in NOTES.
351
352------------------------------------------------------------------------
353r177 | sam | 2003-12-25 19:09:58 +0100 (Thu, 25 Dec 2003) | 3 lines
354Changed paths:
355   M /trunk/src/caca.c
356
357  * src/caca.c:
358    + Fixed a compilation bug reported by Thomas Klausner <wiz@NetBSD.org>.
359
360------------------------------------------------------------------------
361r176 | sam | 2003-12-25 19:08:46 +0100 (Thu, 25 Dec 2003) | 3 lines
362Changed paths:
363   M /trunk/NOTES
364
365  * NOTES:
366    + Added a section with a proposed solution to the slang problem.
367
368------------------------------------------------------------------------
369r175 | sam | 2003-12-25 11:18:37 +0100 (Thu, 25 Dec 2003) | 2 lines
370Changed paths:
371   A /branches/0.4 (from /trunk:174)
372   M /branches/0.4/ChangeLog
373   M /trunk/ChangeLog
374
375  * 0.4 branch.
376
377------------------------------------------------------------------------
378r174 | sam | 2003-12-25 00:58:32 +0100 (Thu, 25 Dec 2003) | 5 lines
379Changed paths:
380   M /trunk/configure.ac
381   M /trunk/debian/control
382
383  * debian/control:
384    + Added missing dependencies to the -dev package.
385  * configure.ac:
386    + Kludge for woody builds where x_includes is undefined.
387
388------------------------------------------------------------------------
389r173 | sam | 2003-12-24 17:23:37 +0100 (Wed, 24 Dec 2003) | 3 lines
390Changed paths:
391   M /trunk/src/caca.h
392
393  * src/caca.h:
394    + Documented CACA_FONT.
395
396------------------------------------------------------------------------
397r172 | sam | 2003-12-24 17:16:16 +0100 (Wed, 24 Dec 2003) | 3 lines
398Changed paths:
399   M /trunk/doc/Makefile.am
400
401  * doc/Makefile.am:
402    + Rename the refman.ps doxygen documentation to libcaca.ps.
403
404------------------------------------------------------------------------
405r171 | sam | 2003-12-24 16:43:45 +0100 (Wed, 24 Dec 2003) | 5 lines
406Changed paths:
407   M /trunk/NEWS
408   M /trunk/src/caca.h
409   M /trunk/src/graphics.c
410
411  * src/graphics.c:
412    + Replace CACA_WIDTH and CACA_HEIGHT with CACA_GEOMETRY.
413  * src/caca.c:
414    + Documented the CACA_GEOMETRY environment variable.
415
416------------------------------------------------------------------------
417r170 | sam | 2003-12-24 16:35:07 +0100 (Wed, 24 Dec 2003) | 3 lines
418Changed paths:
419   M /trunk/src/caca_internals.h
420   M /trunk/src/graphics.c
421   M /trunk/src/io.c
422
423  * src/io.c:
424    + Mouse support in the X11 driver.
425
426------------------------------------------------------------------------
427r169 | sam | 2003-12-24 15:48:38 +0100 (Wed, 24 Dec 2003) | 4 lines
428Changed paths:
429   M /trunk/src/graphics.c
430
431  * src/graphics:
432    + Use XCreateWindow instead of XCreateSimpleWindow.
433    + Set the X window title to "caca for X".
434
435------------------------------------------------------------------------
436r168 | sam | 2003-12-23 18:25:29 +0100 (Tue, 23 Dec 2003) | 4 lines
437Changed paths:
438   M /trunk/debian/changelog
439   M /trunk/debian/control
440   M /trunk/debian/rules
441
442  * debian/control:
443    + Build-depend on doxygen and tetex to build documentation.
444    + Build-depend on xlibs-dev and slang1-dev to provide alternate drivers.
445
446------------------------------------------------------------------------
447r167 | sam | 2003-12-23 18:01:38 +0100 (Tue, 23 Dec 2003) | 7 lines
448Changed paths:
449   M /trunk/BUGS
450   M /trunk/Makefile.am
451   M /trunk/NEWS
452   M /trunk/README
453   M /trunk/TODO
454   M /trunk/configure.ac
455   M /trunk/doc/Makefile.am
456   M /trunk/src/graphics.c
457
458  * configure.ac NEWS:
459    + Prepared release 0.4.
460  * src/graphics.c README BUGS TODO:
461    + Updated documentation.
462  * Makefile.am doc/Makefile.am:
463    + Install the generated doxygen documentation.
464
465------------------------------------------------------------------------
466r166 | sam | 2003-12-23 17:32:56 +0100 (Tue, 23 Dec 2003) | 4 lines
467Changed paths:
468   M /trunk/src/io.c
469
470  * src/io.c:
471    + Fixed a warning by including <unistd.h>.
472    + Support for arrow and function keys under X11.
473
474------------------------------------------------------------------------
475r165 | sam | 2003-12-23 14:27:40 +0100 (Tue, 23 Dec 2003) | 9 lines
476Changed paths:
477   M /trunk/configure.ac
478   M /trunk/doc/Makefile.am
479   D /trunk/doc/doxygen.cfg
480   A /trunk/doc/doxygen.cfg.in (from /trunk/doc/doxygen.cfg:164)
481   M /trunk/examples/aafire.c
482   M /trunk/examples/demo.c
483   M /trunk/examples/spritedit.c
484   M /trunk/examples/view.c
485   M /trunk/src/bitmap.c
486   M /trunk/src/box.c
487   M /trunk/src/caca.c
488   M /trunk/src/caca.h
489   M /trunk/src/caca_internals.h
490   M /trunk/src/conic.c
491   M /trunk/src/graphics.c
492   M /trunk/src/io.c
493   M /trunk/src/line.c
494   M /trunk/src/math.c
495   M /trunk/src/sprite.c
496   M /trunk/src/triangle.c
497
498  * src/io.c:
499    + Added caca_wait_event(), a blocking caca_get_event().
500  * src/ examples/:
501    + More documentation.
502  * doc/doxygen.cfg.in:
503    + doc/doxygen.cfg is now generated by configure, so that we can use
504      @top_srcdir@ and we no longer need to hardcode PROJECT_NUMBER.
505    + Create manpages.
506
507------------------------------------------------------------------------
508r164 | sam | 2003-12-23 12:08:37 +0100 (Tue, 23 Dec 2003) | 2 lines
509Changed paths:
510   M /trunk/doc/doxygen.cfg
511   M /trunk/src/bitmap.c
512   M /trunk/src/caca.c
513   M /trunk/src/caca.h
514
515  * More API documentation.
516
517------------------------------------------------------------------------
518r163 | sam | 2003-12-22 23:58:24 +0100 (Mon, 22 Dec 2003) | 3 lines
519Changed paths:
520   M /trunk/src/caca.c
521
522  * caca.c:
523    + Fixed typos in the initialisation code.
524
525------------------------------------------------------------------------
526r162 | sam | 2003-12-22 16:26:12 +0100 (Mon, 22 Dec 2003) | 6 lines
527Changed paths:
528   M /trunk/configure.ac
529   M /trunk/src/bitmap.c
530   M /trunk/src/caca.c
531   M /trunk/src/caca.h
532   M /trunk/src/caca_internals.h
533   M /trunk/src/conic.c
534   M /trunk/src/graphics.c
535   M /trunk/src/io.c
536   M /trunk/src/line.c
537
538  * src/graphics.c src/caca.c src/io.c:
539    + Support for simultaneously compiled-in drivers.
540    + Honour the CACA_DRIVER environment variable.
541  * configure.ac:
542    + Drivers are no longer mutually exclusive.
543
544------------------------------------------------------------------------
545r161 | sam | 2003-12-21 01:39:41 +0100 (Sun, 21 Dec 2003) | 3 lines
546Changed paths:
547   M /trunk/src/graphics.c
548
549  * src/graphics:
550    + Initialise default height at 32 (as in aalib).
551
552------------------------------------------------------------------------
553r160 | sam | 2003-12-20 13:07:56 +0100 (Sat, 20 Dec 2003) | 5 lines
554Changed paths:
555   M /trunk/src/caca_internals.h
556   M /trunk/src/graphics.c
557   M /trunk/src/io.c
558
559  * src/graphics.c:
560    + Support for CACA_WIDTH, CACA_HEIGHT and CACA_FONT in the x11 driver.
561    + Use an intermediary X pixmap for rendering.
562    + Slightly changed the variable naming scheme.
563
564------------------------------------------------------------------------
565r159 | sam | 2003-12-20 11:54:35 +0100 (Sat, 20 Dec 2003) | 3 lines
566Changed paths:
567   M /trunk/examples/aafire.c
568
569  * examples/aafire.c:
570    + The image buffer in cacafire was too small.
571
572------------------------------------------------------------------------
573r158 | sam | 2003-12-19 18:26:23 +0100 (Fri, 19 Dec 2003) | 4 lines
574Changed paths:
575   M /trunk/src/graphics.c
576
577  * src/graphics.c:
578    + Progress in the X11 driver.
579    + Fixed a compilation bug in the conio driver.
580
581------------------------------------------------------------------------
582r157 | sam | 2003-12-18 10:46:19 +0100 (Thu, 18 Dec 2003) | 4 lines
583Changed paths:
584   M /trunk/debian/changelog
585   M /trunk/debian/control
586   M /trunk/debian/rules
587
588  * debian/rules debian/control:
589    + Moved cacafire to the caca-utils package. Added proper conflict/replace.
590    + Symlinked cacafire.1 to cacademo.1.
591
592------------------------------------------------------------------------
593r155 | sam | 2003-12-18 01:41:28 +0100 (Thu, 18 Dec 2003) | 7 lines
594Changed paths:
595   M /trunk/ChangeLog
596   M /trunk/NEWS
597   M /trunk/README
598   M /trunk/debian/changelog
599   M /trunk/debian/control
600   M /trunk/doc/doxygen.cfg
601
602  * debian/control:
603    + Updated long descriptions.
604  * debian/changelog ChangeLog doc/doxygen.cfg NEWS:
605    + Prepared 0.3 release.
606  * README:
607    + --enable-ncurses is now the default.
608
609------------------------------------------------------------------------
610r154 | sam | 2003-12-18 01:11:52 +0100 (Thu, 18 Dec 2003) | 3 lines
611Changed paths:
612   M /trunk/src/bitmap.c
613   M /trunk/src/box.c
614   M /trunk/src/caca.c
615   M /trunk/src/caca.h
616   M /trunk/src/conic.c
617   M /trunk/src/graphics.c
618   M /trunk/src/io.c
619   M /trunk/src/line.c
620   M /trunk/src/math.c
621   M /trunk/src/sprite.c
622   M /trunk/src/triangle.c
623
624  * src/:
625    + Doxygenated public functions.
626
627------------------------------------------------------------------------
628r153 | sam | 2003-12-17 16:03:05 +0100 (Wed, 17 Dec 2003) | 3 lines
629Changed paths:
630   M /trunk/src/caca.h
631
632  * src/caca.h:
633    + Documented environment variables.
634
635------------------------------------------------------------------------
636r152 | sam | 2003-12-17 00:25:54 +0100 (Wed, 17 Dec 2003) | 4 lines
637Changed paths:
638   M /trunk/examples/view.c
639
640  * examples/view.c:
641    + Fixed a bug in the loading of 1bpp BMPs.
642    + Commented stuff.
643
644------------------------------------------------------------------------
645r151 | sam | 2003-12-17 00:06:54 +0100 (Wed, 17 Dec 2003) | 7 lines
646Changed paths:
647   M /trunk/examples/Makefile.am
648   M /trunk/examples/view.c
649
650  * examples/view.c:
651    + If Imlib2 is not available, use a custom simple BMP loader.
652    + Draw the bottom bar one line higher to leave room for a status line.
653    + '?' now properly toggles help.
654  * examples/Makefile.am:
655    + Always build cacaview.
656
657------------------------------------------------------------------------
658r150 | sam | 2003-12-16 10:06:46 +0100 (Tue, 16 Dec 2003) | 5 lines
659Changed paths:
660   M /trunk/configure.ac
661   M /trunk/src/bitmap.c
662
663  * src/bitmap.c:
664    + If the alpha palette is all-zero, forget the alpha channel.
665  * configure.ac:
666    + Export HAVE_IMLIB2_H and the like.
667
668------------------------------------------------------------------------
669r149 | sam | 2003-12-15 16:02:50 +0100 (Mon, 15 Dec 2003) | 4 lines
670Changed paths:
671   M /trunk/src/bitmap.c
672
673  * src/bitmap.c:
674    + If the alpha mask is 0, ignore alpha information.
675    + Ditto if no alpha information is given with the palette.
676
677------------------------------------------------------------------------
678r148 | sam | 2003-12-15 11:38:03 +0100 (Mon, 15 Dec 2003) | 4 lines
679Changed paths:
680   M /trunk/configure.ac
681   M /trunk/src/caca.c
682   M /trunk/src/caca_internals.h
683   M /trunk/src/graphics.c
684   M /trunk/src/io.c
685
686  * src/graphics.c src/io.c:
687    + Beginning of an X11 driver. Currently we merely open the window and
688      check keyboard events.
689
690------------------------------------------------------------------------
691r147 | sam | 2003-12-12 17:19:44 +0100 (Fri, 12 Dec 2003) | 7 lines
692Changed paths:
693   M /trunk/configure.ac
694   M /trunk/debian/changelog
695   M /trunk/src/caca.c
696
697  * configure.ac debian/changelog:
698    + Prepare for 0.3 release.
699    + Check for strcasecmp().
700  * src/caca.c:
701    + Honor CACA_BACKGROUND, CACA_DITHERING and CACA_ANTIALIASING environment
702      variables.
703
704------------------------------------------------------------------------
705r146 | sam | 2003-12-12 15:49:41 +0100 (Fri, 12 Dec 2003) | 13 lines
706Changed paths:
707   M /trunk/examples/aafire.c
708   M /trunk/examples/demo.c
709   M /trunk/examples/view.c
710   M /trunk/src/bitmap.c
711   M /trunk/src/caca.c
712   M /trunk/src/caca.h
713   M /trunk/src/caca_internals.h
714
715  * src/bitmap.c:
716    + Added antialiasing support.
717    + Dithering, antialiasing and background mode can now be selected at
718      runtime.
719  * src/caca.c src/caca.h:
720    + Renamed caca_dithering into caca_feature and extended the type to
721      express background colour and antialiasing mode.
722  * examples/demo.c:
723    + Fixed a bug that disabled the sprite demo.
724    + Draw solid flares.
725  * examples/view.c:
726    + Select antialiasing and background mode at runtime.
727
728------------------------------------------------------------------------
729r145 | sam | 2003-12-11 18:01:09 +0100 (Thu, 11 Dec 2003) | 2 lines
730Changed paths:
731   M /trunk/BUGS
732   M /trunk/TODO
733   M /trunk/debian/control
734   M /trunk/doc/cacademo.1
735   M /trunk/doc/cacaview.1
736
737  * Minor updates to manpages, BUGS, TODO and the Debian control file.
738
739------------------------------------------------------------------------
740r144 | sam | 2003-12-11 17:56:35 +0100 (Thu, 11 Dec 2003) | 5 lines
741Changed paths:
742   M /trunk/src/Makefile.am
743   M /trunk/src/bitmap.c
744   M /trunk/src/caca.c
745   M /trunk/src/caca.h
746   M /trunk/src/caca_internals.h
747   M /trunk/src/graphics.c
748
749  * src/caca.c:
750    + Moved global variables to src/graphics.c.
751  * src/bitmap.c:
752    + Sanitised prototypes.
753
754------------------------------------------------------------------------
755r143 | sam | 2003-12-11 17:31:49 +0100 (Thu, 11 Dec 2003) | 17 lines
756Changed paths:
757   M /trunk/examples
758   M /trunk/examples/aafire.c
759   M /trunk/examples/demo.c
760   M /trunk/examples/view.c
761   M /trunk/src/bitmap.c
762   M /trunk/src/box.c
763   M /trunk/src/caca.c
764   M /trunk/src/caca.h
765   M /trunk/src/caca_internals.h
766   M /trunk/src/conic.c
767   M /trunk/src/graphics.c
768   M /trunk/src/line.c
769   M /trunk/src/sprite.c
770   M /trunk/src/triangle.c
771
772  * src/graphics.c:
773    + Internally cache screen width and height.
774  * src/bitmap.c:
775    + Added alpha support to caca_draw_bitmap(). For now, we only treat 0%
776      alpha as fully transparent, and any other value as fully opaque.
777    + Slightly tuned colour weights in the renderer.
778    + caca_set_bitmap_palette() takes unsigned ints.
779  * examples/demo.c:
780    + Added a crap render demo.
781  * examples/aafire.c:
782    + Set a 20ms delay.
783    + Added alpha values to the palette.
784  * examples/view.c:
785    + Draw a gray checkered grid below the image so that transparent images
786      look a lot nicer.
787    + 'f' toggles "fullscreen" mode.
788
789------------------------------------------------------------------------
790r142 | sam | 2003-12-11 16:54:53 +0100 (Thu, 11 Dec 2003) | 6 lines
791Changed paths:
792   M /trunk/caca-config.in
793   M /trunk/configure.ac
794
795  * configure.ac:
796    + Set the executable bit of caca-config when regenerating that file.
797  * caca-config.in:
798    + No longer use USE_SLANG_TRUE and USE_NCURSES_TRUE since we now
799      have @CACA_LIBS@.
800
801------------------------------------------------------------------------
802r141 | sam | 2003-12-02 23:27:27 +0100 (Tue, 02 Dec 2003) | 6 lines
803Changed paths:
804   M /trunk/configure.ac
805   M /trunk/examples/Makefile.am
806   A /trunk/examples/aafire.c
807
808  * configure.ac:
809    + Removed unused USE_* variables.
810    + Export -lslang and -lncurses as @CACA_LIBS@.
811  * examples/aafire.c:
812    + Imported aafire.c from the AAlib tree and ported it to libcaca.
813
814------------------------------------------------------------------------
815r139 | sam | 2003-11-30 18:15:31 +0100 (Sun, 30 Nov 2003) | 2 lines
816Changed paths:
817   M /trunk/ChangeLog
818   M /trunk/NEWS
819   M /trunk/TODO
820   M /trunk/debian/changelog
821   M /trunk/debian/control
822
823  * 0.2 release.
824
825------------------------------------------------------------------------
826r138 | sam | 2003-11-30 18:14:19 +0100 (Sun, 30 Nov 2003) | 3 lines
827Changed paths:
828   M /trunk/examples/view.c
829
830  * examples/view.c:
831    + Removed last endianness issue.
832
833------------------------------------------------------------------------
834r137 | sam | 2003-11-30 17:34:04 +0100 (Sun, 30 Nov 2003) | 5 lines
835Changed paths:
836   M /trunk/examples/view.c
837   M /trunk/src/bitmap.c
838   M /trunk/src/io.c
839
840  * src/io.c:
841    + Removed a useless message.
842  * src/bitmap.c examples/view.c:
843    + Really fixed the endianness issue.
844
845------------------------------------------------------------------------
846r136 | sam | 2003-11-30 16:56:02 +0100 (Sun, 30 Nov 2003) | 5 lines
847Changed paths:
848   M /trunk/src/bitmap.c
849
850  * src/bitmap.c:
851    + Fine-tuned the new renderer.
852    + Fixed warnings.
853    + Changed hardcoded values to macros.
854
855------------------------------------------------------------------------
856r135 | sam | 2003-11-30 16:01:55 +0100 (Sun, 30 Nov 2003) | 11 lines
857Changed paths:
858   M /trunk/configure.ac
859   M /trunk/examples/demo.c
860   M /trunk/examples/view.c
861   M /trunk/src/bitmap.c
862   M /trunk/src/caca.c
863   M /trunk/src/caca.h
864
865  * src/bitmap.c:
866    + Fixed an endianness issue in the byte reader.
867    + Decreased precision in RGB and HSV values to avoid overflows.
868    + New dithering method: 2x2 ordered.
869    + New renderer, with background colour awareness.
870  * configure.ac:
871    + Check for <endian.h>.
872  * examples/demo.c examples/view.c:
873    + Fixed an endianness issue in cacaview.
874    + Adapted code to the additional dithering method.
875
876------------------------------------------------------------------------
877r134 | sam | 2003-11-30 03:11:37 +0100 (Sun, 30 Nov 2003) | 4 lines
878Changed paths:
879   M /trunk/examples/view.c
880   M /trunk/src/bitmap.c
881
882  * src/bitmap.c examples/view.c:
883    + Fixed an endianness issue in caca_draw_bitmap().
884    + Code cleanup.
885
886------------------------------------------------------------------------
887r133 | sam | 2003-11-30 02:18:10 +0100 (Sun, 30 Nov 2003) | 13 lines
888Changed paths:
889   M /trunk/TODO
890   M /trunk/doc/cacaview.1
891   M /trunk/examples/Makefile.am
892   M /trunk/examples/view.c
893   M /trunk/src/caca.c
894
895  * src/caca.c:
896    + Minor change to the dithering names.
897  * TODO:
898    + Added cacaview TODO.
899  * doc/cacaview.1:
900    + Wrote a manpage for cacaview.
901  * examples/Makefile.am:
902    + Moved the -DX_DISPLAY_MISSING=1 here.
903  * examples/view.c:
904    + Capital 'D' cycles through dithering modes in reverse order.
905    + Sleep when there is nothing to do.
906    + Cosmetic code reorganisation.
907
908------------------------------------------------------------------------
909r132 | sam | 2003-11-29 20:35:07 +0100 (Sat, 29 Nov 2003) | 9 lines
910Changed paths:
911   M /trunk/examples/demo.c
912   M /trunk/examples/view.c
913   M /trunk/src/bitmap.c
914   M /trunk/src/caca.c
915   M /trunk/src/caca.h
916
917  * src/caca.c src/caca.h:
918    + Added caca_get_dithering_name().
919  * src/bitmap.c:
920    + Created a new dithering method with an 8x8 ordered matrix.
921    + Replaced the char list with a string for better readability.
922    + Dithering functions now return a value between 0 and 255.
923  * examples/demo.c examples/view.c:
924    + Adapted to use caca_get_dithering_name().
925
926------------------------------------------------------------------------
927r131 | sam | 2003-11-29 19:04:42 +0100 (Sat, 29 Nov 2003) | 3 lines
928Changed paths:
929   M /trunk/src/caca.c
930
931  * src/caca.c:
932    + Test whether ncurses knows xterm-16color before setting $TERM.
933
934------------------------------------------------------------------------
935r130 | sam | 2003-11-29 18:36:00 +0100 (Sat, 29 Nov 2003) | 6 lines
936Changed paths:
937   M /trunk/examples/view.c
938
939  * examples/view.c:
940    + Added top and bottom status lines, like in mutt and slrn.
941    + Added a status string when loading an image or upon error.
942    + Can load multiple files; use 'n' and 'p' for next and previous.
943    + Clip zoom between -48 and +48.
944
945------------------------------------------------------------------------
946r129 | sam | 2003-11-29 17:42:35 +0100 (Sat, 29 Nov 2003) | 2 lines
947Changed paths:
948   M /trunk/src/caca.c
949
950  * Fixed a C99ism.
951
952------------------------------------------------------------------------
953r128 | sam | 2003-11-29 15:41:37 +0100 (Sat, 29 Nov 2003) | 9 lines
954Changed paths:
955   M /trunk/NOTES
956   M /trunk/configure.ac
957   M /trunk/src/caca.c
958   M /trunk/src/graphics.c
959
960  * configure.ac:
961    + Default to ncurses, not slang, because slang only has 128 colour pairs.
962  * src/caca.c:
963    + Disable scrolling to avoid hashmap scrolling optimization code.
964  * src/graphics.c:
965    + Swap fg and bg in the colour pair indexing, so that bg is always
966      right.
967    + Disable alt charset support to exploit my patched slang.
968
969------------------------------------------------------------------------
970r127 | sam | 2003-11-28 21:39:54 +0100 (Fri, 28 Nov 2003) | 10 lines
971Changed paths:
972   M /trunk/NOTES
973   M /trunk/examples/view.c
974   M /trunk/src/bitmap.c
975
976  * src/bitmap.c:
977    + Dither chroma outside of rgb2hsv_default().
978    + Clip fromx and fromy values.
979  * NOTES:
980    + Link to the XTerm control sequences.
981  * examples/view.c:
982    + Draw status bar.
983    + Move with 'h' 'j' 'k' 'l', à la vi.
984    + '?' toggles a help menu.
985
986------------------------------------------------------------------------
987r126 | sam | 2003-11-28 00:18:12 +0100 (Fri, 28 Nov 2003) | 3 lines
988Changed paths:
989   M /trunk/src/bitmap.c
990
991  * src/bitmap.c:
992    + Removed § from the list of default characters due to collisions.
993
994------------------------------------------------------------------------
995r125 | sam | 2003-11-27 23:54:48 +0100 (Thu, 27 Nov 2003) | 6 lines
996Changed paths:
997   A /trunk/debian/caca-utils.mime
998   M /trunk/debian/control
999   M /trunk/debian/rules
1000
1001  * debian/control:
1002    + Removed slang1-dev dependency in caca-utils.
1003  * debian/caca-utils.mime debian/rules:
1004    + Added a MIME file with low priority.
1005    + Added call to dh_installmime.
1006
1007------------------------------------------------------------------------
1008r124 | sam | 2003-11-27 23:29:13 +0100 (Thu, 27 Nov 2003) | 5 lines
1009Changed paths:
1010   M /trunk/configure.ac
1011   M /trunk/src/caca.c
1012   M /trunk/src/caca_internals.h
1013   M /trunk/src/graphics.c
1014
1015  * src/caca.c src/graphics.c:
1016    + Moved graphics stuff from caca.c to graphics.c.
1017    + Added a few kludges: if gnome-terminal or konsole are detected, switch
1018      to TERM=xterm-16color to benefit from extended colour palette.
1019
1020------------------------------------------------------------------------
1021r123 | sam | 2003-11-27 22:56:30 +0100 (Thu, 27 Nov 2003) | 13 lines
1022Changed paths:
1023   M /trunk/NOTES
1024   M /trunk/examples/demo.c
1025   M /trunk/examples/spritedit.c
1026   M /trunk/src/bitmap.c
1027   M /trunk/src/caca.c
1028   M /trunk/src/caca.h
1029   M /trunk/src/graphics.c
1030   M /trunk/src/sprite.c
1031
1032  * NOTES:
1033    + Added setab/setaf quotes from the XTerm terminfo.
1034    + Proposed a workaround for bright colours on any terminal.
1035  * src/caca.c:
1036    + 16 colour support for ncurses and conio.
1037  * src/graphics.c:
1038    + Ported to 16 colour support.
1039    + Added a missing <stdio.h> for BUFSIZ.
1040    + Disabled vsnprintf under DOS (only vsprintf exists).
1041  * examples/:
1042    + Don't abort if the caca.txt sprite was not found.
1043    + Ported to 16 colour support.
1044
1045------------------------------------------------------------------------
1046r122 | sam | 2003-11-27 14:27:32 +0100 (Thu, 27 Nov 2003) | 2 lines
1047Changed paths:
1048   M /trunk/NOTES
1049
1050  * NOTES: more notes about colours.
1051
1052------------------------------------------------------------------------
1053r121 | sam | 2003-11-27 10:43:56 +0100 (Thu, 27 Nov 2003) | 5 lines
1054Changed paths:
1055   M /trunk/Makefile.am
1056   M /trunk/configure.ac
1057   M /trunk/examples/Makefile.am
1058
1059  * configure.ac:
1060    + More sensible imlib2 detection, works with cross-compilation.
1061  * Makefile.am:
1062    + Don't forget to include NOTES to the dist tarball.
1063
1064------------------------------------------------------------------------
1065r120 | sam | 2003-11-27 10:38:16 +0100 (Thu, 27 Nov 2003) | 2 lines
1066Changed paths:
1067   A /trunk/NOTES
1068   M /trunk/README
1069   M /trunk/debian/rules
1070
1071  * NOTES: added information about colour support.
1072
1073------------------------------------------------------------------------
1074r119 | sam | 2003-11-26 22:02:31 +0100 (Wed, 26 Nov 2003) | 2 lines
1075Changed paths:
1076   M /trunk/configure.ac
1077
1078  * configure.ac: Added a missing check for <inttypes.h>.
1079
1080------------------------------------------------------------------------
1081r118 | sam | 2003-11-26 21:58:30 +0100 (Wed, 26 Nov 2003) | 2 lines
1082Changed paths:
1083   M /trunk/src/bitmap.c
1084
1085  * src/bitmap.c: Support for more colour depths.
1086
1087------------------------------------------------------------------------
1088r115 | sam | 2003-11-24 20:56:04 +0100 (Mon, 24 Nov 2003) | 9 lines
1089Changed paths:
1090   M /trunk/configure.ac
1091   M /trunk/examples/Makefile.am
1092   M /trunk/examples/demo.c
1093   M /trunk/examples/view.c
1094
1095  * configure.ac examples/Makefile.am:
1096    + Added a check for imlib2-config.
1097    + Build cacaview conditionally.
1098  * examples/demo.c:
1099    + Removed all gdkpixbuf code.
1100  * examples/view.c:
1101    + Default to ordered dithering.
1102    + Make sure the arrows always work even if delta is too small.
1103
1104------------------------------------------------------------------------
1105r114 | sam | 2003-11-24 18:51:40 +0100 (Mon, 24 Nov 2003) | 4 lines
1106Changed paths:
1107   M /trunk/debian
1108   M /trunk/debian/control
1109   M /trunk/debian/rules
1110
1111  * debian/:
1112    + New caca-utils package.
1113    + Move cacademo, cacaview and caca-spritedit to caca-utils.
1114
1115------------------------------------------------------------------------
1116r113 | sam | 2003-11-24 18:50:14 +0100 (Mon, 24 Nov 2003) | 6 lines
1117Changed paths:
1118   M /trunk/doc/Makefile.am
1119   D /trunk/doc/caca-demo.1
1120   A /trunk/doc/cacademo.1 (from /trunk/doc/caca-demo.1:112)
1121   A /trunk/doc/cacaview.1
1122   M /trunk/examples
1123   M /trunk/examples/Makefile.am
1124   A /trunk/examples/view.c
1125
1126  * examples/:
1127    + Simple image viewer, cacaview, based on libcaca and imlib2.
1128    + Renamed caca-demo into cacademo.
1129  * doc/:
1130    + Renamed doc/caca-demo.1 into doc/cacademo.1.
1131
1132------------------------------------------------------------------------
1133r112 | sam | 2003-11-23 16:34:35 +0100 (Sun, 23 Nov 2003) | 2 lines
1134Changed paths:
1135   M /trunk/src/Makefile.am
1136   A /trunk/src/bitmap.c (from /trunk/src/blit.c:111)
1137   D /trunk/src/blit.c
1138
1139  * Renamed src/blit.c into src/bitmap.c.
1140
1141------------------------------------------------------------------------
1142r111 | sam | 2003-11-23 04:44:59 +0100 (Sun, 23 Nov 2003) | 5 lines
1143Changed paths:
1144   M /trunk/examples/demo.c
1145   M /trunk/src/caca.c
1146   M /trunk/src/caca.h
1147   M /trunk/src/io.c
1148
1149  * src/caca.c:
1150    + Mouse initialisation in ncurses.
1151  * src/io.c:
1152    + Mouse support in ncurses.
1153
1154------------------------------------------------------------------------
1155r110 | sam | 2003-11-22 15:28:36 +0100 (Sat, 22 Nov 2003) | 3 lines
1156Changed paths:
1157   M /trunk/debian/control
1158
1159  * debian/control:
1160    + libcaca-dev should depend on slang1-dev.
1161
1162------------------------------------------------------------------------
1163r109 | sam | 2003-11-22 15:23:18 +0100 (Sat, 22 Nov 2003) | 3 lines
1164Changed paths:
1165   M /trunk/debian/Makefile.am
1166
1167  * debian/Makefile.am:
1168    + Added compat and copyright to the distributed files.
1169
1170------------------------------------------------------------------------
1171r108 | sam | 2003-11-22 15:19:36 +0100 (Sat, 22 Nov 2003) | 2 lines
1172Changed paths:
1173   A /trunk/ChangeLog
1174   M /trunk/debian/rules
1175
1176  * Added a ChangeLog file.
1177
1178------------------------------------------------------------------------
1179r107 | sam | 2003-11-22 15:13:53 +0100 (Sat, 22 Nov 2003) | 3 lines
1180Changed paths:
1181   M /trunk/examples/Makefile.am
1182
1183  * examples/Makefile.am:
1184    + Compilation fix when libcaca is not available.
1185
1186------------------------------------------------------------------------
1187r106 | sam | 2003-11-22 14:44:02 +0100 (Sat, 22 Nov 2003) | 9 lines
1188Changed paths:
1189   M /trunk/debian/changelog
1190   A /trunk/debian/copyright
1191   M /trunk/debian/rules
1192   M /trunk/doc/Makefile.am
1193   M /trunk/doc/caca-config.1
1194   A /trunk/doc/caca-demo.1
1195   A /trunk/doc/caca-spritedit.1
1196   M /trunk/examples/caca.txt
1197
1198  * debian/:
1199    + Wrote the changelog for the Debian release.
1200    + Wrote a copyright file.
1201  * doc/:
1202    + Wrote manpages for caca-demo and caca-spritedit.
1203  * examples/caca.txt:
1204    + Centered the sprite handle.
1205    + Added a second frame to the sprite.
1206
1207------------------------------------------------------------------------
1208r105 | sam | 2003-11-22 13:53:55 +0100 (Sat, 22 Nov 2003) | 11 lines
1209Changed paths:
1210   A /trunk/AUTHORS
1211   M /trunk/Makefile.am
1212   A /trunk/NEWS
1213   M /trunk/configure.ac
1214   A /trunk/doc
1215   A /trunk/doc/Makefile.am
1216   A /trunk/doc/caca-config.1
1217   A /trunk/doc/doxygen.cfg
1218   A /trunk/doc/footer.html
1219   A /trunk/doc/header.html
1220
1221  * AUTHORS NEWS:
1222    + Added these mandatory files.
1223  * doc/:
1224    + Wrote a Doxygen configuration file.
1225    + Added a manpage for caca-config(1), borrowed from sdl-config.
1226  * configure.ac:
1227    + Use new style AC_INIT.
1228    + Error out if no library was found.
1229    + Added *djgpp* to the list of non-PIC platforms.
1230    + Added checks for doxygen and latex.
1231
1232------------------------------------------------------------------------
1233r104 | sam | 2003-11-22 13:51:27 +0100 (Sat, 22 Nov 2003) | 2 lines
1234Changed paths:
1235   M /trunk/examples/Makefile.am
1236   M /trunk/examples/demo.c
1237
1238  * Disabled gdkpixbuf code.
1239
1240------------------------------------------------------------------------
1241r103 | sam | 2003-11-22 13:45:25 +0100 (Sat, 22 Nov 2003) | 3 lines
1242Changed paths:
1243   M /trunk/src/blit.c
1244   M /trunk/src/box.c
1245   M /trunk/src/caca.c
1246   M /trunk/src/caca.h
1247   M /trunk/src/caca_internals.h
1248   M /trunk/src/conic.c
1249   M /trunk/src/graphics.c
1250   M /trunk/src/io.c
1251   M /trunk/src/line.c
1252   M /trunk/src/math.c
1253   M /trunk/src/sprite.c
1254   M /trunk/src/triangle.c
1255
1256  * src/:
1257    + Doxygenated a few things.
1258
1259------------------------------------------------------------------------
1260r102 | sam | 2003-11-21 15:34:07 +0100 (Fri, 21 Nov 2003) | 8 lines
1261Changed paths:
1262   M /trunk/TODO
1263   M /trunk/examples/demo.c
1264   M /trunk/src/blit.c
1265   M /trunk/src/caca.h
1266
1267  * TODO:
1268    + A few updates.
1269  * src/blit.c:
1270    + Split blit() into caca_create_bitmap() and caca_draw_bitmap().
1271    + Started removing hardcoded bitmask and pitch values.
1272  * examples/demo.c:
1273    + Do something with mouse clicks.
1274
1275------------------------------------------------------------------------
1276r101 | sam | 2003-11-21 15:14:26 +0100 (Fri, 21 Nov 2003) | 3 lines
1277Changed paths:
1278   M /trunk/src/io.c
1279
1280  * src/io.c:
1281    + Fixed an off-by-one error in the mouse driver.
1282
1283------------------------------------------------------------------------
1284r100 | sam | 2003-11-20 17:54:04 +0100 (Thu, 20 Nov 2003) | 13 lines
1285Changed paths:
1286   M /trunk
1287   M /trunk/Makefile.am
1288   M /trunk/README
1289   M /trunk/TODO
1290   A /trunk/caca-config.in
1291   M /trunk/configure.ac
1292   M /trunk/debian
1293   A /trunk/debian/compat
1294   M /trunk/debian/control
1295   M /trunk/debian/rules
1296   M /trunk/examples
1297   M /trunk/examples/Makefile.am
1298   M /trunk/examples/demo.c
1299   M /trunk/src/Makefile.am
1300
1301  * debian/control:
1302    + Changed section to libs/libdevel instead of games/games.
1303    + Changed package name to libcaca-dev.
1304  * debian/rules:
1305    + Use debian/compat instead of DH_COMPAT.
1306    + Install README, BUGS and TODO into /usr/share/doc.
1307  * caca-config.in:
1308    + First version of the config script.
1309  * configure.ac src/Makefile.am:
1310    + Build a static PIC library as well.
1311  * README TODO:
1312    + Various updates.
1313
1314------------------------------------------------------------------------
1315r99 | sam | 2003-11-19 19:38:49 +0100 (Wed, 19 Nov 2003) | 3 lines
1316Changed paths:
1317   M /trunk/TODO
1318   M /trunk/src/io.c
1319
1320  * TODO: New stuff to do.
1321  * src/io.c: left and right arrow keys were swapped.
1322
1323------------------------------------------------------------------------
1324r98 | sam | 2003-11-19 18:49:43 +0100 (Wed, 19 Nov 2003) | 3 lines
1325Changed paths:
1326   M /trunk/src/blit.c
1327   M /trunk/src/caca.c
1328   M /trunk/src/io.c
1329
1330  * src/io.c:
1331    + Fixed a bug in the mouse coordinates reporting.
1332
1333------------------------------------------------------------------------
1334r97 | sam | 2003-11-19 18:32:10 +0100 (Wed, 19 Nov 2003) | 6 lines
1335Changed paths:
1336   M /trunk/examples/demo.c
1337   M /trunk/examples/spritedit.c
1338   M /trunk/src/blit.c
1339   M /trunk/src/caca.c
1340   M /trunk/src/caca.h
1341   M /trunk/src/io.c
1342
1343  * src/io.c:
1344    + Renamed sdl_get_key() into sdl_get_event().
1345    + Handle mouse clicks.
1346  * src/caca.c:
1347    + Activate the terminal's mouse handling if supported.
1348
1349------------------------------------------------------------------------
1350r96 | sam | 2003-11-17 17:11:34 +0100 (Mon, 17 Nov 2003) | 8 lines
1351Changed paths:
1352   M /trunk/examples/Makefile.am
1353   M /trunk/src/Makefile.am
1354   M /trunk/src/blit.c
1355   M /trunk/src/caca.h
1356   M /trunk/src/io.c
1357
1358  * src/io.c src/caca.h:
1359    + Interpret escape sequences for F1, F2, left, right, etc.
1360  * src/Makefile.am examples/Makefile.am:
1361    + Install caca.h in /usr/include.
1362    + Do not install example programs.
1363  * src/blit.c:
1364    + Minor improvements to grayscale colors.
1365
1366------------------------------------------------------------------------
1367r95 | sam | 2003-11-17 11:15:40 +0100 (Mon, 17 Nov 2003) | 2 lines
1368Changed paths:
1369   D /trunk/.cvsignore
1370   D /trunk/autotools/.cvsignore
1371
1372  * Removed legacy .cvsignore files.
1373
1374------------------------------------------------------------------------
1375r94 | sam | 2003-11-16 18:41:43 +0100 (Sun, 16 Nov 2003) | 6 lines
1376Changed paths:
1377   M /trunk/examples/demo.c
1378   M /trunk/src/blit.c
1379   M /trunk/src/caca.h
1380
1381  * src/blit.c:
1382    + Hue calculation now uses integers only.
1383    + Dithering is now parametrable. Implemented none, ordered, random.
1384  * examples/demo.c:
1385    + Added dithering selection.
1386
1387------------------------------------------------------------------------
1388r93 | sam | 2003-11-16 16:20:17 +0100 (Sun, 16 Nov 2003) | 8 lines
1389Changed paths:
1390   M /trunk/examples/Makefile.am
1391   A /trunk/examples/caca.txt
1392   M /trunk/examples/demo.c
1393   M /trunk/examples/spritedit.c
1394   M /trunk/src/blit.c
1395   M /trunk/src/caca.c
1396   M /trunk/src/caca.h
1397   M /trunk/src/caca_internals.h
1398   M /trunk/src/graphics.c
1399
1400  * src/blit.c:
1401    + Added caca_set_dithering() (unused yet).
1402    + Added random dithering.
1403  * src/caca.h:
1404    + Renamed legacy EE_* enums to CACA_*.
1405  * examples/demo.c examples/caca.txt:
1406    + Added a default sprite for libcaca.
1407
1408------------------------------------------------------------------------
1409r92 | sam | 2003-11-16 13:28:29 +0100 (Sun, 16 Nov 2003) | 2 lines
1410Changed paths:
1411   M /trunk/examples/demo.c
1412   M /trunk/examples/spritedit.c
1413   M /trunk/src/blit.c
1414   M /trunk/src/box.c
1415   M /trunk/src/caca.c
1416   M /trunk/src/caca.h
1417   M /trunk/src/caca_internals.h
1418   M /trunk/src/conic.c
1419   M /trunk/src/graphics.c
1420   M /trunk/src/io.c
1421   M /trunk/src/line.c
1422   M /trunk/src/math.c
1423   M /trunk/src/sprite.c
1424   M /trunk/src/triangle.c
1425
1426  * Changed copyleft to LGPL.
1427
1428------------------------------------------------------------------------
1429r91 | sam | 2003-11-16 13:13:46 +0100 (Sun, 16 Nov 2003) | 3 lines
1430Changed paths:
1431   M /trunk/Makefile.am
1432   M /trunk/configure.ac
1433   A /trunk/examples (from /trunk/test:90)
1434   M /trunk/examples/Makefile.am
1435   D /trunk/libcaca
1436   A /trunk/src (from /trunk/libcaca:90)
1437   M /trunk/src/line.c
1438   D /trunk/test
1439
1440  * 2nd pass in the libcaca rehandling; moved sources to src/ and examples
1441    to examples/.
1442
1443------------------------------------------------------------------------
1444r90 | sam | 2003-11-16 13:07:52 +0100 (Sun, 16 Nov 2003) | 2 lines
1445Changed paths:
1446   M /trunk/COPYING
1447   M /trunk/Makefile.am
1448   M /trunk/README
1449   M /trunk/TODO
1450   M /trunk/bootstrap
1451   M /trunk/configure.ac
1452   D /trunk/data
1453   D /trunk/debian/.cvsignore
1454   M /trunk/debian/changelog
1455   M /trunk/debian/control
1456   M /trunk/debian/rules
1457   D /trunk/doc
1458   D /trunk/src
1459
1460  * The big TTYvaders/libcaca split. This is libcaca.
1461
1462------------------------------------------------------------------------
1463r89 | sam | 2003-11-16 12:26:54 +0100 (Sun, 16 Nov 2003) | 8 lines
1464Changed paths:
1465   M /trunk/configure.ac
1466   M /trunk/libcaca/blit.c
1467   M /trunk/libcaca/caca.c
1468   M /trunk/libcaca/conic.c
1469   M /trunk/libcaca/graphics.c
1470   M /trunk/src/weapons.c
1471
1472  * configure.ac:
1473    + Added -Wsign-compare to the warning flags.
1474  * libcaca/caca.c:
1475    + Fixed a signed/unsigned bug that caused infinite waits with
1476      ee_set_delay(0).
1477  * src/weapons.c libcaca/graphics.c libcaca/blit.c libcaca/conic.c:
1478    + Fixed minor signed/unsigned comparison warnings.
1479
1480------------------------------------------------------------------------
1481r88 | sam | 2003-11-16 01:33:35 +0100 (Sun, 16 Nov 2003) | 2 lines
1482Changed paths:
1483   M /trunk/Makefile.am
1484   M /trunk/TODO
1485   M /trunk/configure.ac
1486   A /trunk/libcaca (from /trunk/libee:87)
1487   M /trunk/libcaca/Makefile.am
1488   M /trunk/libcaca/blit.c
1489   M /trunk/libcaca/box.c
1490   A /trunk/libcaca/caca.c (from /trunk/libee/ee.c:87)
1491   A /trunk/libcaca/caca.h (from /trunk/libee/ee.h:87)
1492   A /trunk/libcaca/caca_internals.h (from /trunk/libee/ee_internals.h:87)
1493   M /trunk/libcaca/conic.c
1494   D /trunk/libcaca/ee.c
1495   D /trunk/libcaca/ee.h
1496   D /trunk/libcaca/ee_internals.h
1497   M /trunk/libcaca/graphics.c
1498   M /trunk/libcaca/io.c
1499   M /trunk/libcaca/line.c
1500   M /trunk/libcaca/math.c
1501   M /trunk/libcaca/sprite.c
1502   M /trunk/libcaca/triangle.c
1503   D /trunk/libee
1504   M /trunk/src/Makefile.am
1505   M /trunk/src/aliens.c
1506   M /trunk/src/bonus.c
1507   M /trunk/src/box.c
1508   M /trunk/src/ceo.c
1509   M /trunk/src/collide.c
1510   M /trunk/src/common.h
1511   M /trunk/src/explosions.c
1512   M /trunk/src/intro.c
1513   M /trunk/src/main.c
1514   M /trunk/src/overlay.c
1515   M /trunk/src/player.c
1516   M /trunk/src/starfield.c
1517   M /trunk/src/tunnel.c
1518   M /trunk/src/weapons.c
1519   M /trunk/test/Makefile.am
1520   M /trunk/test/demo.c
1521   M /trunk/test/spritedit.c
1522
1523  * Renamed libee to libcaca. Far less collisions.
1524
1525------------------------------------------------------------------------
1526r87 | sam | 2003-11-16 01:09:09 +0100 (Sun, 16 Nov 2003) | 2 lines
1527Changed paths:
1528   M /trunk/libee/Makefile.am
1529   A /trunk/libee/blit.c
1530   M /trunk/libee/ee.h
1531   M /trunk/test/Makefile.am
1532   M /trunk/test/demo.c
1533
1534  * Very ugly ee_blit function. Will be polished in a while.
1535
1536------------------------------------------------------------------------
1537r86 | sam | 2003-11-15 13:42:38 +0100 (Sat, 15 Nov 2003) | 10 lines
1538Changed paths:
1539   M /trunk/libee/ee.c
1540   M /trunk/libee/ee.h
1541   M /trunk/libee/graphics.c
1542   M /trunk/test/demo.c
1543
1544  * libee/ee.c:
1545    + Replaced ee_color_names[] with ee_get_color_name().
1546    + Don't oversleep in ee_refresh().
1547  * libee/graphics.c:
1548    + Implemented ee_printf().
1549  * test/demo.c:
1550    + If new keypresses are detected, don't wait for the next screen refresh.
1551    + Added an fps counter on demos.
1552    + Added controls for outlines and drawing boundaries.
1553
1554------------------------------------------------------------------------
1555r85 | sam | 2003-11-15 10:58:20 +0100 (Sat, 15 Nov 2003) | 8 lines
1556Changed paths:
1557   M /trunk/libee/ee.c
1558   M /trunk/libee/ee.h
1559   M /trunk/libee/ee_internals.h
1560   M /trunk/libee/graphics.c
1561   M /trunk/libee/line.c
1562
1563  * libee/graphics.c:
1564    + Correct clipping in ee_putstr() for long strings.
1565  * libee/ee.c:
1566    + New ee_get_rendertime() call to provide framerate information.
1567  * libee/ee.h:
1568    + Added const keywords where it was meaningful, despite Slang's blatant
1569      omission of such keywords in its prototypes.
1570
1571------------------------------------------------------------------------
1572r84 | sam | 2003-11-14 20:00:07 +0100 (Fri, 14 Nov 2003) | 6 lines
1573Changed paths:
1574   M /trunk/libee/ee.c
1575   M /trunk/src/main.c
1576   M /trunk/test/demo.c
1577
1578  * libee/ee.c:
1579    + Implemented correct framerate wait loop.
1580    + No framedropping yet.
1581  * test/demo.c src/main.c:
1582    + Set an arbitrary framerate for demos.
1583
1584------------------------------------------------------------------------
1585r83 | sam | 2003-11-14 19:49:53 +0100 (Fri, 14 Nov 2003) | 2 lines
1586Changed paths:
1587   M /trunk/src/Makefile.am
1588   M /trunk/test/Makefile.am
1589
1590  * Fixed compilation in an alternate directory.
1591
1592------------------------------------------------------------------------
1593r82 | sam | 2003-11-14 18:02:36 +0100 (Fri, 14 Nov 2003) | 2 lines
1594Changed paths:
1595   M /trunk/src/box.c
1596   M /trunk/src/main.c
1597   M /trunk/src/player.c
1598   M /trunk/src/starfield.c
1599   M /trunk/src/tunnel.c
1600   M /trunk/src/weapons.c
1601
1602  * Sanity checks after each malloc() call.
1603
1604------------------------------------------------------------------------
1605r81 | sam | 2003-11-14 17:55:58 +0100 (Fri, 14 Nov 2003) | 4 lines
1606Changed paths:
1607   M /trunk/libee/ee.h
1608   M /trunk/libee/math.c
1609
1610  * libee/math.c:
1611    + ee_sqrt() now uses unsigned ints.
1612    + Avoid overflows in ee_sqrt().
1613
1614------------------------------------------------------------------------
1615r80 | sam | 2003-11-13 18:12:40 +0100 (Thu, 13 Nov 2003) | 2 lines
1616Changed paths:
1617   M /trunk/src/intro.c
1618
1619  * src/intro.c: Minor graphical issue on dosemu with ncurses backend.
1620
1621------------------------------------------------------------------------
1622r79 | sam | 2003-11-13 17:45:25 +0100 (Thu, 13 Nov 2003) | 6 lines
1623Changed paths:
1624   M /trunk/libee/ee.c
1625   M /trunk/libee/ee_internals.h
1626   M /trunk/libee/graphics.c
1627   M /trunk/libee/sprite.c
1628
1629  * libee/ee.c:
1630    + Error checking in ee_init().
1631    + Pre-generate the empty line for ee_clear().
1632  * libee/sprite.c:
1633    + Better error checking in ee_sprite_load().
1634
1635------------------------------------------------------------------------
1636r78 | sam | 2003-11-13 16:41:12 +0100 (Thu, 13 Nov 2003) | 2 lines
1637Changed paths:
1638   M /trunk/libee/conic.c
1639   M /trunk/libee/line.c
1640   M /trunk/src/box.c
1641
1642  * Minor coding style changes.
1643
1644------------------------------------------------------------------------
1645r77 | sam | 2003-11-13 16:37:49 +0100 (Thu, 13 Nov 2003) | 2 lines
1646Changed paths:
1647   M /trunk/data/Makefile.am
1648   D /trunk/data/bar_boss
1649   D /trunk/data/bar_fighter
1650   A /trunk/data/barboss.txt (from /trunk/data/bar_boss:76)
1651   A /trunk/data/barfight.txt (from /trunk/data/bar_fighter:76)
1652   D /trunk/data/baz_fighter
1653   A /trunk/data/bazfight.txt (from /trunk/data/baz_fighter:76)
1654   A /trunk/data/bongem.txt (from /trunk/data/item_gem:76)
1655   A /trunk/data/bonheart.txt (from /trunk/data/item_heart:76)
1656   D /trunk/data/explosion_medium
1657   D /trunk/data/explosion_small
1658   D /trunk/data/foo_fighter
1659   A /trunk/data/foofight.txt (from /trunk/data/foo_fighter:76)
1660   D /trunk/data/item_gem
1661   D /trunk/data/item_heart
1662   A /trunk/data/ship.txt (from /trunk/data/ship_green:76)
1663   D /trunk/data/ship_green
1664   D /trunk/data/weapon_bomb
1665   D /trunk/data/weapon_fragbomb
1666   A /trunk/data/wpnbomb.txt (from /trunk/data/weapon_bomb:76)
1667   A /trunk/data/wpnfrag.txt (from /trunk/data/weapon_fragbomb:76)
1668   A /trunk/data/xplmed.txt (from /trunk/data/explosion_medium:76)
1669   A /trunk/data/xplsmall.txt (from /trunk/data/explosion_small:76)
1670   M /trunk/src/aliens.c
1671   M /trunk/src/bonus.c
1672   M /trunk/src/explosions.c
1673   M /trunk/src/intro.c
1674   M /trunk/src/player.c
1675   M /trunk/src/weapons.c
1676   M /trunk/test/demo.c
1677
1678  * Renamed sprites to < 8+3 names for the DOS port.
1679
1680------------------------------------------------------------------------
1681r76 | sam | 2003-11-13 00:46:58 +0100 (Thu, 13 Nov 2003) | 7 lines
1682Changed paths:
1683   M /trunk/data/bar_boss
1684   M /trunk/data/bar_fighter
1685   M /trunk/data/baz_fighter
1686   M /trunk/data/explosion_medium
1687   M /trunk/data/explosion_small
1688   M /trunk/data/foo_fighter
1689   M /trunk/data/item_gem
1690   M /trunk/data/item_heart
1691   M /trunk/data/ship_green
1692   M /trunk/data/weapon_bomb
1693   M /trunk/data/weapon_fragbomb
1694   M /trunk/src/starfield.c
1695   M /trunk/test/demo.c
1696
1697  * test/demo.c:
1698    + Removed a spurious '\n' from an ee_putstr().
1699  * src/starfield.c:
1700    + Fixed starfield color.
1701  * data/:
1702    + Fixed every sprite's colors.
1703
1704------------------------------------------------------------------------
1705r75 | sam | 2003-11-12 22:18:50 +0100 (Wed, 12 Nov 2003) | 25 lines
1706Changed paths:
1707   A /trunk/BUGS
1708   M /trunk/Makefile.am
1709   M /trunk/README
1710   M /trunk/TODO
1711   M /trunk/libee/Makefile.am
1712   M /trunk/libee/box.c
1713   M /trunk/libee/conic.c
1714   M /trunk/libee/ee.c
1715   M /trunk/libee/ee.h
1716   A /trunk/libee/ee_internals.h
1717   M /trunk/libee/graphics.c
1718   M /trunk/libee/io.c
1719   M /trunk/libee/line.c
1720   M /trunk/libee/math.c
1721   M /trunk/libee/sprite.c
1722   M /trunk/libee/triangle.c
1723   M /trunk/src/Makefile.am
1724   M /trunk/src/overlay.c
1725   M /trunk/src/weapons.c
1726   M /trunk/test/demo.c
1727
1728  * libee/ee.h:
1729    + Added ee_color_names[] containing our 16 color names.
1730  * libee/ee.c:
1731    + Extended our color set to the full 16 instead of 10.
1732    + Precalculate ncurses attributes.
1733  * libee/graphics.c:
1734    + Clip color value in ee_set_color().
1735    + Clip characters in ee_putchar().
1736    + Partially clip characters in ee_putstr(), overflows aren't checked yet.
1737  * libee/ee_internals.h:
1738    + New file to share extern variables within libee.
1739
1740  * test/demo.c:
1741    + Added a simple demo_color() to output all colors.
1742    + Replaced four ee_draw_line() with ee_draw_thin_box().
1743    + Replaced x1, y1, x2 etc. with xa, ya, xb etc. because <math.h> already
1744      defines y1.
1745    + Randomized colours from 0 to 15 instead of 1 to 10.
1746
1747  * src/Makefiles.am:
1748    + Added -lm to the ttyvaders linking flags because of the intro.
1749
1750  * README BUGS TODO:
1751    + Updated.
1752
1753------------------------------------------------------------------------
1754r74 | sam | 2003-11-12 19:41:02 +0100 (Wed, 12 Nov 2003) | 7 lines
1755Changed paths:
1756   M /trunk/README
1757   M /trunk/configure.ac
1758   M /trunk/libee/ee.c
1759   M /trunk/libee/graphics.c
1760
1761  * README:
1762    + Added a note about dos cross-compilation.
1763  * configure.ac:
1764    + Added a check for ScreenUpdate in <pc.h>.
1765  * libee/graphics.c libee/ee.c:
1766    + Improved the conio port thanks to ScreenUpdate().
1767
1768------------------------------------------------------------------------
1769r73 | sam | 2003-11-12 17:23:18 +0100 (Wed, 12 Nov 2003) | 2 lines
1770Changed paths:
1771   M /trunk/configure.ac
1772   M /trunk/libee/conic.c
1773   M /trunk/libee/ee.c
1774   M /trunk/libee/graphics.c
1775   M /trunk/libee/io.c
1776   M /trunk/libee/line.c
1777
1778  * MS-DOS port of libee, using <conio.h>.
1779
1780------------------------------------------------------------------------
1781r72 | sam | 2003-11-12 02:48:58 +0100 (Wed, 12 Nov 2003) | 17 lines
1782Changed paths:
1783   M /trunk/data/foo_fighter
1784   M /trunk/libee/box.c
1785   M /trunk/libee/ee.h
1786   M /trunk/libee/graphics.c
1787   M /trunk/libee/line.c
1788   M /trunk/libee/sprite.c
1789   M /trunk/src/Makefile.am
1790   M /trunk/src/aliens.c
1791   M /trunk/src/bonus.c
1792   M /trunk/src/box.c
1793   M /trunk/src/common.h
1794   M /trunk/src/explosions.c
1795   A /trunk/src/intro.c
1796   M /trunk/src/main.c
1797   M /trunk/src/overlay.c
1798   M /trunk/src/player.c
1799   M /trunk/src/starfield.c
1800   M /trunk/src/tunnel.c
1801   M /trunk/src/weapons.c
1802   M /trunk/test/demo.c
1803   M /trunk/test/spritedit.c
1804
1805  * libee/graphics.c:
1806    + Renamed ee_color() to ee_set_color(), wrote ee_get_color().
1807  * libee/line.c:
1808    + Implemented draw_polyline() and draw_thin_polyline().
1809  * libee/sprite.c:
1810    + Removed the f member of struct ee_sprite.
1811    + Implemented ee_get_sprite_{width|height|dx|dy}().
1812    + Restore the color fater ee_draw_sprite() is called.
1813  * libee/box.c:
1814    + Fixed a bug causing improper box clipping at the right and the bottom.
1815  * data/foo_fighter:
1816    + Fixed bugs in the sprite.
1817  * src/intro.c:
1818    + Test effects for the future game's intro.
1819  * test/spritedit.c:
1820    + Added stuff to the sprite editor. We can now navigate through frames.
1821
1822------------------------------------------------------------------------
1823r71 | sam | 2003-11-11 11:22:19 +0100 (Tue, 11 Nov 2003) | 13 lines
1824Changed paths:
1825   M /trunk/libee/Makefile.am
1826   A /trunk/libee/box.c
1827   M /trunk/libee/conic.c
1828   M /trunk/libee/ee.h
1829   M /trunk/libee/triangle.c
1830   M /trunk/test/demo.c
1831
1832  * libee/triangle.c:
1833    + Wrote ee_draw_triangle() and ee_draw_thin_triangle().
1834  * libee/box.c:
1835    + Wrote ee_draw_box(), ee_draw_thin_box() and ee_fill_box().
1836  * libee/conic.c:
1837    + Wrote ee_fill_ellipse().
1838    + First attempt at ee_draw_thin_ellipse(), to be reworked.
1839  * test/demo.c:
1840    + Merged demo_lines() and demo_thin_lines().
1841    + Merged demo_triangles() and demo_outlined_triangles().
1842    + Wrote demo_box().
1843    + Use ee_fill_ellipse() in demo_all().
1844
1845------------------------------------------------------------------------
1846r70 | sam | 2003-11-11 09:00:36 +0100 (Tue, 11 Nov 2003) | 5 lines
1847Changed paths:
1848   M /trunk/data/Makefile.am
1849   A /trunk/data/ship_green
1850   M /trunk/src/collide.c
1851   M /trunk/src/main.c
1852   M /trunk/src/player.c
1853   M /trunk/src/weapons.c
1854
1855  * src/weapons.c:
1856    + Use ee_draw_ellipse() instead of ee_draw_circle() to draw the nuke.
1857  * src/player.c:
1858    + Use ee_draw_sprite() to draw our ship.
1859
1860------------------------------------------------------------------------
1861r69 | sam | 2003-11-11 00:38:50 +0100 (Tue, 11 Nov 2003) | 8 lines
1862Changed paths:
1863   M /trunk/libee/Makefile.am
1864   M /trunk/libee/conic.c
1865   M /trunk/libee/ee.c
1866   M /trunk/libee/ee.h
1867   A /trunk/libee/graphics.c (from /trunk/libee/ee.c:68)
1868   M /trunk/libee/io.c
1869   M /trunk/libee/line.c
1870   M /trunk/libee/math.c
1871   M /trunk/libee/sprite.c
1872   M /trunk/libee/triangle.c
1873   M /trunk/src/box.c
1874   M /trunk/src/overlay.c
1875   M /trunk/src/player.c
1876   M /trunk/src/starfield.c
1877   M /trunk/src/tunnel.c
1878   M /trunk/src/weapons.c
1879   M /trunk/test/demo.c
1880
1881  * libee/graphics.c:
1882    + Moved ee_putstr() and ee_putchar() in here.
1883  * libee/ee.h:
1884    + Got rid of ee_goto().
1885    + Moved <slang.h> or <curses.h> into libee.
1886  * Replaced ee_goto()/ee_putstr() pairs with ee_putstr().
1887  * Ditto for ee_putchar().
1888
1889------------------------------------------------------------------------
1890r68 | sam | 2003-11-11 00:04:13 +0100 (Tue, 11 Nov 2003) | 5 lines
1891Changed paths:
1892   M /trunk/data/Makefile.am
1893   M /trunk/src/Makefile.am
1894   M /trunk/test
1895   M /trunk/test/Makefile.am
1896   A /trunk/test/spritedit.c
1897
1898  * test/spritedit.c:
1899    + Placeholder for our upcoming sprite editor.
1900  * src/Makefile.am data/Makefile.am:
1901    + Use AM_CPPFLAGS, not target_CPPFLAGS, so that automake-1.5 can be used.
1902
1903------------------------------------------------------------------------
1904r67 | sam | 2003-11-10 23:43:30 +0100 (Mon, 10 Nov 2003) | 4 lines
1905Changed paths:
1906   M /trunk/data/Makefile.am
1907   A /trunk/data/weapon_fragbomb
1908   M /trunk/src/weapons.c
1909
1910  * src/weapons.c data/weapon_fragbomb:
1911    + Drew the fragbomb sprite.
1912    + Use the fragbomb in src/weapons.c.
1913
1914------------------------------------------------------------------------
1915r66 | sam | 2003-11-10 22:54:11 +0100 (Mon, 10 Nov 2003) | 5 lines
1916Changed paths:
1917   M /trunk/data/Makefile.am
1918   A /trunk/data/weapon_bomb
1919   M /trunk/src/weapons.c
1920
1921  * data/weapon_bomb:
1922    + New bomb sprite.
1923  * src/weapons.c:
1924    + Switched the bomb drawing to use ee_draw_sprite().
1925
1926------------------------------------------------------------------------
1927r65 | sam | 2003-11-10 22:17:47 +0100 (Mon, 10 Nov 2003) | 8 lines
1928Changed paths:
1929   M /trunk/data/Makefile.am
1930   A /trunk/data/explosion_medium
1931   A /trunk/data/explosion_small
1932   M /trunk/libee/sprite.c
1933   M /trunk/src/explosions.c
1934
1935  * libee/sprite.c:
1936    + Made sprite loading more robust.
1937  * src/explosions.c:
1938    + No longer use ee_putchar etc. to draw our sprites, but use
1939      ee_draw_sprite().
1940  * data/:
1941    + Drew explosion_medium and explosion_small sprites.
1942
1943------------------------------------------------------------------------
1944r64 | sam | 2003-11-10 21:43:02 +0100 (Mon, 10 Nov 2003) | 2 lines
1945Changed paths:
1946   M /trunk/libee/conic.c
1947
1948  * libee/conic.c: Clip circles and ellipses.
1949
1950------------------------------------------------------------------------
1951r63 | sam | 2003-11-10 19:29:04 +0100 (Mon, 10 Nov 2003) | 5 lines
1952Changed paths:
1953   M /trunk/libee/conic.c
1954   M /trunk/libee/sprite.c
1955
1956  * libee/sprite.c:
1957    + Added sanity checks in ee_sprite_* functions.
1958  * libee/conic.c:
1959    + Use ellipsepoints() in ee_draw_circle().
1960
1961------------------------------------------------------------------------
1962r62 | sam | 2003-11-10 19:23:23 +0100 (Mon, 10 Nov 2003) | 3 lines
1963Changed paths:
1964   M /trunk/test/demo.c
1965
1966  * test/demo.c:
1967    + Ellipses demo.
1968
1969------------------------------------------------------------------------
1970r61 | sam | 2003-11-10 19:21:36 +0100 (Mon, 10 Nov 2003) | 3 lines
1971Changed paths:
1972   M /trunk/libee/conic.c
1973   M /trunk/libee/ee.h
1974
1975  * libee/conic.c:
1976    + ee_draw_ellipse().
1977
1978------------------------------------------------------------------------
1979r60 | sam | 2003-11-10 16:31:12 +0100 (Mon, 10 Nov 2003) | 2 lines
1980Changed paths:
1981   M /trunk/libee/Makefile.am
1982   D /trunk/libee/circle.c
1983   A /trunk/libee/conic.c (from /trunk/libee/circle.c:58)
1984   M /trunk/libee/line.c
1985
1986  * Renamed libee/circle.c to libee/conic.c because we'll do ellipsis.
1987
1988------------------------------------------------------------------------
1989r59 | sam | 2003-11-10 16:16:38 +0100 (Mon, 10 Nov 2003) | 3 lines
1990Changed paths:
1991   M /trunk/libee/line.c
1992
1993  * libee/line.c:
1994    + Added code comments.
1995
1996------------------------------------------------------------------------
1997r58 | sam | 2003-11-10 15:19:21 +0100 (Mon, 10 Nov 2003) | 4 lines
1998Changed paths:
1999   M /trunk/configure.ac
2000   M /trunk/libee/Makefile.am
2001   M /trunk/src/Makefile.am
2002   M /trunk/test/Makefile.am
2003
2004  * configure.ac:
2005    + Moved optimization flags and warning triggers here.
2006    + Updated the snapshot timestamp.
2007
2008------------------------------------------------------------------------
2009r57 | sam | 2003-11-10 15:13:56 +0100 (Mon, 10 Nov 2003) | 2 lines
2010Changed paths:
2011   M /trunk/test/demo.c
2012
2013  * test/demo.c: Nicer complete demo.
2014
2015------------------------------------------------------------------------
2016r56 | sam | 2003-11-10 10:26:40 +0100 (Mon, 10 Nov 2003) | 11 lines
2017Changed paths:
2018   M /trunk/data/Makefile.am
2019   A /trunk/data/baz_fighter
2020   A /trunk/data/foo_fighter
2021   A /trunk/data/item_gem
2022   A /trunk/data/item_heart
2023   M /trunk/libee/ee.h
2024   M /trunk/libee/sprite.c
2025   M /trunk/src/aliens.c
2026   M /trunk/src/bonus.c
2027   M /trunk/src/box.c
2028
2029  * libee/sprite.c:
2030    + More robust sprite loader.
2031    + Added ee_set_sprite_frame() and ee_get_sprite_frame().
2032    + Free all structures in ee_free_sprite().
2033  * src/aliens.c src/bonus.c:
2034    + Use ee_draw_sprite() instead of our manual sprite rendering.
2035  * src/box.c:
2036    + Use ee_draw_line() instead of the manual equivalent.
2037  * data/:
2038    + Added foo_fighter, baz_fighter, item_gem and item_heart sprites.
2039
2040------------------------------------------------------------------------
2041r55 | sam | 2003-11-10 03:00:52 +0100 (Mon, 10 Nov 2003) | 2 lines
2042Changed paths:
2043   A /trunk/data/Makefile.am
2044
2045  * Oops, forgot data/Makefile.am.
2046
2047------------------------------------------------------------------------
2048r54 | sam | 2003-11-10 03:00:19 +0100 (Mon, 10 Nov 2003) | 5 lines
2049Changed paths:
2050   M /trunk/Makefile.am
2051   M /trunk/configure.ac
2052   A /trunk/data
2053   A /trunk/data/bar_boss
2054   A /trunk/data/bar_fighter
2055   M /trunk/test/demo.c
2056
2057  * test/demo.c:
2058    + Wrote a little sprite demo.
2059  * data/:
2060    + Added bar_fighter (from ttyvaders) and bar_boss (from shapes.txt).
2061
2062------------------------------------------------------------------------
2063r53 | sam | 2003-11-10 02:56:24 +0100 (Mon, 10 Nov 2003) | 4 lines
2064Changed paths:
2065   M /trunk/libee/Makefile.am
2066   M /trunk/libee/ee.h
2067   A /trunk/libee/sprite.c
2068
2069  * libee/sprite.c:
2070    + Beginning of sprite handling within the library.
2071    + Added support to load files.
2072
2073------------------------------------------------------------------------
2074r52 | sam | 2003-11-10 01:27:33 +0100 (Mon, 10 Nov 2003) | 3 lines
2075Changed paths:
2076   M /trunk/test/demo.c
2077
2078  * test/demo.c:
2079    + outlined triangles demo.
2080
2081------------------------------------------------------------------------
2082r51 | sam | 2003-11-10 01:15:02 +0100 (Mon, 10 Nov 2003) | 2 lines
2083Changed paths:
2084   M /trunk/configure.ac
2085   M /trunk/libee/Makefile.am
2086   M /trunk/src/Makefile.am
2087   M /trunk/test/Makefile.am
2088
2089  * Removed CPPFLAGS_slang and CPPFLAGS_ncurses, we now have config.h.
2090
2091------------------------------------------------------------------------
2092r50 | sam | 2003-11-10 00:34:24 +0100 (Mon, 10 Nov 2003) | 4 lines
2093Changed paths:
2094   M /trunk/src/aliens.c
2095   M /trunk/src/bonus.c
2096   M /trunk/src/box.c
2097   M /trunk/src/collide.c
2098   M /trunk/src/explosions.c
2099   M /trunk/src/main.c
2100   M /trunk/src/overlay.c
2101   M /trunk/src/player.c
2102   M /trunk/src/starfield.c
2103   M /trunk/src/tunnel.c
2104   M /trunk/src/weapons.c
2105
2106  * src/*.c:
2107    + Added missing #include "config.h".
2108    + Fixed a nasty bug in ee_rand() calls.
2109
2110------------------------------------------------------------------------
2111r49 | sam | 2003-11-10 00:01:29 +0100 (Mon, 10 Nov 2003) | 3 lines
2112Changed paths:
2113   M /trunk/test/demo.c
2114
2115  * test/demo.c:
2116    + Disabled the pyramid demo and wrote a simple triangles demo.
2117
2118------------------------------------------------------------------------
2119r48 | sam | 2003-11-09 22:36:24 +0100 (Sun, 09 Nov 2003) | 5 lines
2120Changed paths:
2121   M /trunk/libee/Makefile.am
2122   M /trunk/libee/ee.h
2123   A /trunk/libee/triangle.c
2124   M /trunk/test/Makefile.am
2125   M /trunk/test/demo.c
2126
2127  * libee/triangle.c:
2128    + Implemented ee_fill_triangle().
2129  * test/demo.c:
2130    + Triangle demo.
2131
2132------------------------------------------------------------------------
2133r47 | sam | 2003-11-09 20:46:14 +0100 (Sun, 09 Nov 2003) | 5 lines
2134Changed paths:
2135   M /trunk/libee/ee.h
2136   M /trunk/libee/line.c
2137   M /trunk/test/demo.c
2138
2139  * libee/line.c:
2140    + ee_draw_thin_line().
2141  * test/demo.c:
2142    + Added a thin lines demo.
2143
2144------------------------------------------------------------------------
2145r46 | sam | 2003-11-09 19:10:44 +0100 (Sun, 09 Nov 2003) | 2 lines
2146Changed paths:
2147   M /trunk/libee/line.c
2148
2149  * libee/line.c: genericized line drawing for future use.
2150
2151------------------------------------------------------------------------
2152r45 | sam | 2003-11-09 18:45:12 +0100 (Sun, 09 Nov 2003) | 6 lines
2153Changed paths:
2154   M /trunk/test
2155   M /trunk/test/demo.c
2156
2157  * test/demo.c:
2158    + Putpixel demo.
2159    + Draw line demo.
2160    + Draw circle demo.
2161    + Animated radar demo.
2162
2163------------------------------------------------------------------------
2164r44 | sam | 2003-11-09 18:21:43 +0100 (Sun, 09 Nov 2003) | 7 lines
2165Changed paths:
2166   M /trunk/libee/Makefile.am
2167   A /trunk/libee/circle.c (from /trunk/src/weapons.c:42)
2168   M /trunk/libee/ee.h
2169   M /trunk/libee/line.c
2170   M /trunk/src/weapons.c
2171
2172  * src/weapons.c:
2173    + Removed draw_circle, use ee_draw_circle instead.
2174  * libee/circle.c:
2175    + New ee_draw_circle function.
2176  * libee/line.c:
2177    + Changed an internal function's name.
2178
2179------------------------------------------------------------------------
2180r43 | sam | 2003-11-09 17:34:23 +0100 (Sun, 09 Nov 2003) | 2 lines
2181Changed paths:
2182   M /trunk/libee
2183   M /trunk/libee/Makefile.am
2184   M /trunk/libee/ee.h
2185   A /trunk/libee/line.c
2186
2187  * libee/line.c: Implemented ee_draw_line.
2188
2189------------------------------------------------------------------------
2190r42 | sam | 2003-11-09 14:52:40 +0100 (Sun, 09 Nov 2003) | 5 lines
2191Changed paths:
2192   M /trunk/libee/ee.c
2193   M /trunk/libee/ee.h
2194   M /trunk/test/demo.c
2195
2196  * libee/ee.c:
2197    + got rid of DELAY.
2198  * test/demo.c:
2199    + Minor animation effect.
2200
2201------------------------------------------------------------------------
2202r41 | sam | 2003-11-09 14:51:37 +0100 (Sun, 09 Nov 2003) | 2 lines
2203Changed paths:
2204   M /trunk/libee/math.c
2205
2206  * libee/math.c: fixed a thinko in ee_rand().
2207
2208------------------------------------------------------------------------
2209r40 | sam | 2003-11-09 14:32:04 +0100 (Sun, 09 Nov 2003) | 8 lines
2210Changed paths:
2211   M /trunk/libee/Makefile.am
2212   M /trunk/libee/ee.c
2213   M /trunk/libee/ee.h
2214   A /trunk/libee/io.c (from /trunk/libee/ee.c:37)
2215   A /trunk/libee/math.c
2216   M /trunk/src/Makefile.am
2217   M /trunk/src/aliens.c
2218   M /trunk/src/collide.c
2219   M /trunk/src/common.h
2220   M /trunk/src/explosions.c
2221   M /trunk/src/main.c
2222   D /trunk/src/math.c
2223   M /trunk/src/starfield.c
2224   M /trunk/src/tunnel.c
2225   M /trunk/src/weapons.c
2226
2227  * libee/io.c:
2228    + Moved ee_get_key() here.
2229  * libee/math.c:
2230    + Moved r00t() here and renamed it to ee_sqrt().
2231    + Moved GET_RAND() here and renamed it to ee_rand().
2232  * src/math.c:
2233    + Removed this deprecated file.
2234
2235------------------------------------------------------------------------
2236r39 | sam | 2003-11-09 14:16:19 +0100 (Sun, 09 Nov 2003) | 2 lines
2237Changed paths:
2238   M /trunk/src/aliens.c
2239   M /trunk/src/bonus.c
2240   M /trunk/src/box.c
2241   M /trunk/src/ceo.c
2242   M /trunk/src/collide.c
2243   M /trunk/src/common.h
2244   M /trunk/src/explosions.c
2245   M /trunk/src/main.c
2246   M /trunk/src/math.c
2247   M /trunk/src/overlay.c
2248   M /trunk/src/player.c
2249   M /trunk/src/starfield.c
2250   M /trunk/src/tunnel.c
2251   M /trunk/src/weapons.c
2252
2253  * Coding style everywhere.
2254
2255------------------------------------------------------------------------
2256r38 | sam | 2003-11-09 14:02:34 +0100 (Sun, 09 Nov 2003) | 5 lines
2257Changed paths:
2258   M /trunk/libee/Makefile.am
2259   M /trunk/test/Makefile.am
2260   A /trunk/test/demo.c
2261
2262  * libee/Makefile.am, test/Makefile.am:
2263    + Added more compiler warning flags.
2264  * test/demo.c:
2265    + Small demo for libee.
2266
2267------------------------------------------------------------------------
2268r37 | sam | 2003-11-09 14:01:44 +0100 (Sun, 09 Nov 2003) | 2 lines
2269Changed paths:
2270   M /trunk/libee/ee.c
2271
2272  * libee/ee.c: Fixed a compilation warning.
2273
2274------------------------------------------------------------------------
2275r36 | sam | 2003-11-09 13:48:09 +0100 (Sun, 09 Nov 2003) | 2 lines
2276Changed paths:
2277   M /trunk/libee/ee.c
2278
2279  * libee/ee.c: Exact line fill in ee_clear().
2280
2281------------------------------------------------------------------------
2282r35 | sam | 2003-11-09 13:40:53 +0100 (Sun, 09 Nov 2003) | 2 lines
2283Changed paths:
2284   M /trunk/libee/Makefile.am
2285   M /trunk/libee/ee.c
2286   A /trunk/libee/ee.h
2287   M /trunk/src/Makefile.am
2288   M /trunk/src/aliens.c
2289   M /trunk/src/bonus.c
2290   M /trunk/src/box.c
2291   M /trunk/src/ceo.c
2292   M /trunk/src/common.h
2293   M /trunk/src/explosions.c
2294   M /trunk/src/main.c
2295   M /trunk/src/overlay.c
2296   M /trunk/src/player.c
2297   M /trunk/src/starfield.c
2298   M /trunk/src/tunnel.c
2299   M /trunk/src/weapons.c
2300
2301  * libee is now standalone.
2302
2303------------------------------------------------------------------------
2304r34 | sam | 2003-11-09 13:02:42 +0100 (Sun, 09 Nov 2003) | 2 lines
2305Changed paths:
2306   M /trunk/Makefile.am
2307   M /trunk/configure.ac
2308   M /trunk/libee
2309   A /trunk/libee/Makefile.am
2310   M /trunk/src/Makefile.am
2311   A /trunk/test
2312   A /trunk/test/Makefile.am
2313
2314  * libee is now (almost) standalone.
2315
2316------------------------------------------------------------------------
2317r33 | sam | 2003-11-09 12:26:08 +0100 (Sun, 09 Nov 2003) | 7 lines
2318Changed paths:
2319   M /trunk/doc/shapes.txt
2320   A /trunk/libee
2321   A /trunk/libee/ee.c (from /trunk/src/graphics.c:31)
2322   M /trunk/src/Makefile.am
2323   M /trunk/src/ceo.c
2324   M /trunk/src/common.h
2325   D /trunk/src/graphics.c
2326   M /trunk/src/main.c
2327
2328  * libee/ee.c:
2329    + First file in libee, from src/graphics.c.
2330    + Disable cursor upon initialisation.
2331    + Added delay code for constant framerate.
2332  * src/common.h:
2333    + Minor compilation fix for latest ncurses.
2334
2335------------------------------------------------------------------------
2336r32 | sam | 2003-11-06 22:40:53 +0100 (Thu, 06 Nov 2003) | 2 lines
2337Changed paths:
2338   M /trunk/bootstrap
2339
2340  * bootstrap: always remove autom4te.cache.
2341
2342------------------------------------------------------------------------
2343r31 | sam | 2003-10-02 03:08:13 +0200 (Thu, 02 Oct 2003) | 2 lines
2344Changed paths:
2345   M /trunk
2346   M /trunk/autotools
2347   M /trunk/bootstrap
2348   M /trunk/configure.ac
2349   M /trunk/debian
2350   M /trunk/src
2351   M /trunk/src/aliens.c
2352   M /trunk/src/bonus.c
2353   M /trunk/src/box.c
2354   M /trunk/src/ceo.c
2355   M /trunk/src/collide.c
2356   M /trunk/src/common.h
2357   M /trunk/src/explosions.c
2358   M /trunk/src/graphics.c
2359   M /trunk/src/main.c
2360   M /trunk/src/math.c
2361   M /trunk/src/overlay.c
2362   M /trunk/src/player.c
2363   M /trunk/src/starfield.c
2364   M /trunk/src/tunnel.c
2365   M /trunk/src/weapons.c
2366
2367  * Fixed keywords, ignore, and lots of tiny SVN things.
2368
2369------------------------------------------------------------------------
2370r30 | sam | 2003-02-09 12:17:40 +0100 (Sun, 09 Feb 2003) | 3 lines
2371Changed paths:
2372   M /trunk/TODO
2373   M /trunk/src/Makefile.am
2374   A /trunk/src/box.c
2375   M /trunk/src/common.h
2376   M /trunk/src/main.c
2377   M /trunk/src/overlay.c
2378
2379  * support for boxes
2380  * application: pause box
2381
2382------------------------------------------------------------------------
2383r29 | sam | 2003-01-06 13:22:58 +0100 (Mon, 06 Jan 2003) | 3 lines
2384Changed paths:
2385   M /trunk/TODO
2386   M /trunk/src/collide.c
2387
2388  * cosmetic code changes.
2389  * fixed a bug in the tunnel munching.
2390
2391------------------------------------------------------------------------
2392r28 | sam | 2002-12-23 17:44:28 +0100 (Mon, 23 Dec 2002) | 3 lines
2393Changed paths:
2394   M /trunk/README
2395   M /trunk/TODO
2396   M /trunk/configure.ac
2397   M /trunk/src/weapons.c
2398
2399  * fixed the ncurses build.
2400  * replaced '?\239?\191?\189' with ':' in the fragbomb tail because it's not ASCII.
2401
2402------------------------------------------------------------------------
2403r27 | sam | 2002-12-23 17:21:38 +0100 (Mon, 23 Dec 2002) | 6 lines
2404Changed paths:
2405   M /trunk/configure.ac
2406   M /trunk/src/collide.c
2407   M /trunk/src/common.h
2408   M /trunk/src/graphics.c
2409   M /trunk/src/main.c
2410   M /trunk/src/overlay.c
2411   M /trunk/src/player.c
2412
2413  * new timestamp for a new snapshot.
2414  * lots of sanity checks in collide.c.
2415  * moved usleep() to graphics.c.
2416  * added random key generator in the dummy driver.
2417  * cosmetic changes in the energy bars.
2418
2419------------------------------------------------------------------------
2420r26 | sam | 2002-12-23 16:06:13 +0100 (Mon, 23 Dec 2002) | 4 lines
2421Changed paths:
2422   M /trunk/src/Makefile.am
2423   M /trunk/src/common.h
2424   M /trunk/src/main.c
2425   A /trunk/src/overlay.c
2426   M /trunk/src/player.c
2427
2428  * better handling of special weapon timeout.
2429  * the bomb is now part of the standard fire button effect.
2430  * overlay for life and special weapon jauges.
2431
2432------------------------------------------------------------------------
2433r25 | sam | 2002-12-23 14:46:27 +0100 (Mon, 23 Dec 2002) | 3 lines
2434Changed paths:
2435   M /trunk/src/aliens.c
2436   M /trunk/src/collide.c
2437   M /trunk/src/common.h
2438   M /trunk/src/main.c
2439   M /trunk/src/player.c
2440
2441  * aliens are now named foo, bar and baz.
2442  * beginning of life jauges.
2443
2444------------------------------------------------------------------------
2445r24 | sam | 2002-12-23 14:13:04 +0100 (Mon, 23 Dec 2002) | 2 lines
2446Changed paths:
2447   M /trunk/src/common.h
2448   M /trunk/src/main.c
2449   M /trunk/src/player.c
2450
2451  * ship has vx and vy.
2452
2453------------------------------------------------------------------------
2454r23 | sam | 2002-12-23 13:47:36 +0100 (Mon, 23 Dec 2002) | 2 lines
2455Changed paths:
2456   M /trunk/TODO
2457   M /trunk/src/main.c
2458   M /trunk/src/tunnel.c
2459
2460  * cosmetic change: reworked draw_tunnel.
2461
2462------------------------------------------------------------------------
2463r22 | sam | 2002-12-23 13:03:31 +0100 (Mon, 23 Dec 2002) | 3 lines
2464Changed paths:
2465   M /trunk/src/main.c
2466   M /trunk/src/tunnel.c
2467
2468  * lasers are now twice as fast.
2469  * walls are now filled, and displayed on top of aliens.
2470
2471------------------------------------------------------------------------
2472r21 | sam | 2002-12-23 11:06:27 +0100 (Mon, 23 Dec 2002) | 5 lines
2473Changed paths:
2474   M /trunk/configure.ac
2475   M /trunk/src/Makefile.am
2476   M /trunk/src/ceo.c
2477   M /trunk/src/common.h
2478   M /trunk/src/graphics.c
2479   M /trunk/src/main.c
2480   M /trunk/src/tunnel.c
2481
2482  * added support for --disable-slang.
2483  * fixed an overflow in the tunnel update code.
2484  * fragbomb is now 'f', not 'd'.
2485  * added a missing call to init_bonus().
2486
2487------------------------------------------------------------------------
2488r20 | sam | 2002-12-23 10:28:37 +0100 (Mon, 23 Dec 2002) | 5 lines
2489Changed paths:
2490   M /trunk/TODO
2491   M /trunk/src/collide.c
2492   M /trunk/src/common.h
2493   M /trunk/src/main.c
2494   M /trunk/src/starfield.c
2495   M /trunk/src/tunnel.c
2496   M /trunk/src/weapons.c
2497
2498  * the beam now digs the tunnel.
2499  * the starfield is now an array of stars.
2500  * fixed wall rendering (offset issues and disappearing left wall).
2501  * 32 seekers on fragbomb explosion, not 16.
2502
2503------------------------------------------------------------------------
2504r19 | sam | 2002-12-23 00:39:15 +0100 (Mon, 23 Dec 2002) | 3 lines
2505Changed paths:
2506   M /trunk/src/weapons.c
2507
2508  * seekers and homing bombs react more quickly.
2509  * 16 seekers on fragbomb explosion instead of 12.
2510
2511------------------------------------------------------------------------
2512r18 | sam | 2002-12-23 00:01:35 +0100 (Mon, 23 Dec 2002) | 3 lines
2513Changed paths:
2514   M /trunk/src/math.c
2515   M /trunk/src/weapons.c
2516
2517  * fixed a segfault when the target seeker speed was zero.
2518  * factorized the seeker generation on fragbomb explosion.
2519
2520------------------------------------------------------------------------
2521r17 | sam | 2002-12-22 23:36:42 +0100 (Sun, 22 Dec 2002) | 2 lines
2522Changed paths:
2523   M /trunk/src/Makefile.am
2524   M /trunk/src/common.h
2525   A /trunk/src/math.c
2526   M /trunk/src/weapons.c
2527
2528  * Removed the dependency on <math.h>. We don't need no stinking sqrt!
2529
2530------------------------------------------------------------------------
2531r16 | sam | 2002-12-22 23:17:41 +0100 (Sun, 22 Dec 2002) | 3 lines
2532Changed paths:
2533   M /trunk/doc/shapes.txt
2534   M /trunk/src/aliens.c
2535   M /trunk/src/ceo.c
2536   M /trunk/src/collide.c
2537   M /trunk/src/common.h
2538   M /trunk/src/main.c
2539   M /trunk/src/weapons.c
2540
2541  * dead aliens don't explode in the collision loop but in their update loop.
2542  * new super weapon, the fragmentation bomb.
2543
2544------------------------------------------------------------------------
2545r15 | sam | 2002-12-22 20:08:35 +0100 (Sun, 22 Dec 2002) | 2 lines
2546Changed paths:
2547   M /trunk/.cvsignore
2548   M /trunk/Makefile.am
2549   A /trunk/autotools
2550   A /trunk/autotools/.cvsignore
2551   A /trunk/autotools/Makefile.am
2552   M /trunk/bootstrap
2553   M /trunk/configure.ac
2554   M /trunk/debian/.cvsignore
2555   M /trunk/src/Makefile.am
2556
2557  * Moved generated autotools files to the autotools/ directory.
2558
2559------------------------------------------------------------------------
2560r14 | sam | 2002-12-22 19:44:12 +0100 (Sun, 22 Dec 2002) | 2 lines
2561Changed paths:
2562   M /trunk/src/aliens.c
2563   M /trunk/src/bonus.c
2564   M /trunk/src/ceo.c
2565   M /trunk/src/collide.c
2566   M /trunk/src/common.h
2567   M /trunk/src/explosions.c
2568   M /trunk/src/graphics.c
2569   M /trunk/src/main.c
2570   M /trunk/src/player.c
2571   M /trunk/src/starfield.c
2572   M /trunk/src/tunnel.c
2573   M /trunk/src/weapons.c
2574
2575  * I think I fucked up the $Id tags on my previous commit.
2576
2577------------------------------------------------------------------------
2578r13 | sam | 2002-12-22 19:42:32 +0100 (Sun, 22 Dec 2002) | 3 lines
2579Changed paths:
2580   A /trunk/COPYING
2581   M /trunk/src/aliens.c
2582   M /trunk/src/bonus.c
2583   M /trunk/src/ceo.c
2584   M /trunk/src/collide.c
2585   M /trunk/src/common.h
2586   M /trunk/src/explosions.c
2587   M /trunk/src/graphics.c
2588   M /trunk/src/main.c
2589   M /trunk/src/player.c
2590   M /trunk/src/starfield.c
2591   M /trunk/src/tunnel.c
2592   M /trunk/src/weapons.c
2593
2594  * added the COPYING file (GPLv2).
2595  * added GPL headers to source files.
2596
2597------------------------------------------------------------------------
2598r12 | sam | 2002-12-22 19:40:36 +0100 (Sun, 22 Dec 2002) | 2 lines
2599Changed paths:
2600   M /trunk/src/Makefile.am
2601   A /trunk/src/ceo.c
2602   M /trunk/src/common.h
2603   M /trunk/src/main.c
2604
2605  * tab == hotkey for CEO alert.
2606
2607------------------------------------------------------------------------
2608r11 | sam | 2002-12-18 19:44:47 +0100 (Wed, 18 Dec 2002) | 2 lines
2609Changed paths:
2610   M /trunk/TODO
2611   M /trunk/doc/shapes.txt
2612   M /trunk/src/aliens.c
2613
2614  * 3rd alien type.
2615
2616------------------------------------------------------------------------
2617r10 | sam | 2002-12-18 19:12:28 +0100 (Wed, 18 Dec 2002) | 2 lines
2618Changed paths:
2619   D /trunk/Makefile
2620
2621  * Scrapped Makefile.
2622
2623------------------------------------------------------------------------
2624r9 | sam | 2002-12-18 19:11:54 +0100 (Wed, 18 Dec 2002) | 2 lines
2625Changed paths:
2626   M /trunk/Makefile
2627   A /trunk/README
2628   A /trunk/TODO
2629
2630  * README and TODO files.
2631
2632------------------------------------------------------------------------
2633r8 | sam | 2002-12-18 14:29:31 +0100 (Wed, 18 Dec 2002) | 2 lines
2634Changed paths:
2635   M /trunk/Makefile
2636   M /trunk/configure.ac
2637   M /trunk/doc/shapes.txt
2638   M /trunk/src/collide.c
2639   M /trunk/src/weapons.c
2640
2641  * the bomb's head is now white
2642
2643------------------------------------------------------------------------
2644r7 | sam | 2002-12-15 18:16:45 +0100 (Sun, 15 Dec 2002) | 3 lines
2645Changed paths:
2646   M /trunk/doc/shapes.txt
2647   M /trunk/src/aliens.c
2648   M /trunk/src/collide.c
2649   M /trunk/src/common.h
2650   M /trunk/src/main.c
2651   M /trunk/src/weapons.c
2652
2653  * new weapon: bomb.
2654  * beam now collides with aliens.
2655
2656------------------------------------------------------------------------
2657r6 | sam | 2002-12-15 06:03:55 +0100 (Sun, 15 Dec 2002) | 2 lines
2658Changed paths:
2659   M /trunk/doc/shapes.txt
2660   M /trunk/src/common.h
2661   M /trunk/src/main.c
2662   M /trunk/src/weapons.c
2663
2664  * 'beam' weapon.
2665
2666------------------------------------------------------------------------
2667r5 | sam | 2002-12-15 04:41:32 +0100 (Sun, 15 Dec 2002) | 10 lines
2668Changed paths:
2669   M /trunk/Makefile
2670   M /trunk/configure.ac
2671   M /trunk/debian/changelog
2672   M /trunk/debian/control
2673   M /trunk/debian/rules
2674   M /trunk/doc/shapes.txt
2675   M /trunk/src/Makefile.am
2676   M /trunk/src/aliens.c
2677   A /trunk/src/bonus.c
2678   M /trunk/src/collide.c
2679   M /trunk/src/common.h
2680   M /trunk/src/explosions.c
2681   M /trunk/src/graphics.c
2682   M /trunk/src/main.c
2683   M /trunk/src/player.c
2684   M /trunk/src/starfield.c
2685   M /trunk/src/tunnel.c
2686   M /trunk/src/weapons.c
2687
2688  * real Debian package files.
2689  * two new types of aliens. only one rules.
2690  * removed gfx_write in favor of gfx_putchar and gfx_putstr.
2691  * added bonuses at alien death. they do nothing yet.
2692  * seeker missiles. 'b' to test.
2693  * weapon resolution is now 16*char. needs to be generalized.
2694  * fixed the supernova bugs. center could collide with the tunnel, and
2695    the last frame was badly displayed.
2696  * lots of cleanups everywhere.
2697
2698------------------------------------------------------------------------
2699r4 | sam | 2002-12-13 21:50:00 +0100 (Fri, 13 Dec 2002) | 2 lines
2700Changed paths:
2701   M /trunk/.cvsignore
2702   M /trunk/Makefile
2703   A /trunk/Makefile.am
2704   D /trunk/aliens.c
2705   A /trunk/bootstrap
2706   D /trunk/collide.c
2707   D /trunk/common.h
2708   A /trunk/configure.ac
2709   A /trunk/debian
2710   A /trunk/debian/.cvsignore
2711   A /trunk/debian/Makefile.am
2712   A /trunk/debian/changelog
2713   A /trunk/debian/control
2714   A /trunk/debian/rules
2715   A /trunk/doc
2716   A /trunk/doc/shapes.txt
2717   D /trunk/explosions.c
2718   D /trunk/graphics.c
2719   D /trunk/main.c
2720   D /trunk/player.c
2721   D /trunk/shapes.txt
2722   A /trunk/src
2723   A /trunk/src/.cvsignore
2724   A /trunk/src/Makefile.am
2725   A /trunk/src/aliens.c
2726   A /trunk/src/collide.c
2727   A /trunk/src/common.h
2728   A /trunk/src/explosions.c
2729   A /trunk/src/graphics.c
2730   A /trunk/src/main.c
2731   A /trunk/src/player.c
2732   A /trunk/src/starfield.c
2733   A /trunk/src/tunnel.c
2734   A /trunk/src/weapons.c
2735   D /trunk/starfield.c
2736   D /trunk/tunnel.c
2737   D /trunk/weapons.c
2738
2739  * autotoolificationized the whole thing.
2740
2741------------------------------------------------------------------------
2742r3 | sam | 2002-12-13 20:27:16 +0100 (Fri, 13 Dec 2002) | 4 lines
2743Changed paths:
2744   M /trunk/collide.c
2745   M /trunk/common.h
2746   M /trunk/explosions.c
2747   M /trunk/main.c
2748   M /trunk/player.c
2749   M /trunk/weapons.c
2750
2751  * moved nuke from explosions to weapons.
2752  * used a cool Bresenham algorithm to draw the nuke circles.
2753  * nuke collides with aliens.
2754
2755------------------------------------------------------------------------
2756r2 | sam | 2002-12-13 20:24:53 +0100 (Fri, 13 Dec 2002) | 2 lines
2757Changed paths:
2758   A /trunk/.cvsignore
2759
2760  * .cvsignore file.
2761
2762------------------------------------------------------------------------
2763r1 | sam | 2002-12-13 20:23:07 +0100 (Fri, 13 Dec 2002) | 3 lines
2764Changed paths:
2765   A /branches
2766   A /trunk
2767   A /trunk/Makefile
2768   A /trunk/aliens.c
2769   A /trunk/collide.c
2770   A /trunk/common.h
2771   A /trunk/explosions.c
2772   A /trunk/graphics.c
2773   A /trunk/main.c
2774   A /trunk/player.c
2775   A /trunk/shapes.txt
2776   A /trunk/starfield.c
2777   A /trunk/tunnel.c
2778   A /trunk/weapons.c
2779
2780  * First commit. Scrolling works, some weaponry, controls, tunnel blowing,
2781    the nuke is still ugly, almost no collision detection. Nice demo :)
2782
2783------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.