Releases: digitalghost-dev/poke-cli
Releases · digitalghost-dev/poke-cli
v0.11.1
Fixed
- Fix issue of using the
--image | -i
flag without an argument but with a=
at the end. (#96)- For example, running:
poke-cli pokemon cacturne --image=
would not error out the program or print an image. Running this inv0.11.1
returns an error.
- For example, running:
- Commit Change Log: v0.11.1 > v0.11.1
- Associated PRs: #97
v0.11.0
Added
- Added a new flag for generating Pokémon sprites with options for different sizes. (#93)
- Example:
poke-cli pokemon gengar -i=sm
- Example:
- Commit Change Log: v0.10.0 > v0.11.0
- Associated PRs: #94
Contributions
- @ancientcatz - replaced simpleicons image with local
.svg
file.
v0.10.0
v0.9.3
Fixed
- Fixed spacing in damage table when selecting type with the
types
command. This will help the chart fit on smaller terminal windows. (#88)
- Commit Change Log: v0.9.2 > v0.9.3
- Associated PRs: #89
v0.9.2
Fixed
- Fixed various string formatting, specifically with Pokémon names and abilities using a hyphen. (#85)
- Commit Change Log: v0.9.1 > v0.9.2
- Associated PRs: #86
v0.9.1
Fixed
- Fixed error message outputs to use a
lipgloss
border, specifically when using an empty flag (poke-cli pokemon -s --
) and when mistyping a Pokemon's name. (#83)
- Commit Change Log: v0.9.0 > v0.9.1
- Associated PRs: #84
v0.9.0
v0.8.0
Added
- Added a new flag
-s | --stats
to thepokemon
command to view a Pokémon's base stats. (#74) - Added a function to print out the header for any flag option under the
pokemon
command, reducing redundancy. (#75) - Added metrics to the
pokemon
command that includes height and weight. (#76)
- Commit Change Log: v0.7.2 > v0.8.0
- Associated PRs: #73
v0.7.2
Changed
- Changed location of
getTypeColor()
function tocmd/styles.go
. (#71)
Removed
- Removed
httpGet
variable fromconnections/connection.go
. (#72)
- Commit Change Log: v0.7.1 > v0.7.2
- Associated PRs: #73
v0.7.1
Added
- Added a helper method that helps reduce redundancy by passing it into each command's argument validator. (#69)
Changed
- Changed the help menus for the current commands by simplifying the text and verbiage. (#67)
- Changed the
pokemon
andtypes
help menu to include the-h, --help
flag. (#65)
Fixed
- Fixed a bug where misspelling a Pokémon's name would error out but still would run the rest of the program with blank data. (#68)
- Fixed a bug when using the help flag on either the
pokemon
ortypes
command; the program defaults to using themainFlagSet.Usage()
menu instead of the help menu for each command. (#64)
- Commit Change Log: v0.7.0 > v0.7.1
- Associated PRs: #70