-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathCHANGELOG.md
More file actions
2813 lines (2679 loc) · 317 KB
/
Copy pathCHANGELOG.md
File metadata and controls
2813 lines (2679 loc) · 317 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Change Log
## [Unreleased](https://github.com/PokemonGoF/PokemonGo-Bot/tree/HEAD)
[Full Changelog](https://github.com/PokemonGoF/PokemonGo-Bot/compare/0.67.2...HEAD)
**Closed issues:**
- Access Web GUI off of local network [\#6205](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6205)
- Optimizer is transferring \(almost\) everything! [\#6202](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6202)
- Timezone issue - with requirements [\#6196](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6196)
- Future Request - New badges data in inventory [\#6188](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6188)
- Mass Spam dead/heal pokemon when no revives/potions [\#6183](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6183)
- Heal pokemon Log interval doesnt work [\#6182](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6182)
- Bot is stopping/crashing when "TransferPokemon" in config.json is set to true [\#6177](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6177)
- all pokestop in range was already visited [\#6163](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6163)
- Catch limiter makes bot stop moving [\#6157](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6157)
- Smart pinap function [\#6131](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6131)
- Dev branch: sudden break when arrived at Gym ... [\#6123](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6123)
- Non stop asking to update pogo api to latest version [\#6120](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6120)
- \[GymPokemon} Bot waits too long when waiting for deployment lockout [\#6115](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6115)
- Random freezing of bot [\#6104](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6104)
- complete\_tutorial.py appears to have issue [\#6098](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6098)
- API Change? [\#6060](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6060)
- \[Solved - Please Close\] Need help with a second bot in my Web UI \(propably not a bug, but my fault in a config\) [\#6055](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6055)
- Proposal: New Snipe Mode [\#6046](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6046)
- Exception AttributeError: "'\_SocketDuckForFd' object has no attribute '\_closed'" [\#5910](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5910)
**Merged pull requests:**
- killswitch addded, bugfixes [\#6208](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6208) ([Xairooo](https://github.com/Xairooo))
- Dev merge to master [\#6207](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6207) ([solderzzc](https://github.com/solderzzc))
- Killswitch [\#6206](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6206) ([MerlionRock](https://github.com/MerlionRock))
- updated web again [\#6204](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6204) ([nbq](https://github.com/nbq))
- Added Golden Razz Berries Support [\#6203](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6203) ([MerlionRock](https://github.com/MerlionRock))
- Warning Patch & Login Enhancement [\#6201](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6201) ([MerlionRock](https://github.com/MerlionRock))
- Adding proxy support to the bot [\#6200](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6200) ([nbq](https://github.com/nbq))
- web update [\#6199](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6199) ([nbq](https://github.com/nbq))
- Timezone lib [\#6197](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6197) ([Jcolomar](https://github.com/Jcolomar))
- Read me update [\#6195](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6195) ([MerlionRock](https://github.com/MerlionRock))
- Evolve for xp gen2 [\#6193](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6193) ([MerlionRock](https://github.com/MerlionRock))
- brought web up to date [\#6192](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6192) ([nbq](https://github.com/nbq))
- Tele snipe change [\#6191](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6191) ([MerlionRock](https://github.com/MerlionRock))
- Locale by location [\#6187](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6187) ([MerlionRock](https://github.com/MerlionRock))
- Update Legendary Pokemon Buddy Distance [\#6186](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6186) ([MerlionRock](https://github.com/MerlionRock))
- Dev merge to master [\#6185](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6185) ([solderzzc](https://github.com/solderzzc))
- Added optional hash end point [\#6181](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6181) ([MerlionRock](https://github.com/MerlionRock))
- User Friendly Api warning \(Dev\) [\#6180](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6180) ([goedzo](https://github.com/goedzo))
- User Friendly Api Warning \(master\) [\#6179](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6179) ([goedzo](https://github.com/goedzo))
- Dev [\#6178](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6178) ([Jcolomar](https://github.com/Jcolomar))
- Upgraded to 0.69.1 api [\#6176](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6176) ([goedzo](https://github.com/goedzo))
- Added Incense to telegram [\#6175](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6175) ([TheCannings](https://github.com/TheCannings))
- Updated Sniper and Telegram Features [\#6173](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6173) ([MerlionRock](https://github.com/MerlionRock))
- changed runMultiBot.sh to be executable [\#6172](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6172) ([nbq](https://github.com/nbq))
- clarify some steps in manual install [\#6171](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6171) ([nbq](https://github.com/nbq))
- Telegram Settings added [\#6170](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6170) ([Xairooo](https://github.com/Xairooo))
- new settings, comments added [\#6169](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6169) ([Xairooo](https://github.com/Xairooo))
- revert multibot shell looping [\#6168](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6168) ([nbq](https://github.com/nbq))
- Line 46 spelling error. [\#6167](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6167) ([VoIP](https://github.com/VoIP))
- Fixing proxies [\#6166](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6166) ([Xairooo](https://github.com/Xairooo))
- Patch 1 [\#6165](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6165) ([Xairooo](https://github.com/Xairooo))
- Fix pgo requirement in multibot shell [\#6164](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6164) ([nbq](https://github.com/nbq))
- Added only\_catch\_better\_iv and only\_catch\_better\_cp [\#6162](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6162) ([davidakachaos](https://github.com/davidakachaos))
- Web folder update and required configuration script updates [\#6161](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6161) ([nbq](https://github.com/nbq))
- fix last\_km\_awarded error for new account [\#6160](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6160) ([Alexus230](https://github.com/Alexus230))
- Dev merge to master [\#6159](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6159) ([solderzzc](https://github.com/solderzzc))
- Merlionrock fixed tutorial completion [\#6156](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6156) ([nbq](https://github.com/nbq))
- Fixed Multibot Windows Batch File [\#6155](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6155) ([nbq](https://github.com/nbq))
- changed logic to check if move\_to\_fort is stuck [\#6153](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6153) ([ChiefM3](https://github.com/ChiefM3))
- Revert Changes [\#6152](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6152) ([MerlionRock](https://github.com/MerlionRock))
- Updated sniping logic [\#6151](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6151) ([MerlionRock](https://github.com/MerlionRock))
- Crvfts patch 1 [\#6150](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6150) ([crvfts](https://github.com/crvfts))
- Limit the log spam to a per 5 min warning [\#6148](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6148) ([davidakachaos](https://github.com/davidakachaos))
- Fix "exit\_on\_limit\_reached" error [\#6147](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6147) ([MerlionRock](https://github.com/MerlionRock))
- Catch Limiter Bug Fix [\#6146](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6146) ([MerlionRock](https://github.com/MerlionRock))
- Add files via upload [\#6145](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6145) ([Xairooo](https://github.com/Xairooo))
- Fixed typo [\#6144](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6144) ([davidakachaos](https://github.com/davidakachaos))
- Lowered the default catch limit to 500 [\#6143](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6143) ([davidakachaos](https://github.com/davidakachaos))
- Improved handling of Daily Catch Limit [\#6142](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6142) ([davidakachaos](https://github.com/davidakachaos))
- Dev [\#6140](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6140) ([Xairooo](https://github.com/Xairooo))
- Ignore legendaries for in gyms [\#6139](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6139) ([MerlionRock](https://github.com/MerlionRock))
- Dev [\#6138](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6138) ([Xairooo](https://github.com/Xairooo))
- Dev [\#6137](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6137) ([Xairooo](https://github.com/Xairooo))
- Fix now correct for \#6123 [\#6136](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6136) ([goedzo](https://github.com/goedzo))
- Update Windows manual\_installation [\#6135](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6135) ([Jcolomar](https://github.com/Jcolomar))
- Smart pinap function [\#6133](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6133) ([ChiefM3](https://github.com/ChiefM3))
- added map config in setup.sh [\#6132](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6132) ([nbq](https://github.com/nbq))
- Updated Catch Limiter [\#6128](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6128) ([MerlionRock](https://github.com/MerlionRock))
- Update and fixs typo consistence [\#6127](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6127) ([Jcolomar](https://github.com/Jcolomar))
- Bot demo image [\#6126](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6126) ([nbq](https://github.com/nbq))
- Fixing \#6123 [\#6125](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6125) ([goedzo](https://github.com/goedzo))
- Map update [\#6124](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6124) ([nbq](https://github.com/nbq))
- Cleanup manual install document and fix windows updater batch file [\#6122](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6122) ([nbq](https://github.com/nbq))
- Update run.sh with version change [\#6121](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6121) ([MerlionRock](https://github.com/MerlionRock))
- Merge Dev to Master [\#6119](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6119) ([MerlionRock](https://github.com/MerlionRock))
- Forcing PGO Api upgrade [\#6118](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6118) ([goedzo](https://github.com/goedzo))
- Fixing some freezing issues [\#6117](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6117) ([goedzo](https://github.com/goedzo))
- Hotfix 2 for gyms [\#6114](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6114) ([goedzo](https://github.com/goedzo))
- Hotfixing gympokemon. Application crahses when deploying a pokemon [\#6113](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6113) ([goedzo](https://github.com/goedzo))
- Changed the names of some parameters [\#6111](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6111) ([davidakachaos](https://github.com/davidakachaos))
- Notify of shortage once and dont heal max health Pokemon [\#6110](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6110) ([davidakachaos](https://github.com/davidakachaos))
- Gym changes [\#6109](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6109) ([davidakachaos](https://github.com/davidakachaos))
- Fix install readme [\#6107](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6107) ([nbq](https://github.com/nbq))
- Removing slack mention from Readme [\#6106](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6106) ([nbq](https://github.com/nbq))
- Cleanup encrypt references in linux, mac and docker setups [\#6105](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6105) ([nbq](https://github.com/nbq))
- removed encrypt references from batch files [\#6103](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6103) ([nbq](https://github.com/nbq))
- Implementing Eventmanager for Web-ui. [\#6102](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6102) ([goedzo](https://github.com/goedzo))
- Add: Web-ui status messages in a json file [\#6101](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6101) ([goedzo](https://github.com/goedzo))
## [0.67.2](https://github.com/PokemonGoF/PokemonGo-Bot/tree/0.67.2) (2017-07-18)
[Full Changelog](https://github.com/PokemonGoF/PokemonGo-Bot/compare/0.67.1...0.67.2)
**Implemented enhancements:**
- Nickname, best moveset based on dps [\#4871](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4871)
**Closed issues:**
- request.get\_gym\_details fails with \[pokemongo\_bot.api\_wrapper\] \[WARNING\] Server seems to be busy or offline - try again - 1/15 [\#6081](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6081)
- 0.67.2 [\#6075](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6075)
- Server seems to be busy or offline - only for Google login [\#6070](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6070)
- fast movesets [\#6069](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6069)
- UnicodeDecodeError: 'ascii' codec can't decode byte 0x9c in position 1: ordinal not in range\(128\) [\#6068](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6068)
- Docker image does not build on new version of windows docker [\#6063](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6063)
- Lots of work coming... What shall we implement? [\#6059](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6059)
- Modified client software warning [\#6025](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6025)
- str AttributeError [\#6015](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6015)
- UnicodeEncodeError: 'ascii' codec can't encode character u'\xf1' [\#6014](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6014)
- Upgrading but not upgrading? [\#6013](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6013)
- No JSON object could be decoded [\#5984](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5984)
- BadHashRequestException [\#5981](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5981)
- Dockerfile crash \(does not include config files correctly\) [\#5952](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5952)
**Merged pull requests:**
- Dev merge to master [\#6097](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6097) ([solderzzc](https://github.com/solderzzc))
- Quick fix [\#6096](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6096) ([davidakachaos](https://github.com/davidakachaos))
- Update README.md [\#6095](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6095) ([Jcolomar](https://github.com/Jcolomar))
- Fixing missed events [\#6093](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6093) ([davidakachaos](https://github.com/davidakachaos))
- Move to fort and gyms [\#6092](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6092) ([davidakachaos](https://github.com/davidakachaos))
- 0.67.2 and gym support [\#6091](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6091) ([goedzo](https://github.com/goedzo))
- Fixed all bugs in latest HealPokemon Module [\#6090](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6090) ([goedzo](https://github.com/goedzo))
- Introducing HealPokemon [\#6086](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6086) ([davidakachaos](https://github.com/davidakachaos))
- Docker fix for \#6063 [\#6085](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6085) ([goedzo](https://github.com/goedzo))
- Full API Support for 0.67.2 based on latest compile from POGOProtos [\#6082](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6082) ([goedzo](https://github.com/goedzo))
- Updated Character Information [\#6080](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6080) ([MerlionRock](https://github.com/MerlionRock))
- Fix for bad\_pokemon [\#6079](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6079) ([davidakachaos](https://github.com/davidakachaos))
- Move adjustments for Movesets [\#6078](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6078) ([davidakachaos](https://github.com/davidakachaos))
- check\_niantic\_api logic change [\#6077](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6077) ([MerlionRock](https://github.com/MerlionRock))
- Dev merge to master [\#6076](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6076) ([solderzzc](https://github.com/solderzzc))
- Transfer fix! [\#6074](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6074) ([davidakachaos](https://github.com/davidakachaos))
- Pokemonhunter changes [\#6073](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6073) ([davidakachaos](https://github.com/davidakachaos))
- BadPokemon worker / Red Slashed Pokemon [\#6072](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6072) ([davidakachaos](https://github.com/davidakachaos))
- Inbox call added to heartbeat [\#6071](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6071) ([davidakachaos](https://github.com/davidakachaos))
- Dev merge to master [\#6066](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6066) ([solderzzc](https://github.com/solderzzc))
- Spinning of Gyms + new loot API [\#6062](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6062) ([davidakachaos](https://github.com/davidakachaos))
## [0.67.1](https://github.com/PokemonGoF/PokemonGo-Bot/tree/0.67.1) (2017-06-28)
[Full Changelog](https://github.com/PokemonGoF/PokemonGo-Bot/compare/TAG_11122016_MASTER...0.67.1)
**Implemented enhancements:**
- Release and catch based on NCP [\#4963](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4963)
- Add requirement validation before starting [\#4912](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4912)
- Deploying of lures if available [\#6049](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6049) ([MerlionRock](https://github.com/MerlionRock))
- Disable hunting when no more balls [\#5871](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5871) ([davidakachaos](https://github.com/davidakachaos))
**Fixed bugs:**
- Add requirement validation before starting [\#4912](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4912)
**Closed issues:**
- API check failed with new key \(but not really?\) [\#6053](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6053)
- AttributeError: 'Namespace' object has no attribute 'brokeName' [\#6047](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6047)
- UnicodeDecodeError: 'ascii' codec can't decode byte 0x9c in position 1: ordinal not in range\(128\) [\#6026](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6026)
- How to stop transfering of your good pokemon ? Can somebody show me his code ? [\#6004](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6004)
- Bot crash after update to latest 0.61 API [\#6001](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6001)
- \[Feature Request\] Keep\_to\_evolve Pokemon [\#6000](https://github.com/PokemonGoF/PokemonGo-Bot/issues/6000)
- Get rid of the evolved pokemons after XP evolve \(\#5876\) [\#5999](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5999)
- API Updated to 0.59.1. Wait for PR [\#5996](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5996)
- Bulk transfer crashes the bot [\#5992](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5992)
- \[Feature request\] auto-snipe from a discord channel [\#5989](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5989)
- \[Feature Request\] pinap on low lvl mons [\#5986](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5986)
- I got this error help please !! [\#5985](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5985)
- Evolve not properly working? [\#5983](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5983)
- please guide for download the program [\#5978](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5978)
- Shiny magikarp request [\#5975](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5975)
- How to modify the simulation device information [\#5974](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5974)
- Is it possible to use bot without purchasing the "hash"? [\#5973](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5973)
- Server busy or offline, reconnecting [\#5972](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5972)
- Bot gets stuck after connecting to google analytics [\#5971](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5971)
- Login process failed: Invalid JSON And location error [\#5970](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5970)
- "No auth argument specified" and "No config argument specified" [\#5969](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5969)
- Unexpected moveset \[Mud Shot, Mud Bomb\] for \#50 Diglett [\#5966](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5966)
- Server busy or offline, reconnecting in xxx seconds [\#5965](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5965)
- api version check. [\#5961](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5961)
- inventory was not initialized [\#5959](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5959)
- Acid missing as Koffling's fast attack in pokemon.json [\#5949](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5949)
- ImportError: No module named pogoprotos [\#5944](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5944)
- TODO: New berries support [\#5942](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5942)
- Info needed - How does Sniping work ? [\#5939](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5939)
- ISSUE - Hang at getting hash API version [\#5938](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5938)
- 'WSAECONNREFUSED' all the time [\#5934](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5934)
- Server seems to be busy or offline - try again [\#5933](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5933)
- Server Issue or ban message? [\#5930](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5930)
- Buddy Enabled Causes Error on Exit [\#5928](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5928)
- Bot not working after startup [\#5925](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5925)
- Unrecognized MoveSrt [\#5923](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5923)
- Energy in moves - how to calculate? [\#5921](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5921)
- Could not retrieve token "location" [\#5920](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5920)
- Bot Crashes after receiving a Sun Stone from Pokestop [\#5919](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5919)
- Help Needed with pokemon.json [\#5917](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5917)
- Bot stopped working [\#5916](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5916)
- Gen 2 Pokemon needs to be updated [\#5914](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5914)
- Gen 2 [\#5913](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5913)
- ImportError: No module named packaging.version [\#5912](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5912)
- bot not running [\#5909](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5909)
- Bot crashes if hunter configuration is not specified [\#5907](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5907)
- AttributeError: 'PokemonGoBot' object has no attribute 'hunter\_locked\_target' [\#5906](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5906)
- API 0.55 - Unauthorized at startup [\#5905](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5905)
- API v0.55.0 - API check fail [\#5900](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5900)
- changing only some booleans in the example config and it returns a completely irational error \(VIDEO\) [\#5899](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5899)
- Can't run without embedded server [\#5898](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5898)
- how to get encrypt.so and encrypt.dll or encrypt\_64.dll ? [\#5894](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5894)
- Bot not starting using docker [\#5893](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5893)
- Telegram Broken [\#5891](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5891)
- WebUI stuck in germany. not updating [\#5890](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5890)
- Bot not walking/doing anything after successful login [\#5889](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5889)
- Version Conflict six\>=1.10.0 [\#5887](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5887)
- \[ISSUE\] Necrobot tries to use an exhausted and concludes it is soft banned [\#5886](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5886)
- Error with the config file [\#5885](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5885)
- Stardust count error on new account [\#5883](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5883)
- Pokemon Go has been forced updated to 0.53 [\#5882](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5882)
- pgoapi code change is in conflict with bot and virtuaenv [\#5868](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5868)
- Repeatedly get "Request for new Access Token failed! Logged out..." [\#5867](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5867)
- No movement in bot. Position is not updating. [\#5865](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5865)
- Key not found error [\#5864](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5864)
- Sniper.py is not able to verify the pokemon [\#5863](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5863)
- Automatic Installation [\#5859](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5859)
- ValueError: Attack 242 not found in FastAttacks [\#5857](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5857)
- Is this project alive? [\#5855](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5855)
- An incompatible websocket library is conflicting with the one we need [\#5852](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5852)
- \[ERROR\] Sentry responded with an error: 'ascii' codec can't decode byte 0x9c in position 1 [\#5851](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5851)
- TO DEVS [\#5850](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5850)
- Error when run pokecli.py [\#5847](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5847)
- API out of date at login procedure [\#5846](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5846)
- incompatible version of websocket websocket-client from fresh install [\#5845](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5845)
- We have detected a Pokemon API Change. The current API version 0.45.0 is no longer supported. Exiting... [\#5844](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5844)
- Current API version no longer supported [\#5841](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5841)
- ISSUE: ValueError: Attack 242 not found in FastAttacks \(Ditto Related?!\) [\#5840](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5840)
- virtualenv not installed \(Arch\) [\#5838](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5838)
- feature new CP nerf/buff [\#5832](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5832)
- \[ERROR\] Without error info [\#5831](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5831)
- This line fails: assert max\(int\(self.cp\_exact\), 10\) == self.cp [\#5830](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5830)
- Release bug that released all Pokemon in my bag [\#5827](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5827)
- \[FEATURE REQUEST\] Kill Switch - API Version Validation [\#5825](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5825)
- How can I tell if I'm using the 0.45 hash? [\#5820](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5820)
- How to run bot with mutliple users ? [\#5816](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5816)
- \[FEATURE REQUEST\] Telegram subscribe list save to config? [\#5814](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5814)
- Error while updating to latest commit [\#5813](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5813)
- 0.45 API Update - Fix [\#5809](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5809)
- libencrypt and libniantichash missing for raspberry pi and linux-32 [\#5808](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5808)
- \[ERROR\] Could not find darwin hashing library libniantichash-osx-64.so on MacOS [\#5807](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5807)
- Bot does not start [\#5806](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5806)
- Unable to pip install reqirments.txt [\#5802](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5802)
- API Level 0.45 may be enforced soon. Is botting still safe? [\#5801](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5801)
- Optimal config to avoid detection? [\#5792](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5792)
- Wrong ELF class [\#5786](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5786)
**Merged pull requests:**
- 0.67.1 Fast update [\#6061](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6061) ([Jcolomar](https://github.com/Jcolomar))
- \[WIP\] Use create\_request\(\) and call\(\) instead request directly [\#6058](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6058) ([walaoaaa1234](https://github.com/walaoaaa1234))
- Filter out disabled or closed forts [\#6056](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6056) ([davidakachaos](https://github.com/davidakachaos))
- Merge Dev to Master [\#6054](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6054) ([MerlionRock](https://github.com/MerlionRock))
- Pokemon Hunter - Mobster and Trash Hunter [\#6052](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6052) ([davidakachaos](https://github.com/davidakachaos))
- Bug Fix [\#6051](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6051) ([MerlionRock](https://github.com/MerlionRock))
- Captcha Solving [\#6050](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6050) ([MerlionRock](https://github.com/MerlionRock))
- Fixes: login issue, followpath with enable [\#6045](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6045) ([MerlionRock](https://github.com/MerlionRock))
- Improved error when hash key is expired [\#6043](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6043) ([davidakachaos](https://github.com/davidakachaos))
- \[BUGFIX\] Corrected event [\#6042](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6042) ([davidakachaos](https://github.com/davidakachaos))
- Various fixes and changes [\#6041](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6041) ([davidakachaos](https://github.com/davidakachaos))
- Dev merge to master [\#6039](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6039) ([solderzzc](https://github.com/solderzzc))
- Exceptions Added [\#6038](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6038) ([MerlionRock](https://github.com/MerlionRock))
- Big fix [\#6036](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6036) ([MerlionRock](https://github.com/MerlionRock))
- Improve handling of softban [\#6035](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6035) ([davidakachaos](https://github.com/davidakachaos))
- New Follow Path Option [\#6034](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6034) ([MerlionRock](https://github.com/MerlionRock))
- Fix crashes when no warning [\#6033](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6033) ([MerlionRock](https://github.com/MerlionRock))
- Warning message if received [\#6032](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6032) ([MerlionRock](https://github.com/MerlionRock))
- Disable FollowPath if hunting Pokemon [\#6031](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6031) ([davidakachaos](https://github.com/davidakachaos))
- Added Time Till Level stat [\#6028](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6028) ([davidakachaos](https://github.com/davidakachaos))
- Added ability for Optimizer to handle favorites [\#6027](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6027) ([davidakachaos](https://github.com/davidakachaos))
- Correcting HP of Pokemon [\#6024](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6024) ([davidakachaos](https://github.com/davidakachaos))
- Remove error for empty reply in sniper feed [\#6022](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6022) ([snooter](https://github.com/snooter))
- Added bash script to make auto restart [\#6019](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6019) ([lepeli](https://github.com/lepeli))
- Update of installation.md [\#6018](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6018) ([lepeli](https://github.com/lepeli))
- Dev merge to master [\#6017](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6017) ([solderzzc](https://github.com/solderzzc))
- Fix Markdown in documentation [\#6016](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6016) ([per1234](https://github.com/per1234))
- Optimizer powerup fix [\#6012](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6012) ([davidakachaos](https://github.com/davidakachaos))
- Optimizer fix \[Now against DEV\] [\#6011](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6011) ([davidakachaos](https://github.com/davidakachaos))
- Using proxy with docker [\#6010](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6010) ([lepeli](https://github.com/lepeli))
- Revert "Optimizer fix" [\#6009](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6009) ([pogarek](https://github.com/pogarek))
- Stop hunting Ivysaurs when we need a Bulbasaur [\#6008](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6008) ([davidakachaos](https://github.com/davidakachaos))
- \[CatchLimiter\] Resume at X balls [\#6007](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6007) ([davidakachaos](https://github.com/davidakachaos))
- Optimizer fix [\#6006](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6006) ([davidakachaos](https://github.com/davidakachaos))
- API Watchdog Update [\#6005](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6005) ([MerlionRock](https://github.com/MerlionRock))
- Merge to Master [\#6003](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6003) ([MerlionRock](https://github.com/MerlionRock))
- Watchdog API Fix [\#6002](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6002) ([walaoaaa1234](https://github.com/walaoaaa1234))
- Bulktransfer fix \(mistake\) [\#5998](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5998) ([walaoaaa1234](https://github.com/walaoaaa1234))
- PgoAPI Change [\#5997](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5997) ([MerlionRock](https://github.com/MerlionRock))
- Bulktransfer improve [\#5995](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5995) ([walaoaaa1234](https://github.com/walaoaaa1234))
- Bulktransfer Fix [\#5994](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5994) ([walaoaaa1234](https://github.com/walaoaaa1234))
- Dev merge to Master [\#5993](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5993) ([solderzzc](https://github.com/solderzzc))
- \[Feature\] Update Hash Stats [\#5991](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5991) ([walaoaaa1234](https://github.com/walaoaaa1234))
- Update Pinap Uses [\#5990](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5990) ([MerlionRock](https://github.com/MerlionRock))
- Bulktransfer Fix [\#5988](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5988) ([walaoaaa1234](https://github.com/walaoaaa1234))
- Bulk Transfer [\#5987](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5987) ([walaoaaa1234](https://github.com/walaoaaa1234))
- Dev to master [\#5980](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5980) ([pogarek](https://github.com/pogarek))
- Adding Shiny attribute to Pokemon [\#5979](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5979) ([davidakachaos](https://github.com/davidakachaos))
- Dev to master [\#5977](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5977) ([pogarek](https://github.com/pogarek))
- updating pokemon.json [\#5976](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5976) ([pogarek](https://github.com/pogarek))
- Dev to master [\#5968](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5968) ([pogarek](https://github.com/pogarek))
- Added Mud Shot to Diglett [\#5967](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5967) ([MerlionRock](https://github.com/MerlionRock))
- Dev to Master [\#5964](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5964) ([pogarek](https://github.com/pogarek))
- Changes to using berries [\#5963](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5963) ([MerlionRock](https://github.com/MerlionRock))
- Sniper fixes [\#5962](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5962) ([davidakachaos](https://github.com/davidakachaos))
- Dev to master [\#5958](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5958) ([pogarek](https://github.com/pogarek))
- Random eggs in infinite incubator [\#5957](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5957) ([davidakachaos](https://github.com/davidakachaos))
- updating webui [\#5956](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5956) ([pogarek](https://github.com/pogarek))
- Dev to master [\#5955](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5955) ([pogarek](https://github.com/pogarek))
- Eliminate error caused by typo [\#5954](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5954) ([xiatianyu](https://github.com/xiatianyu))
- Updating webui - fix for Hitmochan candies [\#5953](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5953) ([pogarek](https://github.com/pogarek))
- Merge Dev to Master [\#5951](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5951) ([MerlionRock](https://github.com/MerlionRock))
- Update pokemon.json [\#5950](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5950) ([xiatianyu](https://github.com/xiatianyu))
- Merge dev to master - docs update [\#5948](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5948) ([pogarek](https://github.com/pogarek))
- Docs update about hashing servers and encrypt [\#5947](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5947) ([pogarek](https://github.com/pogarek))
- Merge dev to master [\#5945](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5945) ([pogarek](https://github.com/pogarek))
- Minor Fixes to \#5938 [\#5943](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5943) ([MerlionRock](https://github.com/MerlionRock))
- Added docs about the PokemonHunter [\#5941](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5941) ([davidakachaos](https://github.com/davidakachaos))
- Hunter and camping forts changes [\#5940](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5940) ([davidakachaos](https://github.com/davidakachaos))
- Dev merge to master [\#5937](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5937) ([solderzzc](https://github.com/solderzzc))
- Version Checking & Minor Fixes [\#5936](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5936) ([MerlionRock](https://github.com/MerlionRock))
- updating jsons, web submodule and disabling social\_handler to broker.… [\#5935](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5935) ([pogarek](https://github.com/pogarek))
- First try at the new evo items \(\#5927\) [\#5929](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5929) ([solderzzc](https://github.com/solderzzc))
- First try at the new evolution items for Optimizer [\#5927](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5927) ([davidakachaos](https://github.com/davidakachaos))
- Dev merge to master [\#5926](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5926) ([solderzzc](https://github.com/solderzzc))
- Added Gen 2 Inventory Items [\#5924](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5924) ([atxfun](https://github.com/atxfun))
- 0.57.2 Gen 2 Support [\#5918](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5918) ([MerlionRock](https://github.com/MerlionRock))
- Dev merge to Master [\#5915](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5915) ([solderzzc](https://github.com/solderzzc))
- Added Fedora \> 17 support. [\#5911](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5911) ([ericschaal](https://github.com/ericschaal))
- master merge to dev [\#5908](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5908) ([solderzzc](https://github.com/solderzzc))
- BUGFIX: Poke hunter lockon [\#5904](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5904) ([davidakachaos](https://github.com/davidakachaos))
- Dev merge to master [\#5903](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5903) ([solderzzc](https://github.com/solderzzc))
- Poke hunter lockon [\#5902](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5902) ([davidakachaos](https://github.com/davidakachaos))
- Captcha, POGOProtos and PogoAPI Check [\#5901](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5901) ([MerlionRock](https://github.com/MerlionRock))
- Dev merge to master [\#5897](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5897) ([solderzzc](https://github.com/solderzzc))
- Fix an error in getting award km [\#5896](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5896) ([davidakachaos](https://github.com/davidakachaos))
- Added dependency for urllib 1.18, telegram bot doesn't work with urll… [\#5895](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5895) ([ashleykleynhans](https://github.com/ashleykleynhans))
- Fix step walker and move to fort issues [\#5892](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5892) ([MerlionRock](https://github.com/MerlionRock))
- Proto requirements fix [\#5888](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5888) ([pogarek](https://github.com/pogarek))
- Fixes stardust crash on new account. See \#5883 [\#5884](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5884) ([davidakachaos](https://github.com/davidakachaos))
- Optimizer logging [\#5881](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5881) ([pogarek](https://github.com/pogarek))
- Feature Enhancement: Snip request through telegram \(\#5877\) [\#5878](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5878) ([solderzzc](https://github.com/solderzzc))
- Feature Enhancement: Snip request through telegram [\#5877](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5877) ([MerlionRock](https://github.com/MerlionRock))
- Get rid of the evolved pokemons after XP evolve [\#5876](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5876) ([davidakachaos](https://github.com/davidakachaos))
- Added Total Stardust to UpdateLiveStats task [\#5874](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5874) ([pogarek](https://github.com/pogarek))
- Don't wait at a lured fort if not catching Pokemon [\#5873](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5873) ([davidakachaos](https://github.com/davidakachaos))
- Dev merge to master [\#5872](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5872) ([solderzzc](https://github.com/solderzzc))
- Add hashing key to setup.sh and PokemonGo-Bot-Configurator.bat and fo… [\#5870](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5870) ([pogarek](https://github.com/pogarek))
- Another fix [\#5869](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5869) ([Jcolomar](https://github.com/Jcolomar))
- Dev merge to master [\#5866](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5866) ([solderzzc](https://github.com/solderzzc))
- Change "check\_niantic\_api" to false, fix candies names [\#5862](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5862) ([Jcolomar](https://github.com/Jcolomar))
- Update submodule [\#5861](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5861) ([pogarek](https://github.com/pogarek))
- Dev merge to master [\#5860](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5860) ([solderzzc](https://github.com/solderzzc))
- 0.51, hashing service and gen2 pokemons support [\#5854](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5854) ([pogarek](https://github.com/pogarek))
- issue \#5845 [\#5849](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5849) ([knightcraw](https://github.com/knightcraw))
- Improved logged informations for caught pokemons [\#5839](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5839) ([brunifrancesco](https://github.com/brunifrancesco))
- Fix inconsistent code formatting [\#5828](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5828) ([AdaptCharm](https://github.com/AdaptCharm))
- API Validation - Killswitch on API Change [\#5826](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5826) ([eRobot1](https://github.com/eRobot1))
- dev merge to master [\#5812](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5812) ([solderzzc](https://github.com/solderzzc))
## [TAG_11122016_MASTER](https://github.com/PokemonGoF/PokemonGo-Bot/tree/TAG_11122016_MASTER) (2016-11-13)
[Full Changelog](https://github.com/PokemonGoF/PokemonGo-Bot/compare/TAG_11102016_MASTER...TAG_11122016_MASTER)
**Merged pull requests:**
- Dev merge to master [\#5811](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5811) ([solderzzc](https://github.com/solderzzc))
## [TAG_11102016_MASTER](https://github.com/PokemonGoF/PokemonGo-Bot/tree/TAG_11102016_MASTER) (2016-11-11)
[Full Changelog](https://github.com/PokemonGoF/PokemonGo-Bot/compare/TAG_11082016_MASTER...TAG_11102016_MASTER)
**Closed issues:**
- Recycle pokemon config? [\#5799](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5799)
- Bot Won't Start [\#5798](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5798)
- Got 'ascii' codec can't decode byte 0x9c on login [\#5796](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5796)
- Show all Pokemons in Inventory [\#5793](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5793)
- Bot not moving to any pokestops using \#5784 PR [\#5790](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5790)
- Can't decode byte 0x9c in position 1: ordinal not in range\(128\) [\#5787](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5787)
**Merged pull requests:**
- Dev merge to master [\#5805](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5805) ([solderzzc](https://github.com/solderzzc))
- Fix hash/encrypt library searching [\#5804](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5804) ([Gobberwart](https://github.com/Gobberwart))
- Fix ValueError crash [\#5800](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5800) ([Gobberwart](https://github.com/Gobberwart))
- pokecli.py: wait\_time for every exception randomized [\#5704](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5704) ([mudmud2k](https://github.com/mudmud2k))
- Loiter new meaning [\#5697](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5697) ([janpascal](https://github.com/janpascal))
- Add initial spin\_fort test [\#5658](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5658) ([kolinkorr839](https://github.com/kolinkorr839))
## [TAG_11082016_MASTER](https://github.com/PokemonGoF/PokemonGo-Bot/tree/TAG_11082016_MASTER) (2016-11-08)
[Full Changelog](https://github.com/PokemonGoF/PokemonGo-Bot/compare/TAG_11072016_MASTER...TAG_11082016_MASTER)
**Closed issues:**
- ./run.sh: line 57: 11224 Segmentation fault python pokecli.py -af $auth -cf $config [\#5788](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5788)
**Merged pull requests:**
- Changing the pgoapi tag on requirements.txt [\#5791](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5791) ([mmixx](https://github.com/mmixx))
- Hotfix - Client crashes when not having a buddy pokemon selected in task BuddyPokemon [\#5789](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5789) ([pablossp](https://github.com/pablossp))
## [TAG_11072016_MASTER](https://github.com/PokemonGoF/PokemonGo-Bot/tree/TAG_11072016_MASTER) (2016-11-07)
[Full Changelog](https://github.com/PokemonGoF/PokemonGo-Bot/compare/TAG_10062016_MASTER...TAG_11072016_MASTER)
**Implemented enhancements:**
- make Polyline objects serializable [\#5379](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5379)
- Adding reverse/ addition/substration operations to the Polyline class [\#5374](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5374)
- Proposal for ConcurentWalking "Rickshaw" sharing between the tasks that have to walk [\#5367](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5367)
- Reset avatar \(for accounts created without one\) [\#4600](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4600)
**Closed issues:**
- Can't find pokestops but does not seem baned [\#5782](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5782)
- don't seen pokespot at 127.0.0.1:8000 then this problem. [\#5779](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5779)
- chanel banned [\#5777](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5777)
- Go Bot [\#5774](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5774)
- web UI is not loading bot [\#5761](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5761)
- Can't snipe continent exclusive pokemon [\#5760](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5760)
- Can't start the bot - dbm.error: \(22, 'Invalid argument'\) [\#5305](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5305)
**Merged pull requests:**
- Dev merge to master PR [\#5785](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5785) ([solderzzc](https://github.com/solderzzc))
- New API basic support [\#5784](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5784) ([pablossp](https://github.com/pablossp))
- Added absolute candy limit [\#5766](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5766) ([ChaosMarc](https://github.com/ChaosMarc))
- Sniper task : More logs + correction of pokewatcher 's source [\#5763](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5763) ([GhosterBot](https://github.com/GhosterBot))
- Separate the event of Pokemon\_caught to one. One for normal and another for VIP… [\#5749](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5749) ([developerllazy](https://github.com/developerllazy))
## [TAG_10062016_MASTER](https://github.com/PokemonGoF/PokemonGo-Bot/tree/TAG_10062016_MASTER) (2016-10-06)
[Full Changelog](https://github.com/PokemonGoF/PokemonGo-Bot/compare/TAG_09162016_MASTER...TAG_10062016_MASTER)
**Implemented enhancements:**
- Investigate usage of FakeBot and mock all the methods it should mock [\#5344](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5344)
- Add button in item webIU [\#4927](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4927)
- Show level of Pokemon in Web UI [\#4907](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4907)
- \[enhancement\] Move most of FollowPath configuration to path.json files [\#4791](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4791)
- Evolve only certain pokemons for PokemonOptimizer [\#4693](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4693)
- Mimic the request workflow of official application [\#4605](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4605)
- \[Feature request\] - Limit xp/h rate from json [\#4570](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4570)
- Bot should take a break after being softbanned \(all pokemons run away\) [\#4510](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4510)
- Expand UpdateLiveStats and make configurable [\#4434](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4434)
- \[MoveToMapPokemon\] Efficiency improvements in moving to Pokemon \(last steps\) [\#4157](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4157)
- Perm Ban Test Results [\#4114](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4114)
- "terminal\_title" didn't show on gitbash window [\#4020](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4020)
- \[Feature Request\] Anti softban / Daily Limits [\#3922](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3922)
- request: MoveToMapPokemon dual mode [\#3888](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3888)
- Disabling/enabling other tasks at runtime [\#3858](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3858)
- location \(and other\) caches should be under web, not data [\#3709](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3709)
- Public Sniping List Integration [\#3672](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3672)
- Provide realistic sensor data in api requests that consider bots current state. [\#3621](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3621)
- Extract pokemon movesets before capture [\#3348](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3348)
**Fixed bugs:**
- PokemonOptimizer Buddy/Family Bug [\#5702](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5702)
- Optimizer Error: Not upgrading [\#5623](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5623)
- Bot crashes with new account after setting Starter Pokemon as Buddy [\#5603](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5603)
- New Pokemon Optimizer crashes the Bot \(Maybe because of buddy assignment\) [\#5567](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5567)
- PokemonOptimizer stops after counting pokemon in bag [\#5565](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5565)
- When optimizer tried to transfer it crashes bot [\#5563](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5563)
- Could not fetch data from PokemonGo-Map instance using Sniper [\#5558](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5558)
- Sniper is assuming false VIPs on social mode [\#5556](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5556)
- Earned StarDust stat is broken [\#5497](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5497)
- Investigate usage of FakeBot and mock all the methods it should mock [\#5344](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5344)
- MoveToMapPokemon- snipe\_high\_prio\_threshold not working [\#5224](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5224)
- Daily catch limit not working when sniping [\#5208](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5208)
- PokemonCatchWorker catch condition not working properly [\#5199](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5199)
- Error when \[login\_started\] Login procedure started. [\#5175](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5175)
- \[Issue\] Unable to read hatched egg details [\#5158](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5158)
- incense \[bug\] [\#5151](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5151)
- After a While Bot Dies with RuntimeError [\#5100](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5100)
- ERROR: assert max\(int\(self.cp\_exact\), 10\) == self.cp \[inventory.py Line: 845\] [\#4942](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4942)
- change Nick name Pokemon not working [\#4918](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4918)
- MoveToMapPokemon causing dailycatchlimit error [\#4904](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4904)
- "and" in catch condition prevents catching Pokemon [\#4479](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4479)
**Closed issues:**
- S2Sphere AssertionError [\#5769](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5769)
- Got Error: "Possibly searching too often, take a rest". Restarted the bot. The bot got stuck after restart [\#5767](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5767)
- \[Bug Fix\] zh\_tw translation [\#5764](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5764)
- Power Up Pokemon [\#5759](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5759)
- \[Doubt\] Snipe Pokemon Task [\#5758](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5758)
- cant start bot new installed machine [\#5755](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5755)
- Error [\#5747](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5747)
- Bot stuck at wsgi starting up [\#5745](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5745)
- QUERY: CatchPokemon vs Catch tasks [\#5743](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5743)
- Feature request : Notification when a pokemon is kicked out of a gym. [\#5742](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5742)
- Connect to Broker when social is disabled [\#5741](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5741)
- \[issue\] \[dev\] Bot incubates shorter eggs first [\#5740](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5740)
- Failed at Sniper implementation [\#5739](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5739)
- bot stuck after starting web server [\#5737](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5737)
- google maps api not working [\#5736](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5736)
- Program Error on my VPS: [\#5733](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5733)
- cant go web server [\#5729](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5729)
- Bot Stop at Serving HTTP on 0.0.0.0 port 8000 ... [\#5724](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5724)
- bot will not start [\#5722](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5722)
- how not to transfer snorlax and dragonite [\#5720](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5720)
- ValueError: bad marshal data \(unknown type code\) [\#5719](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5719)
- error [\#5718](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5718)
- UBUNTU 16 [\#5716](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5716)
- Sniper missing to catch pokemon [\#5715](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5715)
- --- pls delete [\#5713](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5713)
- Session stale, re-logging in [\#5712](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5712)
- Sniper teleporting to wrong pokemon [\#5710](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5710)
- \[Feature Request\] Use candy to Power UP. [\#5709](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5709)
- datetime [\#5693](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5693)
- telegram token [\#5692](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5692)
- pokemons don't transfer [\#5687](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5687)
- Pokemon Optimizer is keeping more Pokemon than it should [\#5685](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5685)
- Snippng Error: daily catch limit reached [\#5684](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5684)
- \[Erorr\] got an unexpected keyword argument 'device\_info' [\#5682](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5682)
- Bot stop working [\#5673](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5673)
- Encryption file location, does it work if I put it into another dir? [\#5670](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5670)
- Snipe wait time is too low to allow the Pokemon to show up during consecutive snipings [\#5669](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5669)
- Too many potions discarded [\#5668](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5668)
- Telegram /sub all command is not actually sub all events [\#5667](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5667)
- CatchLimiter [\#5666](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5666)
- Some error [\#5664](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5664)
- Conditions to enable Sniper [\#5655](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5655)
- Nickname does not work for 2 conditions [\#5654](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5654)
- Could not fetch data from PokemonGo-Map instance using Sniper [\#5652](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5652)
- \[ISSUE\] "TransferPokemon" task broken [\#5651](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5651)
- why remove all sources of sniper, it still works? [\#5650](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5650)
- Starting Bot with TOR now won't work [\#5649](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5649)
- Errors after last update [\#5646](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5646)
- Ubuntu 16.04 server start issue. [\#5643](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5643)
- Releasing pokemon feature - Keep Favourites [\#5638](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5638)
- After update no more logs [\#5633](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5633)
- Location of Pokemon in new update [\#5630](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5630)
- lvl\_up, poke\_master, pokedex sample config or botConfig [\#5629](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5629)
- release task [\#5625](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5625)
- virtualenv does not exist \(may be exits\) [\#5622](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5622)
- Logging out of telegram has no affect [\#5619](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5619)
- Nothing works.... [\#5614](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5614)
- can no longer install dev on mac [\#5611](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5611)
- Catch Pokemons under "Catch" rules if no pokemon to hunt for PokemonHunter [\#5608](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5608)
- No longer seeing pokemon caught in telegram [\#5602](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5602)
- pip install -r requirements.txt --\> Could not open requirements file: \[Errno 2\] No such file or directory: './requirements.txt' Please help me! [\#5600](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5600)
- \[Enhancement\] Check timestamp before teleporting back to previous location after sniping. [\#5593](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5593)
- Unable to start the Bot [\#5590](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5590)
- WARNING: release logic issue. 5 Snorlax and 2 Lapras are released [\#5587](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5587)
- what is the password for [\#5585](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5585)
- All Pokemon treated as VIP [\#5582](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5582)
- \[Feature Request\] Logging in after 900 seconds might be a bot detection vector [\#5579](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5579)
- Google Login Problem [\#5576](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5576)
- How to transfert [\#5574](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5574)
- error trying to use new Buddy task [\#5572](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5572)
- Virtualenv does not exits [\#5571](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5571)
- \[FR\] Sniper task enhancement [\#5568](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5568)
- \[FR\] Snipe Pokemons not in Pokedex [\#5566](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5566)
- Not transferring pokemon [\#5562](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5562)
- Bot Google login error: AttributeError: AuthGoogle instance has no attribute '\_proxy' [\#5561](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5561)
- threshold not working in new sniper task [\#5560](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5560)
- Sniper issues [\#5553](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5553)
- Issue - Missing Modules and Requirements Failures [\#5552](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5552)
- Null Reference - After Account Summary Display [\#5549](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5549)
- TransferPokemon does not kick in even inventory is full [\#5548](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5548)
- Pass parameters [\#5547](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5547)
- Unable to acces to pokemon list from maps.pikabot.org [\#5546](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5546)
- PokemonHunter spam [\#5543](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5543)
- So, I'm banned, but I'm not banned ? [\#5541](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5541)
- \[Issue\] Considering all pokemon as VIP [\#5538](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5538)
- Telegram task send almost all log to chat [\#5535](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5535)
- rename events ck, rds, ap [\#5534](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5534)
- More descriptive error messages for catch error 1 and catch error 2 [\#5533](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5533)
- Pokemon Master won't install [\#5531](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5531)
- Not transferring Pokémon, bag full [\#5528](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5528)
- Slow bot startup after telegram is enabled [\#5527](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5527)
- PokemonOptimizer keep Pokemon base on current candy count and required candy to evolve [\#5526](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5526)
- All Pokemons are treated as VIPs [\#5525](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5525)
- Need encrypt\_64.dll [\#5524](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5524)
- Snipe using Pokemongo-Map not working [\#5523](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5523)
- The bot treats every Pokemon as a VIP [\#5521](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5521)
- Can't get it to evolve \(SOLVED CLOSE\) [\#5520](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5520)
- ImportError: DLL load failed: %1 is not a valid Win32 application. [\#5519](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5519)
- Mqtt connection refused - not authorised [\#5518](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5518)
- UnicodeEncodeError [\#5517](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5517)
- MoveToMapPokemon working or not ? [\#5512](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5512)
- gmail login makes bot crash at start up [\#5511](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5511)
- protobuf [\#5509](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5509)
- Telegram Task does not react, I think i broke it with wrong commands [\#5508](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5508)
- Transfer Pokemon not working [\#5507](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5507)
- Nicknaming issue with {attack\_pct} and {defense\_pct} [\#5506](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5506)
- RandomAlivePause RandomPause runs even disabled [\#5501](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5501)
- Show current total stardust [\#5500](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5500)
- Is there any change to the spinFort task? [\#5496](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5496)
- PokemonOptimizer it says Evolving the best, but apparently not [\#5492](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5492)
- catch\_pokemon: catch filter does not work [\#5491](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5491)
- Loitering does not seem to work properly [\#5488](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5488)
- \[Question\] What to do for this git pull error? [\#5487](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5487)
- \[INFO\] Your Pokemon inventory is full! Could not catch! [\#5485](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5485)
- Pokemon\_Optimizer ISSUE [\#5483](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5483)
- Telegram task no longer sends updates on caught pokemon since last update [\#5481](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5481)
- "release\_below\_iv" feature doesn't work [\#5480](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5480)
- a8ee312, All pokemon appear as VIP [\#5476](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5476)
- Our bot is not using ultraballs on non-vip, even with min\_ultraball\_to\_keep set? [\#5475](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5475)
- Python error ./run.sh [\#5469](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5469)
- pokemon\_optimizer crash when Pokemon Bag is full [\#5468](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5468)
- ConfigException: The EvolveAll task has been renamed to EvolvePokemon [\#5464](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5464)
- Reaching daily spin limit is causing multiple teleport [\#5462](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5462)
- catch\_pokemon: never\_capture does not work [\#5461](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5461)
- transfer\_pokemon: Show candies with pokemon name without evolve [\#5459](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5459)
- Implementation of PokeSnipers [\#5458](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5458)
- Latest commit treats all pokemon it see as vip [\#5457](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5457)
- Buddy Feature [\#5456](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5456)
- Regular Session stale, followed by heartbeat crash [\#5455](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5455)
- is movetomap only looking for vips? [\#5453](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5453)
- SSL Error [\#5450](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5450)
- Intermittent error \[Bad request syntax\] [\#5449](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5449)
- Bot doesnt work anymore [\#5448](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5448)
- WebSocket Port [\#5431](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5431)
- error on requirements.txt [\#5422](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5422)
- Buddy System [\#5419](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5419)
- loitering [\#5416](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5416)
- FollowPath json input [\#5413](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5413)
- Fix Refresh rate object on map \(catch more pokemon\) [\#5409](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5409)
- \[Feature Request\] Pokemon Optimizer: Only evolve to final stage [\#5390](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5390)
- Bot Crash in start [\#5387](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5387)
- How do I specify use Poke Balls first then Great Balls after Poke Balls? [\#5383](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5383)
- MoveToMapPokemon Teleport not working !!!! [\#5378](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5378)
- Bot crash when resume after Random Pause [\#5377](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5377)
- Logging in with wrong password in auth.json doesn't stop the bot [\#5376](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5376)
- Ptc login works, but Google gives error [\#5375](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5375)
- \[FR\] FollowPath should get a log\_interval setting [\#5373](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5373)
- make the web interface more interactive [\#5368](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5368)
- Log spam with candy threshold messages [\#5361](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5361)
- PokemonOptimizer decreases gained stardust count [\#5350](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5350)
- FEATURE REQUEST: execute script after event [\#5349](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5349)
- \[Feature Request\] release\_above\_cp [\#5337](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5337)
- Bot would not keep Greatball [\#5331](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5331)
- cpu utilization of python drifts to 100% [\#5329](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5329)
- Starting bot error [\#5328](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5328)
- \[Feature Request\] Check nearby pokemon list - if VIP present, try to find it [\#5325](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5325)
- problem when starting bot [\#5322](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5322)
- I think someone has asked this before, but my bot stopped because it ran out of poke balls. [\#5319](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5319)
- Memory leak when social or embeded websocket server are enabled [\#5317](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5317)
- bot become still after 3 hours of running. [\#5302](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5302)
- Z range issue [\#5263](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5263)
- Telegram bot /info should return exactly what UpdateLiveStats does - any more ideas [\#5236](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5236)
- Failure! Could not update trainer location. running bot issue [\#5234](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5234)
- Bot is constantly relogging when hits desired lvl [\#5217](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5217)
- Bot very slow with "enable\_social:true" [\#5216](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5216)
- \[Issue\] UpdateLiveStats and PokemonOptimizer interact in unexpected way [\#5194](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5194)
- PokemonOptimizer - enhanced evolve\_for\_xp config and logic [\#5188](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5188)
- Trouble with installation [\#5183](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5183)
- \[Errors\] Errors on taking RandomAlivePause [\#5178](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5178)
- Sleep not triggered if bot launched during a scheduled sleep interval [\#5171](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5171)
- Sniping problem: PokemonCatchWorker doesn't commence after teleporting back to previous location [\#5128](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5128)
- ImportError: No module named pgoapi.exceptions [\#5112](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5112)
- MoveToMapPokemon is not working with latest commit. Help. [\#5094](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5094)
- \[Errno 32\] Broken pipe [\#5070](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5070)
- Optimizer : TypeError: 'NoneType' object is not iterable [\#5047](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5047)
- Starting problem [\#5010](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5010)
- Multiple errors then crash [\#4975](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4975)
- BOT stops at Request for new Access Token failed! Logged out... [\#4971](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4971)
- Error on bot start, after login. [\#4910](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4910)
- exception when IP seems be banned [\#4908](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4908)
- \[Feature Request\] Can we have the mons' stats in the log file? [\#4534](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4534)
- translations [\#4495](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4495)
- FollowCluster Needs to "edge" to collect stops [\#4430](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4430)
- Edit device and device ID [\#3977](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3977)
**Merged pull requests:**
- Dev merge to master [\#5772](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5772) ([solderzzc](https://github.com/solderzzc))
- Some translation issue of zh-tw [\#5771](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5771) ([kevinlife](https://github.com/kevinlife))
- added pgoapi files to .gitignore [\#5765](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5765) ([ChaosMarc](https://github.com/ChaosMarc))
- Do not try to transfer buddy [\#5752](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5752) ([Gobberwart](https://github.com/Gobberwart))
- \[Doc\] Added Centos 7 Dependency Commands [\#5750](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5750) ([Kavex](https://github.com/Kavex))
- Change websocket URL in example configs [\#5748](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5748) ([Gobberwart](https://github.com/Gobberwart))
- Dev merge to master [\#5734](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5734) ([solderzzc](https://github.com/solderzzc))
- Load CatchPokemon config in PokemonCatchWorker [\#5708](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5708) ([Gobberwart](https://github.com/Gobberwart))
- Fix for evolve\_for\_xp False + others [\#5707](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5707) ([Anakin5](https://github.com/Anakin5))
- Revert "Avoid task init if task is disabled" \(\#5591\) [\#5696](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5696) ([YvesHenri](https://github.com/YvesHenri))
- Wander [\#5695](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5695) ([janpascal](https://github.com/janpascal))
- Hotfix for evolvable count [\#5694](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5694) ([alexyaoyang](https://github.com/alexyaoyang))
- Parenthesis fix [\#5689](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5689) ([cmezh](https://github.com/cmezh))
- Telegram task : Ordering by date [\#5688](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5688) ([GhosterBot](https://github.com/GhosterBot))
- Add resume time to catch disabled notifications [\#5676](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5676) ([Gobberwart](https://github.com/Gobberwart))
- \[Sniper\] Fix cache, and name matching tweak [\#5674](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5674) ([Gobberwart](https://github.com/Gobberwart))
- Telegram egg fix /stardust removal [\#5672](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5672) ([javajohnHub](https://github.com/javajohnHub))
- New task: CatchLimiter [\#5662](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5662) ([Gobberwart](https://github.com/Gobberwart))
- remove pprint since it is not being used [\#5659](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5659) ([kolinkorr839](https://github.com/kolinkorr839))
- Update configuration\_files.md [\#5656](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5656) ([gise88](https://github.com/gise88))
- Telegram refactor chat handler Now with /stardust command [\#5647](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5647) ([javajohnHub](https://github.com/javajohnHub))
- Dev Merge to Master [\#5645](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5645) ([Gobberwart](https://github.com/Gobberwart))
- Removed print statement [\#5644](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5644) ([Gobberwart](https://github.com/Gobberwart))
- \[Sniper\] Extend support for different source formats [\#5642](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5642) ([Gobberwart](https://github.com/Gobberwart))
- Fix telegram /logout command [\#5641](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5641) ([Gobberwart](https://github.com/Gobberwart))
- Dev merge to master [\#5640](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5640) ([solderzzc](https://github.com/solderzzc))
- Api update/fix [\#5639](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5639) ([DeXtroTip](https://github.com/DeXtroTip))
- Tele fix [\#5637](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5637) ([javajohnHub](https://github.com/javajohnHub))
- Pokemon Optimizer fixes and improvements [\#5626](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5626) ([Anakin5](https://github.com/Anakin5))
- Add timeouts to sniper source config [\#5624](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5624) ([Gobberwart](https://github.com/Gobberwart))
- Revert "i forgot the pokecli.py edit so here it is" [\#5621](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5621) ([solderzzc](https://github.com/solderzzc))
- fix pokemon caught being displayed in telegram [\#5616](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5616) ([javajohnHub](https://github.com/javajohnHub))
- Sniper task: Keeping 'missing' Pokemon + sorting order correction [\#5613](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5613) ([GhosterBot](https://github.com/GhosterBot))
- Fix order/display of IV and CP in Telegram /caught function [\#5610](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5610) ([JaapMoolenaar](https://github.com/JaapMoolenaar))
- i forgot the pokecli.py edit so here it is [\#5607](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5607) ([maxer137](https://github.com/maxer137))
- Requirements.txt Changed \>= to == [\#5606](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5606) ([Gobberwart](https://github.com/Gobberwart))
- Remove event emit from catchworker [\#5604](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5604) ([Gobberwart](https://github.com/Gobberwart))
- Added six\>=1.9.0 in requirements.txt [\#5601](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5601) ([Gobberwart](https://github.com/Gobberwart))
- Restore example vip list [\#5599](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5599) ([Gobberwart](https://github.com/Gobberwart))
- Fix \#5461wrong documentation [\#5598](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5598) ([sech90](https://github.com/sech90))
- Minor fix in release [\#5597](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5597) ([Gobberwart](https://github.com/Gobberwart))
- Hotfix: Fix release logic on no rule supplied [\#5596](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5596) ([Gobberwart](https://github.com/Gobberwart))
- added stardust per hour [\#5595](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5595) ([maxer137](https://github.com/maxer137))
- added stardust per hour [\#5594](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5594) ([maxer137](https://github.com/maxer137))
- Avoid task init if task is disabled [\#5591](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5591) ([cmezh](https://github.com/cmezh))
- Fix PokemonOptimizer ValueError [\#5588](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5588) ([cmezh](https://github.com/cmezh))
- Telegram formatting and msg consolidation [\#5583](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5583) ([javajohnHub](https://github.com/javajohnHub))
- PokemonOptimizer: Skip tasks if not enabled [\#5581](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5581) ([Gobberwart](https://github.com/Gobberwart))
- fix regex pattern for gps coordinates [\#5578](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5578) ([ukos-git](https://github.com/ukos-git))
- Hotfix crash on telegram /login if args != 2 [\#5577](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5577) ([Gobberwart](https://github.com/Gobberwart))
- TransferPokemon: Release logic fix [\#5575](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5575) ([Gobberwart](https://github.com/Gobberwart))
- Hotfix for BuddyPokemon task [\#5573](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5573) ([DeXtroTip](https://github.com/DeXtroTip))
- Task EvolvePokemon should give us a status updates so we know it is working [\#5570](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5570) ([thejamespinto](https://github.com/thejamespinto))
- Fix crash with upgrade pokemon [\#5564](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5564) ([Anakin5](https://github.com/Anakin5))
- Fix incorrect VIP in Sniper [\#5557](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5557) ([Gobberwart](https://github.com/Gobberwart))
- Allow use of ultraball on non-vip [\#5555](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5555) ([alexyaoyang](https://github.com/alexyaoyang))
- Updated Sniper docs, config.map.example and config.example files. [\#5554](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5554) ([YvesHenri](https://github.com/YvesHenri))
- Small change to let people know they can also sort by date [\#5551](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5551) ([javajohnHub](https://github.com/javajohnHub))
- When daily spin limit is reached, let it continue working instead of … [\#5550](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5550) ([kolinkorr839](https://github.com/kolinkorr839))
- Make socket IP dynamic [\#5545](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5545) ([chr0nu5](https://github.com/chr0nu5))
- Fixing issues in event fitlering \(/events command in chat handler\) [\#5544](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5544) ([DBa2016](https://github.com/DBa2016))
- MoveToMapPokemon sniping fix [\#5542](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5542) ([Gobberwart](https://github.com/Gobberwart))
- Give a breakdown of the remaining eggs instead of just showing many e… [\#5540](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5540) ([kolinkorr839](https://github.com/kolinkorr839))
- Fixed 'pokemon\_caught' event [\#5539](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5539) ([Gobberwart](https://github.com/Gobberwart))
- Improve telegram startup, fix master/sub issues [\#5537](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5537) ([Gobberwart](https://github.com/Gobberwart))
- Buddy Pokemon task [\#5530](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5530) ([DeXtroTip](https://github.com/DeXtroTip))
- Fix some cpm calculation issues [\#5529](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5529) ([Anakin5](https://github.com/Anakin5))
- Sniper v2.1 [\#5522](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5522) ([YvesHenri](https://github.com/YvesHenri))
- Fix 5459 [\#5515](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5515) ([DeXtroTip](https://github.com/DeXtroTip))
- Telegram refactor [\#5514](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5514) ([javajohnHub](https://github.com/javajohnHub))
- fix add pokemon [\#5513](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5513) ([rawgni](https://github.com/rawgni))
- Dev restore vip [\#5505](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5505) ([Gobberwart](https://github.com/Gobberwart))
- Restore vip functionality [\#5502](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5502) ([Gobberwart](https://github.com/Gobberwart))
- Fixed release trigger [\#5499](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5499) ([Gobberwart](https://github.com/Gobberwart))
- Return True removed [\#5495](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5495) ([Gobberwart](https://github.com/Gobberwart))
- Bot treats all pokemon as VIP fix [\#5494](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5494) ([Gobberwart](https://github.com/Gobberwart))
- Corrected run transferpokemon every tick [\#5493](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5493) ([Gobberwart](https://github.com/Gobberwart))
- Python 3 Compatibility [\#5490](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5490) ([JSchwerberg](https://github.com/JSchwerberg))
- Format ivcp output when future release pokemon event is triggered [\#5486](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5486) ([javajohnHub](https://github.com/javajohnHub))
- Quick fix for telegram [\#5484](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5484) ([javajohnHub](https://github.com/javajohnHub))
- Fix api issues when session stale [\#5482](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5482) ([Anakin5](https://github.com/Anakin5))
- Pokemon Optimizer Improvements: buddy, evolve to final, evolve for xp [\#5478](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5478) ([Anakin5](https://github.com/Anakin5))
- /caught now functions like /top [\#5466](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5466) ([javajohnHub](https://github.com/javajohnHub))
## [TAG_09162016_MASTER](https://github.com/PokemonGoF/PokemonGo-Bot/tree/TAG_09162016_MASTER) (2016-09-16)
[Full Changelog](https://github.com/PokemonGoF/PokemonGo-Bot/compare/TAG_09072016_MASTER...TAG_09162016_MASTER)
**Implemented enhancements:**
- wake\_up\_at\_location doesn't use favorite\_locations [\#5095](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5095)
- Better bot altitude [\#4756](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4756)
- Limit radius of movement / Make bot stay in a certain area [\#3580](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3580)
- travis build time improvements [\#5324](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5324) ([th3w4y](https://github.com/th3w4y))
**Fixed bugs:**
- PR \#5415 may be buggy? [\#5418](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5418)
- Issues with time mocking in sleep\_schedule\_test.py [\#5339](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5339)
- Major issue with heartbeat, random crashes [\#5299](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5299)
- MoveToFort do not move to fort close enough \(more than 0.04km\) [\#5293](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5293)
- \<dev\> Followpath completes 100m within 17 secs [\#5291](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5291)
- bot crashes on MoveToMapPokemon task [\#5290](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5290)
- UnicodeDecodeError - can't decode byte 0x94 - invalid start byte [\#5288](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5288)
- Failing to discard a Potion crashes the bot [\#5266](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5266)
- PolylineWalker no longer work in FollowPath with loitering [\#5248](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5248)
- OSError: \[Errno 24\] Too many open files [\#5086](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5086)
- Telegram- sending 2 notifications per event and repetitive line in logger [\#4977](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4977)
- \_load\_recent\_forts recent fort error [\#4933](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4933)
- Limit radius of movement / Make bot stay in a certain area [\#3580](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3580)
- Fix \#5291 and all tasks that recreate walkers and walk too fast [\#5295](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5295) ([Anakin5](https://github.com/Anakin5))
**Closed issues:**
- Allow users to set favorite Pokemon [\#5471](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5471)
- Some instructions for the telegram task ? [\#5451](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5451)
- Why are we sleeping for so long? [\#5446](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5446)
- Log in issues [\#5444](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5444)
- No module named UpdateLiveInventory [\#5441](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5441)
- Pokemon Optimizer fails to transfer Poke's [\#5439](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5439)
- \[info\] old app version still works. [\#5435](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5435)
- requirements.txt issue [\#5430](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5430)
- Cannot start bot new api install error [\#5429](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5429)
- Cannot start with a new location [\#5428](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5428)
- Critical Error [\#5427](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5427)
- UTF-8 Unicode Error [\#5424](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5424)
- Error in config [\#5423](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5423)
- Can't find uncommon pokemon [\#5412](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5412)
- variable time does not exist. evolve\_pokemon.py line 77 [\#5411](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5411)
- Pokestop will become ??? if it's unicode... [\#5410](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5410)
- Refresh rate object on map \(more pokemon after fix now\) [\#5408](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5408)
- \[Erorr\]NameError: global name 'time' is not defined [\#5406](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5406)
- AttributeError: 'list' object has no attribute 'items' [\#5405](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5405)
- Shows CP instead if IV when releasing pokemons [\#5404](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5404)
- sentry.errors.uncaught\] \[ERROR\] \[u"AttributeError: 'PokemonGoBot' object has no attribute '\_player'", [\#5403](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5403)
- No moving towards pokestops, only lured pokestops. Works fine on iPhone. [\#5402](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5402)
- How to use Telegram bot [\#5401](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5401)
- Issue with catching lured pokemon [\#5400](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5400)
- Transfer Pokemon lower CP .. example I have 2 Exeggutor cp2345 and 2344 once I open bot .. the cp2344 will transfer to professor. I have save transfer list and set max duplicate Pokemon [\#5399](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5399)
- .. [\#5397](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5397)
- Telegram events not displaying [\#5396](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5396)
- Please add "enable" option to "FollowPath" [\#5389](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5389)
- Bot goes back and forth between normal and lured forts [\#5384](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5384)
- No Pokemon getting released [\#5366](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5366)
- bot crashes after login [\#5359](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5359)
- Telegram bot not working with fresh dev branch [\#5358](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5358)
- Unsuccessful in setting VIP status based on CP and IV [\#5357](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5357)
- As soon as I start start.bat I get this [\#5356](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5356)
- Just dumped my Pokebag with optimizer [\#5351](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5351)
- \[bug\] campfort set altitude to 8 [\#5342](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5342)
- Your Pokemon inventory is full! Could not catch! [\#5335](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5335)
- Polyline Walker moves in zigzag [\#5333](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5333)
- Not Releasing Pokemon? [\#5330](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5330)
- Can't start bot after latest DEV update [\#5318](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5318)
- PokemonOptimizer does not handle Eevee with my config [\#5315](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5315)
- MoveToMapPokemon JSON format is not valid error [\#5313](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5313)
- Bounty source or other crowd source integration [\#5304](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5304)
- Bot goes to sleep when started [\#5286](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5286)
- if camping at lured fort and runs out of balls bot don't leave to find new balls [\#5285](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5285)
- \[Question\] How to stay in a place with some diameter \(in meters\)? [\#5284](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5284)
- ISSUE: Bot hangs at start up [\#5280](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5280)
- Bot stop working? [\#5279](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5279)
- \[Debug\] suppressed error msg \<location.cs-line 86 - index is -1 [\#5272](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5272)
- Exception message: 'NoneType' object has no attribute '\_\_getitem\_\_' [\#5271](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5271)
- Any Web UI ? [\#5269](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5269)
- Evolve speed in config being disregarded [\#5268](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5268)
- Logger get erorr : TypeError: encode\(\) argument 1 must be string, not None [\#5265](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5265)
- Virtualenv does not exits [\#5264](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5264)
- Virtualenv does not exits [\#5261](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5261)
- \(Feature Request\) Campfort to print out distance left when moving towards location [\#5259](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5259)
- \[ Pokemon\] \[ERROR\] Unexpected moveset \[Mud Slap, Ancient Power\] for \#76 Golem, please update info in pokemon.json and create issue/PR [\#5255](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5255)
- 'PokemonGoBot' object has no attribute '\_player' [\#5249](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5249)
- Perma ban statistics [\#5246](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5246)
- \[BUG\] Bot want to keep sleeping after sleeping [\#5242](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5242)
- Limit PokemonOptimizer logs only after catching a Pokemon [\#5235](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5235)
- release\_below\_ivcp [\#5225](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5225)
- Polylinewalker is still drunk [\#5186](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5186)
- Bot walks faster than max settings \(unless the settings are in mph\) [\#5172](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5172)
- \[??BUG??\] Possibly searching too often, take a rest. [\#5142](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5142)
- Disable sleep? [\#4897](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4897)
**Merged pull requests:**
- Dev merge to master [\#5474](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5474) ([solderzzc](https://github.com/solderzzc))
- Hotfix for transfer\_pokemon.py [\#5473](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5473) ([alexyaoyang](https://github.com/alexyaoyang))
- Dev merge to maste [\#5472](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5472) ([solderzzc](https://github.com/solderzzc))
- Format links [\#5470](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5470) ([alexyaoyang](https://github.com/alexyaoyang))
- Fixed "log logged in" typo [\#5467](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5467) ([Gobberwart](https://github.com/Gobberwart))
- Added release\_below\_ivcp and keep\_best\_ivcp [\#5465](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5465) ([Gobberwart](https://github.com/Gobberwart))
- Added PR tutorial in readme [\#5463](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5463) ([alexyaoyang](https://github.com/alexyaoyang))
- Improve performance of cluster computation in CampFort task [\#5454](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5454) ([Anakin5](https://github.com/Anakin5))
- use strip instead of replace for names with spaces [\#5447](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5447) ([ChaosMarc](https://github.com/ChaosMarc))
- Telegram optimization [\#5445](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5445) ([javajohnHub](https://github.com/javajohnHub))
- \#5404 fix and rname\_pokemon telegram fix [\#5438](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5438) ([javajohnHub](https://github.com/javajohnHub))
- Catch max cp, catch certain moves [\#5437](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5437) ([DBa2016](https://github.com/DBa2016))
- Campfort events [\#5433](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5433) ([javajohnHub](https://github.com/javajohnHub))
- Pokemon Hunter [\#5426](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5426) ([Anakin5](https://github.com/Anakin5))
- Update to latest api [\#5421](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5421) ([joelgreen](https://github.com/joelgreen))
- Revert "Hot fix for pokemon optimizer \(\#5415\)" [\#5420](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5420) ([Anakin5](https://github.com/Anakin5))
- Improve evolve\_pokemon.py [\#5417](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5417) ([alexyaoyang](https://github.com/alexyaoyang))
- Hot fix for pokemon optimizer [\#5415](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5415) ([alexyaoyang](https://github.com/alexyaoyang))
- Telegram fix [\#5398](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5398) ([javajohnHub](https://github.com/javajohnHub))
- Stop moving to lures if no lures active anymore [\#5395](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5395) ([davidakachaos](https://github.com/davidakachaos))
- Min pokemon to trigger evolve [\#5394](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5394) ([developerllazy](https://github.com/developerllazy))
- exit the bot if unable to login [\#5386](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5386) ([rawgni](https://github.com/rawgni))
- Bug fix on FollowPath, MoveToFort and PolylineGenerator [\#5382](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5382) ([Anakin5](https://github.com/Anakin5))
- Enhanced telegram functionality [\#5371](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5371) ([javajohnHub](https://github.com/javajohnHub))
- Pokemon Optimizer enhancements [\#5365](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5365) ([Anakin5](https://github.com/Anakin5))
- Incense bugfixing [\#5364](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5364) ([davidakachaos](https://github.com/davidakachaos))
- setup\_logging before starting bot [\#5355](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5355) ([rawgni](https://github.com/rawgni))
- Fix mqtt connection initialization [\#5353](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5353) ([sohje](https://github.com/sohje))
- Fix: spawnpoint in gathered data [\#5352](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5352) ([sohje](https://github.com/sohje))
- Fix heartbeat inventory add crash [\#5347](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5347) ([Gobberwart](https://github.com/Gobberwart))
- pokecli.py alterations [\#5346](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5346) ([mjmadsen](https://github.com/mjmadsen))
- Better mock of bot.event\_manager.emit [\#5343](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5343) ([th3w4y](https://github.com/th3w4y))
- Typo [\#5341](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5341) ([cmezh](https://github.com/cmezh))
- Move\_to\_map\_pokemon improved [\#5340](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5340) ([sohje](https://github.com/sohje))
- Fix encoding issues with piped output [\#5327](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5327) ([Anakin5](https://github.com/Anakin5))
- Add the required "source" line and fix spelling mistakes [\#5326](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5326) ([nelsyeung](https://github.com/nelsyeung))
- req use exact version [\#5320](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5320) ([rawgni](https://github.com/rawgni))
- Fix \#5268 + Pokemon bag print ordered by cp [\#5316](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5316) ([DeXtroTip](https://github.com/DeXtroTip))
- UnicodeDecodeError catch [\#5312](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5312) ([Gobberwart](https://github.com/Gobberwart))
- CampFort improvements [\#5310](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5310) ([Anakin5](https://github.com/Anakin5))
- Improvements Pokemon Optimizer [\#5308](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5308) ([Anakin5](https://github.com/Anakin5))
- Telegram Connection pool is full \(and other tweaks\) [\#5307](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5307) ([Gobberwart](https://github.com/Gobberwart))
- Snipping improvements \(PR \#5247\) [\#5303](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5303) ([YvesHenri](https://github.com/YvesHenri))
- Should fix \#5290, move to map encoding issue [\#5300](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5300) ([Anakin5](https://github.com/Anakin5))
- Fix Encoding issues [\#5297](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5297) ([Anakin5](https://github.com/Anakin5))
- Added web.sh for web server fast run [\#5296](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5296) ([cmezh](https://github.com/cmezh))
- SleepSchedule location handling [\#5294](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5294) ([cmezh](https://github.com/cmezh))
- Decouple hb from step walker [\#5292](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5292) ([sohje](https://github.com/sohje))
- PokemonGo-Bot-Install [\#5289](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5289) ([LuckyMe4Evers](https://github.com/LuckyMe4Evers))
- Switch the keep alive timeout from 60 to 10 [\#5283](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5283) ([solderzzc](https://github.com/solderzzc))
- pokecli.py wait\_time not defined [\#5282](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5282) ([Gobberwart](https://github.com/Gobberwart))
- Refactored, improved and fixed SleepSchedule [\#5278](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5278) ([cmezh](https://github.com/cmezh))
- Reduce "waiting near fort..." spam [\#5276](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5276) ([Gobberwart](https://github.com/Gobberwart))
- added /top command to Telegram interface [\#5274](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5274) ([DBa2016](https://github.com/DBa2016))
- Fix bot crash on telegram egghatch [\#5270](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5270) ([Gobberwart](https://github.com/Gobberwart))
- Update\_live\_stats.py remove some globals, cleanup, fix level stats, pep8 [\#5267](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5267) ([sohje](https://github.com/sohje))
- Discord support [\#5253](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5253) ([askovpen](https://github.com/askovpen))
## [TAG_09072016_MASTER](https://github.com/PokemonGoF/PokemonGo-Bot/tree/TAG_09072016_MASTER) (2016-09-08)
[Full Changelog](https://github.com/PokemonGoF/PokemonGo-Bot/compare/TAG_08262016_BEFORE_DEV_MERGE_TAG_ON_MASTER...TAG_09072016_MASTER)
**Implemented enhancements:**
- \[CollectLevelUpReward\] outputting Array instead of clean list of rewards. [\#5008](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5008)
- store sleep timers between restarts [\#4986](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4986)
- \[Feature request\]Implement "powerup" in PokemonOptimizer task. [\#4913](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4913)
- Reset wake up location after sleep [\#4901](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4901)
- \[Feature Request\] Add Conditions and Delay to NicknamePokemon for More Realism [\#4893](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4893)
- Telegram documentation missing [\#4847](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4847)
- when capturing pokemon, adjust capture waits to account for pokemon blocks [\#4840](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4840)
- Removing date/time from bot output [\#4800](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4800)
- Separate account from base configs [\#4781](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4781)
- \[FeatureRequest\] Evolve pokemon exception [\#4767](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4767)
- Noise / Actual location and pathing [\#4760](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4760)
- Better bot movement [\#4751](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4751)
- \[FollowPath\] position\_update log frequency [\#4719](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4719)
- implement application like delays to account of animation screens [\#4700](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4700)
- Assign to Team after reaching lvl 5 [\#4691](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4691)
- Expand \#3868 as crowdsource map [\#4688](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4688)
- Remove pokemon print [\#4677](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4677)
- Show name of captured pokemons never seen before [\#4667](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4667)
- FollowPath: execute path only once [\#4663](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4663)
- FollowPath: loitering around each waypoint [\#4662](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4662)
- Send ip of the location playing from [\#4630](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4630)
- Shutdown of bot after leveling to set number in config? Request [\#4624](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4624)
- Named locations in config files [\#4612](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4612)
- Emulate phone battery [\#4583](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4583)
- The setting diameter and step\_size under FollowSpiral [\#4455](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4455)
- Improvement over the config task wiki page [\#4451](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4451)
- Ignore Pokemon based on candy [\#4256](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4256)
- add build timezone args in docker-compose.yml [\#4234](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4234)
- Feature Request - MoveToMapPokemon stop catching when VIP [\#4227](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4227)
- Pokestop Limit Discussion [\#4194](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4194)
- Enhancement: Determine if app is sending extra data to differentiate itself from bots [\#4175](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4175)
- UpdateLiveStats Caching Username [\#4091](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4091)
- Better form of choosing between accounts. [\#4056](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4056)
- \[META\] ToDo \(Recommendations\) [\#4004](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4004)
- Can't run socket.io server [\#3925](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3925)
- Problems with lucky eggs and evolving [\#3911](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3911)
- Nidoran F or M [\#3718](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3718)
- Web UI - click on a point and say "go here" [\#3650](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3650)
- SystemD Service [\#3645](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3645)
- Mass Evolve Causing Soft IP Ban [\#3537](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3537)
- Segregate Config to module based [\#3506](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3506)
- Server throttling if use\_lucky\_egg enabled [\#3253](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3253)
- Add output interval for MoveToFort [\#3216](https://github.com/PokemonGoF/PokemonGo-Bot/issues/3216)
- Improve step\_walker [\#5184](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5184) ([Anakin5](https://github.com/Anakin5))
- Refactor Polyline to support speed variance. [\#5157](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5157) ([th3w4y](https://github.com/th3w4y))
- Improve humanize walking variance [\#5147](https://github.com/PokemonGoF/PokemonGo-Bot/pull/5147) ([mjmadsen](https://github.com/mjmadsen))
- Decrease number of messages from MoveToFort worker [\#4745](https://github.com/PokemonGoF/PokemonGo-Bot/pull/4745) ([cmezh](https://github.com/cmezh))
- Show current progress + move config into CatchPokemon Task [\#4742](https://github.com/PokemonGoF/PokemonGo-Bot/pull/4742) ([alexyaoyang](https://github.com/alexyaoyang))
- Live config update [\#4738](https://github.com/PokemonGoF/PokemonGo-Bot/pull/4738) ([alexyaoyang](https://github.com/alexyaoyang))
**Fixed bugs:**
- RuntimeError: unsupported platform 'freebsd10' [\#5202](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5202)
- Bot Is Moving SUPER-FAST [\#5168](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5168)
- Logging headers repeated on utf8 messages [\#5144](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5144)
- Sleep schedule fails to wake up [\#5054](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5054)
- UTF-8 error, but bot still run normally [\#5053](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5053)
- Crash on Level Up [\#5019](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5019)
- Problem starting bot on new install [\#5011](https://github.com/PokemonGoF/PokemonGo-Bot/issues/5011)
- Telegram connection problems halting bot [\#4935](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4935)
- \[BUG\] Error in Telegram: "AttributeError: 'module' object has no attribute 'now'" [\#4929](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4929)
- KeyError: 'experience' on starting bot [\#4926](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4926)
- Evolving all pokemon after update [\#4923](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4923)
- Ignored pokemon list not applied in move\_to\_map\_pokemon or catch\_pokemon [\#4887](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4887)
- Info button on webUI not working [\#4885](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4885)
- Lastest master: ImportError: No module named urllib.request [\#4851](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4851)
- JSON file read/write errors / corruption causing crash [\#4841](https://github.com/PokemonGoF/PokemonGo-Bot/issues/4841)