Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.63 KB

CHANGELOG.md

File metadata and controls

33 lines (24 loc) · 1.63 KB

Jolt-Rust Changelog

joltc-sys and rolt

  • Added "Requirements" section to README that lists build requirements
  • Removed Cargo.toml line because I forgot to update it and would probably forget to update it a lot more in the future.

joltc-sys

  • Several improvements to API coverage.
  • Added several name shape types, including convex hulls and compound shapes.
  • Shapes are now created by filling out a struct and creating shapes directly from that instead of creating an intermediate opaque settings type.
  • JPC_ShapeSettings_Create has been replaced by methods for each specific shape type, like JPC_SphereShapeSettings_Create.
  • Fixed builds with lld on Windows

rolt

  • Added safe wrappers for most of the interfaces that JoltC exposes, including BodyFilter.
  • Changed math types like Vec3 to be re-exported from glam instead of having unique types.
  • Added FromJolt/IntoJolt/IntoRolt helper traits to make converting to and from -sys types easier.
  • Improved documentation across the board, including links to Jolt's new official multi-versioned documentation.

joltc-sys

  • Significantly higher API coverage, especially for Body and BodyInterface.

v0.1.1

  • Attempt to fix docs.rs builds from differing build environments.

v0.1.0

  • Initial release of joltc-sys and rolt