Commits

Commit:
be1289b148f89fa1b8c3447d4507e61ff3972b11
From:
Omar Polo <op@omarpolo.com>
Date:
Mon Nov 29 18:16:50 2021 UTC

bump version number again

Commit:
e6c2d4982be1ff73a62ed5482d15eafded14e0fe
From:
Omar Polo <op@omarpolo.com>
Date:
Mon Nov 29 18:16:33 2021 UTC

sync changelog

Commit:
4ab3b651a90a89e18601e20c34a78f79ff86b268
From:
Omar Polo <op@omarpolo.com>
Via:
omar-polo <op@omarpolo.com>
Date:
Mon Nov 29 18:12:57 2021 UTC

don't fail if landlock is not available at runtime

Commit:
d54c55fbe1a056c4b964e065c0987fcf30da3d6d
From:
Omar Polo <op@omarpolo.com>
Date:
Mon Nov 29 17:08:50 2021 UTC

update capsule and website for v0.6

Commit:
c9433eebef032d8cb159dcb65eea017cace41745
From:
Omar Polo <op@omarpolo.com>
Date:
Mon Nov 29 16:34:37 2021 UTC

bump version

Commit:
d9eb2a53208907a916d8c567f878829702b3eb39
From:
Omar Polo <op@omarpolo.com>
Date:
Mon Nov 29 16:34:37 2021 UTC

add back missing fs.h

Commit:
1e75a6b30d685c55c146ab9d3ab73604e1723d6c
From:
Omar Polo <op@omarpolo.com>
Date:
Mon Nov 29 16:34:37 2021 UTC

fix pagebundler compilation for out-of-tree builds

Commit:
6219c17fe1ea063932a21f61ca5a1a1abb80017d
From:
Omar Polo <op@omarpolo.com>
Date:
Mon Nov 29 16:34:37 2021 UTC

fix prototype

Commit:
8bfe7529c025a55ccb71254422680746d041c242
From:
Omar Polo <op@omarpolo.com>
Date:
Sat Nov 27 21:07:10 2021 UTC

mention that we're expecting an UTF-8 environment.

Commit:
84892515ec94204f7208e7492a31439f8c0f82e3
From:
Omar Polo <op@omarpolo.com>
Date:
Sat Nov 27 10:52:44 2021 UTC

use download_cols to wrap the text in the download buffer download_lines is a very small value, for a normally sized terminal is exactly 5. This was the cause behind the download pane glitch, 5 was used as *column number* for the reflow. Now, to be honest, the exact width passed to wrap_page is not important. wrap_page will only wrap the size string, which we know is less than or equal to FMT_SCALED_STRSIZE-1 (6). We could also hardcode the value eventually, but using download_cols reads better.

Commit:
4cb3882fc37e82ef668967ce6c12f1d24f558e79
From:
Omar Polo <op@omarpolo.com>
Date:
Sat Nov 27 09:38:26 2021 UTC

fmt

Commit:
f88fbabc2b1988a4c36c637b77c842b8f80c9ddb
From:
Omar Polo <op@omarpolo.com>
Date:
Sat Nov 27 09:33:55 2021 UTC

adjust some comments text

Commit:
ed1d237e76633efa58d3dbcb22be64d2a720fa7e
From:
Omar Polo <op@omarpolo.com>
Date:
Sat Nov 27 09:04:11 2021 UTC

add comment on why don't landlock the net process

Commit:
540f6d7e2253ed6ae60c0eea3f613ee78d89509f
From:
Omar Polo <op@omarpolo.com>
Date:
Fri Nov 26 18:21:18 2021 UTC

sync changelog

Commit:
71066d24c1aed0542635f29f5c1e82e092edd4a9
From:
Omar Polo <op@omarpolo.com>
Via:
omar-polo <op@omarpolo.com>
Date:
Fri Nov 26 18:18:04 2021 UTC

provide HOSTCC and HOSTCFLAGS variables to simplify cross-compilation pagebundler is a helper that needs to be built with the *host* compiler because it's used to generate some sources. In normal situations, HOSTCC and HOSTCFLAGS are just ${CC} and ${CFLAGS}, but folks that cross-compile can specify there the host compiler and flags to successfully build telescope. The idea is largely based on what gforth does: it re-uses ${CFLAGS} for the host compiler though, while I'm adding an extra variable for that.