about summary refs log tree commit diff stats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* Move around some modulesbptato2024-03-1421-96/+88
* pager: add "open in editor" keybinding (sE)bptato2024-03-145-76/+80
* loader: only trap SIGTERMbptato2024-03-141-1/+1
* loader: fix crash on malformed CGI headersbptato2024-03-142-3/+2
* twtstr: fix deleteChars, do not remove space in replaceControlsbptato2024-03-142-11/+7
* pager: use loadinfo for redirection message, not alertbptato2024-03-131-1/+2
* twtstr: simplify control char procsbptato2024-03-131-24/+7
* layout: remove word-spacingbptato2024-03-131-4/+1
* rudimentary support for <video>, <audio>bptato2024-03-136-9/+65
* man: rewrite in Nimbptato2024-03-131-21/+22
* loader: fix nil deref in parseHeadersbptato2024-03-131-1/+1
* client: fix blocking reads on container connectionbptato2024-03-125-72/+123
* loader: remove applyHeadersbptato2024-03-1210-134/+112
* posixstream: do not ignore lseek resultbptato2024-03-122-3/+8
* pager: fix replacement logicbptato2024-03-122-27/+32
* pager: decrement numload on redirectbptato2024-03-121-0/+1
* io: add dynstreambptato2024-03-126-57/+95
* loader: unregister input streams on EOFbptato2024-03-121-2/+2
* mailcap: better error messages, accept \ as newline escapebptato2024-03-111-6/+18
* pager: do not eat error alerts on startupbptato2024-03-112-2/+1
* loader: rework process modelbptato2024-03-1124-1432/+1630
* client: fix thumb button confusionbptato2024-03-111-18/+18
* css: fix {} macros on older Nim versionsbptato2024-03-111-6/+9
* client: bind middle button to discardBuffer, use button5/6 as scrollbptato2024-03-112-5/+14
* client: only accept "press" input type for scroll wheelbptato2024-03-111-2/+6
* term: fix alt-screen = true without ti/tebptato2024-03-081-10/+11
* cgi: do not eat first word of the error messagebptato2024-03-071-1/+1
* cgi: pass system error message after execl failurebptato2024-03-071-1/+2
* buffer: fix bug of eating chars before invalid UTF-8bptato2024-03-051-2/+2
* pager: clear status message when opening external viewersbptato2024-03-041-0/+2
* css: simplify property & value definitionsbptato2024-03-041-266/+272
* catom: merge TagType with AttrTypebptato2024-03-046-112/+133
* dom: use relList for stylesheet checksbptato2024-03-042-10/+17
* dom: misc fixesbptato2024-03-042-6/+41
* loader: fix crash on cha </dev/nullbptato2024-03-031-1/+3
* strwidth, renderdocument: small refactoringbptato2024-03-035-124/+96
* Update chamebptato2024-03-031-1/+1
* buffer: improve/fix onload return valuesbptato2024-03-033-20/+30
* quickjs: reduce diff with upstreambptato2024-03-025-20/+18
* cssparser: fix another anb parsing bugbptato2024-03-021-2/+2
* container: fix off-by-one error in scrollDownbptato2024-03-021-1/+1
* env: add window.screenbptato2024-03-022-1/+25
* cssparser: fix anb parser whitespace handling bugsbptato2024-03-021-4/+7
* layout: add whitespace width to end offset's x positionbptato2024-03-021-0/+4
* layout: fix float exclusion of other floatsbptato2024-03-021-2/+2
* cgi: fix regression in header handlingbptato2024-03-021-5/+8
* posixstream: add readLine implementationbptato2024-03-022-7/+22
* buffer: do not incrementally display in headless modebptato2024-03-022-3/+6
* container: fix cursorLineBegin/cursorLineTextStart with vertical scrollbptato2024-03-011-1/+3
* css: remove caption-side: left, right, fix caption-side: bottombptato2024-03-012-23/+3
html?h=v1.7.0-emacs&id=f07bb12fc5c59430e995a64956b36331ce3629b9'>f07bb12f ^
34a60763 ^
f07bb12f ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140