Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix 'F' missing from fullwidth chars + display bugs | bptato | 2023-06-09 | 1 | -0/+1 |
| | |||||
* | Add support for visibility | bptato | 2023-06-07 | 1 | -18/+15 |
| | |||||
* | Add support for width, height media query | bptato | 2023-06-07 | 1 | -4/+6 |
| | |||||
* | Add XTERM title renaming | bptato | 2023-06-07 | 1 | -2/+2 |
| | |||||
* | Clean up stream error handling | bptato | 2023-06-07 | 1 | -6/+6 |
| | | | | | | * sread now raises EOFError if readData returns too few bytes * buffer handleError ignores unregistered fds like client * client handleError ignores unregistered fds like buffer | ||||
* | buffer: call handleError before handleRead & misc | bptato | 2023-06-05 | 1 | -6/+6 |
| | |||||
* | Add support for canvas and multipart | bptato | 2023-06-05 | 1 | -82/+28 |
| | | | | | | | | | | | | | | | Quite incomplete canvas implementation. Crucially, the layout engine can't do much with whatever is drawn because it doesn't support images yet. I've re-introduced multipart as well, with the FormData API. For the append function I've also introduced a hack to the JS binding generator that allows requesting the JSContext pointer in nim procs. Really I should just fix the union generator thing and add support for overloading. In conclusion, for now the only thing canvas can be used for is exporting it as PNG and uploading it somewhere. Also, we now have PNG encoding and decoding too. (Now if only we had sixels as well...) | ||||
* | Fix more config inconsistencies | bptato | 2023-06-01 | 1 | -1/+1 |
| | | | | So that the default config actually works again. Also some doc updates. | ||||
* | Add setTimeout, setInterval to window | bptato | 2023-06-01 | 1 | -49/+60 |
| | |||||
* | Refactor config, add charset opts | bptato | 2023-05-16 | 1 | -11/+12 |
| | | | | Only document-charset supported for now. | ||||
* | Set buffer state to LOADED on finishLoad | bptato | 2023-05-14 | 1 | -2/+2 |
| | |||||
* | Name negative response codes | bptato | 2023-05-14 | 2 | -3/+5 |
| | |||||
* | Async resource loading, exception handling fixes | bptato | 2023-05-14 | 1 | -18/+60 |
| | |||||
* | Fix some fetch crashes | bptato | 2023-05-11 | 1 | -0/+1 |
| | | | | Now it should work for very basic use-cases | ||||
* | Temporarily disable multipart | bptato | 2023-04-30 | 1 | -1/+1 |
| | | | | It never really worked, and I can't be bothered to fix it now | ||||
* | WIP fetch | bptato | 2023-04-30 | 1 | -0/+10 |
| | |||||
* | buffer: disable popup confirmation for forms | bptato | 2023-04-10 | 2 | -5/+15 |
| | |||||
* | buffer: adapt onload to PosixStream and SocketStream | bptato | 2023-02-13 | 1 | -15/+14 |
| | |||||
* | buffer: do not move cursor in scrollLeft | bptato | 2023-01-20 | 1 | -2/+0 |
| | |||||
* | buffer/container: fix cursor overwriting double-width chars | bptato | 2023-01-11 | 1 | -1/+22 |
| | | | | | In some terminals, placing the cursor on the second cell of a double-width character deletes half of said character, so let's not do that. | ||||
* | Slightly refactor commandMode | bptato | 2023-01-06 | 1 | -1/+1 |
| | |||||
* | Add ask() | bptato | 2023-01-05 | 1 | -0/+3 |
| | |||||
* | renderdocument: add StyledNodes to backgrounds | bptato | 2023-01-03 | 1 | -17/+4 |
| | | | | | | This makes it possible to e.g. click on this: <a href=x style="display: inline-block; width: 5em; height: 5em; background-color: red"></a> | ||||
* | buffer: fix infinite loop in getClickable | bptato | 2023-01-03 | 1 | -2/+3 |
| | |||||
* | buffer: fix infinite loop | bptato | 2023-01-03 | 1 | -1/+2 |
| | |||||
* | container, pager: work around bad codegen | bptato | 2023-01-02 | 1 | -3/+3 |
| | |||||
* | dom: add better attribute reflection | bptato | 2023-01-02 | 1 | -2/+3 |
| | | | | | Instead of creating a new function for each attribute, use a single magic function for reflected attributes. | ||||
* | Add support for <label> | bptato | 2023-01-02 | 1 | -93/+111 |
| | |||||
* | Fix connection load info not being shown | bptato | 2023-01-02 | 1 | -1/+1 |
| | |||||
* | loader: proper redirect handling | bptato | 2023-01-01 | 2 | -6/+4 |
| | |||||
* | buffer: fix some search bugs & refactor regex stuff | bptato | 2023-01-01 | 2 | -50/+44 |
| | | | | | | | | cursorBytes uses twidth now. cursorNextMatch matches the byte *after* the cursor (somewhat more consistently than before). match() no longer counts capture groups. LRE_FLAG_GLOBAL now goes through the entire string. | ||||
* | Add promise support to JS | bptato | 2022-12-31 | 2 | -86/+47 |
| | |||||
* | buffer/container: fix highlighting width | bptato | 2022-12-28 | 1 | -2/+2 |
| | |||||
* | Proper support for tabs | bptato | 2022-12-27 | 1 | -35/+32 |
| | |||||
* | Consistent naming of parseURL, non-public newURLParams | bptato | 2022-12-26 | 1 | -4/+4 |
| | |||||
* | container: fix requestLines not setting setx | bptato | 2022-12-25 | 1 | -0/+1 |
| | |||||
* | pager: proxy values in container; js: bugfixes | bptato | 2022-12-20 | 1 | -52/+73 |
| | | | | Also, a little bonus: w3m keybindings | ||||
* | Add unicode normalization, etc | bptato | 2022-12-19 | 1 | -0/+1 |
| | |||||
* | More DOM work | bptato | 2022-12-19 | 1 | -9/+1 |
| | |||||
* | Add JS support to documents | bptato | 2022-12-18 | 1 | -15/+21 |
| | |||||
* | Allow cycling through hover-texts with u | bptato | 2022-12-16 | 2 | -28/+59 |
| | |||||
* | container: do not load all lines at once in readLines | bptato | 2022-12-15 | 2 | -10/+26 |
| | |||||
* | makeCRLF: move to twtstr, write last char | bptato | 2022-12-15 | 1 | -16/+0 |
| | |||||
* | Fix console display bugs, add container.location | bptato | 2022-12-15 | 1 | -1/+4 |
| | |||||
* | Add discardTree, update docs | bptato | 2022-12-15 | 1 | -2/+2 |
| | |||||
* | Fix error handling on buffer close | bptato | 2022-12-15 | 1 | -14/+18 |
| | |||||
* | Make load() slightly less dumb | bptato | 2022-12-15 | 2 | -53/+101 |
| | | | | | This gets rid of the inefficient timeout thing. Still, the ideal solution would be to move the timeout into the container; TODO. | ||||
* | cssparser: check for EOF in first read chunk | bptato | 2022-12-14 | 1 | -2/+2 |
| | | | | To-do: use decoderstream... | ||||
* | Add referer support, re-render on windowChange | bptato | 2022-12-13 | 2 | -11/+37 |
| | |||||
* | Fix stream error handling confusion, title display | bptato | 2022-12-13 | 2 | -10/+22 |
| | | | | Also probably other fixes. |