Commits
- Commit:
7b0be57c7cb536303ba948e71fcd81f40f85f0c3
- From:
- Omar Polo <op@omarpolo.com>
- Date:
sync
- Commit:
bbf675a084e2591bf0ecdbeca4cae48cafa7a19b
- From:
- Omar Polo <op@omarpolo.com>
- Date:
bump version
- Commit:
b05315f72f5a2f4cf26b5648489a762b7c68e362
- From:
- Omar Polo <op@omarpolo.com>
- Date:
sync
- Commit:
95bb01e2a7888a61a4fbcb2e48c349e6eb15f336
- From:
- Omar Polo <op@omarpolo.com>
- Date:
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.
- Commit:
908345fb00b6daf3324a895d12b58f935ab45c9e
- From:
- Omar Polo <op@omarpolo.com>
- Date:
improve the "contrib" section
- Commit:
ba06b6462c4e052bb8eb0461c71075a48c391d9e
- From:
- Omar Polo <op@omarpolo.com>
- Date:
update README.md
- Commit:
d557d6834c9ee0e2d39f212794d71513d45108de
- From:
- Omar Polo <op@omarpolo.com>
- Date:
bump version
- Commit:
a9139ef7997a157ba4ff00b0dd162f1e8b46d8ca
- From:
- Omar Polo <op@omarpolo.com>
- Date:
bump the date
- Commit:
dafcab64a97f5daea5add550e3d029faac3765aa
- From:
- Omar Polo <op@omarpolo.com>
- Date:
update the misleading comment in parser_free
- Commit:
a18fc6de7bcd33fbb84dccc52a723b72028df366
- From:
- Omar Polo <op@omarpolo.com>
- Date:
kill extra empty line
- Commit:
95a8c791ec85e7b79a1975e82a22f7c07dbb9107
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fmt (some missing space -> tab conversion)
- Commit:
0e2ac86488b43d8dbe6ccf38221d6ca9d47a2dbc
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fmt
- Commit:
2980bbb1412fb8473dd3d2c83dcd95d533c8783f
- From:
- Omar Polo <op@omarpolo.com>
- Date:
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 :/
- Commit:
2ee42fa00bd6157e6b0ae2f6872c3679e79242f5
- From:
- Omar Polo <op@omarpolo.com>
- Date:
sync
- Commit:
3198f30f89dee7172b30744be22404fbc1cfe8ac
- From:
- Omar Polo <op@omarpolo.com>
- Date:
correctly parse multiple attributes
- Commit:
f3c7d9604106a82141e9ab7f14b388d3a8cea8eb
- From:
- Omar Polo <op@omarpolo.com>
- Date:
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.
- Commit:
ea00395a5e2255f146530271d94dd82ef8c427d0
- From:
- Omar Polo <op@omarpolo.com>
- Date:
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.
- Commit:
cf8e07837fb2c3a3b01b490b6485acc75865f7fa
- From:
- Omar Polo <op@omarpolo.com>
- Date:
avoid a long line
- Commit:
86ce72dbe36b318515c45babe875842d0005109f
- From:
- Anna <cyber@sysrq.in>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
configure: add --with-libbsd option
- Commit:
7eaf997f527107beac3379da6b814ac7b783ebc0
- From:
- Anna <cyber@sysrq.in>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
configure: add --with-libimsg option
- Commit:
8671caea20ee6eb43a2b4005a0429cddf9266d4a
- From:
- Anna <cyber@sysrq.in>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
configure: fix build with separate libtinfo
ncurses has "--with-termlib" build option, which forces some symbols
from libncurses.so to be moved to libtinfo.so.
It caused the following error:
ld: ui.o: undefined reference to symbol 'keypad'
ld: /lib64/libtinfow.so.6: error adding symbols: DSO missing from command line
- Commit:
b3c59b132f6c5f9e12728cdd6e183ddc6f3cfa2d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
document tab-bar-show
- Commit:
22638479234b33cbe312246c661d9465c765e2cb
- From:
- Omar Polo <op@omarpolo.com>
- Date:
sync
- Commit:
87aeb47bc879e568cd50a97604ed6facf8ebdc5f
- From:
- Omar Polo <op@omarpolo.com>
- Date:
schedule ui redraw on tab new/free
this helps to correctly manage the tab bar when tab-bar-show is 1.
- Commit:
56168aa87af6918bce552d405f8e757349360b03
- From:
- Omar Polo <op@omarpolo.com>
- Date:
add tab-bar-show option to control the tab bar rendering
If tab-bar-show is -1 hide the tab bar permanently, if it's 0 show it
unconditionally. If it's 1, show the bar only when there is more than
one tab.