+ Moved spritedit to the test/ directory, because it is not mature enough.
* libcaca.spec debian/control debian/rules:
+ Do not install caca-spritedit.
+ Huge coding style overhaul.
+ Display 5 metaballs instead of 3.
+ Generate the palette instead of having a static one.
+ Use a 256x256 back buffer for more smoothness.
+ Added caca_wait_event(), a blocking caca_get_event().
* src/ examples/:
+ More documentation.
* doc/doxygen.cfg.in:
+ doc/doxygen.cfg is now generated by configure, so that we can use
@top_srcdir@ and we no longer need to hardcode PROJECT_NUMBER.
+ Create manpages.
+ 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.
+ 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.
+ 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.
+ 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.
+ Fixed an endianness issue in the byte reader.
+ Decreased precision in RGB and HSV values to avoid overflows.
+ New dithering method: 2x2 ordered.
+ New renderer, with background colour awareness.
* configure.ac:
+ Check for <endian.h>.
* examples/demo.c examples/view.c:
+ Fixed an endianness issue in cacaview.
+ Adapted code to the additional dithering method.
+ Minor change to the dithering names.
* TODO:
+ Added cacaview TODO.
* doc/cacaview.1:
+ Wrote a manpage for cacaview.
* examples/Makefile.am:
+ Moved the -DX_DISPLAY_MISSING=1 here.
* examples/view.c:
+ Capital 'D' cycles through dithering modes in reverse order.
+ Sleep when there is nothing to do.
+ Cosmetic code reorganisation.
+ Added caca_get_dithering_name().
* src/bitmap.c:
+ Created a new dithering method with an 8x8 ordered matrix.
+ Replaced the char list with a string for better readability.
+ Dithering functions now return a value between 0 and 255.
* examples/demo.c examples/view.c:
+ Adapted to use caca_get_dithering_name().
+ Added top and bottom status lines, like in mutt and slrn.
+ Added a status string when loading an image or upon error.
+ Can load multiple files; use 'n' and 'p' for next and previous.
+ Clip zoom between -48 and +48.
+ Dither chroma outside of rgb2hsv_default().
+ Clip fromx and fromy values.
* NOTES:
+ Link to the XTerm control sequences.
* examples/view.c:
+ Draw status bar.
+ Move with 'h' 'j' 'k' 'l', à la vi.
+ '?' toggles a help menu.
+ Added setab/setaf quotes from the XTerm terminfo.
+ Proposed a workaround for bright colours on any terminal.
* src/caca.c:
+ 16 colour support for ncurses and conio.
* src/graphics.c:
+ Ported to 16 colour support.
+ Added a missing <stdio.h> for BUFSIZ.
+ Disabled vsnprintf under DOS (only vsprintf exists).
* examples/:
+ Don't abort if the caca.txt sprite was not found.
+ Ported to 16 colour support.
+ Added a check for imlib2-config.
+ Build cacaview conditionally.
* examples/demo.c:
+ Removed all gdkpixbuf code.
* examples/view.c:
+ Default to ordered dithering.
+ Make sure the arrows always work even if delta is too small.
+ Simple image viewer, cacaview, based on libcaca and imlib2.
+ Renamed caca-demo into cacademo.
* doc/:
+ Renamed doc/caca-demo.1 into doc/cacademo.1.
+ Wrote the changelog for the Debian release.
+ Wrote a copyright file.
* doc/:
+ Wrote manpages for caca-demo and caca-spritedit.
* examples/caca.txt:
+ Centered the sprite handle.
+ Added a second frame to the sprite.
+ A few updates.
* src/blit.c:
+ Split blit() into caca_create_bitmap() and caca_draw_bitmap().
+ Started removing hardcoded bitmask and pitch values.
* examples/demo.c:
+ Do something with mouse clicks.
+ Changed section to libs/libdevel instead of games/games.
+ Changed package name to libcaca-dev.
* debian/rules:
+ Use debian/compat instead of DH_COMPAT.
+ Install README, BUGS and TODO into /usr/share/doc.
* caca-config.in:
+ First version of the config script.
* configure.ac src/Makefile.am:
+ Build a static PIC library as well.
* README TODO:
+ Various updates.