Sam Hocevar
f32c24a10d
build: fix the WTFPL homepage and copyright information.
12年前
Sam Hocevar
107ff4b815
Large source code cleanup, getting rid of spaces, tabs, and svn keywords.
15年前
Sam Hocevar
1362d8e24f
Update my e-mail address everywhere.
15年前
Ben Wiley Sittler
fc3775ca2a
remove workarounds since alpha works now (merged from ..)
16年前
Ben Wiley Sittler
24ca7502e6
merge alpha fix from svn://svn.zoy.org/libcaca/libcaca/trunk/caca-php/examples/export.php@3287 into examples/www/export.php
16年前
Ben Wiley Sittler
14c4a66190
no border in old browsers, either.
16年前
Ben Wiley Sittler
7f251a3e93
show client-side filename
16年前
Ben Wiley Sittler
4b01269d8a
only fill the preview iframe when javascript is enabled
16年前
Ben Wiley Sittler
995edf8021
merge latest CLI example bugfixes into the HTML versions
16年前
Ben Wiley Sittler
1e933f8d50
only assume svg preview ability in opera, WebKit and Gecko
16年前
Ben Wiley Sittler
28121eec77
do not add history entries for iframe transitions
16年前
Ben Wiley Sittler
3336b41178
add missing id
16年前
Ben Wiley Sittler
dc32a8ac41
use some javascript to show inline previews using <iframe/> for some
of the formats (so far, html, html3, bbfr, and svg)
16年前
Ben Wiley Sittler
7b47610259
.caca files get an extension, too
16年前
Ben Wiley Sittler
a684af9ed6
suggest extensions for some of the inline formats too, since browsers
sometimes send them to external viewers and become confused if the
filename ends in '.php' (despite our correct content-type!)
16年前
Ben Wiley Sittler
9c556c4071
text formats embedding escape sequences get sent as attachments too
16年前
Ben Wiley Sittler
f1eedaf0b1
working HTML version of export.php accepting an optional file upload and exporting it using the selected format
16年前
Ben Wiley Sittler
28300073de
copy export.php to www in preparation for htmlizing
16年前
Ben Wiley Sittler
ea2f4ff159
export.php is now actually php, and appears to work identically to its
C predecessor.
16年前
Ben Wiley Sittler
8d104f9b86
copy export.c to export.php in preparation for phpizing
16年前
Sam Hocevar
f61816ceb7
Starting refactoring to get rid of libcucul. The initial reason for the
split is rendered moot by the plugin system: when enabled, binaries do
not link directly with libX11 or libGL. I hope this is a step towards
more consisteny and clarity.
16年前
Sam Hocevar
8f832a3b47
* Switch a few unsigned int variables to size_t where appropriate.
* Synchronise parameter types in the C++ bindings with the C API.
16年前
Sam Hocevar
99b5396e8e
* Remove #include <stdint.h> etc. from "common.h". Instead, make sure that
<cucul.h> will provide the C99 types, even if libcaca has been installed.
* Rename what's left of "common.h" to "stubs.h".
* Remove all references to erroneous <inttypes.h> from source files.
16年前
Sam Hocevar
10bf9f48a7
* Rename "test" to "examples". The former will become a real testsuite.
* Autodetect zzuf in the configure step. It might become handy.
17年前
Sam Hocevar
9597783308
* Bwarf, typo in the no warranty clause.
18年前
Sam Hocevar
33058757da
* Add a no warranty clause to the code.
18年前
Sam Hocevar
55765045c8
* Support for CUCUL_DEFAULT and CUCUL_TRANSPARENT in the HTML exporters.
* Updated export test accordingly.
18年前
Sam Hocevar
3243101ff0
* Rename cucul_put*() into cucul_put_*(). Updated all code to reflect that.
18年前
Sam Hocevar
88facd894c
* Switch back to UTF-32 arguments for drawing primitives, now that we
properly export cucul_utf8_to_utf32(). Evil API breakage, but no one
uses these functions anyway.
18年前
Sam Hocevar
9621f21c5a
* Convert all programs and tests to the new import/export API.
18年前
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年前
Sam Hocevar
019938c9ae
* Changed cucul_set_attr() so that only setting the style does not change
the colour.
18年前
Sam Hocevar
e9f3bc9321
* Add Bold/Blink/Italics/Underline to the export and color tests.
18年前
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年前
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年前
Sam Hocevar
2051ddea46
* Add a test for fullwidth characters to the exporter test.
18年前
Jean-Yves Lamoureux
1b821e2588
* Updated kernel 'driver', still not working, but most of the work is done
18年前
Sam Hocevar
514bbb3859
* Fix a crash in export.c with unknown file formats.
18年前
Sam Hocevar
552974ffd9
* If the export test target is ANSI or UTF-8, dither image with special
shaded glyphs.
18年前
Sam Hocevar
29da35e1f4
* Make the export test 80 columns wide, so that the ANSI we generate can
be read by other programs.
18年前
Sam Hocevar
72ba9c3585
* Allow an optional input filename in the export test for cheap conversions.
18年前
Sam Hocevar
370fb06990
* Added "common.h", a placeholder for simple features and functions missing
from some systems.
18年前
Sam Hocevar
2401f2c732
* Moved cucul_load_canvas() into cucul/import.c and renamed it into
cucul_import_canvas().
* Renamed cucul_create_export() into cucul_export_canvas() for consistency.
18年前
Sam Hocevar
0deb4abc25
* Changed the cucul_dither_bitmap behaviour so that the 4 coordinates are
now x/y/width/height instead of x1/y1/x2/y2. Avoids unnecessary +1/-1
computations.
18年前
Sam Hocevar
18f6532dbc
* Renamed main canvas-related functions so that they have "canvas" in
their name, eg. cucul_create() -> cucul_create_canvas() etc.
* Moved buffer-related functions to cucul/buffer.c.
18年前
Sam Hocevar
687a2c43f6
* Renamed caca_t into caca_display_t.
* Renamed canvas handle variables from "c" to "cv". Eh ouais mon gros.
18年前
Sam Hocevar
246c5b4d67
* Renamed cucul_t into cucul_canvas_t. Eh ouais mon con.
18年前
Sam Hocevar
b30948f044
* Use cucul_get_export_list() in the export test instead of hardcoding the
list of available formats. Also added a few truecolor blocks to the test.
18年前
Sam Hocevar
17c065a49e
* Replaced "struct cucul_*" and "struct caca_*" types with opaque typedefs
such as cucul_dither_t instead of struct cucul_dither.
* Made cucul_buffer_t an opaque structure and implemented the two getters
cucul_get_buffer_data() and cucul_get_buffer_size().
* Documented all missing functions and function parameters.
18年前
Sam Hocevar
41d475589c
* Renamed cucul_export into cucul_buffer. We'll use it for other things.
18年前