-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Dev #1995
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Attempting to solve the stale token issue by re-issuing if the token has less than 60 seconds until expiry * Fixes remaing time check * Reset pgoapi when rpc token is stale * Refactored session expiry check
* Fixed sleep to use floats again * Fixed sleep to use floats again #2 * Refactored jitter to have its own function to be used elsewhere * Fixes SpiralNavigation skipping waypoints * Fixing stationary movements
* Fixed sleep to use floats again * Fixed sleep to use floats again #2 * Refactored jitter to have its own function to be used elsewhere * Fixes SpiralNavigation skipping waypoints * Fixing stationary movements * Improved StepWalker (distances lower than speed should be walked directly)
* Attempting to add location-%.json back to bot for web * Web Map should track bots now. * Added data/last-location-%username%.json as well
If not fetched over https and git ssh isnt setup submodule cant be cloned. If you have already tried to initiate / update using git@github.com, follow instructions below and initiate/update again; 2. Open ".git", go to "config" file, and you will find something like this: [submodule "web"] url = git@github.com:OpenPoGo/OpenPoGoWeb.git change line to: url = https://github.com/OpenPoGo/OpenPoGoWeb.git
Thanks to dmateusp who made the big initial pokefilter list, this is the merged example version that could be used
remove entires that has been deleted, moved, or migrated
* Optimized imports * Replaced tabs with spaces to fix inconsistent indentation.
…okecly.py (#912) * Fixed a bug where the bot crashed if 'catch' or 'release' wasn't specified in config.json * Added install.sh and run.sh
* fixed a bug with zero values in release_config causing bot to crash * added evolve all option * added evolve all option * added evolve all option * added to contrib. list * sorting pokemons by cp * stepper update from upstream * much improved evolve all * Update README.md * updated config example * longer sleeps - to avoid flooding the servers * mixed IV and CP evolving * Update README.md * modified config example * shorter sleep duration after failed evolve. Should make things faster * shorter sleep duration after success evolve. Should make things faster * Update README.md
Adds a navigator that walks along specified points.
* Adding a TreeConfigBuilder and tests * Adding mock to the requirements * not actually using mock or patch
* fixes for ivs and bad var * Custom response/early return for error * added check for blank ids * added temp lists for duplication mitigation
* Refactored Path Navigator, now supports geopositioning resolution * Update path example config, for new format * Fixed typo in dict * Fixed Ref
…item id's (#1733) * Updated item_filter in config.json.example to use item names instead of item id's * Config.json item_list verification * Merge remote-tracking branch 'upstream/dev' into dev Conflicts: pokemongo_bot/cell_workers/recycle_items.py * Adding recycle_items back Changed error return type
* Configure the tasks from config.json * Linking error to wiki
* Supporting task level configuration * Updating sample config files * Providing example of how to configure tasks in the example configs
* Allows users to enter both item ID's and item names in the item_filter. * no message
hoanghuynh
pushed a commit
to hoanghuynh/PokemonGo-Bot
that referenced
this pull request
Sep 28, 2016
Remove lured pokemon toggle, fix pokestop with no lured pokemon
hoanghuynh
pushed a commit
to hoanghuynh/PokemonGo-Bot
that referenced
this pull request
Sep 28, 2016
* show pokemon icon in select2 elements * vertical-align class * Add support for arbitrary pokemon sprites (PokemonGoF#1886) * Add support for arbitrary pokemon sprites * Use var instead of let * Fix indentation * Update select box listener for newer code * Auto-resize icons depending on zoom depth * Fix indentation * Make icon cropping less aggressive, as it's only due to rounding errors * Merged in changes from master README * use sprite with css classes (not tested yet) * better like this. * resize + vertical align * Add geolocation capability to mobile route (PokemonGoF#1687) * Allow client to specify location of origin * Conditionally get device's location for mobile route * Reset app.min.js as it didn't change * Add dynamic countdown timer and names * Fix lured Pokéstops (PokemonGoF#1943) * Update README.md * easy-setup.sh: updates and cleanup (PokemonGoF#1836) * easy-setup.sh: updates and cleanup - Check for debain based OS otherwise quit. - Use already bundled get-pip.py over debian's. - Use sudo in commands instead of exiting. - Be a little smarter with the creation of credentials. - Be more verbose for the user. - Declare script as shell script - Give script executable permissions. * easy-setup.sh: remove sudo from pip * fixed retrieving and storing values in localStorage (PokemonGoF#1694) * Changed gym icons into shields/badges (PokemonGoF#1946) * Changed gym icons into shields/badges * Added Harmony as gym shield/badge * Revert "Fix lured Pokéstops" (PokemonGoF#2033) * Loading pokemons hangs, when Notification is not supported in browser (PokemonGoF#1985) * Add Id to dropdown. (PokemonGoF#1958) * Fix pokemon filter dropdown (PokemonGoF#2042) * value was removed in AHAAAAAAA/PokemonGo-Map@b4c36a5 * Skip notification when merely redrawing existing pokemon (PokemonGoF#2017) * Fix order of loading map.js and the map api (PokemonGoF#2043) * Let's load map.js first. The callback for the api requires initMap to be defined or things break. * Furthermore, defer, but don't async, the api call so we're sure everything is ready to go before it fires. * Doesn't hammer the server when map download fails. (PokemonGoF#2040) * Higher navbar (PokemonGoF#1515) (PokemonGoF#2050) * Update main.css * Update app.min.css * Update _nav.scss Rebase of PokemonGoF#1515 * Fix up this configuration mess (PokemonGoF#2021) * Kill credentials.json with fire * Match up our command line options with config.ini options * Switch to ConfigArgParser to make the task of overriding config.ini options via command line parameters easier * This provides a much easier long-term method of maintaining config/argument options * Travis tests (PokemonGoF#2056) * Travis tests * Amended script tests per Chlodochar's suggestion * Remove lured pokemon toggle (PokemonGoF#1995) Remove lured pokemon toggle, fix pokestop with no lured pokemon * Fix missing bracket * Revert "Higher navbar (PokemonGoF#1515) (PokemonGoF#2050)" (PokemonGoF#2082) There were problems with scrolling in the sidebar * removed app.min.js and app.min.css as they are gitignored (PokemonGoF#2034) * Fixes BOM marker with setup.bat on Windows (PokemonGoF#2108) Currently, the Out-File PowerShell Cmdlet breaks config.ini by turning it into a Little Endian UTF-16 file, in turn breaking the script. Replaced the Out-File Cmdlet with a python in-line replace of a file (I mean, we already have python, so why not make full use of it...?) * Revert "removed app.min.js and app.min.css as they are gitignored" (PokemonGoF#2114) * Update config.ini.example (PokemonGoF#2149) Spelling error correction. * outsource sprite css * show pokemon icon in select2 elements * vertical-align class * use sprite with css classes (not tested yet) * better like this. * resize + vertical align * outsource sprite css
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Short Description:
Fixes: