about summary refs log tree commit diff stats
path: root/src/display
Commit message (Collapse)AuthorAgeFilesLines
* Add display/output encodingbptato2023-05-192-12/+49
| | | | Some encodings are still missing
* Refactor config, add charset optsbptato2023-05-163-42/+56
| | | | Only document-charset supported for now.
* Fix some fetch crashesbptato2023-05-111-1/+4
| | | | Now it should work for very basic use-cases
* Improve debugging, reduce crashesbptato2023-05-091-1/+23
| | | | Loader no longer dies when not everything is read from the stream.
* WIP fetchbptato2023-04-301-0/+4
|
* setTimeout, setInterval: hack to fix 0 timeoutbptato2023-02-091-2/+2
| | | | Timers with a timeout < 1 seem to block indefinitely. No clue why.
* Slightly improve request api (less crashes)bptato2023-02-051-1/+1
|
* pager, term: fix inefficiencies, off by one errorsbptato2023-01-112-13/+15
| | | | and other weird things I forgot to remove while debugging
* display/pager: correct maximum status message widthbptato2023-01-071-4/+6
|
* Slightly refactor commandModebptato2023-01-062-10/+19
|
* display/client: quit when pager.buffer is nullbptato2023-01-051-0/+3
|
* Get rid of eprint in place of stderr.writebptato2023-01-051-1/+1
| | | | eprint should only be used for debugging.
* Add ask()bptato2023-01-052-47/+80
|
* pager: fix prevBuffer, nextBuffer, replace weirdnessbptato2023-01-041-8/+16
| | | | Now they should behave as expected. (I hope.)
* client, pager, dom, ...: better error handlingbptato2023-01-042-83/+92
| | | | Now the browser shouldn't completely die when a buffer crashes.
* container, pager: work around bad codegenbptato2023-01-021-7/+7
|
* term: hack to avoid a weird crashbptato2023-01-021-2/+8
| | | | Looks like we can't just assign canvas to pcanvas.
* Fix connection load info not being shownbptato2023-01-022-3/+6
|
* loader: proper redirect handlingbptato2023-01-011-3/+4
|
* buffer: fix some search bugs & refactor regex stuffbptato2023-01-011-1/+1
| | | | | | | | 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.
* pager: fix bug with tab on screen shiftingbptato2023-01-011-2/+3
|
* Add promise support to JSbptato2022-12-311-1/+9
|
* Proper support for tabsbptato2022-12-272-11/+15
|
* dom: fix collection cachingbptato2022-12-271-0/+6
| | | | Use ids instead of pure pointers, so we can utilize the JS finalizer.
* pager: improve title display, fix alert displaybptato2022-12-252-4/+35
|
* pager: proxy values in container; js: bugfixesbptato2022-12-202-70/+55
| | | | Also, a little bonus: w3m keybindings
* Add unicode normalization, etcbptato2022-12-191-6/+18
|
* Add JS support to documentsbptato2022-12-182-26/+27
|
* Allow cycling through hover-texts with ubptato2022-12-162-15/+14
|
* Fix a processFormat bugbptato2022-12-162-6/+8
|
* discardTree only kills child buffers, fix discardBufferbptato2022-12-161-3/+5
|
* container: do not load all lines at once in readLinesbptato2022-12-151-4/+2
|
* pager: fix getRoot returning nothingbptato2022-12-151-0/+1
|
* Fix console display bugs, add container.locationbptato2022-12-151-2/+5
|
* Add discardTree, update docsbptato2022-12-151-19/+34
|
* term: improve screen/line clearingbptato2022-12-151-4/+12
|
* Fix searchbptato2022-12-141-1/+5
|
* Add referer support, re-render on windowChangebptato2022-12-131-18/+32
|
* Fix stream error handling confusion, title displaybptato2022-12-131-1/+1
| | | | Also probably other fixes.
* Add more cookie optionsbptato2022-12-132-9/+8
|
* Add network.max-redirect, prepend-https optionsbptato2022-12-131-12/+11
|
* Update config and config docsbptato2022-12-131-5/+10
|
* Add all sorts of config options and cookiesbptato2022-12-133-35/+67
|
* Fix color contrast correctionbptato2022-12-121-28/+27
| | | | | Instead of just inverting the color and hoping for the best, convert it to YUV and increase/decrease luminance based on results.
* Add wikipedia substitution, bookmark file keybindingbptato2022-12-111-4/+6
|
* Fix container replacement bugsbptato2022-12-111-0/+7
|
* Fixes & QOL improvementsbptato2022-12-111-5/+40
| | | | | | | | * fix infinite loop after closing buffer * fix setx not triggering hover updates * fix D not going back to PREV but to parent * add M-d, M-,, M-., M-/ for old D behavior, cycle through siblings, back to parent
* Fix -dbptato2022-12-103-26/+79
|
* Fix blocking socketstream recv/send, clean up ips/serialize & types/colorbptato2022-12-102-5/+5
| | | | Write always blocks for now, as it's too big of a footgun not to
* Fix overline emulation in middle of linebptato2022-12-071-0/+11
|