summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorLines
2006-10-1210l typo, broke fb buildRich Felker-1/+1
2006-10-12first try at porting to X. very broken, minimal functionality,Rich Felker-6/+391
but it does work..
2006-10-12remove nasty hack for backwards colors in default pc/linux paletteRich Felker-7/+6
(actually it's just moved to dblbuf.c for now, but this makes it easier to remove in the future when proper color palette config is implemented.)
2006-10-12factoringRich Felker-5/+13
2006-10-12store max possible glyphs boundRich Felker-1/+2
2006-10-12make size of built-in font known, may be neededRich Felker-1/+4
2006-10-12better logic for attached rulesRich Felker-0/+2
2006-10-1110l: omitted thai and lao in tableRich Felker-0/+2
2006-10-10workaround broken glibc wcwidthRich Felker-1/+3
2006-10-10finally, support for decomposing characters -- this makes it possibleRich Felker-15/+1303
to display accented characters using the base character glyphs with overstriking combining marks. (needs contextual glyphs to make this look good, obviously)
2006-10-08100l: always repainting made it super-slowRich Felker-1/+4
2006-10-08fbcon target: let the kernel do the key mapping for us...Rich Felker-98/+48
this made it easy to fix vc switching and window resizing, so i'm fixing those in the same commit as well.
2006-10-08another todoRich Felker-0/+1
2006-10-08add a TODO file with some goals and directionRich Felker-0/+28
2006-10-06get prototypes for pty functions (needed on 64bit for ptsname!)Rich Felker-0/+2
2006-10-06fix out-of-bound memory write on first call (or after resize!)Rich Felker-7/+7
2006-10-05terminfo description for uuterm, mostly correct..?Rich Felker-0/+30
2006-10-05minimal documentationRich Felker-0/+68
2006-10-05the big UCF-font commit!Rich Felker-14/+413
still a little bit messy, but it works quite well already more to come soon.
2006-10-05use $SHELLRich Felker-1/+5
2006-10-05exit gracefully on fatal signals (with nongraceful code...signals suck!)Rich Felker-0/+17
2006-10-05cheap Fn key supportRich Felker-1/+13
2006-10-0510l mistake, caused some combining chars to corrupt badlyRich Felker-1/+1
2006-10-03control-_ was broken; hope nothing new is broken now..Rich Felker-3/+2
2006-10-03allow use of right shift/ctrl keys.. maybeRich Felker-2/+2
2006-10-03rudimentary 16bpp supportRich Felker-6/+54
2006-10-03rework the dblbuf framebuffer module's blutter heavily, based on workRich Felker-117/+29
by loren merritt. roughly 3-4 times as fast as the old code with slightly increased memory usage. still only supports 8bpp and font width of 8, for now, but the new design is more easily extended to 16bpp and 32bpp than the old one.
2006-10-03use larger buffer, same as linux kernel tty buffer it seemsRich Felker-1/+1
2006-10-03make alt+special keys workRich Felker-3/+1
2006-10-03first working version of uuterm!Rich Felker-0/+1972
- at this point it is purely experimental. only ascii characters are visible (using builtin font) although all characters are processed. - there are known bugs, including crashes. - there are major missing features. - but it works. ^_^