about summary refs log tree commit diff stats
path: root/src/io
Commit message (Collapse)AuthorAgeFilesLines
* promise: set get, cb, next to nil after then is calledbptato2023-01-041-7/+5
| | | | | | Actually we don't even need a state variable, just set cb to nil when resolving. (I'm sure this is a great idea that will absolutely not backfire in the future.)
* loader: proper redirect handlingbptato2023-01-012-3/+16
|
* posixstream: fix incorrect read() usagebptato2023-01-011-1/+1
| | | | It was overwriting our buffer, instead of appending to it...
* posixstream/socketstream: fix cross-platform compilationbptato2022-12-311-8/+17
|
* Add promise support to JSbptato2022-12-312-2/+109
|
* Only set Location for redirect status codesbptato2022-12-301-2/+3
|
* Add about:blankbptato2022-12-301-1/+6
|
* Add unicode normalization, etcbptato2022-12-191-54/+28
|
* lineedit: fix crash in prevHist/nextHistbptato2022-12-191-0/+3
|
* File browser: sort filesbptato2022-12-191-1/+20
|
* Add file browserbptato2022-12-182-25/+75
|
* Add JS support to documentsbptato2022-12-181-22/+59
|
* Update visual home page, use name consistentlybptato2022-12-161-3/+3
|
* Make load() slightly less dumbbptato2022-12-151-2/+6
| | | | | This gets rid of the inefficient timeout thing. Still, the ideal solution would be to move the timeout into the container; TODO.
* Add referer support, re-render on windowChangebptato2022-12-133-20/+22
|
* Fix stream error handling confusion, title displaybptato2022-12-134-15/+28
| | | | Also probably other fixes.
* Add more cookie optionsbptato2022-12-132-10/+27
|
* Add all sorts of config options and cookiesbptato2022-12-132-23/+27
|
* Add urlfilterbptato2022-12-122-5/+30
|
* Fix blocking socketstream recv/send, clean up ips/serialize & types/colorbptato2022-12-101-1/+1
| | | | Write always blocks for now, as it's too big of a footgun not to
* Add support for the encoding standard, fix parseLegacyColorbptato2022-12-102-0/+84
| | | | Also, fix a bug in the
* Optimize sendCursorPosition/updateHover, close streams after loadResourcebptato2022-12-061-0/+2
|
* Add -M, -Vbptato2022-12-052-0/+26
|
* Add siteconf, fix lineedit bugsbptato2022-11-291-3/+5
| | | | | | This enables rule-based dynamic url rewriting. Also, lineedit is a bit less broken now (though it's still less than ideal.)
* Add line editing history, other lineedit fixesbptato2022-11-291-83/+112
| | | | It's still kind of broken...
* Add textareabptato2022-11-282-468/+1
| | | | Editing is implemented using an external editor (like vi).
* Rework broken non-blocking iobptato2022-11-271-1/+1
| | | | | Piped input works correctly again! (Also fix hash's setter not working with url's without a fragment)
* Fix lineedit bugsbptato2022-11-262-75/+116
|
* Fix some table layout issuesbptato2022-11-252-29/+17
|
* Improve status messages, fix regressions, etcbptato2022-11-252-32/+48
|
* Fix user style regression, add minimum-contrastbptato2022-11-251-0/+33
|
* Avoid forking child processes from the main processbptato2022-11-241-39/+27
| | | | Caveat: this breaks piped streams.
* Table improvementsbptato2022-11-221-2/+3
|
* Move ips stuff to src/ips/bptato2022-11-225-303/+4
|
* Termcap support (?)bptato2022-11-212-82/+143
|
* Add alt-screen option, fix an ansi color bugbptato2022-11-211-5/+9
|
* Color & term improvementsbptato2022-11-211-25/+34
|
* Color stuffbptato2022-11-211-14/+68
|
* Terminal refactoringsbptato2022-11-202-33/+313
|
* Incremental loading of text files, etc.bptato2022-11-201-2/+6
|
* Rewrite buffer/pager for multi-processingbptato2022-11-196-1798/+275
|
* Use separate FileLoader instance for each bufferbptato2022-11-091-4/+3
|
* Do not always assume stdin is /dev/ttybptato2022-11-093-24/+31
| | | | | This way we theoretically don't have to wait for stdin input to finish loading from e.g. a pipe before we start accepting input. (In practice, we still do.)
* Make it compile...bptato2022-10-191-1/+1
|
* Fix incorrect mark renderingbptato2022-10-191-1/+1
|
* Re-enable media queriesbptato2022-10-191-7/+17
|
* Implement tree buffers, fix a js bug, refactorbptato2022-10-192-19/+40
|
* WIP pagerbptato2022-10-042-9/+12
|
* Binding & macro refactoringsbptato2022-10-011-1/+5
|
* More JS bindingsbptato2022-09-133-14/+41
|