Skip to content

Releases: digitalghost-dev/poke-cli

v0.11.1

13 Jan 19:13
43a5352
Compare
Choose a tag to compare

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 in v0.11.1 returns an error.

v0.11.0

07 Jan 05:36
9f9690a
Compare
Choose a tag to compare

Added

  • Added a new flag for generating Pokémon sprites with options for different sizes. (#93)
    • Example: poke-cli pokemon gengar -i=sm


Contributions

  • @ancientcatz - replaced simpleicons image with local .svg file.

v0.10.0

26 Dec 23:13
cc4ab7b
Compare
Choose a tag to compare

Added

  • Added total base points to output of the -s | --stats flag. (#87)
  • Added a navigation menu while selecting a type. (#90)
  • Added a natures command that prints out a table of all natures and affected stats. (#91)

v0.9.3

16 Dec 23:43
fd01527
Compare
Choose a tag to compare

Fixed

  • Fixed spacing in damage table when selecting type with the types command. This will help the chart fit on smaller terminal windows. (#88)

v0.9.2

14 Dec 23:20
7957cfe
Compare
Choose a tag to compare

Fixed

  • Fixed various string formatting, specifically with Pokémon names and abilities using a hyphen. (#85)

v0.9.1

09 Dec 05:37
1413337
Compare
Choose a tag to compare

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)

v0.9.0

09 Dec 03:41
18350ce
Compare
Choose a tag to compare

Added

  • Added a new flag -v | --version to check the current version of the tool. (#78)
  • Added the number of moves belonging to a specified type when using the types command. (#79)

Security

  • Secured against G107 (CWE-88). (#80)

v0.8.0

27 Nov 22:09
2dd8400
Compare
Choose a tag to compare

Added

  • Added a new flag -s | --stats to the pokemon 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)

v0.7.2

22 Nov 00:03
Compare
Choose a tag to compare

Changed

  • Changed location of getTypeColor() function to cmd/styles.go. (#71)

Removed

  • Removed httpGet variable from connections/connection.go. (#72)

v0.7.1

13 Nov 00:00
Compare
Choose a tag to compare

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 and types 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 or types command; the program defaults to using the mainFlagSet.Usage() menu instead of the help menu for each command. (#64)