Skip to content

Releases: Twinklebear/tobj

4.0.4

Choose a tag to compare

@Twinklebear Twinklebear released this 07 Jun 21:00

What's Changed

  • Add handling of the emissive material attribute Ke by @mandeep in #75

New Contributors

Full Changelog: 4.0.3...4.0.4

4.0.3

Choose a tag to compare

@Twinklebear Twinklebear released this 20 Jan 22:02

What's Changed

  • Fuzz: Update Rust edition by @Snowiiii in #66
  • feat: Add support for async loading using either futures or tokio AsyncRead traits by @debroejm in #69

New Contributors

Thanks @Snowiiii and @debroejm !

Full Changelog: 4.0.2...4.0.3

4.0.2

Choose a tag to compare

@Twinklebear Twinklebear released this 27 Mar 04:06
7d17042

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

Full Changelog: 4.0.1...4.0.2

4.0.1

Choose a tag to compare

@Twinklebear Twinklebear released this 21 Jan 18:48

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

Choose a tag to compare

@Twinklebear Twinklebear released this 29 Apr 04:39

⚠️ 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

New Contributors

Full Changelog: 3.2.5...4.0.0

3.2.5

Choose a tag to compare

@Twinklebear Twinklebear released this 04 Apr 03:36

What's Changed

Full Changelog: 3.2.4...3.2.5

Thanks @virtualritz !

3.2.4

Choose a tag to compare

@Twinklebear Twinklebear released this 03 Feb 01:01

What's Changed

  • Add double-precision floating point feature 'use_f64' by @ipadjen in #56

New Contributors

Full Changelog: 3.2.3...3.2.4

3.2.3

Choose a tag to compare

@Twinklebear Twinklebear released this 09 Jul 16:06

What's Changed

New Contributors

Full Changelog: 3.2.2...3.2.3

3.2.2

Choose a tag to compare

@Twinklebear Twinklebear released this 02 Apr 16:07

Changes

  • @virtualritz Add convenience constants for some frequently used LoadOptions, GPU_LOAD_OPTIONS and OFFLINE_RENDERING_LOAD_OPTIONS #50
  • @virtualritz Polish docs and some typos in code #50

Thanks @virtualritz !

3.2.1

Choose a tag to compare

@Twinklebear Twinklebear released this 05 Mar 03:59

Changes

  • @Dyedbyte , #49 Fix handling of usemtl without a material name in MTL files. Thanks @Dyedbyte !
  • Update nightly feature use for feature changes in nightly. This fixes builds using the merging feature.