Commit Briefs
bump version (tags/0.5.2)
send received page in chunks
imsg can't handle buffer "too big" (around INT16_MAX) and solene@ capsule index is ~29K. The 4K chunk size is completely arbitrary.
sync (tags/0.5.1)
gopher: don't skip the initial /
some gopher servers requires the selector to start with a slash. Or maybe it's the other way around, and some servers are too much forgiving.
bump version (tags/0.5)
link the duckling proxy in the "protocol proxy" section
It's the only kind of protocol-proxy I know. The downside is that is an HTTP link :/
simplify wrap_page and fix wrapping of pre text
The column at which preformatted text should be formatted is the same as the "normal" text, so why the difference? MIN(fill_column, width) is always the correct choice for wrapping the text.
fill pre text until the last available column, not one less
This was fixed previously in the wrap_text case but I forgot to update the hardwrap_text case too.