forked from romovs/amber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1331 lines (953 loc) · 35.5 KB
/
CHANGELOG
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
Version 1.54.2
Fixed:
* Aggro radius erroneously shown around mammoths.
* A couple of issues with world map.
* Mirkwood log highlight not working.
* Auto-mussel picker not working with Q key.
Misc:
* Restored automatic map tiles dumper.
Version 1.54.1
Fixed:
* Regression introduced in v1.54.0
Version 1.54.0
New:
* Allow removing resource markers.
* Console command 'savemap' for dumping world map tiles.
* Highlight intermediate harvestable stages for carrots and hemp.
* Add option to disable dropping tubers in auto-leveler.
Fixed:
* Raven's Bite not being listed and Attacks filter.
* Map highlight settings (trees, icons. etc) not being cleared when switching chars.
* Black eye didn't list available cures.
* Water vortex missing from world map filters.
* Auto-leveler for people having high ping.
Misc:
* Added grub to icons list
* Tweaked blue kin color.
Version 1.53.0
New:
* Separate Placed and Natural lists in worldmap replaced by single filterable list.
* Holding Alt while right clicking things will prevent automatic menu selection if such is defined.
* Extension for automatically filleting all the fish in inventory.
* Option to change the color of tree bounding boxes.
Fixed:
* Auto-leveler bug (probably..)
Misc:
* Changed Oldrtunk to Mirkwood Log in trees list and added Lingonberies to icons list.
* Refactored auto-menu options - old settings were not preserved.
Version 1.52.3
Fixed:
* Missing dead wolverine icon.
Version 1.52.2
Fixed:
* Crash in menu search.
Misc:
* Add radius to wolverines.
Version 1.52.1
Fixed:
* Crime and tracking automatic toggle not working.
Misc:
* Use server provided values for everything that uses study times.
* Display remaining study time using real time.
Version 1.52.0
Misc:
* Upstream code merge.
Version 1.51.0
New:
* Added study time and LP/H to curio tooltip (by Xcom).
* Added kin search.
Fixed:
* Miscellaneous crashes.
Misc:
* Use single smoke source for tarkilns.
* Added boars to clover feeder.
* Added giddyup and shear wool to auto-menu options.
* Restored auto-hearth option.
Version 1.50.1
Fixed:
* Auto-miner issues due to server-side drinking.
* Barterstand crash.
Misc:
* Added icon for nidbanes.
* Increase Q forage distance to 20 tiles.
* Removed auto-hearth since auto-logout is more practical (and having both options is confusing).
Version 1.50.0
New:
* Worldmap zoom.
Fixed:
* Local minimap borking sometimes.
Misc:
* Limited auto-picker (Q key) to 10 tiles
* Added ladybug, moths, etc to hide icons list thus allowing them to be picked with the Q key.
Version 1.49.2
Fixed:
* Crash in PickForagable.
Misc:
* Add radius for walruses.
* Upstream code merge.
* Updated Russian localization.
Version 1.49.1
Misc:
* Enable terrain elevation by default.
Version 1.49.0
New:
* Option to disable terrain elevation.
* Pressing Q key will pick nearest forageable or the stuff from the icons list which is not currently hidden.
Fixed:
* Auto-lever stop button not working.
Version 1.48.1
Fixed:
* Missing icon for dead walruses.
Version 1.48.0
New:
* Clover feeder.
* Walrus sound alarm (controlled by same option as bear and lynx alarms).
Fixed:
* Search window filter not being cleared when closing the window with shift+s.
* Bush and tree icon positions being slightly off.
Misc:
* Updated curio timings (thanks to NicholasSavard).
* Added Toad Butter to relevant wound descriptions.
* Add timers to extensions menu.
* Upstream code merge.
* Updated Russian localization.
Version 1.47.1
Fixed:
* Map tile dumper saving tiles into wrong session under certain conditions.
Misc:
* Added new trees to tree list.
* Removed ore boulders from boulders list.
* Clear Search window's filter when reopening it.
* Updated Russian localization.
Version 1.47.0
New:
* Option to disable terrain smoothing (by ghandhikus). See Video settings.
Fixed:
* Map tile dumper not creating new session when entering/leaving caves.
* Local minimap not refreshing properly under certain conditions.
Misc:
* Dropped triple-quality related modifications.
* Upstream code merge.
Version 1.46.1
Fixed:
* Crash when storing resource and the destination file is locked.
Version 1.46.0
New:
* Object marking.
* Added Flay action to Menu Settings.
* Added ducks to hide icons list.
* Added cauldron to the objects which can be lighted using torch extension.
* Ctlr+A for opening the world map window.
Fixed:
* Wound description for bruises not showing.
* Remaining time formatting.
Misc:
* Updated Russian localization.
Version 1.45.1
Fixed:
* Craft/build window issues: actions not being saved to history bar, list of actions not
updating when discovering new items.
* Auto-leveler.
* Auto-miner not working under certain conditions.
Misc:
* Updated Russian localization.
Version 1.45.0
New:
* Craft/Build search window.
* Visited charter stones list.
* Added Skin option to Menu Settings.
Fixed:
* Client locking up during "Waiting for map data..." under certain conditions.
* Auto-miner.
* Multiple player's movement vector issues.
* Local minimap disappearing while using cross-roads/charters under certain conditions.
* Remaining study time erroneously displayed instead of percentage for curios placed in cauldrons etc.
* kbd console command not being preserved across client restarts.
Misc:
* Extended localization support.
* Updated Russian localization.
Version 1.44.0
New:
* Added pluck, clean, and butcher options to Menu Settings.
* Wound description now shows remedies which can be used to cure it.
Fixed:
* Crash when changing some video related settings before loging into a character.
Misc:
* Option to show animals paths was removed and option to show other players paths was changed
to show only the path of your character.
* Removed "Alternative" minimap controls option.
* Alt+click to transfer all items from stockpile instead of shift+rmb.
* Toned-down drying rack highlight colors.
* Updated Russian localization.
Version 1.43.1
Fixed:
* Movement vectors.
* Tile centering.
* Crash while clearing up minimap cache.
* Mussel picker, branch/coal fuelers.
Version 1.43.0
Misc:
* Upstream merge.
Version 1.42.1
New:
* Switch between currently selected quality mode and 'all' mode with alt+q.
Fixed:
* Belt hotkeys being invoked when typing into stockpile window.
* Hitbox not shown for domestic horses.
Misc:
* Take one item from stockpile when clicking take without entering an amount.
* Changed extensions menu icon.
* Updated Russian localization.
* Upstream merge.
Version 1.42.0
New:
* Option to show previously studied curiosities in study window.
* Option to show buff icon if study window is not fully occupied.
* Added minimap icons for dead hedgehogs and squirrels.
Fixed:
* Automatic ground leveler not taking dirt from stockpiles.
* F-hotkeys not working when stockpile window is open.
* Various small fixes.
Misc:
* Option to aggro closest player on Tab key has been replaced by shift+tab.
* Localization improvements.
Version 1.41.1
Misc:
* Upstream code merge.
Version 1.41.0
Misc:
* Reverted back to AWT.
Version 1.40.0
New:
* Full-screen mode with support for resolution changing.
* Support for hardware mouse cursors on Linux and Mac OS X.
Fixed:
* Tile centering bug.
* Localized resource alarm not firing on rock crystals.
Misc:
* Updated Chinese translation.
* Updated curio study times.
* Changed screenshot file type to PNG.
Version 1.39.1
Fixed:
* Rockcrystal not being recognized for sound alarm
* Crash while viewing a barterstand with no buy button.
Version 1.39.0
New:
* Show item quality in barter stand windows.
* Simplified opening indicators.
* Option to show current keybindings for combat actions.
* Grayed out icons for dead animals (except aurochs).
* Alarm for localized resources.
Fixed:
* Animal radius not being removed after killing the animal.
Version 1.38.1
New:
* Highlight Travel menu options.
Fixed:
* Combat school not switching without pressing save.
* Mussel picker not working with minimap.
Misc:
* Localization support improvements.
* Updated Russian localization.
* Code cleanup.
Version 1.38.0
New:
* Alternative combat UI.
Fixed:
* Fixed circular progress indicators.
Version 1.37.0
New:
* Automatic picking of clustered mussels.
* Confirmation dialog for magic actions.
* Walk while having an item on the cursor with alt+lmb.
* Allow taking specific number of items from stockpiles.
Fixed:
* Aiming vectors not working on ATI/AMD GPUs.
* Overlapping flower menus (e.g. cross roads).
* Using branches with steel refueler.
* Incoming party messages not being saved to file (log chats option).
* Buff tooltips not working when pointing at the lower half of buff icons.
* Combat moves were mistakenly placed under maneuvers filters and vise versa.
Misc:
* Chinese translation updated by raislin_mage.
* Russian translation updated by zebratul.
* Settings window was reorganized.
* Changed colors of beehive and trough radiuses.
* Large window close button is now embedded into the client.
* Different sound for lynx alarm.
Version 1.36.4
Fixed:
* ctrl+tab for switching opponents not working on Windows.
Misc:
* Merged upstream changes.
* Updated en/ru l10n.
Version 1.36.3
Misc:
* Combat settings UI redesing + action filters.
Version 1.36.2
Fixed:
* Combat settings UI overlapping issues on Windows.
Version 1.36.1
New:
* Option to change combat key bindings.
* Option to log combat actions to system log.
Version 1.36.0
New:
* Load indicator for ovens, smelters, forges.
Fixed:
* Rare crash in fill oven/smelters task.
Misc:
* shift+wheel for switching combat opponents has been replaced with ctrl+tab
* Display human readable names in map settings instead of resource names.
Version 1.35.3
Fixed:
* Last stage indicator flickering on some crops.
Misc:
* Updated curio study times.
* Standardized controls for moving the F-bar, history bar, and hand slots.
* Improved localization support.
* Updated Russian localization and English strings.
* Various code cleanups.
Version 1.35.2
Fixed:
* Slow auto-mining.
* Crash when having non existent resources (e.g. from another client) on the F-belt.
Misc:
* Added windweed to hide icons list.
* Open system log by default.
* Updated russian localization and english strings.
Version 1.35.0
Fixed:
* Pathfinding issues (by elsid).
* Russian localization (by elsid).
Misc:
* Option to set transparency of the quality background (by elsid).
* Optimized grid overlay rendering.
* Merged vanilla changes.
Version 1.34.2
Misc:
* Various improvements to localization support.
* Various code cleanups.
* Merged vanilla changes.
Version 1.34.1
New:
* [Preliminary] Chinese translation (by forsaken628).
* Option to disallow aggroing of partied/village members/non-red kins.
* Added option for geometric average.
Fixed:
* Construction health not being updated after fixing it.
* Various minor things.
Misc:
* Updated Russian localization (by elsid).
* Adjustments to options and character sheet window layout.
Version 1.34.0
New:
* Show character direction on the minimap (by elsid).
* Option to auto logout on unknown/red players.
Fixed:
* Food satiation type text no showing in the tooltip.
* Buckets/flask/etc bars not showing when using Russian language.
* Various crashes.
Misc:
* Updated Russian localization (by InGodWeTrust and elsid).
* Preserve :audiobuf setting across restarts.
* Show mining support radius for ladders.
* Show average quality when inspecting objects.
* Completely removed ui hiding using space-bar together with the old setting for disabling it.
Version 1.33.1
New:
* Wrecking ball icon.
* Option to disable the hotkey for drinking.
Fixed:
* Arrow vectors when ridding horses.
* Misc. crashes.
Misc:
* Update Russian localization (on behalf of InGodWeTrust)
Version 1.33.0
New:
* Arrow vectors.
* Attack cooldown delta.
Version 1.32.8
Fixed:
* change was erroneously called for linstep event.
* NPE in OCache.cmppose
Version 1.32.7
New:
* Cart icon.
* Volume slider for wagon whip sound.
Fixed:
* Floating hearth fire names when fire animation are disabled.
Misc:
* Merged upstream changes.
Version 1.32.6
Fixed:
* Custom gfx/hud/drop resource conflict with other clients.
* Crash in F-belt
* Crash on alt+rbm equipory items.
* Back-quote/tilde key not working on non English locales on Windows.
* Misc. fixes related to optimization merge.
Misc:
* Updated curio list.
Version 1.32.5
Fixed:
* Fixed crash when auto-mining.
Misc:
* Merge optimization related changes from upstream.
Version 1.32.4
Misc:
* Moved W hotkey to use back-quote key and fixed everything related to auto-drinking.
Version 1.32.3
New:
* Drink water from any container in the inventory on W key.
Misc:
* Updated resources jar.
Version 1.32.2
New:
* Instant flower menus option.
Fixed:
* Possible crash in F-belt.
* Crash in History belt.
Version 1.32.1
Fixed:
* Crash when studying curios with less than 1 hour study time.
* alt+z/x not working.
* Re-enabled shift+alt+lmb.
Version 1.32.0
New:
* Craft/build history hotbelt.
* LP/hour in character sheet.
* Option to disable animations.
Fixed:
* Wikipedia hotkey not working for non English localizations.
Misc:
* alt+lmb to transfer identical items in descending order, alt+rmb for ascending.
alt+shift+lmb was removed together with the old ordering option in settings window.
* shift+d to toggle beehive/trough radius. Old setting in the settings window was removed.
* Updates to localization support and Russian translation.
Version 1.31.1
New:
* Battering ram and catapult alarm.
Misc:
* Terminate auto-leveler when out of water.
* Merged vanilla changes.
* Misc smaller fixes.
Version 1.31.0
New:
* Task for lighting kilns/smelters/ovens/steelbxoes using a torch.
Fixed:
* Animal radiuses being shown for dead animals.
* Crash when dragging and switching camera at the same time.
* Possible fix for UnknownHostException when fetching resources using flaky DNS.
* Other smaller fixes and adjustments...
Misc:
* Actions from extended menu can be used from F-key hotbar now.
* Updates to localization support and Russian translation (on behalf of InGodWeTrust).
Version 1.30.3
Fixed:
* Crash when using catapult.
Misc:
* Localization support for food items, curios, etc, tooltips.
Version 1.30.2
New:
* Mammoths alarm.
* Wheelbarrow icon.
Fixed:
* Crash when using ctrl+g during map load.
* Crash on map load.
* Crash in pathfinder.
* Number of issues with auto-leveler (by Arcanist).
* Flower menu in kin window not working for non English languages.
Misc:
* Updated Russian localization (by InGodWeTrust).
* Moved quality related settings from Display Settings to separate tab.
* Localization support for hardcoded strings.
Version 1.30.1
Fixed:
* Temporary BufferBGL fix.
* Pathfinder issues.
* Auto-leveler issues.
Version 1.30.0
New:
* Russian localization.
* Automatic ground leveler.
* Party members highlight (from shubla's client) .
Fixed:
* Possible crash when switching characters.
* Pathfinder issues.
Misc:
* Merged vanilla changes.
* Misc. code cleanups and improvements to localization support.
Version 1.29.2
Misc:
* Restored alternative minimap controls.
Version 1.29.1
Misc:
* Updated English localization files and added support for labels and system messages
localization.
* Changed troll alarm sound.
* Reorganized options menu.
* Merged vanilla changes.
Version 1.29.0
New:
* Localization support.
* Troll alarm.
* Task for filling oven with 4 branches.
* Option to sort items in ascending order instead of the default descending when transferring.
Fixed:
* Rare crash when teleporting.
* Fixed 11/12 coal task occasionally using wrong amount of fuel.
* Curio alarm triggered by bat wings drying on a herbalist table.
* Assortment of other small issues.
Misc:
* Terminate autominer on troll spawn.
* Changed Ctrl+I to Shift+I.
Version 1.28.3
Misc:
* Updated resources.
Version 1.28.2
Misc:
* Merged vanilla changes.
* Added glimmermoss and bloated bolete to curios alarm.
Version 1.28.1
Fixed:
* Tree stages not showing.
Version 1.28.0
New:
* Steel crucibles refueler.
* Option to hide extensions menu.
Fixed:
* Drying frame invalidly highlighted when drying wind weed.
Misc:
* Merged vanilla changes.
Version 1.27.0
New:
* Option to highlight empty and finished drying frames.
* Tasks for adding 11 and 12 coal into smelters.
* Option to allow full zoom-out in Ortho cam.
Fixed:
* Bear alarm.
Misc:
* Auto-miner: allow mining cave walls & option to not drop mined ore.
* Don't display damage of 1 (from scents and such) in the damage overlay.
Version 1.26.0
New:
* F-key toolbar.
* Animal radius.
Fixed:
* Auto-miner issues.
* Pathfinder issues.
* Bear/lynx alarm firing off on dead animals.
Version 1.25.0
New:
* Alarm on bluebells, flotsams, and edelweiss.
* Alarm on bears and lynx.
* Slider for adjusting fireplace sound volume.
* Option to show cooldown time.
* Option to disable dropping items over water (overridable with Ctrl).
Fixed:
* Exception in chat window.
Misc:
* Improved auto-miner.
Version 1.24.6
Misc:
* Merged vanilla changes.
Version 1.24.5
Fixed:
* Fixed NPE in ChatUI.
Misc:
* Merged vanilla changes.
Version 1.24.4
Fixed:
* Position of server time, horizon and status widgets.
* Hide icons list being partially hidden.
Misc:
* By default leave "Disable UI hiding.." option enabled.
Version 1.24.3
Fixed:
* Broken server time and timers.
Version 1.24.2
New:
* Show total sofcap in craft window.
* Option to disable space-bar hiding the UI.
Misc:
* Removed account status info from status widget since accounts are not time bound anymore.
* Map settings (trees/boulders/etc) are stored per character now.
* Merged vanilla changes.
Version 1.24.1
Fixed:
* Movement vectors not showing for vehicles.
Misc:
* Added stalagmite to boulders list.
* Merged latest changes from the vanilla client.
Version 1.24.0
New:
* Show bounding boxes with shift+b.
* Sound alarm on new party chat message (if no message was received in 3 minutes).
Misc:
* Merged latest changes from the vanilla client.
Version 1.23.5
Fixed:
* Potential issue with timers when restarting the client.
Misc:
* Remember position for Stone Casket, Chicken Coop, Extraction Press, Oven, Large Chest.
* Changed ctrl+d to toggle only mine support radius and moved trough/beehive radius toggle
to settings window.
* Vanilla changes merge.
Version 1.23.4
Fixed:
* NPE when resizing the chat.
Version 1.23.3
Fixed:
* Quest log position.
Version 1.23.2
Fixed:
* Updated builtin-res.jar
Version 1.23.1
Misc:
* Auto miner: stop drinking when stamina reaches ~90%.
* Moved option to force hardware cursor from command line switch to settings window.
* Merged changes from the vanilla client.
Version 1.23.0
New:
* Option to activate System log on login (dev. by b0r3d0m).
* Option to auto select 'Split' action.
Fixed:
* Crime/tracking toggles behavior when switching chars.
* Minimap not updating on tiles change.
Misc:
* Resource/tile info on shift/shift+ctrl functionality can be switched off and on with ctrl+i now.
* Added wagon icon to Hide icons list.
* Merged changes from the vanilla client which supposedly fix mouse issues on Mac OS X Java 8.
Version 1.22.0
New:
* Show distance and relative location of party members.
* Option to show buff icons when swimming/tracking/crime is toggled on.
* Option to activate tracking/criminal acts on login.
* Rotate between combat opponents with shift + mouse wheel.
* Option to show server time on the screen (removed from status widget).
* Option to disable metallic mining sound.
Misc:
* Show last stage for crops as a red dot instead of a number.
* Display container (buckets, etc.) content quality instead of the container's quality.
* Added frogs to hide icons list.
Version 1.21.2
New:
* Sound alarm when pony power drops below 10%.
* Option to reverse bad cam's middle mouse button axes.
Fixed:
* Interaction with minimap if Hide icons menu hasn't been ever used.
Misc:
* Upstream changes merge.
* Auto mining is stable now.
Version 1.21.1
New:
* [WIP] Automatic mining.
Misc:
* Upstream changes merge.
Version 1.21.0
New:
* Item wear bars.
* Option to automatically select Eat action.
* Perform right clicks at the center of a tile when ctrl+x is toggled.
* Transfer single item to a stockpile on shift+lmb.
* Show arrows and boar spears on minimap.
* Items with custom icons (arrows, toads, etc) can be picked from minimap.
* Option to to use AZERTY (French) keyboard layout instead of QWERTY.
* Highlight current combat opponent.
* Aggro closest unknown/red player on Tab key.
Misc:
* Removed seeds dropping on shift+d.
Version 1.20.8
Fixed:
* Updates checker buttons not leading to the right URLs.
Version 1.20.7
Fixed:
* Crash when drawing hostile animal icons.
Version 1.20.6
Fixed:
* Minimap flicker when changing locations.
Misc:
* Render icons for hostile animals on top of all other icons.
* Button in updates checker for downloading reduced size update archive.
Version 1.20.5
Misc:
* Upstream changes merge.
Version 1.20.4
Fixed:
* Fixed qualities not being displayed due to recent server update.
Version 1.20.3
New:
* Added option to draw backgrounds for quality values.
Fixed:
* Freezing when switching characters with enabled status display (ctrl+m).
Misc:
* Changed quick filling hotkey (shift+ctrl) to shift+z.
* Changed hotkey for tile name tooltip (shift) to shift+ctrl.
Version 1.20.2
Misc:
* Upstream changes merge.
Version 1.20.1
Fixed:
* Seeds drop hotkey changed to shift+d to prevent conflict with radius toggling.
Version 1.20.0
New:
* Hotkey for taking screenshots.
* Option to use arithmetic mean when calculating average quality.
* Option to display cumulative damage for players/animals.
* Quick filling of troughs/smelters/etc.
* Tree hiding.
* Player position streaming to external mapping tools.
Fixed:
* Contents bars not calculated correctly for buckets containing seeds.
* Quality not being updated when stacking items.
Misc:
* Contents bars are shown on quicklosts as well now.
* Shift + pointing at a ground tile will show its resource name similarly to objects.
* Display base and buffed values for base attributes separately.
* Option for auto dropping seeds in options window has been removed in favor of a hotkey.
Version 1.19.0