-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Offline Mode #9
Comments
This is a great idea and we would definitely like to add it to the codebase as a new feature. |
From another issue:
Had some more thoughts on this, having an option to download only certain ranges of pokemon might be worth it, i.e. by gen or region or a custom list. |
I'd love to collaborate on this, is this currently being developed by someone? |
@pr3c0g I really really appreciate that offer. I'm not currently working on this, so I would love if you want to take this issue up. Part I:Here is really the outline on going about solving this issue: i.e. Introduce the This itself is a nice and small atomic PR, you can see the Part II:That is nice and simple, but what if someone just specifies So something like So based on the above thoughts the next atmoic PR would be to introduce the What happens when the input is Part IIIThis is where a little bit more logic comes into play and to be honest it is also something that starts extending pokeshell. i.e. let's say you have a text file call
and we have pokeshell read from a file like so This might be something that we want to include in the script itself or have helper scripts for. Or say we just write a write a
#!/usr/bin/env bash
pokeshell -s -d all:pikachu+all
pokeshell -b -d all:pikachu+all
pokeshell -a -d all:pikachu+all This downloads all pikachu not shiny/shiny male/female small, big, and animated sprites. Or even: #!/usr/bin/env bash
pokeshell -d all:bulbasaur+all all:ivysaur+all # and so on Or #!/usr/bin/env bash
pokemon_to_download=(
all:ナエトル:all
all:hayashigame:all
all:torterra:all
)
pokeshell -n -d pokemon_to_download TBH since this is bash, folks should be easily able to pipe a file in to pokeshell so maybe this is really no support required and just some info on the README under usage. So this PR would simply be a documentation PR showing folks how to pipe files into pokeshell. Side comment: 🍪 for reading all my thoughts. This was p much a brain dump, but it was a good brainstorming session ig. The 3 PRs mentioned:
can be done in any order, but 1 and 2 close this PR and 3 is user support. |
Update on Part II (add the |
Hey there,
I would love to use this, but it's downloading all the sprites on-demand. I'm using a cellular connection, thus this is not something I can use.
Please add an offline mode!
Thanks!
The text was updated successfully, but these errors were encountered: