-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathchangelog
1107 lines (1106 loc) · 51.4 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
{"0.2.2": [
"Added tab completions for the wynntils and compass commands.",
"Added player health bars on wars.",
"Added a Territory Feed.",
"Added clickable coordinatees.",
"Added icon names to world map.",
"Added directions to the map.",
"Added a hotbar overlay.",
"Added a bunch of new textures.",
"Added a bunch of map options.",
"Fixed crop refinery icons.",
"Fixed some item highlight settings not working in containers.",
"Fixed crash when reloading API while in-game.",
"Improved map icons.",
"Improved map rendering quality.",
"Specify when an update check failed in version command.",
"Replaced the reload API button to a command.",
"Optimized some code.",
"And, fixed a handful of bugs."
],
"0.2.3": [
"Hello %user%, welcome to v0.2.3!",
"As you are currently into a new feature, the changelog!",
"Ah, and you can scroll this page down by the mouse scrollbar.",
" ",
"So let's begin. We made a bunch of fixes and implemented new things into the game in this version",
"Check the List below!",
"- Fixed the EXP amount per level",
"- Added a bunch of color configurations",
"- Added a WorldMap texture",
"- Fixed tons of bugs that were happening at the QuestBook",
"- Updated Map Textures",
"- Fixed the incorrect re-roll math",
"- T3/T4 Chests will be automatically marked into the map (when you find them)",
"- Configurations are now user based",
"- Configurations are now cloud-based",
"- Now the marketplace price will be shown using LE/EB/E",
"- Added Game Toasts",
"- Added new commands to /wynntils command",
"- Added this GUI right here",
"- Fixed world map being tiled",
"- Simplified the chat tab creation",
"- Fixed a bunch of typos",
"- Added the Changelog GUI",
"- Fixed tons of crashes and bugs",
" ",
"First, thanks for your patience! We know that we took more than 1 month to this update, that's because we were working on fixing a bunch of stuff and improving our code.",
"Thanks, everyone for helping us reach the incredibly 500 players daily, that's awesome!",
"We are now aiming into releasing the 1.0.0 version, finally. Well, the main reason is that we are currently stable and also that the versioning system is kinda giving us a bunch of troubles.",
"So, what are Game Toasts? They are a simple notification system that will appear into your screen that will notify you about something, currently, they can be, territory changes, new discoveries, completed quests, chest found and areas discovered.",
"Now about the automatic chest marker, this thing works by when you FIND a chest and interact with it, it will be automatically marked into the map.",
"Another good thing is that now you can have different configurations per user, so if your brother, for example, has another Minecraft account and plays at your computer, he will be able to have his own configurations.",
" ",
"That's all for today!",
" ",
"Join our Discord Guild! discord.gg/SZuNem8",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"0.2.4": [
"Hello %user%, welcome to v0.2.4!",
"This is most like a bug fix update, so there isn't a lot of new features",
" ",
"That's what we made:",
"- Now you can revisit the changelog with /wynntils changelog",
"- The Settings Menu is now sorted correctly",
"- Added the command /territory which makes your compass point to a territory",
"- Fixed some map icons",
"- Updated default guild chat tab detection",
"- Fixed some errors about the Player Status",
"- Fixed a massive performance leak",
"- Improved Cloud Configurations performance",
"- Added a Low Health Vignette",
" ",
"So as you can see, there wasn't a lot of changes because we want to keep the cool ones for the 1.0.0, which will be released soon!",
"That's all for today!",
" ",
"Join our Discord Guild! discord.gg/SZuNem8",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"0.2.5": [
"Hello %user%, welcome to v0.2.5!",
"I missed talking to you, but here we go again!",
" ",
"That's what we've made in this time:",
"- Fixed tab complete for /territory",
"- Fixed a bunch of misspelling and typos",
"- Added the ability to create/edit/delete waypoints",
"- Elytra Capes now open if the player is running",
"- Fixed a huge memory leak",
"- Donator Special tag is now Rainbow!",
"- Rewritten the entire NameTag system, making it lighter and more efficient",
"- Added HighLight colors to Hotbar",
"- You're not going to be pushed anymore while AFK",
"- Using ctrl + backspace at the QuestBook now deletes everything on the search bar",
"- Fixed some crashes and more performance issues",
"- Fixed party invites changing the color of the time",
"- You can now invite players to your party through Discord!",
"- Fixed a BUNCH of bugs at the QuestBook analyze system",
"- Added QuickCasting Spells keys",
"- Fixed Compass Marker position at the world map",
"- AND ADDED TERRITORIES TO THE WORLD MAP, you can see them by pressing ctrl!",
" ",
"As you can see we have been working in a bunch of things and we are really happy with your feedback!",
"Thank you for using Wynntils this whole time, we really appreciate that",
" ",
"We also added a bunch of new configurations so you should check them out",
"That's all for today, see you soon!",
" ",
"Join our Discord Guild! discord.gg/SZuNem8",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"0.2.6": [
"Hello %user%, welcome to v0.2.6!",
"I told you that I was going to see you soon!",
" ",
"This is just a bug fix update to support the new Wynncraft's patch",
"But we also fixed another things:",
"- Fixed QuestBook failing to read after switching classes multiple times",
"- Minimap now disappears if you are outside the map area",
"- Blocked LabyMod and Wynntils to be running together",
"- Fix classes with challenges instantly crashing when trying to use one",
"- Fix ingredients not being highlighted in the trade market",
" ",
"That's all for today, see you soon!",
" ",
"Join our Discord Guild! discord.gg/SZuNem8",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"0.2.7": [
"Hello %user%, welcome to v0.2.7!",
"Well, this update should actually never existed!",
"I (HeyZeer0) just created it accidentally :(",
" ",
"We implemented a bunch of new features and also fixed tons of bugs",
"These are:",
"- Added a beacon beam at the compass location",
"- Improved way more the QuestBook analysis system",
"- Fixed QuestBook not showing when right-clicking an entity",
"- Fixed a bug where the QuestBook was randomly appearing",
"- Fixed timestamps causing troubles with low priority tabs",
"- Improved territory toasts",
"- Fixed a bug where weird symbols where appearing at the territory names",
"- Improved QuestBook analysis memory usage",
"- Added Icons to the MiniMap",
"- API Caching should now work and don't cause your game to crash",
"- Improved QuickSpells success rate to 90%",
"- Fixed a crash while trying to play with OSX 10.10",
"- Implemented Waypoint Colors",
"- Added an Auto Mount feature and keybind, you can enable it at configs",
"- Added an option to disable FOV changes while with speed/slow effects",
" ",
"As you see, there's a lot of changes. I would also like to congrats",
"MitalAshok for their massive contributions to this update!",
" ",
"Join our Discord Guild! discord.gg/SZuNem8",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team & MitalAshok ~"
],
"1.0.0": [
"Hello %user%, welcome to v1.0.0",
"This is our first major update, and we made a bunch of changes!",
"Well, it took just 4 months to be done, and we really hope you like it",
"",
"We were hoping to have more time, but with the release on Wynncraft 1.19,",
"everyone would just crash, so we had to release a stable version!",
" ",
"Theres a huuuuge list of things that got changed, hope you don't get bored",
"These are:",
"- Now you can move and use the world map at the same time",
"- Improved Mod Efficiency at all",
"- Blocked Health Potions from being used while at max HP",
"- Fixed some render issues with nametags",
"- Fixed Rich Presence sometimes indicating a player is level 0",
"- Fixed Rich Presence Territory Check breaking in Ranol's farm",
"- Fixed Rich Presence not displaying the class image during wars",
"- Prevent the rich presence time elapsed from being reset when changing territories",
"- Rewrote the entire QuestBook rendering system",
"- You can now clear the compass with /compass clear",
"- Fixed compass changing locations randomly",
"- The rich presence nows count down until mobs spawn in a war",
"- Added path waypoints to the map",
"- Fixed auto mount for horses with custom names",
"- Wynn resourcepack is now loaded when joining the lobby",
"- Added help button to main map",
"- Added waypoint groups and waypoint reordering",
"- Added waypoint import / export",
"- Improved QuickSpell casting",
"- Improved player party detection",
"- Check if a resource pack is loaded before ignoring reload",
"- Fixed refineries not showing",
"- Added item lore to item guide",
"- Fixed potential memory leak",
"- Fixed bug where newly completed quests weren't marked as completed",
"- Map now zooms linearly",
"- Added button to sort quests by distance",
"- Fixed accessories not appearing in item guide",
"- Fix indicators on chat tabs not being removed when clearing messages",
"- Added Wynncraft button on main menu",
"- Added base support for Wynncraft 1.19",
"- Added a confirmation screen for buying new bank pages",
"- Made QuestBook animations smoother",
" and much more!",
" ",
"We're hoping to make more changes into the game interface later",
"there's a lot of things we were hoping to do to this update",
"but they will be done in a nearby feature, we are hyped for this!",
" ",
"Join our Discord Guild! discord.gg/SZuNem8",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.0.1": [
"Hello %user%, welcome to v1.0.1",
"This is our first revision patch yey!",
"We are getting ready for the release of Wynncraft 1.19, so that's our main goal right now",
"Also this version fixes a bunch of glitches with the new EU servers",
"",
"We changed some things and added more features, one of them being a completely redesigned player list, courtesy of Irony!",
"This menu also mitigates the Wynncraft glitch that causes a massive lag while having the player list open.",
" ",
"Changelog:",
"- Fixed spell quick cast for low levels in Hero Beta",
"- Fixed held item messages not being removed when another tab is open",
"- Add command to export discoveries as a CSV file (/exportDiscoveries)",
"- Made compass beacon color customizable",
"- Fixed Hunted Mode Message appearing as a toast",
"- Fixed EXP bar taking ages to update",
"- Added a search bar to settings",
"- Implemented a /s command to interact with servers",
"- Improved Wynncraft Staff Nametags in Hero Beta",
"- Fixed XP not updating untill actionbar changes",
"- Removed timestamps from held item chat messages",
"- Added gathering icons as waypoint icons",
"- Elytras and Capes now supports transparency",
"- Added an option to show your emeralds as icons in your inventory",
"- Performance improvements in general",
"- Added a speedometer to Info Overlays (use %bps% or %bpm%)",
" and much more!",
" ",
"Some things may look weird or broken, but it's because they're intended to work with 1.19",
"Feel free to join our Discord server to report any issues you may find!",
" ",
"Join our Discord Guild! discord.gg/SZuNem8",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.0.2": [
"Hello %user%, welcome to v1.0.2",
"This is a quick hotfix for fixing some of the issues with 1.19",
"So just be aware that it might have more patches today to fix them all",
"",
"We are also testing a new feature that allows you to see mutual friends using Wynntils in the map",
"there are some issues we know about it and we're going to work to fix them all soon ^^",
" ",
"If you find any bugs/crashes, report them to us in our discord so we can fix it as soon as possible!",
"You can either copy the link below or use /wynntils discord",
" ",
"Join our Discord Guild! discord.gg/SZuNem8",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.0.3": [
"Hello %user%, welcome to v1.0.3",
"We apologize for the delay in releasing a fix for item-related features.",
"With the release of 1.19, we had to rewrite most of the item system, which took some time.",
"The wait is finally over as item percentages, item possibilities and upgrade chances are now back!",
" ",
"Besides these, other features were also added and fixed as the following:",
" - Added reroll values for Fabled items",
" - Added translation for Wynnic for items by holding shift over them",
" - Added reliks filter to the item guide",
" - Added hunted mode name tag",
" - Added minimum level filter to item guide",
" - Added switch regional hub buttons to pause menu",
" - Added a key to open the ingredient pouch (default O)",
" - Added option to change window title to Wynncraft while on the server",
" - Added option to use Wynncraft logo as window icon",
" - Rewritten the entire item database",
" - Upgraded Discord Game SDK",
" - Updated 104 EXP requirement",
" - Fixed some 1.19-related stuff",
" - Long quest names now display as marquees",
" - Fixed stopwatch not resetting properly",
" - Fixed chat mentions",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.0.4": [
"Hello %user%, welcome to v1.0.4",
"We’ve fixed a bunch of bugs in this update, and the mod is way more stable.",
"The QuestBook Analysis was rewritten and should me more efficient and secure now.",
"We also Implemented 3 new awesome features: LootRun Routes, Consumable Timers and Scrollable Item Lores!",
" ",
"You can check the LootRun routes by executing /lootrun, and",
"to scroll the item lore just use your mouse scroll ^-^",
" ",
"The full changelog is here:",
" - Fixed health not updating properly when the chat is off",
" - Fixed compass being locked while tracking a quest",
" - Fixed Perfect Items name not switching colors",
" - Fixed Item Lock not rendering in horse inventories",
" - Removed Refinery Map Markers",
" - Keybinding to B for opening the waypoint creation menu directly",
" - Fixed skinned weapons not being identified properly",
" - Fixed game crashing while hovering some market items",
" - Complete rewrite on the QuestBook analise",
" - Fixed identification percentages being incorrect in negative values",
" - Fixed minimap being white some times",
" - Added Set Bonus to identifications",
" - Add boss altar map markers",
" - Added a Timer for Consumables",
" - Made SP Overlay analise everything at once",
" - Fixed spell cost ids not showing properly",
" - Fix non capitalisation for wynnic in party and guild chat",
" - Fix Hunted mode issues related to held item message's and soul points",
" - Don't freeze while getting changelog",
" - Show latest changelog in update available screen",
" - Added /lootrun Command for creaint LootRun Routes",
" - Made Item Lores Scrollable or Scallable",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.0.5": [
"Hello %user%, welcome to v1.0.5",
"We’ve fixed a tons of bugs in this update, and also added some cool sound effects!",
"Our backend is now completely rewritten and should offer a better stability overall",
"unfortunately cape uploading is still disabled, but will be available again soon!",
" ",
"The Friends on map feature is being rewritten as the moment you're reading this",
"it was completely bugged and causing some lags, so it's disabled by now, so don't worry",
"if you don't see your friends on the map ^-^",
" ",
"The full changelog is here:",
" - Fixed spell casting not working properly",
" - Fixed profession level ups breaking opened containers",
" - Added an option to read the book only when you open it",
" - Fixed analyse interruption not saving properly",
" - Made quest book be analysed only when needed",
" - Add undiscovered discoveries to the quest book",
" - Add new xp requirements",
" - Fixed a crash when translating a number from wynnic that ends in 10 ",
" - Made Shift + Tab to reverse direction of chat tabs",
" - Use corresponding Tier as Group for new Lootchest Waypoints",
" - Added ability to open map at quest locations",
" - Made settings UI remember position when reopened",
" - Added QuestBook Sound Effects",
" - Added a Mythic Found Sound Effect",
" - Added a Horse Calling Sound Effect",
" - Fixed settings search underline being off",
" - Improved overall LootRun rendering performance",
" - Made lootruns save without requiring chests",
" - Fix lootruns being recorded on horses also being in the air",
" - Fix territory not updating after visiting Bob's Tomb",
" - Fix Community Event Winner item lore and made the lore generating faster",
" - Added an option to directly translate wynnic into chat",
" - Fixed fading out messages in the game update overlay",
" - Fixed configurations being out of syncronization",
" - Implemented Athena(our new backend) cosmetics and user info",
" - Fixed TOA Tokens being mistaken as Mythics",
" - Fixed changelog appearing in the middle of class selection",
" - Fixed MiniMap paths not rendering properly",
" - Fixed rarity color being rendered over the item amount",
" - Fixed /gu list not working properly",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.5.1": [
"Hello %user%, welcome to v1.5.1. This is just a hotfix to fix some bugs from v1.0.5",
"As you can also see, we've pushed the build number 1 to the left, that will allow us to do a",
"better versioning and provide faster updates =)",
" ",
"The full changelog is here:",
" - Fixed a crash while using special colors and added support to italic",
" - Fix crash when taking a screenshot without being in a Minecraft world",
" - Added ability to remove compass beacon on right click",
" - Increased waypoint import size limit",
" - Remove everything to do with EU servers",
" - Removed Global Text form PlayerInfo Overlay",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.6.0": [
"Hey %user%, welcome to v1.6.0! It's been more than a month since we last met :O",
"And oh boy, we have a huge list of things to present to you.",
" ",
"But first I would like to give a warm to our newest official developer magicus!",
"He has made awesome features for this update and helped a lot over this update.",
"Also a huge thanks to all contributions that we received over this period!",
" ",
"Let's start with implemented features:",
" - Added an option to show LootRun paths with rainbow colors.",
" - Added the command /compass share (allows you to share your compass location easily).",
" - Added an export build to WynnData button over the compass menu.",
" - Started the implementation of the Comunity Gathering Spots (I'll talk more about this one later).",
" - Added world uptime to the world selector.",
" - Added the /locate command (allows you to easily find NPCs or locations).",
" - Added a way to mark trades as a favorite in the market (Default key F) by McPlayHD.",
" - Added objectives overlay (tracks the daily objectives of your class).",
" - AFK Protection is now able to execute /class if you take damage.",
" - Improvements to the QuestBook quest and discovery pages by aws404.",
" - Added leaderboard badges (for every profession).",
" - Added a chat translator.",
" - Added a more lenient parsing of the /compass coordinates.",
" - Added map labels for cities and such.",
" - Made clickable coordinates underline for easy understanding.",
" - Made gathering cooldowns show on the consumable timers.",
" - Made effects (like speed) show on the consumable timers.",
" - Added more buttons to the game menu.",
" - Added high resolution and animated capes (for patreons, will talk more about these later).",
" - Improved the compass menu by aws404.",
" - Settings enabled/disabled text are now green/red by McPlayHD.",
" - Added customizable chat mentions by aws404.",
" - Improved QuestBook searching.",
" ",
"And now bug fixes:",
" - Fixed the server command throwing an Exception.",
" - Fixed Wynntils resources being reloaded unnecessarily.",
" - Fixed Resource Packs not being able to modify map icon mappings.",
" - Fixed a crash that happened when you started the game.",
" - Fixed some typos over the mod by CringeAura.",
" - Fixed the map insanely trying to save configurations.",
" - Fixed Wars Workstation Blocker not working properly.",
" - Fixed being able to go to negative pages in the QuestBook.",
" - Improved memory usage by a tiny bit.",
" - Fixed some memory leaks related to cosmetics.",
" - ResourcePack should now load faster at the startup.",
" ",
"Oof, that was a big changelog wasn't it?",
" ",
"So let's now talk about the Comunity Gathering Spots project!",
"So in this version, Wynntils is collecting every gathering spot that you gather,",
"the reason for that is because we're aiming to implement gathering spots on the map!",
"We're currently on the phase of collecting these spots, so they currently will not show",
"on the map. This was discussed with the Wynncraft Administration and they approved the idea,",
"you can also disable the telemetry over configurations.",
"We're very hyped to see how much gathering spots we will collect over time!",
" ",
"We're also now experiencing with higher resolutions and animated capes,",
"This feature is currently available only for patrons and it's looking amazing!",
"You can still use the cape feature without donating, so don't worry :)",
" ",
"Thank you so much if you read until here :D",
"Join our Discord Server! discord.gg/wynntils or /wynntils discord",
" ",
"Donate to Wynntils via Patreon! patreon.com/Wynntils",
" ",
"With much love, Wynntils Team ~"
],
"1.6.1": [
"Hello %user%, welcome to v1.6.1. This is just a hotfix to fix some bugs from v1.6.0.",
" ",
"The full changelog is here:",
" - Fixed crash when using the compass after auto-joining on an archer",
" - Fixed random crash in MusicProfile",
" - Fixed crash due to horse whistle when spawning the horse",
" - Fixed scoreboard not appearing before logging into Wynncraft",
" - Fixed intermittent texture corruption, causing all texture to become black",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.7.0": [
"Hello %user%, welcome to v1.7.0!",
"For a better detailed walkthrought the new features, please check our forum thread!",
"https://forums.wynncraft.com/threads/274133/",
" ",
"Features:",
" - Add option to not keep the original message when translating.",
" - Add translation of Quest Overlay.",
" - Detailed Server Connection Progress",
" - Added more map icon textures.",
" - More Info Overlay variables.",
" - Show item level while holding down ctrl.",
" - Implemented Bold Text support to every customizable overlay.",
" - Custom Damage Splashes. *",
" - Ambient Fireflies at Light/Dark Forest. *",
" - Ambient Ash Particles to Molten Heights. *",
" - Ambient Snowflake Particles to Nesaak region. *",
" - Added NPCs and map labels to /location command.",
" - Added an experimental shaman/mob totem tracker. *",
" - Added Toast for level up.",
" - Added Toast for every fifth profession level up.",
" - Added Mana Tables to the SkillPoint GUI. *",
" - Added Overlay elemental symbols on skill point books. *",
" - Add item specification overlay to dungeon keys and transportation methods. *",
" - Implemented a new Character Selector UI. *",
" - Added timers for daily rewards, objectives, mob totems, and VIP crates. *",
" - Added waypoint fading depending on height difference.",
" - Added option to change saved chat history length.",
" - Added id cost to possible item list for un-id'd items.",
" - Added runic health and mana bar textures by Seasalt.",
" - Added Identification configurations.",
" - Added keybinding for opening the Mob Totem menu.",
" - Added durability bars for crafted items by P0keDev.",
" - Added Improved Powder Manual by P0keDev.",
" - Completely rewritten the Music Module for better precision. *",
" - Configurable Chat Mentions.",
" ",
"Improvements:",
" - Make all translation callbacks happen async.",
" - Huge Improved Info Overlays",
" - Cleaned Overlays code",
" - Made the game load the world map on startup if possible avoiding a stutter while loading the world",
" - Track the reskinned status of the character's class.",
" - Improved Questbook UI Textures. *",
" - Rewritten the Music Player for better stability.",
" ",
"Fixes:",
" - Fixed the SIOBE when using the compass after auto-joining on an archer.",
" - Fixed being kicked by sending an empty message in chat.",
" - Blocked AFK Protection while in a GUI.",
" - Fixed Objective Overlay display names.",
" - Fixed the game crashing while trying to play some sound effects.",
" - Fixed Scoreboard not appearing before logging into Wynncraft.",
" - Fixed repeated War Scream.",
" - Fixed quest book not opening for accounts with 1 or 2 letter usernames.",
" - Fixed game crashing when using the compass after auto-joining as an archer.",
" - Fixed objective overlay errors due to class selection.",
" - Fixed ??? quest opening main wiki page instead of the quest wiki page.",
" - Fix Almuj's Liquid Emerald's being counted as normal Liquid Emerald's.",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.8.0": [
"Hello %user%, welcome to v1.8.0!",
"For a better detailed walkthrought the new features, please check our forum thread!",
"https://forums.wynncraft.com/threads/274133/",
" ",
"Features = ",
" - Added keybind to open discoveries. (TrapinchO)",
" - Made the OST player use noteblock volume instead.",
" - Added crafted gear to armor display HUD.",
" - Made item guide filter deselect all other filters if holding shift.",
" - Allow numbers to select a class in class selection.",
" - Added customizable text alignment and shadow to Consumable Timer.",
" - Allowed to play the selected character by pressing enter.",
" - Added a search bar to the bank.",
" - You can now customize the bank page names.",
" - You can now change the bank page jump buttons.",
" - Added skillpoint loadouts.",
" - Redirects for durability messages.",
" - Added compass share guild.",
" - Add guild to tab completion.",
" - Added an Area DPS meter (%adps% on info overlay).",
" - Added chest count to lootrun load message.",
" - Additional command aliases.",
" - Overhauled ears to support transparency and proper mirroring - JakeCover.",
" - Added a little pling when the game finishes loading.",
" - Added 24h clock info option.",
" - Display active lootrun on map/minimap.",
" - Added option to format price input in trade market.",
" - Allow accessories to be shift-clicked on/off.",
" - Added item screenshotter.",
" - Added player gear viewer by middle-cliking a player",
" ",
"Improvements = ",
" - Some configuration descriptions.",
" - Improved OST player maintenance.",
" - Resized the durability arc.",
" - Overall improvements to the consumable timer.",
" - Update chat config order and made settings scroll jump bigger.",
" - Made vanilla chat preset default.",
" - Made the texture sizes a power of 2 (improves rendering performance).",
" - Support unicode font in SmartFontRenderer.",
" - Added item guide and hud configurator keybinds (TrapinchO).",
" ",
"Fixes = ",
" - Typos over the entire mod.",
" - Fixed cape and elytra rendering slightly faster.",
" - Fixed specific armours not appearing on the armor display.",
" - Fixed .mp3 appearing in the song names.",
" - Fixed chat mention processing split words.",
" - Fixed a massive code error over Territory Feed Settings.",
" - Made tracked quest default position not overlap the minimap.",
" - Fixed Music Player GUI being shown when the player is not being executed.",
" - Fixed Dark Wizard name incorrect display at character selector.",
" - Fix the search box being over the inventory name when the language is.",
" - Fixed ping calculation being triggered with the chat open.",
" - Fix VanillaFix crash report when fishing and fix gathering being counted.",
" - Fix paper circle map texture.",
" - Fix rarity not showing in inventories.",
" - Fix map pointer outline.",
" - Fix being unable to invite usernames that end in a, d, or c to guilds.",
" - Fixed character selector music being played outside of it.",
" - Fixed reroll amount not showing properly.",
" - Fixed Damage Splashes conflict with shaders.",
" - Fixed non crafted XP pots not triggering consumable timer.",
" - Fix invite and ask to join not showing in discord.",
" - Fix garbage text appearing in certain items with unicode enabled.",
" - Fix outline and shadow for bold text.",
" - Fixed gathering cooldown not working during prof speed bombs (TrapinchO).",
" - Fix lag when the discovery page is open with no discoveries found.",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.9.0": [
"Changelog soon! But basically HB preparatives."
],
"1.9.1": [
"Yo %user%, welcome to Wynntils v1.9.1!",
"This update fixes a bunch of issues related to the new Wynncraft version 1.20",
"I didn't had a lot of time to write a cool changelog again, but eventually we will have one :(",
" ",
"Take a look on the changes:",
" - More FOV scaling functions",
" - Fixed quest book resetting on resolution change",
" - Fixed damage splashes conflicts with shaders",
" - Better item level/tier overlays",
" - Improved tab menu animation",
" - Improvements to level overlays",
" - Add support for Gavellian text",
" - And Class and Resource info to game ticker",
" - Add option to apply update at Minecraft exit instead of immediately",
" - Support new discovery found message and right click to track text",
" - Item guide adv search mode + other enhancements",
" - Improve update screen",
" - Fix renaming or moving a consumable adding the timer",
" - Fixed capes not being compatible with mobends while sneaking",
" - Display new or changed item identifications more clearly",
" - Fix the block healing potions option not turning off",
" - Fix export discoveries putting a part of discovery name into next column",
" - Fix tracked quest not updating while using vanilla tracking",
" - Added flame particles to roots of corruption",
" - Updated mythic found sfx",
" - Minor map features + small fixes",
" - Added support to cherry bombs major id",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.9.2": [
"Dear %user%, welcome to Wynntils v1.9.2!",
"This update fixes a lot of bugs and introduces some cool new features like lootrun notes",
"and a complete revamp on the world map buttons with a complete new map for guilds",
"you can change the guild map key on controls. Have fun :D",
"",
"- Major Lootrun Improvements (/lootrun undo, /lootrun note, ...)",
"- Fixed not being able to invite other people through rich presence",
"- Revamped map buttons and added guild map",
"- Fixed inconsistencies with emerald info variables",
"- Updated Party Regex",
"- Horse Improvements - iwewi20",
"- Updated Major IDs - DonkeyBlaster69",
"- Improved boss track detection",
"- Server selector displays server number properly - DonkeyBlaster69",
"- Add option to show messages in update ticker first - LMBishop",
"- Add some options to tracked quest info - LMBishop",
"- Lot of bug fixes",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.10.0": [
"Hey %user%, welcome to Wynntils v1.10.0!",
"In this version we added two new awesome features: a chunk cacher",
"and a lootrun questbook page! Along with that we made all the necessary",
"preparation for 1.20.2! Have Fun :D",
"",
"Full Changelog:",
"- Fix typo that caused links to not open on linux that existed for 9 month",
"- Fix some mythic detection issues",
"- Fix hitbox collision/pushing issues",
"- Identification improvements",
"- Fix horse mount system - iwei20",
"- Fix error when running lootrun command when the lootrun doesn't exist",
"- Made Wynntils particles not frame reliant",
"- Scoreboard overhaul",
"- Implemented a chunk cacher",
"- Made all the necessary preparations for 1.20.2",
"- Added a new questbook page for LootRuns - Incompleteusern",
"- Added the STRATEGIST rank - McPlayHD",
"- Lot of bug fixes",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.10.2": [
"Dear %user%, welcome to Wynntils v1.10.2!",
"This update fixes a few bugs relating to the recent Wynncraft updates.",
"It also includes some new features - checkout the changelog below!",
" ",
"Features:",
"- Added option to display Corkian Amplifier Tier (P0ke)",
"- Added item type symbol for unidentified items (magicus)",
"- Added a way to collect NPC data (opt-in) (magicus)",
"- Wynncraft's scoreboard NPE is now hidden from logs (magicus)",
"- Added dialogue page to questbook (coehlrich)",
"- Added more control to the translation of Wynncraft languages (incompleteusern)",
" ",
"Changes:",
"- Removed distance to beacon from minimap when close (magicus)",
"- Updated mana cost for Uppercut (P0ke)",
"- Updated the way we detect entity names (magicus)",
" ",
"Bugs Fixes:",
"- Area DPS having the wrong variable name (P0ke)",
"- Not redirecting of login messages (P0ke)",
"- Incorrect powder tier on overlay (P0ke)",
"- Overlay for broken keys (magicus)",
"- Item guide crashing (HighCrit)",
"- 'Sort by Distance' icon size (coehlrich)",
"- Opening wiki on mini quests not scrolling to location (coehlrich)",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.10.3": [
"Hello %user%, welcome to Wynntils v1.10.3!",
"This update is a compatibility update for Wynncraft 1.20.3.",
"Please note that some things will not be updated for 1.20.3 immediately, like item identifications.",
" ",
"Full changelog:",
"- Builds now open in Wynnbuilder instead of Wynndata",
"- Added a health percentage info variable (DonkeyBlaster69)",
"- Improved dialogue history page (Incompleteusern)",
"- Added buttons to switch between quest book and dialogue history",
"- Fixed world uptimes for worlds greater than 64",
"- Made crafted items have a highlight in the hotbar",
"- Added new 1.20.3 major IDs",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.10.4": [
"Hello %user%, welcome to Wynntils v1.10.4!",
"This patch fixes a bunch of bugs that were making the overall experience",
"worse, we hope you like it!",
" ",
"Full changelog:",
"- Fixed some bugs with Major Identifications",
"- Fix identifications to show proper time values",
"- Improved quest dialogue and quest book analysis",
"- Made the map zoom use acceleration for smoothness",
"- Hoverable item tooltips in chat",
" - You can now link items in chat by hovering your item",
" and pressing F4 to copy the item name.",
"- Added territory defence and treasury to guild map",
"- Disable objective overlay by default",
"- More bug fixes",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.10.5": [
"Hello %user%, welcome to Wynntils v1.10.5!",
"This patch fixes some bugs that were happening with the launch",
"of 1.20.4!",
" ",
"Full changelog:",
"- Fixed some incorrect behaviors with the chunk cache tool",
"- Added a Seaskipper Map replacing the normal gui (Incompleteusern)",
"- Fixed Champion Rank not being handled properly (lufeee)",
"- You are now able to mark items as favorite",
" - Items marked as favorite will show a star near their names",
" - You can not close lootchests with a favorite item inside",
" - Unidentified items will be highlighted if they can contain a favorite item",
" - You can favorite an item by shift left-clicking it on the item guide",
"- Fixed dialogues not working properly anymore",
" ",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
" ",
"Donate to Wynntils via patreon! patreon.com/Wynntils",
" ",
"With love, Wynntils Team ~"
],
"1.11.0": [
"Hello %user%, welcome to Wynntils v1.11.0!",
"",
"This release is a big one, for mainly two reasons: There hasn’t been a release version lately, ",
"and secondly, but more importantly, in the last few months we have had lots of",
"contributions from many different developers, making this update include lots of new features.",
"We would like to thank everyone who contributed to the project.",
"",
"Listed below are the changes since last release:",
"",
"Major new features:",
"",
"- Custom keybinds for user specified commands and presets - bolyai",
"- Added ingredient, emerald pouch, and powder guide, added the new guide menu, and added support for favoriting in all new guides - bolyai",
"",
"Minor new features:",
"",
"- Quest dialogue lines can now be translated - theobeaudenon",
"- Prevent clicking on emerald pouches in loot chests - DonkeyBlaster",
"- Added defective items (opposite of perfect items, 0% roll) - DonkeyBlaster",
"- Emerald pouches can now be opened with hotkeys - DonkeyBlaster",
"- Bank search now supports searching for lore - DonkeyBlaster",
"- Emerald pouch pickup messages are redirected - DonkeyBlaster",
"- Added multiple tier overlays for different item types - DonkeyBlaster",
"- Block bank dumping buttons - DonkeyBlaster",
"- New info variables - DonkeyBlaster, bolyai",
"- Added the option to bulk buy items - DonkeyBlaster",
"- Support stream mode - Incompleteusern",
"- Emerald pouch arc - DonkeyBlaster",
"- Redirect potion messages - DonkeyBlaster",
"- Shift + Right click runs /guild territory on guild map - bolyai",
"- Territory attack messages also display a second clickable message which sets the players compass to the attacked territory - bolyai",
"- Added XP/Kills per Minute info variable - lxhom",
"- Ingredient pouch tooltip stacks items - bolyai",
"- When opening a map in a war, there is an option to use a pre-defined coordinate - bolyai",
"- Added dry streak and dry boxes info variables with dry streak ended message - bolyai",
"- Death message now displays death coordinate - bolyai",
"- Dialogue and chat improvements - P0ke",
"- Added the setting to auto close map on movement - bolyai",
"- Added the option to filter party finder and event messages - bolyai",
"- Added the option to highlight emeralds in chests - bolyai",
"- Option to recolor successful guild war messages – bolyai",
"- Add support for guild objectives in the objectives overlay - bolyai",
"- Added an overlay to guild territory management menu making searching possible - bolyai",
"- Added the ability to remove war timers from sidebar scoreboard - bolyai",
"- Added the ability to use guild role names instead of starts - bolyai",
"- Added the option to filter guild resource warnings - bolyai",
"- Add consumable charge count in hotbar - DonkeyBlaster",
"",
"Major bug fixes:",
"",
"- Fixed compatibility with ChestCountMod - P0ke",
"- Fixed issues related to dialogues - P0ke, bolyai",
"- Quest book analysis will no longer break GUIs - bolyai",
"",
"Minor bug fixes:",
"",
"- Blocking healing potions at full health works with stackable healing potions - Incompleteusern",
"- Fixes related to market price formatting - P0ke",
"- Fix bugs related to bank and bank buttons - DonkeyBlaster, P0ke",
"- Lootrun notes improvements and fixes - McPlayHD",
"- Fixed all pouch related info variables to work with ironman classes - bolyai",
"- Fixed numerous problems related to falsely identifying GUIs as Loot Chests - bolyai",
"- Fixed crash related to uptime variables - bolyai",
"- Fixed overlapping emerald count overlays - bolyai",
"- Fixes related to sound player - McPlayHD",
"- Fix grammar and typo issues - CringeAura",
"- Fix hotbar highlight colors and settings - McPlayHD",
"- Fixed jumpy map scrolling - bolyai",
"- Fix objectives not being parsed properly - bolyai",
"- Fix a crash related to ChatOverlay - bolyai",
"- Fix issues related to BankOverlay - bolyai",
"- Fix a rare exception in Chunk Caching",
"",
"Other changes:",
"",
"- Removed war workstation blocker - DonkeyBlaster",
"- Updated Fabled and Set identification costs - Pyro",
"- Profession filter highlight color can be changed now - btdmaster",
"- Updated health potion and money info variables - DonkeyBlaster",
"- Improvements to map labels – magicus",
"- Spellcasting by hotkeys was greatly improved - bolyai",
"- Update copyright info to 2022 - TrigonometricDev",
"- Show identification stars by default - DonkeyBlaster",
"- Dungeon key overlays use acronyms instead of first letter - bolyai, Incompleteusern",
"- Properly order spell cast keybind settings - DonkeyBlaster",
"- Updated guild related command aliases – bolyai",
"",
"Join our Discord Server! discord.gg/SZuNem8 or /wynntils discord",
"",
"Donate to Wynntils via Patreon! https://patreon.com/Wynntils",
"",
"With love, Wynntils Team ~"
],
"1.11.1": [
"Hello %user%, welcome to Wynntils v1.11.1!",
"",
"Listed below are the changes since last release:",
"",
"Major new features:",
"- Added a button to sort guild territories by level - DonkeyBlaster",
"",
"Minor new features:",
"",
"- Added ability to search for members in the menu to manage guild members - DonkeyBlaster",
"- Added a new chat tab preset and updated the guild tab preset - TomR24",
"- Added support for analytics - Scyu_",
"",
"Major bug fixes:",
"",
"- Reworked bulk buy to support being able to bulk buy from every normal NPC shop, including festival - DonkeyBlaster",
"- Fixed crash when using Prevent Trades and Duels while holding weapon feature - bolyai",
"- Fixed quest links not opening in the quest book for users of older versions of Java - bolyai",
"",
"Minor bug fixes:",
"",
"- Fixed various item overlay rendering issues relating to charge count - DonkeyBlaster",
"- Fixed chests being rendered outside of tile entity render distance in loot run paths - McPlayHD",
"- Removed dialogue state checks to fix dialogue hotbar keys - DonkeyBlaster",
"- Fixed issues relating to guild objectives - bolyai",
"- Added a minimum to opacity for highlights - DonkeyBlaster",
"",
"Other changes:",
"",
"- Renamed the \"Apply\" button to \"Save\" in the settings for clarity - DonkeyBlaster",
"- Removed two unused market settings - DonkeyBlaster",
"",
"Donate to Wynntils via Patreon! <https://patreon.com/Wynntils>",
"With love, Team Wynntils ~"
],
"1.11.2": [
"Hello %user%, welcome to v1.11.2",
"This is a quick hotfix to fix configuration upload issues",
" ",
"If you find any bugs/crashes, report them to us in our discord so we can fix it as soon as possible!",
" ",
"Donate to Wynntils via Patreon! <https://patreon.com/Wynntils>",
"With love, Team Wynntils ~"
],
"1.11.3": [
"Hello %user%, welcome to v1.11.3",
"This release contains loads of small bug fixes, while also adding many new features.",
"",
"Major new features: ",
"",
"- Mana tick timer overlay (disable via right click in overlay menu) - DonkeyBlaster",
"- Advanced Ingredients sort/filter - chrisstar321, bolyai",
"",
"Minor new features: ",
"",
"- Dungeon key enhancements - DonkeyBlaster",
"- Highlights for new class modifiers - DonkeyBlaster",
"- Change health pot blocking to threshold based - DonkeyBlaster",
"- Add gear viewer view stats button - DonkeyBlaster",
"- Add better ingredient pouch sorting - DonkeyBlaster",
"",
"Bug fixes:",
"",
"- QuestBookListPage crash in specific edge cases - bolyai",
"- GameUpdateOverlay crash - bolyai",
"- Deleting chat tabs does not update ChatGUI - bolyai",
"- Translation feature bug causes chat text not to show up - bolyai",
"- Being in a party breaks objective overlay - bolyai",
"- Guild objective does not disappear after completion - bolyai",
"- Race condition in ServerEvents - bolyai",
"- Race condition in ClientEvents prevents joining Wynn - bolyai",
"- NPE in ServerEvents - bolyai",
"- Area DPS value is incorrect - bolyai",
"- Crash when joining Wynn - bolyai",
"- Totem tracker not working correctly with time rift - bolyai",