Skip to content

Commit

Permalink
fix cows design errors
Browse files Browse the repository at this point in the history
  • Loading branch information
erincones committed Oct 7, 2022
1 parent 30f34d3 commit 1b6da26
Show file tree
Hide file tree
Showing 16 changed files with 25 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ commands, once installed, run `cowsayjs -h`, `cowthinkjs -h` or `moojs -h` to
print the help.

```Text
moojs, cowsayjs, cowthinkjs v1.1.2
moojs, cowsayjs, cowthinkjs v1.1.3
Copyright (c) 2021 Erick Rincones
Licensed under the MIT License
Expand Down Expand Up @@ -252,7 +252,7 @@ moo({
```Text
__________________________
( I need to sleep )
( 2022-10-07T22:20:33.463Z )
( 2022-10-07T22:57:16.496Z )
--------------------------
o ^__^
o (@@)\_______
Expand Down
2 changes: 1 addition & 1 deletion cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function getArg(token, j, argv, i) {
*/
function printHelp() {
// Version
var version = "1.1.2";
var version = "1.1.3";

// Get current script
var script = process.argv[1].replace(/\\/g, "/");
Expand Down
4 changes: 2 additions & 2 deletions cows/apt.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
[ 0, 7 ]
],
eyesPos: [
[ 2, 10 ],
[ 2, 11 ],
[ 1, 10 ],
[ 1, 11 ],
]
};
2 changes: 1 addition & 1 deletion cows/beavis.zen.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ module.exports = {
],
actionPos: [
[ 0, 3 ],
[ 0, 4 ]
[ 1, 4 ]
]
};
4 changes: 2 additions & 2 deletions cows/blowfish.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module.exports = {
""
],
actionPos: [
[0, 3],
[0, 4]
[ 0, 3 ],
[ 1, 4 ]
]
};
6 changes: 3 additions & 3 deletions cows/calvin.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ module.exports = {
],
actionPos: [
[ 0, 1 ],
[ 1, 2 ],
[ 2, 3 ],
[ 3, 4 ],
[ 1, 3 ],
[ 2, 5 ],
[ 3, 7 ],
],
eyesPos: [
[ 12, 18 ],
Expand Down
2 changes: 1 addition & 1 deletion cows/elephant-in-snake.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ module.exports = {
],
actionPos: [
[ 0, 3 ],
[ 0, 4 ]
[ 1, 4 ]
]
};
2 changes: 1 addition & 1 deletion cows/eyes.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ module.exports = {
],
actionPos: [
[ 0, 4 ],
[ 0, 5 ]
[ 1, 5 ]
]
};
2 changes: 1 addition & 1 deletion cows/gnu.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
" | .-..__ ___ .--' \\ |\\ \\ |",
" |o o | ``--.___. / `-' \\ \\\\ \\ |",
" `--'' ' .' / / | | | | \\",
" $tongue | | / / | | | mmm",
" | | / / | | | mmm",
" | || | | /| |",
" ( .' \\ \\ || | |",
" | | \\ \\ // / /",
Expand Down
2 changes: 1 addition & 1 deletion cows/koala.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ module.exports = {
],
actionPos: [
[ 0, 2 ],
[ 0, 3 ]
[ 1, 3 ]
]
};
4 changes: 4 additions & 0 deletions cows/moofasa.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,9 @@ module.exports = {
actionPos: [
[ 0, 7 ],
[ 1, 8 ]
],
eyesPos: [
[ 3, 13 ],
[ 3, 14 ]
]
};
2 changes: 1 addition & 1 deletion cows/pony-smaller.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ module.exports = {
],
tonguePos: [
[ 3, 11 ],
[ 3, 11 ]
[ 3, 12 ]
]
};
2 changes: 1 addition & 1 deletion cows/three-eyes.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ module.exports = {
],
tonguePos: [
[ 3, 12 ],
[ 4, 13 ]
[ 3, 13 ]
]
};
2 changes: 1 addition & 1 deletion cows/unipony-smaller.cow.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ module.exports = {
],
tonguePos: [
[ 5, 12 ],
[ 5, 12 ]
[ 5, 13 ]
]
};
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cowsayjs",
"version": "1.1.2",
"version": "1.1.3",
"description": "A nodejs clone of the classic cowsay and cowthink cli commands",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit 1b6da26

Please sign in to comment.