Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix crash in openEditor if SIGINT was delivered | bptato | 2023-06-26 | 1 | -2/+13 |
| | | | | | | | | | | | nvi for example sets ISIG and traps SIGINT. Without this patch, this would propagate to all processes in the same process group and kill them. (It still does, but we set a signalHandler to ignore that.) Still not perfect, because for some reason we receive WIFSIGNALED even if the signal did not actually kill the editor. For now, we just treat this as a success. | ||||
* | Add setTimeout, setInterval to window | bptato | 2023-06-01 | 1 | -0/+2 |
| | |||||
* | Rewrite new Request binding | bptato | 2023-05-21 | 1 | -1/+3 |
| | | | | | Still far from perfect, but now at least it has a bit more to do with what the standard mandates. | ||||
* | Refactor config, add charset opts | bptato | 2023-05-16 | 1 | -4/+4 |
| | | | | Only document-charset supported for now. | ||||
* | Async resource loading, exception handling fixes | bptato | 2023-05-14 | 1 | -5/+19 |
| | |||||
* | WIP fetch | bptato | 2023-04-30 | 1 | -8/+10 |
| | |||||
* | Make width table at compile-time | bptato | 2023-01-27 | 1 | -1/+1 |
| | |||||
* | client, pager, dom, ...: better error handling | bptato | 2023-01-04 | 1 | -5/+21 |
| | | | | Now the browser shouldn't completely die when a buffer crashes. | ||||
* | Add promise support to JS | bptato | 2022-12-31 | 1 | -1/+1 |
| | |||||
* | Add referer support, re-render on windowChange | bptato | 2022-12-13 | 1 | -14/+25 |
| | |||||
* | Fix stream error handling confusion, title display | bptato | 2022-12-13 | 1 | -3/+4 |
| | | | | Also probably other fixes. | ||||
* | Add all sorts of config options and cookies | bptato | 2022-12-13 | 1 | -5/+9 |
| | |||||
* | Add urlfilter | bptato | 2022-12-12 | 1 | -5/+9 |
| | |||||
* | Add textarea | bptato | 2022-11-28 | 1 | -2/+14 |
| | | | | Editing is implemented using an external editor (like vi). | ||||
* | Improve status messages, fix regressions, etc | bptato | 2022-11-25 | 1 | -0/+1 |
| | |||||
* | Avoid forking child processes from the main process | bptato | 2022-11-24 | 1 | -0/+152 |
Caveat: this breaks piped streams. |