Skip to content

Commit f958586

Browse files
committed
Release 0.3.0
1 parent ae61249 commit f958586

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Tarmac Changelog
22

3+
## 0.3.0 (2020-01-31)
4+
* Rewrote texture packing routine with a new library, [Packos](https://crates.io/crates/packos).
5+
* This should fix textures overlapping eachother when running Tarmac with automatic spritesheets enabled.
6+
37
## 0.2.0 (2020-01-21)
48
* Revamped configuration format.
59
* Added support for automatically packing spritesheets.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tarmac"
33
description = "Manages assets for Roblox projects"
4-
version = "0.2.0"
4+
version = "0.3.0"
55
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
66
edition = "2018"
77
license = "MIT"
@@ -24,6 +24,8 @@ default-members = [
2424
]
2525

2626
[dependencies]
27+
packos = { path = "packos", version = "0.1.0" }
28+
2729
blake3 = "0.1.3"
2830
env_logger = "0.7.0"
2931
globset = "0.4.4"
@@ -39,7 +41,5 @@ structopt = { version = "0.3", default-features = false }
3941
toml = "0.5.3"
4042
walkdir = "2.2.9"
4143

42-
packos = { path = "packos" }
43-
4444
[target.'cfg(windows)'.dependencies]
4545
winreg = "0.6.2"

0 commit comments

Comments
 (0)