about summary refs log tree commit diff stats
path: root/src/bindings
Commit message (Expand)AuthorAgeFilesLines
* libregexp: update LRE_FLAG_UTF16 namebptato2024-03-211-1/+1
* quickjs: reduce diff with upstreambptato2024-03-021-10/+4
* libregexp: cast flags to the right sizebptato2024-02-181-1/+1
* regex: re-work compileSearchRegexbptato2024-02-171-7/+16
* js: define toStringTag properlybptato2024-01-241-0/+1
* js: small improvementsbptato2024-01-171-1/+1
* js: use Nim allocatorbptato2024-01-081-16/+30
* Use std/* imports everywherebptato2024-01-071-1/+1
* Fix some casing issuesbptato2024-01-061-1/+1
* Compile with styleCheck:usagesbptato2023-12-284-9/+9
* dom: use JS_EvalFunction; add module fetching stubsbptato2023-12-251-0/+1
* bindings/quickjs: cint -> csize_tbptato2023-12-231-1/+2
* ftp: fix unnecessary slashes being added to path; move bindings/curlbptato2023-12-151-425/+0
* http: use CURLU for URLsbptato2023-12-131-0/+78
* Move http out of main binarybptato2023-12-131-0/+3
* pager, container: add text selection/copyingbptato2023-12-031-0/+2
* Get rid of clang 16 workaroundbptato2023-12-022-5/+20
* js: get rid of getJSValuebptato2023-12-021-1/+2
* js: simplify toJSP0bptato2023-11-301-2/+6
* bindings: find termcap on FreeBSDbptato2023-11-211-2/+13
* http: use Accept-Encodingbptato2023-11-171-0/+1
* Add jspropnames, CSSStyleDeclaration stubbptato2023-10-251-1/+5
* Remove trailing spacesbptato2023-10-232-85/+85
* base64: reduce pointless re-coding using JSStringbptato2023-10-211-0/+11
* javascript: add TextEncoder, TextDecoderbptato2023-10-211-0/+11
* ftp, file: better dirlist, fix FTP path issuebptato2023-09-191-1/+1
* dom: add document.all, misc fixesbptato2023-09-191-0/+1
* loader: add FTP supportbptato2023-09-191-0/+8
* bindings: fix JSInterruptHandler signaturebptato2023-09-151-1/+1
* Allow overriding libcurl namebptato2023-08-261-3/+9
* javascript: misc. refactoringsbptato2023-08-241-1/+3
* javascript: finish LegacyUnforgeable + misc fixesbptato2023-08-201-0/+11
* javascript: update Events, misc fixes & additionsbptato2023-08-201-3/+15
* Fixes & workarounds to compile on Nim 2.0.0bptato2023-08-012-1/+4
* Include libunicode header in bindingbptato2023-07-151-0/+5
* Add libregexp header to libregexp bindingbptato2023-07-042-15/+12
* Fix CastSize warningsbptato2023-07-031-2/+2
* Remove getClassID hackbptato2023-06-271-0/+1
* Working Nim-QuickJS GC integrationbptato2023-06-241-0/+2
* Fix module loading bugsbptato2023-06-221-0/+2
* Include QuickJS sources in the repositorybptato2023-06-221-17/+2
* Rework JS exception systembptato2023-06-191-0/+11
* Simplify request.json, remove unused bindingsbptato2023-06-092-68/+3
* Show error messages, fix some fetch crashesbptato2023-06-091-0/+1
* Add support for canvas and multipartbptato2023-06-052-1/+80
* Add module loading to clientbptato2023-06-011-0/+3
* Some bindingsbptato2023-05-241-1/+10
* Merge branch 'wip_fetch'bptato2023-04-301-0/+5
|\
| * WIP fetchbptato2023-04-301-0/+5
* | Add initial proxy supportbptato2023-04-301-0/+1
|/
a title='Blame the previous revision' href='/akkartik/mu/blame/cpp/017and-record?h=main&id=b291f85b8d0ece9312b066a84cbeca1b367fe85f'>^
f1a3be1c ^


db5c9550 ^
916ae8f5 ^
c82d0176 ^
3ba63579 ^
6cc46216 ^

3076bab4 ^
6cc46216 ^
916ae8f5 ^
db5c9550 ^
916ae8f5 ^


e853b94e ^
7da71d03 ^
e853b94e ^
916ae8f5 ^





f608504a ^
dd994cda ^
3c435756 ^
f608504a ^

db5c9550 ^
6cc46216 ^





6f5d7864 ^
6cc46216 ^





57699011 ^
6cc46216 ^
1848b18f ^















a4559f72 ^

a4559f72 ^


f1a3be1c ^


db5c9550 ^
a4559f72 ^
c82d0176 ^
3ba63579 ^
79f4349c ^

3076bab4 ^
79f4349c ^
a4559f72 ^






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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169