Parcourir la source

* debian/control:

+ Updated long descriptions.
  * debian/changelog ChangeLog doc/doxygen.cfg NEWS:
    + Prepared 0.3 release.
  * README:
    + --enable-ncurses is now the default.
tags/v0.99.beta14
Sam Hocevar sam il y a 21 ans
Parent
révision
7432fce69b
6 fichiers modifiés avec 236 ajouts et 7 suppressions
  1. +216
    -0
      ChangeLog
  2. +11
    -0
      NEWS
  3. +2
    -2
      README
  4. +2
    -2
      debian/changelog
  5. +4
    -2
      debian/control
  6. +1
    -1
      doc/doxygen.cfg

+ 216
- 0
ChangeLog Voir le fichier

@@ -1,3 +1,219 @@
------------------------------------------------------------------------
r154 | sam | 2003-12-18 01:11:52 +0100 (Thu, 18 Dec 2003) | 3 lines
Changed paths:
M /trunk/src/bitmap.c
M /trunk/src/box.c
M /trunk/src/caca.c
M /trunk/src/caca.h
M /trunk/src/conic.c
M /trunk/src/graphics.c
M /trunk/src/io.c
M /trunk/src/line.c
M /trunk/src/math.c
M /trunk/src/sprite.c
M /trunk/src/triangle.c

* src/:
+ Doxygenated public functions.

------------------------------------------------------------------------
r153 | sam | 2003-12-17 16:03:05 +0100 (Wed, 17 Dec 2003) | 3 lines
Changed paths:
M /trunk/src/caca.h

* src/caca.h:
+ Documented environment variables.

------------------------------------------------------------------------
r152 | sam | 2003-12-17 00:25:54 +0100 (Wed, 17 Dec 2003) | 4 lines
Changed paths:
M /trunk/examples/view.c

* examples/view.c:
+ Fixed a bug in the loading of 1bpp BMPs.
+ Commented stuff.

------------------------------------------------------------------------
r151 | sam | 2003-12-17 00:06:54 +0100 (Wed, 17 Dec 2003) | 7 lines
Changed paths:
M /trunk/examples/Makefile.am
M /trunk/examples/view.c

* examples/view.c:
+ If Imlib2 is not available, use a custom simple BMP loader.
+ Draw the bottom bar one line higher to leave room for a status line.
+ '?' now properly toggles help.
* examples/Makefile.am:
+ Always build cacaview.

------------------------------------------------------------------------
r150 | sam | 2003-12-16 10:06:46 +0100 (Tue, 16 Dec 2003) | 5 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/bitmap.c

* src/bitmap.c:
+ If the alpha palette is all-zero, forget the alpha channel.
* configure.ac:
+ Export HAVE_IMLIB2_H and the like.

------------------------------------------------------------------------
r149 | sam | 2003-12-15 16:02:50 +0100 (Mon, 15 Dec 2003) | 4 lines
Changed paths:
M /trunk/src/bitmap.c

* src/bitmap.c:
+ If the alpha mask is 0, ignore alpha information.
+ Ditto if no alpha information is given with the palette.

------------------------------------------------------------------------
r148 | sam | 2003-12-15 11:38:03 +0100 (Mon, 15 Dec 2003) | 4 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/caca.c
M /trunk/src/caca_internals.h
M /trunk/src/graphics.c
M /trunk/src/io.c

* src/graphics.c src/io.c:
+ Beginning of an X11 driver. Currently we merely open the window and
check keyboard events.

------------------------------------------------------------------------
r147 | sam | 2003-12-12 17:19:44 +0100 (Fri, 12 Dec 2003) | 7 lines
Changed paths:
M /trunk/configure.ac
M /trunk/debian/changelog
M /trunk/src/caca.c

* configure.ac debian/changelog:
+ Prepare for 0.3 release.
+ Check for strcasecmp().
* src/caca.c:
+ Honor CACA_BACKGROUND, CACA_DITHERING and CACA_ANTIALIASING environment
variables.

------------------------------------------------------------------------
r146 | sam | 2003-12-12 15:49:41 +0100 (Fri, 12 Dec 2003) | 13 lines
Changed paths:
M /trunk/examples/aafire.c
M /trunk/examples/demo.c
M /trunk/examples/view.c
M /trunk/src/bitmap.c
M /trunk/src/caca.c
M /trunk/src/caca.h
M /trunk/src/caca_internals.h

* src/bitmap.c:
+ Added antialiasing support.
+ Dithering, antialiasing and background mode can now be selected at
runtime.
* src/caca.c src/caca.h:
+ Renamed caca_dithering into caca_feature and extended the type to
express background colour and antialiasing mode.
* examples/demo.c:
+ Fixed a bug that disabled the sprite demo.
+ Draw solid flares.
* examples/view.c:
+ Select antialiasing and background mode at runtime.

------------------------------------------------------------------------
r145 | sam | 2003-12-11 18:01:09 +0100 (Thu, 11 Dec 2003) | 2 lines
Changed paths:
M /trunk/BUGS
M /trunk/TODO
M /trunk/debian/control
M /trunk/doc/cacademo.1
M /trunk/doc/cacaview.1

* Minor updates to manpages, BUGS, TODO and the Debian control file.

------------------------------------------------------------------------
r144 | sam | 2003-12-11 17:56:35 +0100 (Thu, 11 Dec 2003) | 5 lines
Changed paths:
M /trunk/src/Makefile.am
M /trunk/src/bitmap.c
M /trunk/src/caca.c
M /trunk/src/caca.h
M /trunk/src/caca_internals.h
M /trunk/src/graphics.c

* src/caca.c:
+ Moved global variables to src/graphics.c.
* src/bitmap.c:
+ Sanitised prototypes.

------------------------------------------------------------------------
r143 | sam | 2003-12-11 17:31:49 +0100 (Thu, 11 Dec 2003) | 17 lines
Changed paths:
M /trunk/examples
M /trunk/examples/aafire.c
M /trunk/examples/demo.c
M /trunk/examples/view.c
M /trunk/src/bitmap.c
M /trunk/src/box.c
M /trunk/src/caca.c
M /trunk/src/caca.h
M /trunk/src/caca_internals.h
M /trunk/src/conic.c
M /trunk/src/graphics.c
M /trunk/src/line.c
M /trunk/src/sprite.c
M /trunk/src/triangle.c

* src/graphics.c:
+ Internally cache screen width and height.
* src/bitmap.c:
+ Added alpha support to caca_draw_bitmap(). For now, we only treat 0%
alpha as fully transparent, and any other value as fully opaque.
+ Slightly tuned colour weights in the renderer.
+ caca_set_bitmap_palette() takes unsigned ints.
* examples/demo.c:
+ Added a crap render demo.
* examples/aafire.c:
+ Set a 20ms delay.
+ Added alpha values to the palette.
* examples/view.c:
+ Draw a gray checkered grid below the image so that transparent images
look a lot nicer.
+ 'f' toggles "fullscreen" mode.

------------------------------------------------------------------------
r142 | sam | 2003-12-11 16:54:53 +0100 (Thu, 11 Dec 2003) | 6 lines
Changed paths:
M /trunk/caca-config.in
M /trunk/configure.ac

* configure.ac:
+ Set the executable bit of caca-config when regenerating that file.
* caca-config.in:
+ No longer use USE_SLANG_TRUE and USE_NCURSES_TRUE since we now
have @CACA_LIBS@.

------------------------------------------------------------------------
r141 | sam | 2003-12-02 23:27:27 +0100 (Tue, 02 Dec 2003) | 6 lines
Changed paths:
M /trunk/configure.ac
M /trunk/examples/Makefile.am
A /trunk/examples/aafire.c

* configure.ac:
+ Removed unused USE_* variables.
+ Export -lslang and -lncurses as @CACA_LIBS@.
* examples/aafire.c:
+ Imported aafire.c from the AAlib tree and ported it to libcaca.

------------------------------------------------------------------------
r139 | sam | 2003-11-30 18:15:31 +0100 (Sun, 30 Nov 2003) | 2 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/NEWS
M /trunk/TODO
M /trunk/debian/changelog
M /trunk/debian/control

* 0.2 release.

------------------------------------------------------------------------
r138 | sam | 2003-11-30 18:14:19 +0100 (Sun, 30 Nov 2003) | 3 lines
Changed paths:


+ 11
- 0
NEWS Voir le fichier

@@ -1,5 +1,16 @@
$Id$

Changes between 0.2 and 0.3:
----------------------------

* antialiasing support
* dithering, antialiasing and background mode can now be selected at
runtime or in the environment using the CACA_BACKGROUND, CACA_DITHERING
and CACA_ANTIALIASING variables
* alpha channel support in cacaview
* BMP loading support in cacaview even if Imlib2 is not present
* cacafire, a libcaca port of aafire

Changes between 0.1 and 0.2:
----------------------------



+ 2
- 2
README Voir le fichier

@@ -4,8 +4,8 @@ Building libcaca

o Run configure then make. Useful configure flags are:

--enable-slang: use the SLang library (default)
--enable-ncurses: use the ncurses library
--enable-ncurses: use the ncurses library (default)
--enable-slang: use the SLang library
--enable-conio: use MS-DOS conio.h

o Cross-compilation example:


+ 2
- 2
debian/changelog Voir le fichier

@@ -1,8 +1,8 @@
libcaca (0.3-1) unstable; urgency=low

* XXX
* New upstream release.

-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Thu, 11 Dec 2003 22:10:45 +0100
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Thu, 18 Dec 2003 01:38:17 +0100

libcaca (0.2-2) unstable; urgency=low



+ 4
- 2
debian/control Voir le fichier

@@ -27,8 +27,10 @@ Description: text mode graphics utilities
.
cacaview is a simple image viewer for the terminal. It opens most image
formats such as JPEG, PNG, GIF etc. and renders them on the terminal using
ASCII art. The user can zoom and scroll the image and set the dithering
method.
ASCII art. The user can zoom and scroll the image, set the dithering method
or enable anti-aliasing.
.
cacafire is a port of AALib's aafire and displays burning ASCII art flames.
.
cacademo is a simple application that shows the libcaca rendering features
such as line and ellipses drawing, triangle filling, and sprite blitting.


+ 1
- 1
doc/doxygen.cfg Voir le fichier

@@ -23,7 +23,7 @@ PROJECT_NAME = libcaca
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 0.1
PROJECT_NUMBER = 0.3

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.


Chargement…
Annuler
Enregistrer