Skip to content
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

0.67.2 #320

Merged
merged 2 commits into from
Jul 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions monocle/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ async def login(self, reauth=False):
raise err

self.error_code = '°'
version = 6701
version = 6702
async with self.sim_semaphore:
self.error_code = 'APP SIMULATION'
if conf.APP_SIMULATION:
Expand Down Expand Up @@ -596,9 +596,9 @@ async def call(self, request, chain=True, stamp=True, buddy=True, settings=False
else:
if (not dl_hash
and conf.FORCED_KILL
and dl_settings.settings.minimum_client_version != '0.67.1'):
and dl_settings.settings.minimum_client_version != '0.67.2'):
forced_version = StrictVersion(dl_settings.settings.minimum_client_version)
if forced_version > StrictVersion('0.67.1'):
if forced_version > StrictVersion('0.67.2'):
err = '{} is being forced, exiting.'.format(forced_version)
self.log.error(err)
print(err)
Expand Down
2 changes: 1 addition & 1 deletion solve_captchas.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class AccountManager(BaseManager): pass

await sleep(.6)

request.download_remote_config_version(platform=1, app_version=6701)
request.download_remote_config_version(platform=1, app_version=6702)
request.check_challenge()
request.get_hatched_eggs()
request.get_inventory(last_timestamp_ms=account.get('inventory_timestamp', 0))
Expand Down