Skip to content

Commit

Permalink
refactor: Split up drawer into multiple files in drawer module
Browse files Browse the repository at this point in the history
Drawer grew to more than a thousand lines, which was making it
hard to unit test and work with. I've separated into multiple files
and moved them into a drawer module.
  • Loading branch information
tomasfarias committed May 30, 2021
1 parent 14385d1 commit 5fae94f
Show file tree
Hide file tree
Showing 10 changed files with 517 additions and 454 deletions.
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "c2g"
version = "0.6.0"
version = "0.6.1"
authors = ["Tomas Farias <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ impl Chess2Gif {
T: Into<OsString> + Clone,
{
let app = App::new("Chess to GIF")
.version("0.6.0")
.version("0.6.1")
.author("Tomas Farias <[email protected]>")
.about("Turns a PGN chess game into a GIF")
.arg(
Expand Down
Loading

0 comments on commit 5fae94f

Please sign in to comment.