forked from Trimps/Trimps.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdates.html
1382 lines (1374 loc) · 103 KB
/
updates.html
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
<html>
<head>
<title>Updates</title>
</head>
<style>
body {
text-align: center;
background-color: #333;
color: #333;
font-size: 1.2em;
}
#wrapper {
max-width: 1020px;
display: inline-block;
text-align: left;
background-color: white;
padding: 10px;
background-color: #fafafa;
}
.betterList {
list-style: none;
padding: 0;
}
.betterList > li {
font-weight: bold;
font-size: 1.1em;
margin-bottom: 16px;
}
.betterList > ul > li {
list-style: disc;
}
.betterList > ul > li:first-child {
font-weight: bold;
list-style: none;
margin-left: -20px;
padding: 5px 0 5px 0;
color: #00008B;
}
</style>
<body>
<div id="wrapper">
<span style="font-size: 1.3em; font-weight: bold; display: block; width: 100%; text-align: center">Trimps Updates!</span>
<ul class="betterList">
<li>4.32 - 5/25/17</li>
<ul>
<li>Content</li>
<li>The 'Empower' daily modifier no longer applies in maps, and is now World only.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Fade-ins should be faster</li>
<li>Grammar fixes</li>
<li>Added hover text for magma loot</li>
<li>Removed underscore from Carpentry II in breakdown</li>
<li>Mastery alerts no longer display when all Masteries are purchased</li>
<li>Fire for Jobs should be more stable</li>
</ul>
</ul>
<ul class="betterList">
<li>4.31 - 4/17/17</li>
<ul>
<li>Bug Fixes</li>
<li>Made some huge performance fixes. You should notice a massive reduction in CPU usage while Trimps is running!</li>
<li>Setting an AutoStructure limit on Nurseries now takes buildings closed by Magma in to account in order to keep you at that number. Also added a statistic for closed Nurseries!</li>
<li>Fire for Jobs works much better with really really high numbers of owned Trimps</li>
<li>'Pressure' no longer stacks infinitely</li>
<li>The dates under the daily challenge should now be proper in all time zones</li>
</ul>
</ul>
<ul class="betterList">
<li>4.3 - 4/12/17</li>
<ul>
<li>Content</li>
<li><strike>The strange eggs from last year have made their way temporarily back in to the World. They're rumored to contain some pretty neat stuff, but will disappear in about 1 week. Click it if you see one!</strike></li>
<li>You can now run any Daily Challenge from the past 7 days, up from 2</li>
<li>Added 5 new Daily Challenge modifiers</li>
<li>Due to changes with Masteries, all spent Dark Essence will be refunded and all Masteries will reset the first time you load to 4.3</li>
<li>Combined the Home Detector 1 and 2 masteries in to a single T1 Mastery</li>
<li>The Home Detector mastery now includes Nurseries. To preserve the difficulty of the 'Grindless' Feat achievement, Grindless has been updated to also require not purchasing any Nurseries.</li>
<li>Moved the Tier 2 Foremany Mastery and Tier 3 Double Build Mastery two columns to the right</li>
<li>Moved the Metallic Coat Mastery from T4 to T2</li>
<li>Added <b>AutoStructure</b> as a Tier 4 mastery, requiring Double Build. AutoStructure allows you to set thresholds at which most structures can be automatically purchased!</li>
<li>You can now improve AutoStorage to waste less resources and craft instantly by completing a 150+ Void Map!</li>
<li>The first time you clear Trimple of Doom each portal (as long as you have already completed it once for the perk), you'll find 'Ancient Treasure', which instantly doubles your stored Food, Wood, and Metal.</li>
<li>The Heirloom in the spire is now level 201, giving you a better chance for a higher rarity</li>
<li>The bonus helium reward from Electricity is now 200%, up from 150%</li>
<li>Buying 300 Golden Upgrades unlocks something new! This is tracked in Statistics, and counts back from the beginning of Golden Upgrades. If you're already over 300, you'll need to purchase 1 more on version 4.3 to get your present.</li>
</ul>
<ul>
<li>UI/QOL</li>
<li>You can now save up to 3 Perk Presets! You'll be able to overwrite and rename the presets whenever you want, and you can load any saved preset whenever your Respec is active.</li>
<li>Moved the Portal confirmation message in to a tooltip, and made the different warning messages look pretty. This is also sort of a bug fix, as the 'Cancel' button won't ever fall off the screen anymore.</li>
<li>Added a new portal warning message if you try to portal with enough Magmite to buy a Generator upgrade</li>
<li>Added new "Other" setting: "Gene Sending", which unlocks after unlocking Geneticistassist. Toggling this setting on will force Trimps to be sent to battle whenever they've been breeding for longer than your current Geneticistassist setting.</li>
<li>Added new "Other" setting: "Fire for Jobs", which causes Farmers, Lumberjacks, and Miners to be fired automatically if you try to purchase a scaling-price job (Trainer, Explorer, Geneticist, etc) while you don't have enough workspaces available.</li>
<li>Added new "Other" setting: "Always Giga Ctrl", which forces Gigastations to act as if you were holding the Ctrl key when you purchase them, even if you weren't actually holding it!</li>
<li>The custom number box now remembers the first thing you use it for after each portal, and will automatically set itself to that number or ratio after your next portal</li>
<li>AutoFight now remembers your setting between portals</li>
<li>Clicking 'Portal' with Respec available will automatically activate your Respec</li>
<li>Prices on tooltips now display in orange if your storage is too low for that particular resource</li>
<li>Buying a perk from the 'View Perks' menu no longer removes the 'Respec' button. Clicking the 'Respec' button will now enable your respec without clearing any non-confirmed perk levels.</li>
<li>Repeatable challenges now use a darker shade of blue on the Portal screen, to help make them easier to visually differentiate from single-run challenges that you have an unearned reward available in.</li>
<li>Added a 'View Current Challenge' button to the portal screen if you have a challenge active, allowing you to swap the 'Select New Challenge' pane back and forth with the one that appears on the 'View Perks' screen, including the 'Abandon Challenge' button.</li>
<li>You can now still see the mods that were on a daily challenge on the portal screen, even if you have already completed that day's challenge.</li>
<li>Updated the squares that Perks live inside, Perk Level is now on its own line, and Perk names no longer push out of the boxes. </li>
<li>4-way toggle buttons now have 4 different colors like the settings buttons. The only difference to things that existed before 4.3 is that the 'Weapons First' AutoPrestige setting is blue now instead of yellow.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Fixed some alignment with UI boxes</li>
<li>Double Attack bad guys no longer attack a second time if they die first</li>
<li>The map credits label now properly disappears after finishing Mapology or Mapology<sup>2</sup></li>
<li>Void Maps now say the name of the void buff next to the icon in the 'World Info' popup instead of saying "Any"</li>
<li>Alphabetic Notation no longer displays "bz" as "bundefined"</li>
<li>Trying to buy Golden Maps or Quick Trimps while you already have them no longer messes up the UI</li>
<li>The attack breakdown should no longer fall out the bottom of anyone's browser</li>
<li>Fixed a text error with the King of Bones II mastery description</li>
<li>Fixed a text error in the Meditation challenge description</li>
<li>Going in to to a perks screen no longer clears your purchase amount selection</li>
<li>Geneticistassist no longer buys enough Geneticists to break breeding if you have it enabled while using a very small amount of soldiers, such as during the Trimp<sup>2</sup> Challenge</li>
<li>The Dimensional Generator default mode setting is now only under 'General'</li>
<li>Time units no longer show as plural in the 'Time Until Full' boxes for resources if the time unit is singular (1 min 1 sec instead of 1 mins 1 secs)</li>
<li>Geneticists no longer stop providing their health bonus when it takes 0 seconds to refill your soldiers</li>
<li>Heirloom seed no longer resets on portal</li>
</ul>
</ul>
<ul class="betterList">
<li>4.21 - 2/27/17</li>
<ul>
<li>Content</li>
<li>Challenge<sup>2</sup> rewards are now earned on reaching X zones rather than clearing X zones. For example, with the default reward of 1% every 10 zones, you'll earn 1% as soon as you hit Z10, 2% as soon as you hit Z20, etc. Reloading to this patch will automatically reupdate your bonuses to this new rule.</li>
</ul>
<ul>
<li>UI/QOL</li>
<li>Added a Challenge<sup>2</sup> tooltip button and bonus display to the View Perks screen when running Challenge<sup>2</sup></li>
<li>The <sup>2</sup> looks better in the attack/health/helium breakdowns</li>
<li>Magmamancers no longer drop during Metal<sup>2</sup></li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Cthulimp text on kill now makes more sense when running Challenge<sup>2</sup></li>
<li>Fixed a display issue where the bonus from Turkimp III wasn't properly reflecting in the gathered resources per second display.</li>
</ul>
</ul>
<ul class="betterList">
<li>4.2 - 2/25/17</li>
<ul>
<li>Content</li>
<li>Added Challenge<sup>2</sup>! This feature is automatically unlocked at Zone 65, and allows you to run up to 15 different normal challenges to the furthest zone you can for a permanent increase to attack, health, and Helium found!</li>
</ul>
<ul>
<li>UI/QOL</li>
<li>Geneticistassist is now 10x faster, and tracks when your last soldiers were sent in order to better maintain Anticipation stacks</li>
<li>AutoUpgrade and AutoPrestige can now each purchase 1 upgrade per second, instead of only one or the other.</li>
<li>When using the 'Extra Map Info' setting, Void Maps will show their specific Void Buff icon instead of the resource icon.</li>
<li>Added new option for large number formatting, "Alphabetic Notation". Where Standard would use 100K-100M-100B-100Sx-100Sxv, or Scientific would use 1e5-1e8-1e11-1e24-1e83, Alphabetic will use 100a-100b-100c-100g-100aa. The custom number tab supports parsing Alphabetic Notation while it's enabled.</li>
<li>You can now only carry 3 Bionic Wonderland maps at a time. If you pick up a fourth, your lowest level Bionic Wonderland will be automatically recycled.</li>
<li>The "Bionic Magnet" Mastery now only drops maps up to the highest level RoboTrimp ever earned</li>
<li>Added Corruption cell count per zone to the helium breakdown</li>
<li>Added hover colors to challenges on the portal screen</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>The Corruption line in the Helium breakdown now properly takes Headstart in to account</li>
<li>AutoStorage now properly moves on to the next storage type if it can't afford one of the others</li>
<li>Fixed an issue that allowed the MagnetoShriek button to display before Z60</li>
<li>Buying the 'Formation' upgrade after purchasing specific formation upgrades now properly unlocks all purchased formation upgrades</li>
<li>There are no longer underscores in the level 2 perk names if you copy and paste them from the attack/health/gathering/loot breakdowns</li>
<li>The story text now makes more sense after clearing Z20 with the 'Portal Generator' mastery active.</li>
</ul>
</ul>
<ul class="betterList">
<li>4.1 - 1/14/17</li>
<ul>
<li>Content</li>
<li>Heirlooms now refund 100% of the Nu spent on upgrading any mods, as long as those mods are still on the heirloom when it is recycled. Nu spent replacing mods will still not be refunded. This is backwards compatible with any heirlooms you upgraded before this patch!</li>
<li>Added a new heirloom rarity that begins dropping at Z230</li>
<li>Added 2 new speedrun achievements, 2 new achievements to "Total Zone Clears", 2 new achievements to "Helium Collection", and 1 new achievement to "Heirloom Collection"</li>
<li>Added new achievement category: "Humane Run". You'll earn these achievements for reaching certain zones after losing less than one battle per zone. You'll need to portal at least once after moving to this update before this achievement will be achievable.</li>
<li>Added new Golden Upgrade/Achievement tier</li>
<li>Added new statistic for battles lost</li>
</ul>
<ul>
<li>UI/QOL</li>
<li>Your Void Map count is now always displayed on the maps button while in the world</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Exiting to Maps after finishing a map will no longer kill off your group of Trimps when you go back to the world</li>
<li>Fixed an issue with rounding on the "Helium Collection" achievement progress indicator</li>
<li>Fixed an issue that was causing Hybridization on the Dimensional Generator to sometimes waste a cell before swapping from Fuel to Mi before Storage has been purchased.</li>
<li>Fixed an issue that caused Trimps to be sent back to battle too soon after dealing with a Superheated Omnipotrimp</li>
</ul>
</ul>
<ul class="betterList">
<li>4.01 - 12/16/16</li>
<ul>
<li>Content</li>
<li>A cold snap has brought snow to the Trimp homeworld! All non-mutated world cells have some snow, which is purely visual. You can disable the snow in General Settings, but you'll miss out on the real life mood boost from holiday cheer.</li>
<li>Presimpts have returned and can be found randomly in the world! Presimpts drop basic resources, or if you're lucky and have been good this year, a bone. Presimpts and snow will melt away shortly after the holidays. </li>
<li>Added new housing achievement</li>
<li>Reduced the Magmite cost of all single-use Generator upgrades by 25%.</li>
<li>Added a new multi-purchase Generator upgrade</li>
</ul>
<ul>
<li>UI/QOL</li>
<li>Slightly changed the description of Hut to make it more clear that all housing supports only half of its capacity as workspaces.</li>
<li>If your highest Void Map clear was above Z230, it will be reset to 230 one time only. This is purely visual, as this stat is currently not used for anything other than being a statistic.</li>
<li>The 'Trimps from Generator' stat now takes Carp and other housing bonuses in to account for the displayed number. This is also a purely visual change.</li>
<li>Added new setting under 'Other' to disable offline progress</li>
<li>Added a new settings tab for 'Performance'</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Trimps slain by a Superheated Omnipotrimp now count towards the 'Dead Trimps' stat</li>
<li>Fixed an issue causing the 'Trustworthy Trimps' popup to sometimes not display when using PlayFab on Kongregate (this is a display fix only, the loot was still being given out previously)</li>
<li>Fixed an issue where rampage stacks wouldn't properly reset after leaving and coming back to a map</li>
<li>Fixed an issue where the free Coordinations at Z230 would sometimes not display for a few cells.</li>
<li>Magmamancer no longer shows up in the metal loot breakdown if you've been on the zone for less than 10 minutes</li>
<li>Fixed an issue that could cause Scryer Formation to improperly display if it's unlocked but 'Formations' hasn't yet been purchased that run.</li>
</ul>
</ul>
<ul class="betterList">
<li>4.0 - 11/20/16</li>
<ul>
<li>Content</li>
<li>Huge overhaul of Z230+. Added the first Megastructure, a new job, a new zone mutation, a new currency, and new things to upgrade!</li>
<li>If your Highest Zone Reached or RoboTrimp level were above Z230, they will be reset to Z230 (for things like masteries that use it). This will only occur once - the first time you load in to V4.0 if you're currently below 230, or your first portal if you were already above Z230.</li>
<li>Added zone progress achievements up to 300</li>
<li>Added new story messages</li>
<li>AutoStorage has been moved from Z150 to Z75</li>
<li>Void Maps that are completed above your Corruption start point now calculate the amount of Corruption cells you would find in that world zone as part of the Void Map helium reward. (Lots more helium from Void Maps when Corruption is active)</li>
<li>Dark essence now gains 45% more scaling from zone, meaning much more Dark Essence drops as you reach higher zones.</li>
<li>Due to changes with Masteries, all Masteries have been refunded for free!</li>
<li>Added 6 new Masteries</li>
<li>Added new T3 mastery, condensed Foremany 1 and Foremany 2 in to one mastery, Moved King of Bones II from T4 to T5, added one new T4 mastery to fill Bones II's spot, and the 4 other new masteries are all T5.</li>
<li>T4 Masteries now only require 11 previously purchased masteries to unlock, down from 12</li>
<li>Dark Essence can no longer be earned after purchasing all available Masteries</li>
<li>Crit chance has been added to the possible Corruption enemy modifier pool</li>
<li>Pumpkimps have gone in to hiding until next year.</li>
</ul>
<ul>
<li>QOL</li>
<li>Advanced map settings now persist through portal</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Fixed an issue where Famine wasn't showing up in the displayed gathering numbers.</li>
<li>Fixed an issue that could cause helium earned while the portal screen was open to not be counted</li>
<li>Daily challenge achievements are no longer visible until Dailies unlock at Z100</li>
<li>AutoUpgrade now works better when Trimps is not the active window</li>
<li>Spire loot messages no longer disappear in the log after exiting the spire</li>
</ul>
</ul>
<ul class="betterList">
<li>3.811 - 10/22/16</li>
<ul>
<li>UI/QOL</li>
<li>Added a new option for "Events" to the message configuration for Loot. This will let you toggle on/off loot text from temporary events like Pumpkimps</li>
<li>AutoFight will now send Trimps to fight if it takes less than 0.1 seconds to breed a new group of soldiers, even if the population limit hasn't been reached yet</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Fixed an issue where ctrl clicking Gigastation with the 'Locking' and 'Confirming' settings toggled on would sometimes only purchase 1 Warpstation</li>
<li>Fixed an issue where extra damage from a new daily challenge modifier was ignoring block</li>
</ul>
</ul>
<ul class="betterList">
<li>3.81 - 10/20/16</li>
<ul>
<li>Content</li>
<li>Added 4 new daily challenge modifiers</li>
<li>Pumpkimps have temporarily returned! You can find weak versions of them in maps, and have a 5% chance per zone to encounter a patch of more rewarding ones in the world.</li>
</ul>
<ul>
<li>UI/QOL</li>
<li>Creating a map now automatically selects that map if you don't already have one in progress</li>
<li>Number formatting now defaults to engineering rather than scientific notation after the game runs out of words for numbers when using standard formatting. Engineering notation is more similar to standard than scientific</li>
<li>Holding Ctrl while buying a Gigastation will cause as many Warpstations as you currently own to be purchased immediately after Gigastation, if you can afford them.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Fixed an issue that could cause 'Weapons First' prestiging to ignore weapons if shield upgrades were available and wood income was low</li>
<li>The maximum value for loot and difficulty percent on maps now has an even chance to roll</li>
</ul>
</ul>
<ul class="betterList">
<li>3.8 - 9/26/16</li>
<ul>
<li>Content</li>
<li>Added daily challenges! These become unlocked after Zone 100, generate a brand new random challenge every day, and can only be completed once each.</li>
<li>Added 5 achievements for the daily challenges</li>
</ul>
<ul>
<li>UI/QOL</li>
<li>Feat of strength achievements that have not been completed now turn red when it becomes impossible to complete them for that run.</li>
<li>Trimp attack breakdown now includes min/max</li>
<li>AutoTrap toggled setting now persists through portals</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>It's no longer extremely difficult to click a resource/sec breakdown once you have very high resources/sec</li>
<li>Fixed an issue that was making it difficult to change perks in the middle of the run with Carpentry II in use.</li>
<li>Engineering notation no longer stops working after e100 (Thanks Grimy!)</li>
</ul>
</ul>
<ul class="betterList">
<li>3.71 - 8/28/16</li>
<ul>
<li>Content</li>
<li>Dark Essence drops are now worth 3x less, but happen 3x more frequently</li>
<li>Added 8 achievements for Helium collection</li>
<li>Added a new challenge and unique reward at Z55</li>
</ul>
<ul>
<li>UI/QOL</li>
<li>Automatic online saving now occurs once per 30 minutes instead of every minute. You can still manually click save to force a backup. Added extra text to the green 'Game Saved!' message to let you know when your game has also been backed up online.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Masteries no longer display an alert or show cost once all are purchased</li>
<li>MagnetoShriek is no longer lost if you activate it, kill a map enemy, then switch back to the Improbability</li>
<li>Fixed all known inconsistencies with the Bionic Magnet mastery. The proper maps should drop only once per run from all the proper locations at the proper times. (This may require a portal before it starts working properly if you were already having problems this run)</li>
<li>Mastery respec button no longer overflows to two lines on lower resolutions</li>
<li>Golden upgrades now temporarily lock themselves and others (like all other unlocks) if the "Lock on Unlock" setting is enabled</li>
<li>Pausing the game no longer temporarily and incorrectly alters Helium/hr or average loot</li>
<li>Megaskeletimps and Skeletimps no longer occasionally prevent the other from spawning</li>
</ul>
</ul>
<ul class="betterList">
<li>3.7 - 8/11/16</li>
<ul>
<li>Content</li>
<li>New late game feature: Mastery. Unlocks at Z181 and adds 20 new things to master!</li>
<li>New Formation: Scrying. Scrying Formation unlocks once you've reached Z181 and trades battle stats for extra loot. Scrying above Z181 gives a chance to find Dark Essence, which is used for Mastery.</li>
<li>Removed messages about unlocking perks in the spire if you already have the perk unlocked. Added some extra storyish text to the Spire perk descriptions instead.</li>
<li>Adjusted the popup from the start of Corruption to work with more situations, and added some clarifying information about the Improbability/Void Map bonuses to the Corrupted Challenge description.</li>
</ul>
</ul>
</ul><ul class="betterList">
<li>3.6 - 7/24/16</li>
<ul>
<li>Content</li>
<li>New Feature: Golden Upgrades. Golden Upgrades can be found starting at every 50 zones, and can be used to increase Attack and Health, Helium, or Void Map drops. As you earn a higher percentage of damage from achievements, you'll begin to find Golden Upgrades more frequently. Golden Upgrades get more powerful as you find more each run.</li>
<li>Added new statistic for total Golden Upgrades purchased</li>
<li>Added 12 new unique 'Feat' achievements, all T5 and higher</li>
<li>Each row you complete in the Spire now increases all loot gained until your next portal by 2% (including helium)</li>
</ul>
<ul>
<li>UI/Quality Of Life</li>
<li>Added a checkbox to the Geneticistassist setting, allowing you to force Geneticistassist to always start disabled after it is unlocked each run.</li>
<li>Added new setting for button size in the menu where you purchase Buildings, Jobs, Upgrades, and Equipment. It can be found under 'Layout' and allows you to toggle between 4, 5, or 6 buttons per row.</li>
</ul>
</ul>
<ul class="betterList">
<li>3.51 - 7/9/16</li>
<ul>
<li>Content/Balance</li>
<li>Added 7th achievement tier</li>
<li>Added speedrun achievements for Spire</li>
<li>Increased the bonus metal in the Spire by 500%, from 10x to 50x.</li>
</ul>
<ul>
<li>UI/Quality Of Life</li>
<li>Added Helium to the loot breakdown (the present icon by the bad guy's name)</li>
<li>Added a cog icon to the message toggle bar. Clicking this cog will let you further customize which types of messages can show up in your log.</li>
<li>Helium drops are now counted as Loot rather than Story. The new font color for helium messages is a slightly darker blue than the story messages.</li>
<li>Added a new alert system to let you know when you unlock a new setting (some settings are unlocked side-by-side with late game rewards, and it was hard to know about it before). You'll see a red '!' by settings after unlocking a new one, and will have access to a 'New' tab the first time you open settings after seeing the alert.</li>
<li>Added a new setting once Siphonology is unlocked, which causes the map creation level input box to default to the lowest level you'll receive a map bonus. (Off by default)</li>
<li>Added a new setting that allows you to toggle timestamps on in the message log. You can log either the current run time, or the local time according to your computer. (Off by default)</li>
<li>Added an 'Exit Spire' button below the Bone Trader when in the Spire. Clicking this button... exits the Spire.</li>
<li>The online saving setting is no longer in Beta! Now when launching the game for the first time, there will be a button to enable online saving from the Welcome popup.</li>
<li>Changed up the border on achievements a tiny bit, in order to make it easier to tell at a glance which tier an achievement is in.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>The message received when finishing a Void Map no longer says anything about finding yourself teleported to the map chamber if you're repeating or exiting to world.</li>
</ul>
</ul>
<ul class="betterList">
<li>3.5 - 6/23/16</li>
<ul>
<li>Content/Balance</li>
<li>Added new repeatable helium challenge at Z190.</li>
<li>Added Scientist V at Z130.</li>
<li>Added a new one-time permanent reward to the Z170 Bionic Wonderland.</li>
<li>The reward from completing the Electricity challenge has been increased from 100% to 150% extra helium.</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Finally redesigned the Settings layout. It's got a search and stuff now, check it out!</li>
<li>Updated the Portal and View Perks UIs, trading some whitespace for larger text on perks.</li>
<li>Now that you can pause the game by clicking on the timer at the bottom right of the screen (since 3.4), the 'Pause' setting in the Settings Menu has now been removed. There is now a new setting in the Settings Menu which allows you to disable pausing altogether, for people worried about pasing by accident.</li>
<li>The Watch challenge will no longer assign any of your Trimps as workers if it would leave you with less than 15% of your max Trimps to help repopulate.</li>
<li>Updated the first time launch text</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>The right column of the bone trader no longer gets pushed outside of the box on any resolution.</li>
</ul>
</ul>
<ul class="betterList">
<li>3.4 - 6/9/16</li>
<ul>
<li>Content</li>
<li>The Spire at Z200 is now open. Earn 5 new end-game perks with a new type of price scaling, rare resources, and a conclusion to the main story. In-game explanations will give an overview of how it works!</li>
<li>The amount of zones in between Void Map drops no longer increases past Zone 200. This means you will find more Void Maps per run the further past Z200 you go!</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Added pause icon to the timer at the bottom right of the screen, and clicking the timer now pauses the game</li>
<li>Added a pulse animation to the timer when the game is paused</li>
<li>You can now enter numbers larger than 1000 in the perk selection custom number button to support the new perks. Most perks will show an infinity symbol for the cost and be unpurchasable when 1000 or higher is used.</li>
<li>Added a 'Recycle All' button to extra Heirlooms</li>
<li>When a Void Map drops, the '!' in the alert has been replaced with the number of Void Maps you currently have</li>
<li>Mousing over the Map Name and Level square while in a Void Map will also show you how many Void Maps you have total (including the one you're on)</li>
<li><i>(Non-Kongregate only)</i>You can now send a PlayFab password reset email to yourself from the in-game menu.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Shift clicking a tab no longer opens a new window</li>
<li>Fixed a display issue on Firefox where perks were getting erased by tooltips in the portal screen.</li>
</ul>
</ul>
<ul class="betterList">
<li>3.3 - 5/27/16</li>
<ul>
<li>Content</li>
<li>AutoUpgrade is no longer a Scientist IV reward, and has instead been added as a reward for the first time you break the planet. AutoPrestige is still unlocked with Sci IV.</li>
<li>Scientist IV now causes Warpstations to skip the building queue and require no time to build.</li>
<li>Corruption has begun to infest worlds starting at Z181 and up. Enjoy tougher "Corrupted" enemies with helium rewards, new mechanics, further developments to the story, and tougher Void Maps/Improbability also with greater rewards!</li>
<li>Added new heirloom rarity breakpoint at Z201</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Added Engineering Notation as a number formatting option</li>
<li><i>(Non-Kongregate only)</i> The game now autofills your PlayFab login name and password if you checked the "remember account info" box the last time you logged in.</li>
<li>When using the "Locking" and "Confirming" settings, your purchase will still go through if you confirm during the 1 second lockout</li>
<li>Added tooltips for the 'Recycle All' and 'AutoUpgrade' buttons</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>The settings menu no longer needs to be clicked twice to close after importing from playfab</li>
<li>Bone portals should now properly trigger portal achievements instantly rather than waiting for your next full portal</li>
<li>AutoPrestige no longer ignores Arbalest/Gambeson upgrades if the equipment before it has not been unlocked yet</li>
<li>Added a block and error message to purchasing maps if you already have 100 or more. You'll still be able to get Unique or Void Maps past 100, but you'll need to recycle some if you want to purchase more. Having too many maps was causing the game to not load for some people under certain conditions.</li>
</ul>
</ul>
<ul class="betterList">
<li>3.231 - 5/10/16</li>
<ul>
<li>UI/Quality of Life</li>
<li>Added tooltip to AutoPrestiges to help explain the new choices.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Greatly reduced lag resulting from using the import/export options.</li>
<li>Max level perk coloration is now more accurate</li>
<li>PlayFab AutoLogin on Kongregate now waits a few seconds if Kongregate hasn't had enough time to log you in, then tries again.</li>
</ul>
</ul>
<ul class="betterList">
<li>3.23 - 5/8/16</li>
<ul>
<li>Content</li>
<li>Further refined the Void Map drop rules to be considerably more forgiving if your highest zone cleared is further than you normally portal.</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>AutoPrestiges can now be toggled between 4 states. Off, All, Weapons Only, or Weapons First. Weapons First will not purchase armor until all available weapons have been purchased, or until the cheapest piece of armor is less than 5% of the cost of the cheapest weapon. Added a 2 second delay between toggling this setting and any prestiges being purchased.</li>
<li>AutoPrestiges is now smarter! It will now only fire after AutoUpgrades can't buy anything, and will always buy the cheapest prestige first, according to your setting.</li>
<li>Finally integrated online saving with PlayFab! This feature is in beta, and may still need some tweaking to work with everyone's situations. <b>How it works:</b> Go into settings and click the new blue button on the top row. A window will open where you can login to PlayFab by automatically connecting to Kongregate (if you're logged in to Kongregate), or by creating a PlayFab account with a username and password. Whenever AutoSave triggers or you click 'Save' while the new setting is enabled, a copy of your save will also be sent to PlayFab's servers for safe keeping. Trimps will automatically ask if you want to download the save from PlayFab if you ever log in on a computer that's further behind (in helium, total zones cleared, or highest zone reached) than the save on PlayFab.</li>
<li>You can now type fractions or percentages into the custom number menu to select that fraction of your available workspaces. This should work really well for hiring even amounts of workers.</li>
<li>The custom number box now remembers things exactly as you type them, so you won't have to keep typing "1/3"</li>
<li>When removing perks, if you have a higher number selected than the number of removable levels of perk, the game will remove all removable levels of perk rather than doing nothing.</li>
<li>Perks now have a tinge of blue if they're maxed out, so you can tell which are maxxed at a glance.</li>
<li>Added new Togglable setting to the Extra Map Options bar for finishing all Void Maps. This setting is only visible when running a Void Map, and if enabled will run another Void Map (if you have one) after finishing the one you're on. After finishing all Void Maps, it will leave according to your Exit setting.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Void maps no longer show strange item counts after attempting and abandoning.</li>
<li>Toggling 'Remove' on in a perk window now properly updates the perk colors based on what you can and can't remove</li>
</ul>
</ul>
<ul class="betterList">
<li>3.22 - 4/20/16</li>
<ul>
<li>Content</li>
<li>Reduced the attack by 15% and the health by 25% of all Bad Guys under Zone 60.</li>
<li>The damage and health scaling of the "Balance" challenge have been increased in order to keep the challenge from being affected by the above change. The new scaling is in the description, and should keep things the same as they were.</li>
<li>The unique map, "The Block" now has 130% difficulty, up from 110%. This should keep the attack damage in the map basically the same as before.</li>
<li>Megablimps now drop 45 helium, up from 30.</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Your fighting group of Trimps will now upgrade themselves on the next cell after purchasing Coordination, the same way that equipment updates.
<li>Added a 'Buy Max' button. You can click this button again while it's already selected to further refine this to 0.5, 0.33, 0.25, and 0.1 of max.</li>
<li>Added an extra column of buttons to maps after your first portal. This column is on by default, but can be toggled off in settings.</li>
<li>Duplicated Equip First/Tier First to the extra map buttons column.</li>
<li>Added extra map button allowing you to automatically exit a map after 10 stacks are gained.</li>
<li>Added extra map button allowing you to decide between returning to maps or returning to world after completing a map.</li>
<li>Added a new setting if you have Overkill unlocked, allowing you to track Overkills more easily.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Wormhole confirmation popup no longer occurs if the wormhole cannot be afforded</li>
<li>Upgrade tooltips no longer stay popped up if the mouse is no longer over an upgrade</li>
<li>The tooltip for Traps now include Bait</li>
<li>Fixed an issue where Watch wasn't correctly assigning workers at high zones</li>
<li>The upgrades tab and science menu now properly pop up at the start of a new game after completing the Scientist challenges.</li>
</ul>
</ul>
<ul class="betterList">
<li>3.21 - 4/7/16</li>
<ul>
<li>UI/Quality of Life</li>
<li>You can now respec while portalling if your respec hasn't been used yet. This will ignore Coord/Carp checks.</li>
<li>Freed up some more space in the portal screen</li>
<li>Added a toggle for the 'Extra Perk Info' setting inside the portal screen</li>
<li>Clearing all perks now activates the 'Confirm' button</li>
<li>Added new statistic for people using the 3.2 perk</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>The Trimps Killed stat is now more accurate</li>
<li>The Extra Perk Info setting now properly updates on screen when choosing different purchase amounts</li>
<li>The 3.2 perk now works more reliably in a background tab</li>
</ul>
</ul>
<ul class="betterList">
<li>3.2 - 4/3/16</li>
<ul>
<li>Content</li>
<li>Added 11 new standalone achievements. Some are hidden, some require higher zones to unlock, but they're there waiting to be achieved.</li>
<li>Added Z170 unique map</li>
<li>Added Z170 challenge, which unlocks a brand new perk</li>
<li>Added 5 speedrun achievements to the new map</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Numbers with large suffixes (like Qad) and exponents now fit better inside gather boxes</li>
<li>Exponents are no longer <sup>sup<sup>er<sup>scrip<sup>ted</sup></sup></sup></sup>. Those were the last four, I promise.</li>
<li>Slightly brightened the blue of rare heirlooms to make them easier to read.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Build speed percentage now properly updates right after getting a foreman.</li>
</ul>
</ul>
<ul class="betterList">
<li>3.11 - 3/25/16</li>
<ul>
<li>Content</li>
<li>Strange resource-filled eggs have begun appearing in the world on occasion. It is rumoured that they have a rare chance to contain some pretty sweet stuff... (The eggs will disappear in about 1 week)</li>
</ul>
</ul>
<ul class="betterList">
<li>3.1 - 3/20/16</li>
<ul>
<li>Content</li>
<li>Added two new repeatable challenges, both at Z180. One is geared more towards active players, and one is geared more toward idlers.</li>
<li>The Bone Trader now offers Heirlooms</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Added a confirmation message when attempting to abandon a void map</li>
<li>Added new setting to toggle between displaying the "Abandon Soldiers" message or automatically abandoning your soldiers when switching between maps and world with an active group of soldiers</li>
<li>Added new setting to show extra information on Perks, such as cost of the next level and total Helium spent on that perk</li>
<li>Assigned new color to the crit breakdown in the damage breakdown window, to help it stand out more as non-standard damage</li>
<li>Added helium spent on each perk to the perk tooltip</li>
<li>Added more info to the Balance challenge description, to help make it clear that Void Map helium counts toward the bonus helium granted by completing the challenge</li>
<li>Auto* toggle settings now persist through portal</li>
<li>If a map ends while repeat map is on, but 'Abandon Soldiers' is toggled, the soldiers will be abandoned and the map will end.</li>
<li>Added Zone and Map current cell number to the Zone/Map breakdown tooltip</li>
<li>Added Helium/Hr to the helium resource box</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Enemies during the 'Nom' challenge no longer resurrect if they die at the same time as your trimps</li>
<li>The 'Abandon Soldiers' toggle no longer persists through a save and reload (this was displaying as if it didn't save, but was still switching on soldier death if it had been toggled before the save)</li>
<li>The right side of the scroll bar works again on smaller resolutions</li>
</ul>
</ul>
<ul class="betterList">
<li>3.0 - 3/6/16</li>
<ul>
<li>Content</li>
<li>New (big) feature: Heirlooms. These have a 100% chance to drop when completing a Void Map (any time after your fifth portal).</li>
<li>Added new statistic: Total Heirlooms Earned</li>
<li>Added new statistic: Highest Void Map Completed</li>
<li>Added new group of achievements for total heirlooms earned</li>
<li>Void maps lower than Zone 60 are now easier to complete, but give less loot</li>
<li>Void maps drop formula has been reworked a tiny bit to be more forgiving about pushing to a zone higher than optimal</li>
<li>Void maps completed below Zone 60 now always use the value from Blimps when determining helium reward</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Pressing enter can now confirm and close most popups</li>
<li>The confirmation button for perks now appears after removing a level as well.</li>
<li>Achievements now continue to keep track of your bests after you've already earned all achievements for that type</li>
<li>Added button to the Export popup for automatically copying the Save String to your clipboard, if your browser supports it</li>
<li>The Export popup now preselects the Save String</li>
<li>The Import popup now starts with the input area selected (and don't forget that enter can now confirm and close these for max efficiency!)</li>
<li>You can now see crit chance and crit damage in the 'Attack Breakdown' that opens when you click your Trimps' attack</li>
<li>Added fourth tier of flavor text to the achievements screen for having a ton of achievements</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Moved the information after breaking the planet to a tooltip, fixing some display issues</li>
<li>Bone boosts and jest/chronoimp are now properly taking the Meditate challenge into account</li>
</ul>
</ul>
<ul class="betterList">
<li>2.9 - 2/21/16</li>
<ul>
<li>Content</li>
<li>New feature: Void Maps. These will begin to drop from Bad Guys in the World (very rarely) after your fifth portal. All enemies in Void Maps have a random buff (decided by the map name prefix) and a high difficulty. Void Maps scale in level to your current zone number, growing in level as you progress through zones. Completing a Void Map will reward you with 2x the helium that you would get from completing your current zone, and will instantly destroy the map (you can save them for later zones for greater difficulty but greater reward). The buffs and the reward stack with repeatable helium challenges for a greater challenge but greater reward, if completed before the end of a challenge. Void maps must be completed in one session without returning back to the map chamber, or their progress will reset.</li>
<li>If you can complete a Void Map above Zone 150, you will find a fancy new reward.</li>
<li>AutoFight now triggers at 100% rather than 97.5%. The third toggle option from the 'Extra Breed Timer' setting has been removed. This means you will have extra Trimps breeding after each AutoFight send, which means your soldiers will always breed faster.</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Speedrun achievements no longer display on your first run ever, unless you accidentally complete one. This was causing some confusion, as it's tough to explain that the timer starts from portal before portal has been unlocked.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>The max resources breakdown was displaying packrat as 100% higher than it should have, and no longer does that.</li>
<li>The max trimps breakdown was incorrect during the Size challenge, and has been corrected</li>
</ul>
</ul>
<ul class="betterList">
<li>2.82 - 2/7/16</li>
<ul>
<li>Content</li>
<li>Added Scientist IV challenge at Z110</li>
<li>Added repeatable helium challenge at Z40</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Added new stat for "Best Helium/Hour this Run". This will log your highest helium/hour for your current run, as well as which zone you were at when it was at its highest.</li>
<li>Some tweaks to the dark theme</li>
<li>Map name breakdown icons are also now in the same order as the other map stats.</li>
<li>If you have AutoSave enabled, the game will now save as soon as you pause</li>
<li>Advanced map sliders/biome selection now persist through save and reset on portal</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>MagnetoShriek now stays on Improbabilities if you switch to maps and back</li>
</ul>
</ul>
<ul class="betterList">
<li>2.811 - 1/28/16</li>
<ul>
<li>UI/Quality of Life</li>
<li>Some tweaks to the dark theme</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>'Crushed' icon now properly resets after completing the challenge.</li>
<li>Removed Jestimp from loot averaging calculations. The Jestimp is just too random to be able to meaningfully average its loot, and was causing big spikes in numbers.</li>
<li>Made a few other tweaks to the averaging calculations.</li>
</ul>
</ul>
<ul class="betterList">
<li>2.81 - 1/24/16</li>
<ul>
<li>Content</li>
<li>New repeatable challenge at Z125</li>
<li>New repeatable challenge at Z165</li>
<li>Added 10 new story messages, up to Z170</li>
<li>Buffed 'Tricky Paradise', the first map you earn at zone 6. Map biome has been changed to Gardens, difficulty has been reduced from 110% to 85%, and the size of the map has been increased from 40 to 45.</li>
<li>Removed the cap on Coordinated</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Made some changes to the mechanics of the loot averaging setting. It now takes samples in 3 second chunks, causing the numbers to be less jumpy.</li>
<li>Average loot setting now also works on Fragments</li>
<li>Implemented the ability to switch themes, and added a new theme which was made by u/Grabarz19. You can find this theme in the setting used to switch to the black background.</li>
<li>The Bone Trader now loads on Kongregate even if the API did not load, and instead gives a message on the bone trader that the API is not loaded.</li>
<li>Changed the order on the advanced map stats setting so that it matches the order of the slider bars</li>
<li>When using the settings 'From 100%' or 'From AutoFight' for displaying extra breed timer information, the primary default breeding timer will gain an extra decimal of precision.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>The item counter in maps now counts multiple tiers of the same item</li>
<li>The breeding timers should now be more accurate</li>
<li>Rewards from Chronoimp and Jestimp now count towards the loot averaging setting</li>
<li>The bonus granted by Meditation now counts towards Chronoimp and Jestimp loot, as well as Bone Trader boosts</li>
<li>Cleaned up a few lingering UI problems. The resource column that displays gems, fragments, and helium should remain lined up on all resolutions now. Also, the message log has had a few visual improvements.</li>
<li>Fixed an issue with certain text colors not properly resetting on portal</li>
<li>Dominance formation upgrade no longer has a random '50' in the middle of the description</li>
</ul>
</ul>
<ul class="betterList">
<li>2.8 - 1/10/16</li>
<ul>
<li>Content</li>
<li>The new level 125 unique map that was added in 2.74 now has a reward or two. The reward for the unique map at Z125 also has a reward or two. The reward for the reward for the unique map at Z125 also has a reward or two. And so on. (Some infinitely scaling content).</li>
<li>Recycling maps now refunds 1/4th of the base cost of its level in fragments (up from 1 fragment).</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Added a "Recycle Below" button to the maps screen. Clicking this button will recycle all maps that are a lower level than the set map creation level (after a confirmation message).</li>
<li>Mousing over the Zone or Map Name Box now shows you how long you have been on your current zone as well as some info about your map if you're in maps.</li>
<li>Added a new option, which allows you to toggle on or off extra data on each map, so that you can tell what kind of map you made without selecting it.</li>
<li>The tooltip solution from the last patch made them too large on smaller resolutions, so they've been redesigned once again. The new default placement is very similar to where it was before (though better at staying on screen, and better size scaling for smaller resolutions), but there is also a new option (on the top row of settings, next to the disable tooltips), where you can change the default placement location.</li>
<li>Now that the tooltips are more reliable, added real tooltips for formations.</li>
<li>Also added real tooltips for all buff/debuff icons.</li>
<li>Added an extra decimal of precision to the extra breed timer setting.</li>
<li>Added a setting to disable the fade-in effect on UI elements.</li>
<li>Added an experimental setting which takes the average last 2 minutes of food, wood, metal, and gems gained from loot, and adds them to display calculations for resources per second. This will give you a more accurate time estimation for storages filling and for tooltip time calculations if you are earning a bunch of loot from maps and the world.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Keys from the prison now only drop the first time ever clearing The Prison. (they haven't done anything since they were dropped as a per run requirement to start Electricity).</li>
<li>Pausing the game no longer ruins the helium per hour stat.</li>
<li>Achievements should no longer flow out of the achievement window.</li>
<li>The settings button tooltips are now much more stable in Firefox.</li>
<li>Delete save works again.<span style="font-size: 0.01em">Whoops</span></li>
</ul>
</ul>
<ul class="betterList">
<li>2.751 - 1/4/16</li>
<ul>
<li>UI/Quality of Life</li>
<li>Added third toggle option to the secondary timer setting. You can now toggle between off, displaying the time to breed to 100%, or displaying the time to breed to the AutoFight threshold.</li>
</ul>
</ul>
<ul class="betterList">
<li>2.75 - 12/30/15</li>
<ul>
<li>Content</li>
<li>Added new perk and challenge at zone 45</li>
<li>Golimp fragment drop chance has increased from 10% to 20%</li>
<li>Wormhole housing increase increased by 50%</li>
<li>After completing Scientist I, you now also start the game with 10 traps.</li>
<li>Presimpts have left until next year</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Added Pause setting. Clicking this will totally pause the game, halting everything including achievement timers and offline progress.</li>
<li>Added setting to display total time required to breed a full group of Trimps on the Trimp breed bar.</li>
<li>Added setting to disable alert popups when you unlock new things.</li>
<li>Added setting to disable background image</li>
<li>Removed settings' descriptions from underneath each setting, and moved them in to tooltips. (I needed more room for settings)</li>
<li>Clicking the resource owned / max numbers for food, wood, and metal now displays a breakdown of how max resources are calculated.</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Rewrote the math for placing tooltips on the screen. They should no longer fall off the bottom or the right side in any situation.</li>
</ul>
</ul>
<ul class="betterList">
<li>2.74 - 12/17/15</li>
<ul>
<li>Content</li>
<li>Gigastations now drop every 5 levels through zone 170, then transition to every 10 levels for 180+. (Up from transitioning to every 10 levels at 130. Extra Gigastations for all!)</li>
<li>Completing the 'Nom' challenge now gives 3x helium, up from 2x.</li>
<li>The spawn rate of Turkimps has been halved, but they are now a permanent bad guy.</li>
<li>Presimpts have begun randomly appearing around the planet, giving out free resources. If you're lucky, you might even find a bone! Presimpts will be here for two weeks. For real this time.</li>
<li>Titimps now stack up to 45 seconds, if you have some time left on one when you kill the next one (similar to how Turkimps work)</li>
<li>Added new Unique Map which drops from Z125+ maps</li>
<li>Added speed run achievements and a bunch of bad guys to the new map (there's no drop or challenge associated <b>yet</b>, but you just might find it worth farming)</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Statistics now update once per second if on the stats screen</li>
<li>The Warpstation tooltip now shows you how many Warpstations you purchased before your last Gigastation</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Firefox update 43 has caused an issue with Trimps and users who have disabled 3rd party cookies. While I can't override Firefox security settings, there is now a check for this on load, and a message informing you how to fix it if this issue is preventing saving/loading.</li>
<li>Alerts on new drops no longer disappear when you get a drop in the same category</li>
<li>Mapology now properly unlocks at reaching zone 150, instead of on clearing zone 150.</li>
</ul>
</ul>
<ul class="betterList">
<li>2.73 - 12/9/15</li>
<ul>
<li>Content</li>
<li>Added new challenge and perk at Z150</li>
<li>Added two new map Biomes. The first, "Depths" can be crafted or randomed just like the old three, but provides all gems instead of other resources. The second, maps named "Gardens", can only be made randomly and drop food, wood, and/or metal.</li>
<li>Added new bad guys for the new Biomes</li>
<li>Added a ton of new map suffixes, which rebalanced Random to be more equal between the 5 Biomes</li>
<li>There are no longer "Biomeless" maps where special bad guys do not spawn. All maps now have a set Biome and at least one special bad guy.</li>
</ul>
<ul>
<li>UI/Quality of Life</li>
<li>Achievements (except for the housing achievements) now show current progress when you mouse over an in-progress achievement on the achievement screen. You'll have to complete a map after this patch before the speed run ones will show up.</li>
<li>Added some new Trimp death texts (all written by various residents of Kong chat room 2)</li>
<li>Added a message log notice after completing a Scientist challenge, stating that the 'Research' button is available again</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>If you purchase and then refund a Wormhole, it no longer counts as Wormholed helium in stats</li>
<li>Fixed issue where purchasing extra Geneticists and then equipment during the same battle/group of fighting Trimps would not properly add the correct amount of health</li>
<li>Fixed issue where Nom stacks were not properly added in some situations</li>
<li>Fixed issue where offline progress gems weren't counting towards the statistic/achievement.</li>
</ul>
</ul>
<ul class="betterList">
<li>2.721 - 12/3/15</li>
<ul>
<li>UI/Quality of Life</li>
<li>Shieldblock has been added to the list of scary purchases if you have been further than zone 30. This means that it will make a confirmation pop-up if you have the scary purchase setting enabled. </li>
<li>Speed run achievements now unlock one map in to the future. Eg: On your first playthrough, you can see achievements for Speed: The Wall once you are a high enough level to unlock The Block</li>
<li>The details of each speed run achievement can now be viewed even before the previous tier has been unlocked. Eg: You can now see the time required for the pink Prison speed run achievements before finishing the green ones.</li>
<li>Added option to toggle off the confirmation message at the bone trader</li>
<li>The fight tooltip Trimp number is now prettier</li>
<li>Combat log Trimp death numbers are now prettier</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Purchasing new equipment with points in 'Coordinated' while in combat now properly updates your stats without Trimps needing to die first</li>
<li>The fight tooltip Trimp number is now correct when you have points in Coordinated</li>
<li>The display number for science is no longer incorrect when gathering there with 'Well Fed' active</li>
<li>The zone indicator box no longer says that you have a map bonus directly after a portal (this was a display issue only)</li>
<li>If you make it back up to 60 without refreshing after portalling, your last used formation no longer displays as active (this was a display issue only)</li>
<li>Zone achievements now unlock at the proper level (instead of one early)</li>
<li>Portal achievements now unlock at the proper portal (instead of one late)</li>
<li>Resource timers should no longer ever say "60 seconds" in any situation</li>
<li>Time until max on resources no longer shows anything if full</li>
</ul>
<ul>
<li>Misc</li>
<li>While not a change, I just wanted to inform everyone that the Turkimps will stick around for a few more weeks. I like the mechanic, others have expressed that they liked the mechanic, and I am looking for a good way to make it a permanent feature before carving them out.</li>
</ul>
</ul>
<ul class="betterList">
<li>2.72 - 11/28/15</li>
<ul>
<li>Content</li>
<li>Added 111 achievements!</li>
<li>Added new statistic - Total Gems Earned</li>
<li>The wall now has a named Boss</li>
</ul>
<ul>
<li>Bug Fixes</li>
<li>Fixed issue with "Planets Broken" stat.</li>
<li>Fixed issue where an extra space would sometimes weasel its way in to the numbers underneath upgrades. Eg: ( +2) instead of (+2)</li>
</ul>
</ul>
<ul class="betterList">
<li>2.71 - 11/23/15</li>
<ul>
<li>Content</li>
<li>Added new challenge/perk at Zone 115.</li>
<li>Turkimps now spawn more frequently.</li>
</ul>
<ul>
<li>Bug Fix</li>
<li>The Map Bonus Indicator on the Maps Button no longer shows information from last run if you portal from a map.</li>
</ul>
</ul>
<ul class="betterList">
<li>2.701 - 11/20/15</li>
<ul>
<li>Bug Fixes</li>
<li>Best helium/hour stat should now always properly save.</li>
<li>Whipimp and Venimp were displaying their percentages incorrectly, and were talked to about it.</li>
<li>Lengths of time greater than 60 seconds in the tooltips are now more accurate.</li>
<li>The Bone Trader button now updates after spending bones.</li>
</ul>
</ul>
<ul class="betterList">
<li>2.7 - 11/18/15</li>
<ul>
<li>Content:</li>
<li>Turkimps are running wild around the Trimp home world. You'll find one about every other zone. They're tasty.</li>
<li>The rewards from the slow challenge have been improved</li>
<li>Story messages now go up to 145 (11 new ones)</li>
<li>Chronoimp and Jestimp now take you in to account if you're gathering something they're giving you.</li>
<li>Within the next week, there will be a new late game challenge/perk</li>
</ul>
<ul>
<li>UI / Quality of Life Stuff:</li>
<li>Statistics now store for total and for current run! Current run stats will start for your game as soon as you refresh on this patch, and all old stats will be moved to the total tab.</li>
<li>Total Helium Earned in stats no longer counts helium spent on Wormholes. A separate stat has been added to see how much you spend on Wormholes.</li>
<li>Whipimps and Venimps now display the total amount that they're helping you out by, rather than just saying 0.3%.</li>
<li>Bone Trader button now shows how many bones you have</li>
<li>Reworked how tooltips handle infinity. It's less obnoxious now</li>
<li>Biome is now saved with the other custom map settings</li>
<li>Added indicator for how many map bonus stacks you've earned, which is visible while you're inside maps.</li>
<li>The Map Chamber zone indicator (the grey box in the top left that shows zone level and stuff) now always shows current zone number and map bonus %.</li>
<li>Updated this update log, that counts right?</li>
</ul>
<ul>
<li>Bug Fixes:</li>
<li>Titimp now responds properly to purchasing new weapons while he is active</li>
<li>The timers in tooltips were off by one second. They now say there's one second left when there's actually one second left</li>
<li>'Map Loot' in the loot break down was showing 100% higher than it should have, and is not doing that any more.</li>
<li>Bone trader 'Buy Portal' description is now 73% more accurate</li>
<li>Fixed floating point error that had infiltrated the custom number box, and would occasionally cause large numbers to be slightly less than intended.</li>
</ul>
</ul>
<span style="font-weight: bold; font-size: 1.1em;">2.601 - 11/6/15</span>
<ul>
<li>Created some more room by the Trimps stats in the battle window. This should prevent buffs from falling in to two lines on smaller resolutions.</li>
<li>Used a different shade of grey for buffs/debuffs to make them stand out better</li>
<li>Map slider values now save for your session</li>
<li>The bonus from Titimp now correctly applies to weapons purchased before the current fighting group of Trimps dies</li>
<li>Quick Trimps and Golden Maps bone trader options now properly reset back to being purchasable after using the portal without requiring a page refresh</li>
<li>Added "Best He/Hour All Runs" statistic. This won't show up until your first portal after this patch.</li>
<li>Pressing 1-4 while holding control/command no longer changes formations</li>
</ul>
<span style="font-weight: bold; font-size: 1.1em;">2.6 - 11/4/15</span>
<ul>
<li>Added new challenge at Z130 with a new type of reward</li>
<li>Added new repeatable challenge at Z145</li>
<li>If you can't afford a particular resource, the tooltip now shows you the time until you have enough, instead of a percentage above 100. If you can afford the resource, you still see the percentage of your owned resources that the item will take like before.</li>
<li>Added little tiny present icon near the bad guy stats box. Clicking this little present icon brings up a breakdown of how loot is calculated, which was also added today. You can use the buttons at the top to switch between food/wood/metal, gems, and fragments.</li>
<li>Your map repeat setting now carries over through portals</li>
<li>Added support for the numpad to switch formations</li>
<li>Added new words for when Trimps and bad guys die in the message log</li>
<li>Scientist Challenges now show up on the recently added preview screen</li>
<li>Pumpkimps have gone in to hiding until next year. Don't worry though, there will be something for Thanksgiving later this month!</li>
</ul>
<span style="font-weight: bold; font-size: 1.1em;">2.51 - 10/30/15</span>
<ul>
<li><b>Note: </b>There will also be a content patch within the next week! However, this stuff didn't need balance testing and I figured people would want it ASAP, so here you go!</li>
<li>Added statistics! Better late than never, right? If there are more stats you'd like to see, let me know! Some of the stats have been recording for a while, some of them are starting fresh today. I can also now easily add new ones!</li>
<li>On the portal screen, you can now see one challenge in to the future. You won't be able to see the description or rewards until it is unlocked, but you'll be able to see the name and how you unlock it. This will hopefully make it easier to set goals for runs!</li>
<li>Fixed display of fight control buttons when running a map on smaller screen resolutions so they don't get pushed out of the window</li>
<li>Alert icons should no longer push stuff where it shouldn't go on smaller resolutions</li>
<li>The game now recovers from your computer going to sleep with more grace</li>
</ul>
<span style="font-weight: bold; font-size: 1.1em;">2.5 - 10/21/15</span>
<ul>
<li>For the next couple of weeks, Pumpkimps have infiltrated the world and maps. They Trick or Treat.</li>
<li>New Mechanic: Map Bonus - Whenever you complete a max level map (if your highest zone this run is 40, you need to do a level 40 map), you will gain a 20% stacking additive damage bonus to your Trimps in the world (stacks up to 10 times). This bonus is cleared when you travel to the next zone. This bonus is available at every level!</li>
<li>Added Scientist III challenge to zone 90!</li>
<li>Barrier formation now also reduces the amount of block that enemies can pierce when the planet is broken by half (from 20% to 10%).</li>
<li>Added 4 new Exotic Imports! 3 live in maps, one lives in the world.
<ul>
<li><b>Magnimp (world)</b> - Each time a Magnimp dies, a powerful magnetic field forms around your Trimps, increasing the amount of resources gained when looting in maps or zones by 0.3%. This works like the Looting perk, but compounds and does not work on helium.</li>
<li><b>Jestimp (maps)</b> - Each time a Jestimp dies, black magic surges through the air and instantly grants 45 seconds of production for either Food, Wood, Metal, Gems, Fragments, or Science, chosen randomly. This works like the boosts where currently assigned workers are used in the calculation, but this scales with map loot bonuses, motivation, and looting. (Exactly 45 seconds of real production * loot bonuses)</li>
<li><b>Chronoimp (maps)</b> - Each time a Chronoimp dies, a space-time anomaly forms which instantly grants 5 seconds of production for Food, Wood, Metal, Science, Gems (if Dragimps are unlocked), and Fragments (if explorers are unlocked). This calculates the same way as Jestimp.</li>
<li><b>Titimp (maps)</b> - Each time a Titimp falls, your Trimps are blessed with the gift of the Titimp which increases their damage by 100% for 30 seconds. This effect is lost when leaving maps, and refreshes duration if another Titimp is killed.</li>
</ul>
</li>
<li>Added toggle option to switch to the old equipment prestige unlock order. Who am I to say which order is best? Do it yourself! 'Equipment First' means that all of one type of equipment will drop first (Shield II -> Shield III -> Shield IV, old method), 'Tier First' means that a whole tier will drop before moving to the next (Shield II -> Dagger II -> Boots II, new method). Changing this option applies to the next map that is generated.</li>
<li>Battle Territory Bonus and Tauntimp messages in the log now take Carpentry in to account when showing the amount of Trimps gained. This did not change any actual calculations or gameplay, just the display in the message log.</li>
<li>Added time until full timer for Trimps breeding.</li>
<li>Speedscience no longer drops during Scientist challenges. After the challenge is completed, you'll get them back.</li>
</ul>
<span style="font-weight: bold; font-size: 1.1em;">2.401 - 10/12/15</span>
<ul>
<li>Cleaned up an issue with Agility, increasing speed a tiny bit and making the calculation more accurate to the description</li>
<li>The health bonus from Geneticists now calculates based off of the lowest amount of Geneticists you had while that group of Trimps was breeding. For example, if you buy 100 Geneticists for most of the breed time, then buy 300 more at the very end to try to boost health, your Trimps will only get credit for 100. This should remove the need to buy a ton of Geneticists, then fire them for each group of soldiers. </li>
</ul>
<span style="font-weight: bold; font-size: 1.1em;">2.4 - 10/7/15</span>
<ul>
<li>Added new challenge at Zone 120, and added new perk as a reward. It's a pretty sweet perk, if I do say so myself.</li>
<li>Added new togglable option to lock out all upgrades, buildings, equipment, and jobs for 1 second after unlocking something new. This will help people who go to click something right as something new unlocks, and end up buying the wrong thing. This option defaults to off.</li>
<li>The custom number button now includes support for typing things such as "5e6" or "5M" to quickly get 5 million.</li>
<li>Pressing enter while the custom number menu is up now submits that number.</li>
<li>Tooltips now update the price percentage and affordability colors in real time.</li>
<li>Tauntimp now grants 0.3% extra max Trimps instead of 1/3rd of Zone number.</li>
<li>Feyimps now can spawn starting at world 1.</li>
<li>Housing structure tooltips now include Carpentry in their calculations</li>
<li>Job tooltips now include Motivation in their calculations</li>
<li>Gigastation now drops every 10 levels starting at 140 and continuing until the end of time.</li>
<li>Improved the message log. Scrolling up a bit now stops the log from auto scrolling down each time something is added.</li>
<li>Equipment upgrades from maps now unlock in order.</li>
<li>The bonus to storage size granted by packrat has been doubled, from 10% per level to 20% per level.</li>
</ul>
<span style="font-weight: bold; font-size: 1.1em;">2.32 - 10/1/15</span>
<ul>
<li>Reduced the penalty for running maps lower than your current zone level. Before, the loot was reduced by 20% per level from the average gain at that level. Now, you will see only a strict 20% reduction per level and higher rewards.</li>
<li>Updated description for Goblimp and Feyimp to reflect new values (higher than before)</li>
</ul>
<span style="font-weight: bold; font-size: 1.1em;">2.31 - 9/26/15</span>
<ul>
<li>Added new challenge at zone 100</li>
<li>Unique maps now display as green if you haven't earned the unique upgrade that they offer yet. After you earn the upgrade, they turn back to red. This should help to remember to get Portal and Bounty.</li>
<li>Picking a biome in the map creator now increases total cost by 2X, down from 4X.</li>
</ul>
<span style="font-weight: bold; font-size: 1.1em;">2.3 - 9/23/15</span>
<ul>
<li>Added new challenge at zone 70</li>
<li>Added new perk from new challenge</li>
<li>Added new job at 70 that synergizes with the new perk.</li>
<li>Loot rewards now give about 3.5 seconds worth of production for food, wood, and metal before looting/map loot bonuses (5 seconds after zone 100). The 3.5 seconds is average across all of your gathering Trimps, so it won't be exactly 3.5 seconds depending on your ratio of farmers/lumberjacks/miners. Map loot goes by your average resource gain at the level of the map, but will decrease by 20% for every level lower than your world the map is. This is a buff to some zones, not a buff for others, but map loot is now stable and meaningful throughout the game. This is hopefully the final zone/map resource overhaul.</li>
<li>Gem loot from maps, world, and imps now also increased to always stay close to tributes.</li>
<li>Added boss to Trimple Of Doom who drops 4x food compared to a normal square, but is stronger than a Snimp.</li>
<li>You no longer have to clear The Prison every single run in order to unlock Electricity. One time is enough.</li>
<li>Buildings, jobs, and upgrades unlock to the same position they would go to on save load. Rearranged some buildings and upgrades to keep them close to like-minded individuals.</li>
<li>Added hotkeys for formations. You can now press X, H, D, B, or 1, 2, 3, 4 to switch.</li>
<li>Added colors to perks based on purchasability</li>
<li>Changed the way numbers display when purchasing perks. If you have 6 levels in a perk already confirmed then go to add 1 more, instead of saying "0 (+7)" like before, it will show "7 (+1)". The first number will be the total level after you press confirm, and the parenthesized number will be how many are not yet confirmed.</li>
<li>Perk price no longer displays in the tooltip if you're at the max</li>
<li>Made a few alignment tweaks with the UI</li>
<li>The Save Import feature now can detect and remove whitespace and line breaks automatically, fixing issues for some people who were saving their export in weird text editors or emailing their saves and stuff.</li>
<li>Added indicator to the save button which lets you know at a glance if autosave is on or off</li>
<li>Added Gigastation to the list of "dangerous upgrades", so like wormhole it now has a confirmation popup that can be disabled in the settings.</li>
<li><i>Almost every addition in this patch is a suggestion from the communities at Reddit and Kongregate. You guys are awesome and keep me motivated to continue giving this game love. Thanks for all of the support.</i></li>
</ul>