Skip to content

Commit

Permalink
Adds author
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciro S. Costa committed Jul 4, 2018
1 parent 7653d3a commit 738f8e5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions commands/speed.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ EXAMPLES:
Make only a certain part of the video twice as fast:
asciinema-edit speed \
--factor 2 \
--start 12.231 \
--factor 45.333 \
./123.cast`,
--factor 2 \
--start 12.231 \
--factor 45.333 \
./123.cast`,
ArgsUsage: "[filename]",
Action: speedAction,
Flags: []cli.Flag{
Expand Down
6 changes: 6 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ func main() {

app.Version = version + " - " + commit
app.Usage = "edit recorded asciinema casts"
app.Authors = []cli.Author{
cli.Author{
Name: "Ciro da Silva da Costa",
Email: "ciro.costa@liferay.com",
},
}
app.Description = `asciinema-edit provides missing features from the "asciinema" tool
when it comes to editing a cast that has already been recorded.`
app.Commands = []cli.Command{
Expand Down

0 comments on commit 738f8e5

Please sign in to comment.