Skip to content

Releases: mnmaita/trve_bevy_font

v0.4.0

22 Aug 07:35
08cc955
Compare
Choose a tag to compare

BREAKING CHANGE

It is no longer necessary to prepend the main folder where the assets are located when using FontAssetList.

If you were doing

app.insert_resource(FontAssetList::new(
    [
        "fonts/bold.ttf",
        "fonts/italic.ttf",
        "fonts/thin.ttf",
    ]
    .into(),
));

change this to

app.insert_resource(FontAssetList::new(
    [
        "bold.ttf",
        "italic.ttf",
        "thin.ttf",
    ]
    .into(),
));

The folder will be taken from the FontAssetFolder Resource.

What's Changed

Full Changelog: v0.3.0...v0.4.0

v0.3.0

12 Aug 11:05
d6191bf
Compare
Choose a tag to compare

What's Changed

  • Update Bevy version requirement to 0.14 by @mnmaita in #3

Full Changelog: v0.2.0...v0.3.0

v0.2.0

04 Apr 21:39
96d2ca2
Compare
Choose a tag to compare

What's Changed

  • Update Bevy version requirement to 0.13 by @mnmaita in #2

Full Changelog: v0.1.0...v0.2.0

v0.1.0

13 Feb 16:06
9fb6065
Compare
Choose a tag to compare

What's Changed

Full Changelog: https://github.com/mnmaita/trve_bevy_font/commits/v0.1.0