-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Split up drawer into multiple files in drawer module
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
1 parent
14385d1
commit 5fae94f
Showing
10 changed files
with
517 additions
and
454 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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( | ||
|
Oops, something went wrong.