Sam Hocevar
ee60c3086e
* Handle multiframe canvases in the caca importer, courtesy of Ben Wiley
Sittler. Untested.
17 lat temu
Sam Hocevar
9597783308
* Bwarf, typo in the no warranty clause.
18 lat temu
Sam Hocevar
33058757da
* Add a no warranty clause to the code.
18 lat temu
Sam Hocevar
77bed4f704
* Got rid of that ugly cv->import member.
18 lat temu
Sam Hocevar
4f4f887080
* Improved vt220 import by adding a persistent context to canvases.
18 lat temu
Sam Hocevar
1756bdf30d
* Improved ANSI importer so that it supports a lot more of what is needed
for basic vt220 emulation.
18 lat temu
Sam Hocevar
6372da2ffc
* Improved ANSI import, especially wrt. drawing context persistence.
18 lat temu
Sam Hocevar
16e95eb980
* When importing an utf-8 file, set background and foreground colours to
the nearest ANSI values for the current attribute. When importing an ANSI
file, force them to lightgray on black.
18 lat temu
Sam Hocevar
51936f585c
* Got rid of HAVE_ERRNO_H ifdefs by defining seterrno()/geterrno() functions.
* More debugging information in the import/export and font functions.
18 lat temu
Sam Hocevar
e656963a9a
* Fixed a bug in the caca importer.
18 lat temu
Sam Hocevar
3243101ff0
* Rename cucul_put*() into cucul_put_*(). Updated all code to reflect that.
18 lat temu
Sam Hocevar
9d6bd7b322
* Do not force the text colour when importing a text file.
18 lat temu
Sam Hocevar
f61bed2bdb
* Add cursor and handle support to canvases. Unused yet.
18 lat temu
Sam Hocevar
0a94f93f95
* If not enough data is available for import, return 0 instead of an error.
18 lat temu
Sam Hocevar
44c286272c
* Minor documentation fixes.
18 lat temu
Sam Hocevar
1cb8d02560
* Set the cucul_import_memory() buffer type to void const * instead of
unsigned char const * so that C++ programs won't complain.
___ __ __ ____ ___ ___ ___
/ _ \| \/ |/ ___| / _ \ / _ \ / _ \
| | | | |\/| | | _ | (_) | (_) | (_) |
| |_| | | | | |_| | \__, |\__, |\__, |
\___/|_| |_|\____| /_/ /_/ /_/
18 lat temu
Sam Hocevar
e3b2d76bd6
* Renamed cucul_import() to cucul_import_memory() and implemented
cucul_import_file().
18 lat temu
Sam Hocevar
3d376d8cad
* Don't use htonl() directly, use common.h's hton32() wrapper.
18 lat temu
Sam Hocevar
17f272c4c4
* Deprecate buffer management. We're back to standard void* memory areas.
18 lat temu
Sam Hocevar
98ee92b2d0
* Updated the caca export format so that it supports multiple frames.
* Updated the caca importer to reflect that; only one frame is read at the
moment.
* Added an "utf8cr" export format for UTF-8 + CRLF exports.
* Updated cacaserver to reflect file format changes.
18 lat temu
Sam Hocevar
42c9518d2a
* Got rid of cucul_ansi_to_attr() and cucul_argb_to_attr() and restored
cucul_set_color() and cucul_set_truecolor() under the new names
cucul_set_color_ansi() and cucul_set_color_argb().
* Renamed cucul_get_color_name() into cucul_ansi_to_str().
18 lat temu
Sam Hocevar
0b37a307dd
* Get rid of cucul_set_attr_ansi() and cucul_set_attr_argb and merge the
functionality into cucul_set_attr().
* Add cucul_ansi_to_attr() and cucul_argb_to_attr().
* Rename CUCUL_COLOR_* to CUCUL_*.
18 lat temu
Sam Hocevar
aa93ad25f6
* Remove cucul_set_color() from the exported API and replaced all calls
with cucul_set_attr_ansi(). Old application will still compile (but issue
a warning) and run, though.
18 lat temu
Sam Hocevar
86301dd48c
* Use the LSB of alpha and blue components to encode additional flags such
as bold or underline. No higher level support for these yet, but at
least everything is consistent.
* Created cucul_set_attr_ansi() and cucul_set_attr_argb() which are bound
to replace cucul_set_color() and cucul_set_truecolor().
18 lat temu
Sam Hocevar
bcbc2ee215
* Fix a buffer overflow in the utf-8 cucul_import().
18 lat temu
Jean-Yves Lamoureux
f7cd9f1b27
* "Fixed" infinite loop in ANSI+UTF8 importer, probably totally wrong, but like to be bashed.
18 lat temu
Sam Hocevar
7255c6b034
* Allow to import empty files or files with only empty lines.
18 lat temu
Sam Hocevar
2c906c99e3
* Fix a buffer overflow in the import format autodetection code.
18 lat temu
Sam Hocevar
1771a41bc5
* Allow to import zero-sized canvases.
18 lat temu
Sam Hocevar
26c3ea1aa4
* Removed "This function..." constructs from documentation. Fixed a few
documentation errors or imprecisions.
18 lat temu
Sam Hocevar
1903570ede
* Support for fullwidth glyphs in the UTF-8 importer.
18 lat temu
Sam Hocevar
14ee26ba73
* Set default background to transparent in the ANSI and UTF-8 importers.
18 lat temu
Sam Hocevar
682d2d297b
* Add "utf8" import format.
* Documented "text" import format.
18 lat temu
Sam Hocevar
23afd54c7c
* Fix enumeration layout in the manpage documentation.
18 lat temu
Sam Hocevar
9b39376fd4
* Fix a bug in the ANSI importer. We need to set the proper fg/bg colours
before calling cucul_set_canvas_size(), otherwise it'll fill the new area
with the current values.
18 lat temu
Sam Hocevar
9137c0a059
* Export the UTF-8 / UTF-32 / CP437 character conversions to applications.
18 lat temu
Sam Hocevar
7754db5ccf
* Changed cucul_putchar's prototype so that it accepts a 32-bit unsigned
int which shall be used as an UTF-32 character. We do not have any casting
problems due to the signedness of chars because all characters were
ASCII (ie. <= 0x7f) beforehands.
18 lat temu
Sam Hocevar
8ac089aa7a
* Workaround for illegal ^[[0,0H ANSI escape code.
18 lat temu
Sam Hocevar
ee55871e3f
* If the ANSI file we import does not use the 80 columns, we don't expand
the canvas to 80 columns.
18 lat temu
Sam Hocevar
0a53a92195
* Completed return value and errno handling in libcucul API.
18 lat temu
Jean-Yves Lamoureux
758db0ca7b
* coding style fixes again
18 lat temu
Sam Hocevar
c117cb2411
* Fixed line wrapping on some weird ANSI files.
18 lat temu
Sam Hocevar
d82754532b
* Fixed an ANSI rendering bug related to the bold attribute.
18 lat temu
Sam Hocevar
b3ffcad709
* Minor code reorganisation and documenting.
18 lat temu
Sam Hocevar
af3b09f1f5
* In ANSI, bold only sets the foreground colour to bright, not the
background.
18 lat temu
Jean-Yves Lamoureux
d8fad53ba0
* Really updated doc
18 lat temu
Jean-Yves Lamoureux
7ed107c9fe
* Fixed documentation for import
18 lat temu
Sam Hocevar
38c4a8b608
* Implemented cucul_load_file() and cucul_load_memory() to load respectively
a file and a memory area into a libcucul buffer.
* Changed the cucul_import_canvas() prototype so that it uses libcucul
buffers instead of simple memory areas.
18 lat temu
Sam Hocevar
89355c1e39
* Argh, _really_ fixed the uninitialised variable.
18 lat temu
Sam Hocevar
fb928813b2
* Fixed an uninitialised variable.
18 lat temu