objdiff-wasm 3.0.0-alpha.1 → 3.0.0-beta.1

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.
@@ -187,6 +187,20 @@
187
187
  }
188
188
  ]
189
189
  },
190
+ {
191
+ "id": "mips.registerPrefix",
192
+ "type": "boolean",
193
+ "default": false,
194
+ "name": "Register '$' prefix",
195
+ "description": "Display MIPS register names with a '$' prefix."
196
+ },
197
+ {
198
+ "id": "ppc.calculatePoolRelocations",
199
+ "type": "boolean",
200
+ "default": true,
201
+ "name": "Calculate pooled data references",
202
+ "description": "Display pooled data references in functions as fake relocations."
203
+ },
190
204
  {
191
205
  "id": "x86.formatter",
192
206
  "type": "choice",
@@ -242,7 +256,15 @@
242
256
  "name": "MIPS",
243
257
  "properties": [
244
258
  "mips.abi",
245
- "mips.instrCategory"
259
+ "mips.instrCategory",
260
+ "mips.registerPrefix"
261
+ ]
262
+ },
263
+ {
264
+ "id": "ppc",
265
+ "name": "PowerPC",
266
+ "properties": [
267
+ "ppc.calculatePoolRelocations"
246
268
  ]
247
269
  },
248
270
  {
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "objdiff-wasm",
3
- "version": "3.0.0-alpha.1",
3
+ "version": "3.0.0-beta.1",
4
4
  "description": "A local diffing tool for decompilation projects.",
5
5
  "author": {
6
6
  "name": "Luke Street",