about summary refs log tree commit diff stats
path: root/res
Commit message (Collapse)AuthorAgeFilesLines
* Add mailcap, mime.types & misc refactoringsbptato2023-08-132-0/+22
| | | | | | | | * add mailcap: works with copiousoutput, needsterminal, etc. * add mime.types (only works with mailcap) * refactor pipeBuffer * remove "dispatcher" * fix bug in directory display where baseurl would not be used
* ua.css: add parens to rt before and afterbptato2023-08-101-0/+8
| | | | | Forgot to add any replacement for rp after setting it to display: none, so parentheses around ruby text were not being displayed.
* Add default background/foreground color overridebptato2023-07-291-0/+2
|
* Add suspend() function (bound to C-z)bptato2023-07-261-0/+1
|
* ua.css: add more block elementsbptato2023-07-251-2/+4
| | | | Additions sourced from the HTML standard.
* Add popup menu for select elementbptato2023-07-051-7/+10
| | | | | | | Replaces the weird CSS implementation we have had until now with a searchable popup menu similar to that of w3m. (The previous implementation broke on websites that do not expect <select> to expand on click, had no separate search, and was ugly.)
* Remove unused config variablebptato2023-06-261-1/+0
|
* Fix crash in openEditor if SIGINT was deliveredbptato2023-06-261-0/+1
| | | | | | | | | | | 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.
* Fix color U, slightly change contrast algorithmbptato2023-06-101-1/+1
|
* Fix some type confusion with colors, fix crash in pagerbptato2023-06-091-1/+1
|
* Add XTERM title renamingbptato2023-06-071-0/+1
|
* Add support for canvas and multipartbptato2023-06-051-0/+0
| | | | | | | | | | | | | | | 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...)
* Set display-charset to autobptato2023-05-201-1/+1
|
* Refactor config, add charset optsbptato2023-05-161-1/+6
| | | | Only document-charset supported for now.
* Update IdnaMappingTable.txtbptato2023-02-051-32/+137
|
* Update character width rangesbptato2023-02-051-0/+2619
| | | | | Use the Unicode 15 EastAsianWidth.txt file instead of an ancient wcwidth implementation's ranges.
* res/config: fix M-c console bindingbptato2023-01-201-4/+1
|
* res/config, doc/config: encode search query stringsbptato2023-01-081-1/+1
|
* res/ua.css: no !important for display: nonebptato2023-01-061-2/+3
| | | | As recommended by the standard.
* Slightly refactor commandModebptato2023-01-061-1/+7
|
* ua.css: fix color, css/values: fix globalsbptato2023-01-041-6/+6
|
* ua.css: add counter-reset to ulbptato2023-01-031-0/+1
|
* ua.css: only highlight a[href]bptato2023-01-021-2/+2
|
* default config: make the search function slightly more robustbptato2022-12-251-1/+1
| | | | For easier copy-pasting...
* pager: proxy values in container; js: bugfixesbptato2022-12-201-1/+5
| | | | Also, a little bonus: w3m keybindings
* Update visual home page, use name consistentlybptato2022-12-163-4/+32
|
* Add discardTree, update docsbptato2022-12-151-2/+2
|
* Add network.max-redirect, prepend-https optionsbptato2022-12-131-0/+4
|
* Update config and config docsbptato2022-12-131-7/+3
|
* Add support for q, fix list-item counter behaviorbptato2022-12-121-0/+9
|
* Add wikipedia substitution, bookmark file keybindingbptato2022-12-111-0/+5
|
* Add visual-home, rename undocumented config valuesbptato2022-12-111-0/+5
|
* Fix container replacement bugsbptato2022-12-111-1/+1
|
* Add border-collapse, border-spacing; fix fd sending hackbptato2022-12-111-0/+3
| | | | | | Note that they don't actually work correctly because of rounding errors. The fd sending hack now emits C directly. Let's hope this actually works.
* Support vertical-align on tdbptato2022-12-111-0/+2
|
* Add caption-sidebptato2022-12-111-0/+16
|
* Fixes & QOL improvementsbptato2022-12-111-1/+5
| | | | | | | | * 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
* Add support for the encoding standard, fix parseLegacyColorbptato2022-12-1035-0/+77185
| | | | Also, fix a bug in the
* Add multiple text-decoration, overline emulationbptato2022-12-071-0/+2
|
* Add force-clearbptato2022-12-071-0/+1
|
* Add 1G as cursorFirstLine shortcutbptato2022-12-051-0/+1
|
* Add title tag support, peek, peekCursorbptato2022-12-051-0/+2
|
* Add -M, -Vbptato2022-12-051-0/+3
|
* Add siteconf, fix lineedit bugsbptato2022-11-291-0/+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-0/+2
| | | | It's still kind of broken...
* Add textareabptato2022-11-282-0/+9
| | | | Editing is implemented using an external editor (like vi).
* Add support for <button>bptato2022-11-271-0/+4
|
* Fix some regressions, add loading progress barbptato2022-11-271-1/+2
|
* Fix some table layout issuesbptato2022-11-251-0/+9
|
* Add some quirks mode rules + presentational hintsbptato2022-11-252-12/+30
| | | | Only as a POC for now.