Releases: CromFr/nwn-lib-d
Releases · CromFr/nwn-lib-d
v1.1.2
v1.1.1
Automated release with GitHub Actions
v1.1.0
Automated release with GitHub Actions
Breaking changes
nwn-gff CLI tool:
Changed the format of the json output: GFF Structs fields is now stored as a list instead of an object. This has the advantage to keep the fields ordering regardless of the json parser used, and gives more options for handling cases where more than one field uses the same label.
Previous JSON format is still available as the json_legacy
format (nwn-gff -k json_legacy
).
Before:
{
"type": "struct",
"__struct_id": 4294967295,
"value": {
"CreatureVersion": {
"value": 1,
"type": "int"
}
}
}
Now:
{
"type": "struct",
"__struct_id": 4294967295,
"value": [
{
"label": "CreatureVersion",
"value": 1,
"type": "int"
}
]
}
v1.0.6
Automated release with GitHub Actions
v1.0.5
Automated release with GitHub Actions
v1.0.4
Automated release with GitHub Actions
v1.0.3
Automated release with GitHub Actions
v1.0.2
Automated release with GitHub Actions
v1.0.1
Automated release with GitHub Actions
v1.0.0
Automated release with GitHub Actions