Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Jan 31, 2020
1 parent ae61249 commit f958586
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Tarmac Changelog

## 0.3.0 (2020-01-31)
* Rewrote texture packing routine with a new library, [Packos](https://crates.io/crates/packos).
* This should fix textures overlapping eachother when running Tarmac with automatic spritesheets enabled.

## 0.2.0 (2020-01-21)
* Revamped configuration format.
* Added support for automatically packing spritesheets.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tarmac"
description = "Manages assets for Roblox projects"
version = "0.2.0"
version = "0.3.0"
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
edition = "2018"
license = "MIT"
Expand All @@ -24,6 +24,8 @@ default-members = [
]

[dependencies]
packos = { path = "packos", version = "0.1.0" }

blake3 = "0.1.3"
env_logger = "0.7.0"
globset = "0.4.4"
Expand All @@ -39,7 +41,5 @@ structopt = { version = "0.3", default-features = false }
toml = "0.5.3"
walkdir = "2.2.9"

packos = { path = "packos" }

[target.'cfg(windows)'.dependencies]
winreg = "0.6.2"

0 comments on commit f958586

Please sign in to comment.