fxrjson 10.0.0 → 12.0.0

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.
Files changed (2) hide show
  1. package/fxrjson.js +1 -1
  2. package/package.json +2 -2
package/fxrjson.js CHANGED
@@ -105,7 +105,7 @@ await (async () => {
105
105
  const content = await fs.readFile(filePath)
106
106
 
107
107
  if (content.subarray(0, 4).equals(Buffer.from('FXR\0'))) {
108
- const fxr = FXR.read(content, game)
108
+ const fxr = FXR.read(content, game, { round: true })
109
109
  await fs.writeFile(filePath + '.json', beautify({
110
110
  version: `${name}@${version}`,
111
111
  fxr
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fxrjson",
3
- "version": "10.0.0",
3
+ "version": "12.0.0",
4
4
  "description": "Convert FXR files from Dark Souls 3, Sekiro, Elden Ring, and Armored Core 6 to and from JSON.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,7 +21,7 @@
21
21
  "url": "https://github.com/EvenTorset/fxrjson/issues"
22
22
  },
23
23
  "dependencies": {
24
- "@cccode/fxr": "^10.0.0",
24
+ "@cccode/fxr": "^12.0.0",
25
25
  "cli-select": "^1.1.2",
26
26
  "json-beautify": "^1.1.1",
27
27
  "rage-edit": "^1.2.0"