-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add vhs tape and assets, update readme, add simple makefile
- Loading branch information
1 parent
5e1787a
commit 8b37ff7
Showing
8 changed files
with
89 additions
and
15 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -30,6 +30,4 @@ | |
|
||
Prompts/outputs go here... | ||
|
||
-><-↓↑ | ||
|
||
→←↓↑ |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Create euchre-tui demo gif and screenshots | ||
# VHS syntax reference: https://github.com/charmbracelet/vhs?tab=readme-ov-file#vhs-command-reference | ||
|
||
Output assets/demo.gif | ||
|
||
Require euchre | ||
|
||
Set Shell "zsh" | ||
Set FontSize 16 | ||
Set FontFamily "Anonymous Pro" | ||
Set Width 1200 | ||
Set Height 800 | ||
Set PlaybackSpeed 0.5 | ||
Set TypingSpeed 100ms | ||
|
||
# run the binary and wait on splash screen | ||
Type "euchre" Sleep 500ms Enter Sleep 3s | ||
|
||
Screenshot assets/splash.png | ||
|
||
# navigate to setup screen and wait | ||
Type "n" Sleep 2s | ||
|
||
# type into first input box and wait | ||
Type "boldandbrad" Sleep 1s Enter Sleep 1s | ||
|
||
# type into second input box and wait | ||
Type "Good guys" Sleep 1s Enter Sleep 1s | ||
|
||
Screenshot assets/setup.png | ||
|
||
# submit form | ||
Enter | ||
|
||
# watch game begin | ||
Sleep 10s | ||
|
||
Screenshot assets/table.png |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
install: | ||
cargo install --path . | ||
|
||
uninstall: | ||
cargo uninstall euchre-tui | ||
|
||
record: | ||
vhs assets/record.tape |