Sam Hocevar
91103fbd97
* Generate the C++ .pc files at configure time.
16 年前
Sam Hocevar
211d0707f9
* Only install the C++ .pc files if C++ support was activated.
16 年前
Sam Hocevar
1e40acee37
* Install cucul++.pc and caca++.pc in the pkg-config directory.
16 年前
Sam Hocevar
c4119c7d43
* Updated version number to 0.99.beta15, so that we can build TOIlet.
16 年前
Sam Hocevar
52710f796c
* Export cucul_flush_figlet() to the public API. It should be removed later,
but for now it's the only way to integrate properly with TOIlet.
16 年前
Sam Hocevar
6d10f95285
* Make cacaview use cucul_file_t functions.
16 年前
Sam Hocevar
9edb7dc623
* Make deprecated cucul_load_file() use cucul_file_t functions.
16 年前
Sam Hocevar
f5597bce42
* Make cucul_import_file() use cucul_file_t functions.
16 年前
Sam Hocevar
c25cb5760c
* Set errno to ENOSYS in unsupported cucul_file_t operations.
16 年前
Sam Hocevar
e87056cd1b
* Implement cucul_file_tell().
16 年前
Sam Hocevar
96d77f7d51
* Export cucul_file_t operations in the public header.
* Implement cucul_file_read() and cucul_file_write().
16 年前
Sam Hocevar
321db7b450
* makefont is only a system tool: use htons/htonl instead of hton16/hton32.
16 年前
Sam Hocevar
e60e274111
* Fix cucul_set_dither_palette() argument types in cacademo.
16 年前
Sam Hocevar
99d7e53aee
* Remove htons() and htonl() from kernel mode: we use our custom hton16()
and hton32() implementations everywhere instead, except in cacaserver
which requires <arpa/inet.h> stuff anyway.
16 年前
Sam Hocevar
abcc1ab766
* Fix a buffer initialisation issue in the sortchars utility.
16 年前
Jean-Yves Lamoureux
e9dd9ce036
* Changed Cucul::Rotate() to Cucul::Rotate180() and Cucul::RotateLeft() and Cucul::RotateRight()
16 年前
Sam Hocevar
a278364a00
* Put autotools files in a hidden ".auto" directory instead of "autotools".
16 年前
Sam Hocevar
5c813a8158
* Add missing headers to the Visual Studio build files.
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
ef211b4700
* Make Win32 a special case in cucul_types.h.in: it has intptr_t but none
of the other required types.
16 年前
Sam Hocevar
d202c8242f
* Started libcaca unit tests.
16 年前
Sam Hocevar
da68305e2c
* Get the project to build in an alternate directory.
16 年前
Sam Hocevar
e6e490ea58
* Refresh the .NET bindings. Still not complete, but quite useful already.
16 年前
Sam Hocevar
621f107c72
* Documentation fixes (due to renamings, some parameters were no longer
documented).
16 年前
Sam Hocevar
4ea785f818
* Remove all unsigned ints from exported functions. Signed arithmetic is
far better for error checking.
16 年前
Sam Hocevar
ec68a634cf
* Get rid of the last long types in the API.
* Use size_t and ssize_t where appropriate.
16 年前
Sam Hocevar
6a3f5c21f0
* Changed most of the long ints in the API into C99 types. WARNING: this
completely breaks compatibility with previous versions of libcaca on
64-bit systems.
16 年前
Sam Hocevar
bb771dcc5c
* Cosmetic fix for ./configure output when a pkg-module is not found.
16 年前
Sam Hocevar
86d03eb137
* Use CppUnit for C and C++ unit tests. Sorry, Jylam.
16 年前
Sam Hocevar
f44b5e11fa
* Changed most "unsigned char" variables into "uint8_t", including in
prototypes. As they are equivalent, this does not break the ABI.
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 年前
Pascal Terjan
cdab8ff469
Fix args type checks in Caca::Display.new
16 年前
Pascal Terjan
433a156fd4
Add few unit tests for Caca::Display
16 年前
Pascal Terjan
f805afaa81
Add driver/set_driver/driver=/driver_list methods to Caca::Display, and driver arg to Caca::Display.new
16 年前
Pascal Terjan
bbe37aaaf7
We should not free the canvas if it was auto created with the display
16 年前
Jean-Yves Lamoureux
4d9b88ff3e
* Fixed cucul_set_canvas_boundaries() bug that prevented good size to be applied on the resized canvas
16 年前
Jean-Yves Lamoureux
1eae38f2dc
* Removed by-default stack protector from recent gcc's while compiling kernel.
16 年前
Jean-Yves Lamoureux
a21ac5c0e8
* Oops, bad type (char instead of uint32) after ellipse rendering
improvement.
16 年前
Jean-Yves Lamoureux
73b071c003
* Improved ellipse rendering. Not perfect, but still much better than
old method. Closes #16 .
16 年前
Jean-Yves Lamoureux
b1c13861f4
* Fixed line transitions (both vertical and horizontal ones)
16 年前
Sam Hocevar
9a4e9b55a8
* -Wshadow was actually put back in configure.ac; removing comment about it.
16 年前
Sam Hocevar
e4fae06a5e
* Don't use mygetopt.c in img2txt if the system has getopt_long.
* Fix invalid pointer/int cast (Closes #39 ).
16 年前
Sam Hocevar
708bf4b7c1
* Get rid of TODO. It's now in Trac ( http://libcaca.zoy.org/report/1 ).
16 年前
Ben Wiley Sittler
e1603937c7
build on Mac OS X again
17 年前
Sam Hocevar
8528b407bb
* Fixed the Visual Studio projects so that they build in Release mode.
17 年前
Sam Hocevar
9c951cebb2
* Windows build fixes here and there.
17 年前
Sam Hocevar
c42b0a9979
* Make it clear that we can use the Windows native console.
17 年前
Sam Hocevar
725f29ee8e
* Put back all the shit in struct caca_event to avoid breaking existing
applications. I'll think of a migration path later.
17 年前
Jean-Yves Lamoureux
119fb08518
* FIRST !
17 年前
Sam Hocevar
6a22ce903e
* Add figfont.c to the MSVC solution.
17 年前