objdiff-wasm 3.7.1 → 3.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config-schema.json +46 -0
- package/dist/objdiff.core.wasm +0 -0
- package/dist/objdiff.js +2 -2
- package/package.json +1 -1
package/dist/config-schema.json
CHANGED
|
@@ -117,6 +117,51 @@
|
|
|
117
117
|
"name": "Combine text sections",
|
|
118
118
|
"description": "Combines all text sections into one."
|
|
119
119
|
},
|
|
120
|
+
{
|
|
121
|
+
"id": "preferredStringEncoding",
|
|
122
|
+
"type": "choice",
|
|
123
|
+
"default": "auto",
|
|
124
|
+
"name": "Preferred string encoding",
|
|
125
|
+
"description": "Which encoding to use when diffing string literals used in functions.",
|
|
126
|
+
"items": [
|
|
127
|
+
{
|
|
128
|
+
"value": "auto",
|
|
129
|
+
"name": "Auto"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"value": "ascii",
|
|
133
|
+
"name": "ASCII"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"value": "utf_8",
|
|
137
|
+
"name": "UTF-8"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"value": "shift_jis",
|
|
141
|
+
"name": "Shift JIS"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"value": "windows_1252",
|
|
145
|
+
"name": "Windows-1252"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"value": "euc_jp",
|
|
149
|
+
"name": "EUC-JP"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"value": "big5",
|
|
153
|
+
"name": "Big5"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"value": "utf_16be",
|
|
157
|
+
"name": "UTF-16BE"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"value": "utf_16le",
|
|
161
|
+
"name": "UTF-16LE"
|
|
162
|
+
}
|
|
163
|
+
]
|
|
164
|
+
},
|
|
120
165
|
{
|
|
121
166
|
"id": "arm.archVersion",
|
|
122
167
|
"type": "choice",
|
|
@@ -338,6 +383,7 @@
|
|
|
338
383
|
"id": "general",
|
|
339
384
|
"name": "General",
|
|
340
385
|
"properties": [
|
|
386
|
+
"preferredStringEncoding",
|
|
341
387
|
"functionRelocDiffs",
|
|
342
388
|
"demangler",
|
|
343
389
|
"showSymbolSizes",
|
package/dist/objdiff.core.wasm
CHANGED
|
Binary file
|
package/dist/objdiff.js
CHANGED
|
@@ -1905,8 +1905,8 @@ function dataHover(arg0, arg1, arg2) {
|
|
|
1905
1905
|
const $init = (()=>{
|
|
1906
1906
|
let gen = function*() {
|
|
1907
1907
|
const module0 = fetchCompile(new URL('./objdiff.core.wasm', import.meta.url));
|
|
1908
|
-
const module1 = base64Compile('AGFzbQEAAAABDQJgAX8AYAV/f39/
|
|
1909
|
-
const module2 = base64Compile('AGFzbQEAAAABDQJgAX8AYAV/f39/
|
|
1908
|
+
const module1 = base64Compile('AGFzbQEAAAABDQJgAX8AYAV/f39/fwADBQQBAAAABAUBcAEEBAccBQEwAAABMQABATIAAgEzAAMIJGltcG9ydHMBAAoxBBEAIAAgASACIAMgBEEAEQEACwkAIABBAREAAAsJACAAQQIRAAALCQAgAEEDEQAACwAvCXByb2R1Y2VycwEMcHJvY2Vzc2VkLWJ5AQ13aXQtY29tcG9uZW50BzAuMjQ2LjI');
|
|
1909
|
+
const module2 = base64Compile('AGFzbQEAAAABDQJgAX8AYAV/f39/fwACJAUAATAAAQABMQAAAAEyAAAAATMAAAAIJGltcG9ydHMBcAEEBAkKAQBBAAsEAAECAwAvCXByb2R1Y2VycwEMcHJvY2Vzc2VkLWJ5AQ13aXQtY29tcG9uZW50BzAuMjQ2LjI');
|
|
1910
1910
|
({ exports: exports0 } = yield instantiateCore((yield module1)));
|
|
1911
1911
|
({ exports: exports1 } = yield instantiateCore((yield module0), {
|
|
1912
1912
|
'[export]objdiff:core/diff': {
|