| Commit message (Expand) | Author | Age | Files | Lines |
| * | term: dark mode - black background, white text (OSK highlight inverts to match) | user | 4 days | 2 | -12/+17 |
| * | irc: keep the keyboard live during RX floods (poll input every pass) | user | 4 days | 1 | -7/+13 |
| * | irc: strip mIRC formatting, drop 004/005 noise, fix a RAM-bank-swap landmine | user | 4 days | 1 | -1/+42 |
| * | gbhub: control socket + gbtype to inject shell input without the OSK | user | 4 days | 2 | -3/+153 |
| * | irc: a bitchx/irssi-style IRC client | user | 4 days | 4 | -1/+384 |
| * | net: SYS_POLLCON + larger console ring for link-injected input | user | 4 days | 6 | -5/+30 |
| * | net: fix truncated TCP field offsets corrupting multi-segment recv | user | 4 days | 1 | -4/+10 |
| * | docs: link-drop investigation resolved - drops are self-healing now | user | 4 days | 1 | -160/+106 |
| * | gbhub: make GB drops attributable, not spooky | user | 4 days | 1 | -5/+15 |
| * | net: unbreak ping against hosts that intermittently drop ICMP | user | 4 days | 4 | -4/+77 |
| * | docs: investigation notes for the idle link-socket drop (open bug) | user | 4 days | 1 | -0/+190 |
| * | net: ping resolves hostnames (ping sl0p.foo, not just ping 1.2.3.4) | user | 4 days | 1 | -21/+15 |
| * | net: pump the network from the console wait (answer pings at the prompt) | user | 4 days | 3 | -42/+85 |
| * | tools: gbhub --daemon + gbjoin - interactive multi-Game-Boy networking | user | 4 days | 2 | -20/+87 |
| * | tools: gbhub - many Game Boys on one network (DHCP pool + inter-GB routing) | user | 4 days | 1 | -0/+166 |
| * | cleanup: drop c/tcp.c (old userland-SLIP TCP client, superseded by kernel TCP... | user | 4 days | 1 | -107/+0 |
| * | net: DHCP client - lease the IP at boot instead of hardcoding it | user | 4 days | 10 | -34/+360 |
| * | kernel: sys_sleep - a cooperative delay off the DIV timer (+ ping pacing) | user | 4 days | 7 | -2/+67 |
| * | net: keep network packets out of the console (fixes shell garbage on netboot) | user | 4 days | 4 | -0/+28 |
| * | tools: netboot - interactive networked emulator (TUN + NAT + --serial-sock) | user | 4 days | 1 | -0/+128 |
| * | net: wget-by-hostname + shared DNS resolver (a Game Boy fetches example.com) | user | 5 days | 3 | -96/+109 |
| * | net: TCP sockets in the kernel - a Game Boy fetches HTTP over real TCP | user | 5 days | 2 | -22/+720 |
| * | net: UDP sockets in the kernel + a DNS resolver (real hostname lookups) | user | 5 days | 6 | -22/+424 |
| * | net: proper socket API in the kernel (SYS_NET) - no more SLIP in userland | user | 5 days | 9 | -140/+872 |
| * | net: ping - GB-originated ICMP echo (a Game Boy pings the real internet) | user | 5 days | 4 | -1/+109 |
| * | net: real routed IP via SLIP<->TUN bridge (you can *ping* a Game Boy) | user | 5 days | 1 | -0/+127 |
| * | net: IP stack milestone B - UDP echo (pseudo-header checksum) | user | 5 days | 2 | -31/+88 |
| * | net: real IP stack, milestone A - ICMP echo (you can ping a Game Boy) | user | 5 days | 5 | -36/+190 |
| * | net: chat client - async receive + OSK send over the link port | user | 5 days | 9 | -5/+127 |
| * | net: wget - real HTTP over the link port via the gateway | user | 5 days | 7 | -54/+112 |
| * | net: SLIP framing over the link port + a host gateway (echo round-trip) | user | 5 days | 9 | -3/+184 |
| * | pipe: PIPE_MAX 2->4 (5-stage pipelines) + fix cross-yield byte corruption | user | 5 days | 2 | -10/+23 |
| * | kernel+sh: real anonymous pipes (concurrent, streaming, SIGPIPE) | user | 5 days | 11 | -15/+349 |
| * | term: compute the OSK view offset from the cursor row (keep input visible) | user | 5 days | 3 | -17/+34 |
| * | term/osk: view-offset scroll region (lossless backlog on OSK toggle) | user | 5 days | 2 | -62/+35 |
| * | term/osk: scroll region so the OSK never hides the input line | user | 5 days | 6 | -13/+87 |
| * | osk: bind START to Enter (CR) | user | 5 days | 1 | -0/+7 |
| * | sh: handle backspace in readline; prompt is now '#' | user | 5 days | 2 | -2/+19 |
| * | osk: wrap the cursor around all four edges | user | 5 days | 1 | -19/+27 |
| * | osk: toggle-able on-screen keyboard on the window layer | user | 5 days | 7 | -7/+412 |
| * | syscall: mirror console output to the LCD terminal | user | 5 days | 3 | -2/+18 |
| * | term: cursor + O(1) line scrolling | user | 5 days | 2 | -209/+455 |
| * | font: full mixed-case + punctuation glyph set (not uppercase-only) | user | 5 days | 3 | -197/+208 |
| * | term: 40-column text terminal on the CGB LCD (4x8 dynamic tiles) | user | 5 days | 6 | -1/+604 |
| * | fs: reject open()/read() on a directory (EISDIR) | user | 6 days | 6 | -6/+18 |
| * | fs rewrite stage 3: nested directories, paths, cwd (cd/mkdir/ls) | user | 6 days | 13 | -49/+463 |
| * | fs rewrite stage 2: inodes + root directory (block-based, persistent) | user | 6 days | 10 | -308/+697 |
| * | fs rewrite stage 1: persistent block device (bounce buffer, cart SRAM) | user | 6 days | 10 | -6/+243 |
| * | jobs: background execution (&), non-blocking reap, spin demo | user | 6 days | 9 | -9/+135 |
| * | kill + ps: implement SYS_KILL (pid 1 immortal) and a ps tool | user | 6 days | 10 | -5/+260 |