forked from dolda2000/hafen-client
-
Notifications
You must be signed in to change notification settings - Fork 75
/
CHANGELOG
2065 lines (1472 loc) · 52.3 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.80.0
Misc:
* Added angler fish to icons list (by oddity).
* Upstream code merge.
Version 1.79.0
New:
* Option to smooth out snow patches from the minimap (by lcy03406).
Fixed:
* Harvestable stage indicator for turnips.
Misc:
* Update ru l18n (by supremko).
* Add Precious Snowflake, Coltsfoot, Frogspawn to icons list.
* Reduce animal alarm volume.
* Upstream code merge.
Version 1.78.2
Fixed:
* Discovered tiles being overwritten by winter tiles.
* Marker upload issues (by andyleap).
Version 1.78.1
Fixed:
* Number of issues in mapping service (by andyleap).
* Proximity aggro setting (by puruscor).
Version 1.78.0
New:
* Support for v4 of github.com/andyleap/hnh-map (by andyleap).
* Transfer items of same quality on middle mouse button click (by lcy03406).
Misc:
* Update en l18n
* Add Jelly Fish to icons list.
Version 1.77.3
Misc:
* Update ru i10n (by supremko).
* Add Sand Flea to icons list.
* Update wound treatments.
* Add wolf sfx.
Version 1.77.2
Misc:
* Update boulders and stones list.
* Make drink hotkey work with belts (only when 'alternative equipment belt window' is toggled on).
* Add Cave Fern to icons list.
* Update en l10n.
* Upstream code merge.
Version 1.77.1
Fixed:
* Server date widget size.
* Map service issues (thanks to kris_hole)
Misc:
* Update boulders, trees, and bushes lists.
Version 1.77.0
New:
* Added support for food service (http://www.havenandhearth.com/forum/viewtopic.php?f=49&t=67285). See General Settings.
Misc:
* Update Russian l18n (by NikitaIlinsky).
* Minor fixes & cleanups.
Version 1.76.0
New:
* Added support for custom mapping service (see http://www.havenandhearth.com/forum/viewtopic.php?f=49&t=67266)
Version 1.75.2
Fixed:
* Stage indicator for fallow plants.
Misc:
* Upstream code merge.
Version 1.75.1
Fixed:
* Crash related to symbel items.
Version 1.75.0
Fixed:
* Crash! Boom! Bang!
Misc:
* Upstream code merge.
Version 1.74.1
Fixed:
* Crash! Boom! Bang!
Misc:
* Make Ctrl+S rebindable.
Version 1.74.0
New:
* Display season details in the date widget.
Misc:
* Make drink hotkey rebindable. Option to disable tilde/back-tick key has been removed as the result.
* Upstream code merge.
Version 1.73.1
Fixed:
* Shift key modifier.
* F belt not restoring properly on login.
* Crash under certain conditions.
Misc:
* Make 'switch combat opponent' key combination changeable.
* Organize key bindings window.
* Upstream code merge.
Version 1.73.0
Misc:
* Upstream code merge.
Version 1.72.3
Fixed:
* Restored miniature trees option.
* (probably) Tree growth stages.
* Random disconnects (thanks to FuriousFox)
Version 1.72.2
Fixed:
* Crash related to trees (Miniature trees option is temporary gone as the result).
Version 1.72.1
Misc:
* Upstream code merge.
Version 1.72.0
Fixed:
* Crash when viewing certain gilded items.
Misc:
* Removed Yarrow from Jellyfish Sting treatments.
* Upstream code merge.
Version 1.71.0
Misc:
* Updated wound treatments.
* Added Mayflower to trees list.
* Upstream code merge.
Version 1.70.1
Misc:
* Updated stones list.
* Upstream code merge.
Version 1.70.0
New:
* Minimap zoom and icon tooltips (by Ropston).
* Options to drop soil and everything from the inventory (by lcy03406).
Misc:
* Updated stones list.
* Updated wound treatments.
* Upstream code merge.
Version 1.69.4
Fixed:
* Fix resource tooltip not disappearing after turning the resource viewer off.
* Crash when using shift+click on certain Linux distributions.
Misc:
* Updated stones list.
Version 1.69.3
Fixed:
* Drying frames incorrectly highlighted when drying fish.
* Warning circle not showing around wolves.
Misc:
* Re-enabled geo-location.
* Added more trees to the trees list and local resources to alarms.
* Add fireflies and waterstriders to icons list.
* Preserve :placegrid setting across client restarts.
Version 1.69.2
New:
* Volume slider for bees.
Fixed:
* Crash when using world map.
* "disable item dropping over water" not working with oceans.
Misc:
* Added some of the new trees and boulders.
Version 1.69.1
Misc:
* Added some of the new trees/bushes/boulders/etc.
Version 1.69.0
Misc:
* Removed coal8 and coal11 helpers.
* Fix crash when chopping trees.
Version 1.68.5
Misc:
* Added mistletoe and thorny thistle to icons list.
* Made player alaram shorter.
* Small update to ru l10n.
* Upstream code merge.
Version 1.68.4
Fixed:
* Last livestock manager entry not being displayed.
Version 1.68.3
Fixed:
* Fix tree fruits not displaying properly.
Misc:
* Add flower menu option for `scale`
* Add cave moth to icons list
Version 1.68.2
Misc:
* Upstream code merge.
Version 1.68.1
Fixed:
* Missing truffle snout column in livestock manager.
Misc:
* Added Break option to menu list.
* Upstream code merge.
Version 1.68.0
Misc:
* Upstream code merge.
Version 1.67.12
Misc:
* Upstream code merge.
* Updated wound treatments.
Version 1.67.11
Misc:
* Upstream code merge.
Version 1.67.10
Misc:
* Upstream code merge.
Version 1.67.9
Fixed:
* Crash when running on certain Intel drivers and 32-bit VMs.
* Peer into auto-selection not working.
Misc:
* Upstream code merge.
Version 1.67.8
Fixed:
* Crash when teleporting.
Version 1.67.7
Misc:
* Added aggro radius to wild goats.
* Added mole to icons list.
* Add seashell to alarms list.
* Add treatments for coaler's cough.
* Ignore auto flower menu settings for eatable curios and spitroast.
Version 1.67.6
Fixed:
* (hopefully) issues with ore dropping.
Misc:
* JVM argument for specifying whether to dump l10n strings.
* Better handling of bounding boxes for rlink-ed resources.
Version 1.67.5
New:
* Added hitbox for pig and goat (ported from Clenda's client).
* Added goat to the Shoo command (ported from Clenda's client).
* Added goat to the LeashAnimal command (ported from Clenda's client).
* Added lizards and snails to icons list.
* Added sound effect for eagles.
Fixed:
* Nanny avatar in livestock manager.
Misc:
* Changed key binding for taking screenshots and saving them locally to Ctrl+S.
* Upstream code merge.
Version 1.67.4
New:
* Added goats to the livestock manager.
Misc:
* Re-enable alternative openings option.
* Revert last ko l10n update due to reverted combat.
Version 1.67.3
New:
* Option to use F1-F10 for combat (Clenda).
Misc:
* Added goats to the clover feeder.
* Update ko l10n.
* Upstream code merge.
Version 1.67.2
Fixed:
* Wear & armor tooltips
Version 1.67.1
Fixed:
* Crash when viewing barter-stands with price set to gems.
* Wound treatments for wretched gore and sever mauling.
Misc:
* Added sound effect for seals.
* Added peer into to the menu list.
* Added cattail to the icons list.
* Upstream code merge.
Version 1.67.0
Fixed:
* Troll belt.
Misc:
* Updated wound treatments lists.
* Allow selecting foregables for which to sound the 'aww yeah' alarm.
Version 1.66.4
Fixed:
* Actions selected in the search window not being added to the craft history bar.
* Cooldown value in combat log.
Misc:
* Added treatments for nasty laceration.
* Don't show next button in the menu grid if not needed.
* Localization improvements.
Version 1.66.3
Misc:
* Upstream code merge.
Version 1.66.2
Fixed:
* Tracking toggle.
Misc:
* Upstream code merge.
Version 1.66.1
Fixed:
* Timers.
Misc:
* Upstream code merge.
Version 1.66.0
Misc:
* Upstream code merge.
Version 1.65.5
Misc:
* Russian localization updates.
* Upstream code merge.
Version 1.65.4
Fixed:
* Barter stands crash.
Version 1.65.3
Misc:
* Russian localization updates.
* Korean localization updates.
* Synchronized with current server version.
Version 1.65.2
Misc:
* Open containers while having an item on the cursor with alt+rmb.
* Added radius for mine beam.
* Added Uncommon Snapdragon to hide icons list.
* Russian localization updates.
* Upstream code merge.
Version 1.65.1
Fixed:
* Pony power sound alert.
* Issue with scroller in the menu search window.
* Mining area selector remaining indefinitely under certain conditions.
* Trellis harvester not working when crop stages are not enabled.
Version 1.65.0
New:
* Extension for filling smelters with 8 an 9 coal.
* Extension for equipping sword, battleaxe, or axe from the inventory or a belt.
* Extension for dismounting nearest rider.
Fixed:
* Crash on broken gemstone display signs from previous server update.
Misc:
* Don't navigate backward when selecting action in menu grid.
Version 1.64.4
Fixed:
* Temporary workaround for gemstone display signs.
Version 1.64.3
Fixed:
* Crash on studying gems when study history is turned on.
* Extensions menu gets opened when using alt+x.
* Cheese tray filler not recognizing mixed curd.
Version 1.64.2
New:
* Options for selecting which items to auto-drop when mining.
Version 1.64.1
Fixed:
* Gilding slots.
Version 1.64.0
New:
* Ctrl+U for hiding the UI.
Fixed:
* Speech bubble showing when highlighting objects.
Misc:
* Added hornblende to boulders list.
* Made opium dragon pickable with the Q key.
* Temporary fix for Oct 5 patch.
Version 1.63.0
New:
* Extension to fill cheese trays with curd from inventory.
* Extension to harvest/remove plants from nearest trellis.
Fixed:
* Finished curios alarm not working.
Misc:
* Added opium to relevant wound descriptions.
* Cave clay added to aww yeah alarm.
* Lore events are now sorted by last seen time instead of alphabetically.
* Updated Korean and Russian localizations.
Version 1.62.0
Misc:
* Added grasshopper and irrlight to icons list.
* Upstream code merge.
Version 1.61.6
Misc:
* Upstream code merge.
Version 1.61.5
Fixed:
* Mining.
Version 1.61.4
Misc:
* Upstream code merge.
Version 1.61.3
Fixed:
* Remaining study time.
Version 1.61.2
Fixed:
* Item's progress percentage.
* Possible crash when transferring multiple items with Alt+Mouse Click.
Misc:
* Updated localization.
* Upstream code merge.
Version 1.61.1
New:
* Option for aggroing players in proximity to the mouse cursor.
Fixed:
* Issues with alternative belts window when interacting with wardrobes and other players' equipments.
Misc:
* Save positions of all windows instead of only those in a predefined list.
* Add Study to auto-menus list.
* Make "light object with a torch" extension to work with torches already carried in hand.
* Localization improvements.
Version 1.61.0
Fixed:
* Alternative belt window not working with Exquisite Belts.
Misc:
* Added clover and lady's mantles to icons list.
* Right-clicking entry in the livestock manager will simulate right-click on the animal.
* Upstream code merge.
Version 1.60.0
New:
* Option to change interface font.
* Dream harvester.
Fixed:
* Unable to hang items on walls at different heights.
Misc:
* Upstream code merge.
Version 1.59.2
Misc:
* Reverted to system supplied fonts.
Version 1.59.1
Fixed:
* Missing Latin script in Korean/Chinese localization.
Version 1.59.0
New:
* Korean localization.
Fixed:
* Crash when accessing wardrobes while alternative belt window is toggled on.
Misc:
* Bundle all the required fonts with the client instead of using system defined fonts.
* Improvements to localization support.
Version 1.58.0
New:
* Alternative belt window. See UI Settings.
Fixed:
* Crash when running multiple clients on Windows.
Misc:
* Login list is now scrollable.
* Timers list is also scrollable (once you have more than 13 timers).
* Shift+Z+Right Click used to automatically place items into containers has been changed to Shift+Alt.
And also no longer needs to be held all the time to work.
* Added crabs to hide icons list. They can be picked with the Q key now.
* Improvements to localization support.
Version 1.57.5
Misc:
* Upstream code merge.
Version 1.57.4
New:
* Option to restrict dropping mouse held items (by lichengyu).
Fixed:
* Shoo extensions triggering on dead animals.
* Player alarms triggering on mannequins.
Misc:
* Dead adders are now pickable with the Q key.
* Upstream code merge.
Version 1.57.3
Fixed:
* Possible crash when toggling grid overlay.
Misc:
* Added Chip stone to auto flower menus.
* Upstream code merge.
Version 1.57.2
Fixed:
* Crash when running multiple clients.
* Invalid softcap value on high stats.
Misc:
* Display system specs in error reports.
* Updated wound treatments.
* Show warning radius around adders.
Version 1.57.1
New:
* Shoo animals extension.
Misc:
* Added camomile to foragables alarm.
* Upstream code merge.
Version 1.57.0
New:
* Draw gilding number in blue for items with available gilding slots (by Jynx).
Fixed:
* Leashing extension not working with domesticated horses.
* Last entry in livestock manager not displaying properly.
Misc:
* Russian localization has been significantly improved (by mdsanta, not_a_cat, North Grey).
* Hide bushes in addition to trees on Ctrl+H.
* Updated wound treatments.
* Some other minor changes.
* Upstream code merge.
Version 1.56.0
New:
* Livestock manager.
* Animal leashing extension.
* Option to highlight finished pots.
Fixed:
* Incorrect error message when geolocation fails.
* Show container's content quality instead that of container in barterstands.
Misc:
* More sensible settings defaults
* Update treatments for Black-Eyed and Blade Kiss wounds.
* Some other minor changes...
* Upstream code merge.
Version 1.55.4
Fixed:
* Crash in timers thread.
Version 1.55.3
Fixed:
* Various timers issues.
* Charter secrets list erroneously displayed in charter/portico build windows.
Misc:
* Restored auto-logout option.
* Added harvest wax to menu options.
* Added rustroot to icons list.
* Added takedown to attacks filter.
Version 1.55.2
Fixed:
* F-key bar related crashes yet again.
Version 1.55.1
Fixed:
* F-key bar related crashes.
Version 1.55.0
New:
* Geolocation using odditown world map.
* Add buff icon for party permissions.
Fixed:
* Ping incorrectly displayed on Windows.
* Various F-key bar issues.
Misc:
* Removed auto-logout option since it doesn't provide any benefits over auto-hearth anymore.
* Added yellowfoot and chives to icons list.
* Upstream code merge.
Version 1.54.3
Fixed:
* Crime/tracking/swimming icons not showing.
* Crash related to baseq console command.
* Ping time not displayed for IPv6 routes.
Misc:
* Upstream code merge.
* Removed auto-leveler since it's implemented server-side now.
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.