Releases: Twinklebear/tobj
Releases · Twinklebear/tobj
4.0.2
What's Changed
- tobj now supports spaces in mtllib filenames: Fix mtllib file name parsing bug for paths including spaces by @joshlengel in #64 thanks @joshlengel !
New Contributors
- @joshlengel made their first contribution in #64
Full Changelog: 4.0.1...4.0.2
4.0.1
What's Changed
- Updated ahash to 0.8.7 (0.8.3 has been yanked) and made clippy happy by @redpenguinyt in #62 . Thanks @redpenguinyt !
New Contributors
- @redpenguinyt made their first contribution in #62
Full Changelog: 4.0.0...4.0.1
4.0.0
⚠️ Breaking Change !
This release moves to more robust handling of missing MTL files by changing the fields of the Material
struct to all be Option<T>
: https://github.com/Twinklebear/tobj/blob/master/src/lib.rs#L574-L613 instead of default values. Previously, these default values may have been incorrectly interpreted as the values of a missing Material, instead of the material data being missing.
What's Changed
⚠️ Breaking Change⚠️ Move to option based API for materials by @luca-della-vedova in #60
New Contributors
- @luca-della-vedova made their first contribution in #60 Thanks @luca-della-vedova !
Full Changelog: 3.2.5...4.0.0
3.2.5
What's Changed
- Clippy, deps, crates.io visibility by @virtualritz in #58
Full Changelog: 3.2.4...3.2.5
Thanks @virtualritz !
3.2.4
3.2.3
What's Changed
- cargo fuzz harness and fixes for bugs found by @evanrichter in #51 . Thanks @evanrichter !
New Contributors
- @evanrichter made their first contribution in #51
Full Changelog: 3.2.2...3.2.3
3.2.2
Changes
- @virtualritz Add convenience constants for some frequently used
LoadOptions
,GPU_LOAD_OPTIONS
andOFFLINE_RENDERING_LOAD_OPTIONS
#50 - @virtualritz Polish docs and some typos in code #50
Thanks @virtualritz !
3.2.1
Release 3.2.0
Changes
- Add
async
version oftobj::load_obj_buf
for use in situations where blocking IO cannot be used (e.g., WebAssembly). This adds a new APItobj::load_obj_buf_async
which is behind theasync
feature gate. Thanks @hwoodiwiss for adding this feature!