Jean-Yves Lamoureux
|
1b821e2588
|
* Updated kernel 'driver', still not working, but most of the work is done
|
pirms 18 gadiem |
Sam Hocevar
|
aca46d3f39
|
* Added -I${top_srcdir} to the compilation flags to fix builds configured
from an alternate directory (they failed to find common.h).
|
pirms 18 gadiem |
Sam Hocevar
|
9137c0a059
|
* Export the UTF-8 / UTF-32 / CP437 character conversions to applications.
|
pirms 18 gadiem |
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" };
|
pirms 18 gadiem |
Sam Hocevar
|
c47c1d3118
|
* Optimise similar glyphs when generating a font. Given how many glyphs
are unavailable, this is a significant gain.
|
pirms 18 gadiem |
Sam Hocevar
|
17e1e490d6
|
* Added a few more Unicode blocks to the default fonts.
|
pirms 18 gadiem |
Sam Hocevar
|
b29977cebe
|
* Hardcode a few CP437 glyphs in makefont.c because they don't look that
good with Pango.
|
pirms 18 gadiem |
Sam Hocevar
|
b2d84d524d
|
* Factored more UTF32 to UTF8 conversions using _cucul_utf32_to_utf8().
|
pirms 18 gadiem |
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.
|
pirms 18 gadiem |
Sam Hocevar
|
4a1507c398
|
* Renamed htons/htonl to hton16/hton32 to avoid useless conflicts.
|
pirms 18 gadiem |
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.
|
pirms 18 gadiem |
Sam Hocevar
|
5cb4d4dedf
|
* Removed duplicate uint*_t defines from *_internal.h and included common.h
in all .c files that needed it.
|
pirms 18 gadiem |
Sam Hocevar
|
e589722123
|
* Moved the technical discussion on S-Lang's palette optimisation from
NOTES to tools/optipal.c.
|
pirms 18 gadiem |
Sam Hocevar
|
5f4a761ce0
|
* Cosmetic changes.
|
pirms 18 gadiem |
Sam Hocevar
|
ac3283f07f
|
* Cosmetic code changes and minor optimisations.
|
pirms 18 gadiem |
Sam Hocevar
|
5d2afb9232
|
* Made makefont more configurable. Also, store the commandline in a comment
so that the font can be easily rebuilt.
|
pirms 18 gadiem |
Sam Hocevar
|
c1669600af
|
* Some cleaning up in makefont.c.
|
pirms 18 gadiem |
Sam Hocevar
|
c1e5f30692
|
* Fixed 4, 2 and 1-bit font rendering.
* Replaced the 8-bit internal font with a 4-bit one.
|
pirms 18 gadiem |
Sam Hocevar
|
fed62ed798
|
* Added a font creator that uses pango to render glyphs.
|
pirms 18 gadiem |
Sam Hocevar
|
6fb44a69f9
|
* Moved test/optipal.c to tools/optipal.c. The tools subdirectory will
contain development tools that are only useful to libcaca developers.
|
pirms 18 gadiem |