Sam Hocevar
f32c24a10d
build: fix the WTFPL homepage and copyright information.
12 年前
Sam Hocevar
bef9d0c827
misc: fix a few memory leaks and invalid memory accesses.
12 年前
Sam Hocevar
2bf74e6df7
Mark the font data as const. We no longer modify it in place.
14 年前
Sam Hocevar
a09f027727
Add the copyright unit test and update copyright information everywhere.
14 年前
Sam Hocevar
107ff4b815
Large source code cleanup, getting rid of spaces, tabs, and svn keywords.
15 年前
Sam Hocevar
a4cd497318
Do not use htons/htonl in makefont.c, since we already have hton16/hton32
which do not require to initialise winsock on Windows. Addresses #48 .
15 年前
Sam Hocevar
a1fd592363
Store built-in fonts in a uin8_t[] instead of char[].
15 年前
Sam Hocevar
1362d8e24f
Update my e-mail address everywhere.
15 年前
Sam Hocevar
fb7c744402
Added new Unicode blocks to the built-in font.
15 年前
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
33b3fb51ae
makefont.c: change the font data encoding, the source is now 5% smaller.
16 年前
Sam Hocevar
321db7b450
* makefont is only a system tool: use htons/htonl instead of hton16/hton32.
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
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
ee56ef1867
* Added glyphs to our default fonts:
+ Geometric Shapes, Halfwidth and Fullwidth Forms (as suggested by Ben
Wiley Sittler)
+ Miscellaneous Symbols (as suggested by Mohammed Adnène Trojette)
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
f1f00897c5
* Fix shadowing declarations.
18 年前
Sam Hocevar
dbf07a9a27
* Add maxwidth and maxheight members to the font format.
18 年前
Sam Hocevar
5d59b719c8
* Add CJK punctuation to the default fonts.
* Minor changes to the font2tga test program.
18 年前
Sam Hocevar
eb017043ab
* Support fullwidth fonts.
* Add Katakanas and Hiraganas to the default fonts.
18 年前
Sam Hocevar
4fa891b61b
* Slightly changed the font header information. No one distributes libcaca
fonts yet anyway :-)
18 年前
Sam Hocevar
9137c0a059
* Export the UTF-8 / UTF-32 / CP437 character conversions to applications.
18 年前
Sam Hocevar
74e2bdf587
* Elite trick in the font generator to cope with C89's string length
limitation of 509 characters. Instead of doing:
char foo[10] = "abcdefghij";
we now do:
struct { char f1[4], f2[4], f3[2]; } foo = { "abcd", "efgh", "ij" };
18 年前
Sam Hocevar
c47c1d3118
* Optimise similar glyphs when generating a font. Given how many glyphs
are unavailable, this is a significant gain.
18 年前
Sam Hocevar
17e1e490d6
* Added a few more Unicode blocks to the default fonts.
18 年前
Sam Hocevar
b29977cebe
* Hardcode a few CP437 glyphs in makefont.c because they don't look that
good with Pango.
18 年前
Sam Hocevar
b2d84d524d
* Factored more UTF32 to UTF8 conversions using _cucul_utf32_to_utf8().
18 年前
Sam Hocevar
89bfc20006
* Added Unicode range U+2200 - U+22FF (Mathematical Operators) to the
built-in font so that we now cover all of CP437.
18 年前
Sam Hocevar
4a1507c398
* Renamed htons/htonl to hton16/hton32 to avoid useless conflicts.
18 年前
Sam Hocevar
d04b853800
* Look for htons/htonl in netinet/in.h in addition to arpa/inet.h
* Implement htons/htonl in common.h just in case.
18 年前
Sam Hocevar
5cb4d4dedf
* Removed duplicate uint*_t defines from *_internal.h and included common.h
in all .c files that needed it.
18 年前
Sam Hocevar
5f4a761ce0
* Cosmetic changes.
18 年前
Sam Hocevar
ac3283f07f
* Cosmetic code changes and minor optimisations.
18 年前
Sam Hocevar
5d2afb9232
* Made makefont more configurable. Also, store the commandline in a comment
so that the font can be easily rebuilt.
18 年前
Sam Hocevar
c1669600af
* Some cleaning up in makefont.c.
18 年前
Sam Hocevar
c1e5f30692
* Fixed 4, 2 and 1-bit font rendering.
* Replaced the 8-bit internal font with a 4-bit one.
18 年前
Sam Hocevar
fed62ed798
* Added a font creator that uses pango to render glyphs.
18 年前