You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -22,6 +22,9 @@ View the [documentation](https://docs.poke-cli.com) on the data infrastructure i
22
22
*[Roadmap](#roadmap)
23
23
*[Tested Terminals](#tested-terminals)
24
24
25
+
> ![NOTE]
26
+
> A version 2 is being planned and built that will remove/update some commands and flags. Refer to the changes under the [Roadmap](#version-2-changes) for more information.
27
+
25
28
---
26
29
27
30
## Demo
@@ -99,11 +102,11 @@ Cloudsmith is a fully cloud-based service that lets you easily create, store, an
99
102
3. Choose how to interact with the container:
100
103
* Run a single command and exit:
101
104
```bash
102
-
docker run --rm -it digitalghostdev/poke-cli:v1.10.2<command> [subcommand] [flag]
105
+
docker run --rm -it digitalghostdev/poke-cli:v1.10.3<command> [subcommand] [flag]
# placed into the /app directory, run the program with './poke-cli'
108
111
# example: ./poke-cli ability swift-swim
109
112
```
@@ -112,13 +115,13 @@ Cloudsmith is a fully cloud-based service that lets you easily create, store, an
112
115
> The `card`command renders TCG card images using your terminal's graphics protocol. When running inside Docker, pass your terminal's environment variables so image rendering works correctly:
113
116
>```bash
114
117
># Kitty
115
-
> docker run --rm -it -e TERM -e KITTY_WINDOW_ID digitalghostdev/poke-cli:v1.10.2 card
118
+
> docker run --rm -it -e TERM -e KITTY_WINDOW_ID digitalghostdev/poke-cli:v1.10.3 card
116
119
>
117
120
> # WezTerm, iTerm2, Ghostty, Konsole, Rio, Tabby
118
-
> docker run --rm -it -e TERM -e TERM_PROGRAM digitalghostdev/poke-cli:v1.10.2 card
121
+
> docker run --rm -it -e TERM -e TERM_PROGRAM digitalghostdev/poke-cli:v1.10.3 card
119
122
>
120
123
> # Windows Terminal (Sixel)
121
-
> docker run --rm -it -e WT_SESSION digitalghostdev/poke-cli:v1.10.2 card
124
+
> docker run --rm -it -e WT_SESSION digitalghostdev/poke-cli:v1.10.3 card
122
125
> ```
123
126
> If your terminal is not listed above, image rendering is not supported inside Docker.
124
127
@@ -235,6 +238,16 @@ Below is a list of the planned/completed commands and flags:
235
238
- [x] `tcg`: get data about TCG tournaments.
236
239
- [x] `types`: get data about a specific typing.
237
240
241
+
### Version 2 Changes
242
+
The following planned changes in `v2`:
243
+
244
+
- `pokemon <name> -t | --types` — removed; typing is included by default.
245
+
- `pokemon <name> --defense` - being renamed to `--defenses` to keep consistency with other flags in the `pokemon` command.
246
+
- `natures` — moves to a flag under a new `mechanics` command.
247
+
- `tcg` — moves to a new `comp` command (covers competitive TCG *and* VGC data).
248
+
- Adding `pflag` library to enforce POSIX style flags.
0 commit comments