forked from ebonyfaye/ema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
1301 lines (897 loc) · 31.9 KB
/
CHANGELOG.txt
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
---------------------------
ChangeLogs:
---------------------------
EMA Version: Release-v4.0(0200)
Game Version: 9.1.0/2.5.1
Release Date: 22/08/2021
---------------------------
## Core
-- Now supports Classic-TBC 2.5.1 EMA-BCC.toc for tbc, EMA-MainLine.toc
-- All Non Working Live stuff on TBC removed!
-- New Config/GUI Layout.
-- Public API Reworked!
-- Added A WOW_KeyBindings Button to Main Setting Page.
## Communications
-- On Classic/Tbc When Sending Setting Table Data Over Non Guild Channels Will Send To Whisper
## Item-Use
-- You Can Now use spells that the other team Members don't have without a Lua Error.
## Toon
*TODO!
-- Added in loot options for tbc-classic
## Trade
*TODO
-- Added a Keybinding To Accept Trade( must be pressed on all team members )
## Quest-Tracker
*TODO
-- Toggle EMA-Tracker with keybinding
-- Option to Hide Blizzard tracker olny when ema-tracker is showen.
## Quest-Tracker-Classic (classic/tbc)
-- Has its own copy for classic tracking due to many api changes.
## Quest-Classic (Classic/tbc)
-- Has its own copy for classic tracking due to many api changes.
-- Added Choose Best Quest Reward
## Information-Classic
-- Has its own copy for classic tracking due to many api changes.
---------------------------
EMA Version: v9.0.5-Release-v3.1(0189)
Game Version: 9.0.5
Release Date: 11/03/2021
---------------------------
## Quest-Watcher
-- fixed the watcher Alpha
---------------------------
EMA Version: v9.0.5-Release-v3.1(0188)
Game Version: 9.0.5
Release Date: 11/03/2021
---------------------------
*.TOC Bump
---------------------------
EMA Version: v9.0.2-Release-v3.1(0187)
Game Version: 9.0.2
Release Date: 27/02/2021
##Core
-- Esc key close the config screen, issue/pull #31 #43
## Quest Wacher
-- case sensitive error in scenarios and torghast part of the addon. ( pull request #34 )
## Quest
-- Fix #21
---------------------------
EMA Version: v9.0.2-Release-v3.1(0186)
Game Version: 9.0.2
Release Date: 27/02/2021
## Vender/Sell
-- Removed Destroying Of Items Due To Api Changes.
---------------------------
EMA Version: v9.0.2-Release-v3.1(0185)
Game Version: 9.0.2
Release Date: 26/02/2021
## Interaction
-- Fixed the Dismounting options issue #35
-- Works with the keybindings as well. (Team not the master one)
## Mail
-- Fixed Issue #41 Where gold would still send if shift key was held down.
## follow
-- Added Request #45
---------------------------
EMA Version: v9.0.2-Release-v3.1(0184)
Game Version: 9.0.2
Release Date: 04/12/2020
## KeyBinding
-- Added a keybinding for "SetView"
# Display-Team
-- Removed Artifact Power xp Bar ( if they add somthing like this it probs get all changed again )
- so changed to "Gold".
-- Added Gold to the Display Team
# Toon
-- Added A Setview Command With Or Without Team
- :) yes you olny have to press it on one toon
---------------------------
EMA Version: v9.0.2-Release-v3.1(0183)
Game Version: 9.0.2
Release Date: 25/11/2020
# Quest
-- Fixed A non-Api change on Shadowlands quest givers when handing in mutiple quests .
---------------------------
EMA Version: v9.0.2-Release-v3.1(0182)
Game Version: 9.0.2
Release Date: 22/11/2020
## Team
-- Added New Set Focus KeyBindings to set the team members in the order they sit in the GUI
## /Click macros
-- Made some easyer to work with see doc at:
https://github.com/ebonyfaye/ema/wiki/Click-Macros
---------------------------
EMA Version: v9.0.2-Release-v3.1(0181)
Game Version: 9.0.2
Release Date: 20/11/2020
## Interaction
--Undo the mount change in (0180)
-- New Mount Option
-New command: "/ema-interaction mount <Tag>"
- New KeyBinding, now calls "/ema-interaction mount all"
- Will Now tell the team to summon a "Random Favorite Mount" (everyone summons there own random mount)
-- Dev note: This works with with shift!!!!!!!.
-- You do not need to Have the settings ticked in the options to copy mount!
---------------------------
EMA Version: v9.0.2-Release-v3.1(0180)
Game Version: 9.0.2
Release Date: 19/11/2020
## Interaction
--Added a keybinding to mount from you "Summon Random Favorite Mount" ( you need mount team on for the team to copy ) request #20
---------------------------
EMA Version: v9.0.2-Release-v3.1(0179)
Game Version: 9.0.2
Release Date: 19/11/2020
## Follow
SNW now works again (less follow borken spam!)
/ema-follow me and KeyBinding
-- No Longer spams follow borken when you change Follow Target.
-- No Longer Trys to follow it self in "Vehicle"
---------------------------
EMA Version: v9.0.2-Release-v3.1(0178)
Game Version: 9.0.2
Release Date: 18/11/2020
## Core
-- Updated Ace3
-- Updated Ace3-SharedMediaWidgets
## Information
--Fixed a lua error from changes with the new patch
---------------------------
EMA Version: v9.0.1-Release-v3.1(0175)
Game Version: 9.0.1
Release Date: 13/11/2020
## Team
-- Added A new KeyBinding Toggle Click To Move.
-- Added A new CommadLine "/ema-team ctm <group>"
- dev note: (this is a non-boardcasting key to toggle) as well u can set
groups if use the commandline /ema-team ctm <group>, it will not toggle it "on" the the window you send the command from.
(master free) but it will turn it off so if u change windows it will change.
---------------------------
EMA Version: v9.0.1-Release-v3.1(0174)
Game Version: 9.0.1
Release Date: 11/11/2020
## Team
-- Added 3 New KeyBindings
-- Focus Master
-- Target Master
-- Assist Master
-dev note: They will need to be pressed on every Character by "hand"/Window as well they will not update in combat.
-- You can use /click in custom macros
/click EMAAssistMaster
/click EMATargetMaster
/click EMAFocusMaster
---------------------------
EMA Version: v9.0.1-Release-v3.1(0173)
Game Version: 9.0.1
Release Date: 10/11/2020
## Follow
-- Added a new command to stop follow your current Target.
-- KeyBinding can be set the normal way.
-- /ema-follow stop all
---------------------------
EMA Version: v9.0.1-Release-v3.1(0170/0171)
Game Version: 9.0.1
Release Date: 07/11/2020
## Quest
Fix #17
## Isboxer
-- Removed isboxer support for now. due to new policy update.
## Added New Module -- By: RobinFrcd ( edited by me )
-- Macro Add and copys Macros to your team!
## Display-team
-- Added player level By: RobinFrcd
---------------------------
EMA Version: v9.0.1-Release-v3.1(0169-0169)
Game Version: 9.0.1
Release Date: 30/10/2020
## Quest
- Quests with Gossip options Should Now work in BFA Zones.
-- Dev note: Sorry about this one it seems they was not working with the new api like even older zones are?
## Disaply-Team
- Can Move the frame again
--dev note: BBtC
---------------------------
EMA Version: v9.0.1-Release-v3.1(0164-0166)
Game Version: 9.0.1
Release Date: 30/10/2020
## Information
-- Added Support For Bag space Information
-- Information Panel Can Now Startup On All Team Members
-- Added Some Options To Support The Removal Of "Expansions" From Dropdown List.
-- Added Shadowlands Currencies.
## Toon
-- Added Support To Tell The Team When Your Bag Space Is Getting Low Then Just Full. (by RobinFrcd )
## Quest
-- Fixed Issue #8
# Trade
-- Added Support To Trade All Recipes by Akandesh
# Mail
-- Added Support To Mail All Recipes by Akandesh
---------------------------
EMA Version: v9.0.1-Release-v3.0(0163)
Game Version: 9.0.1
Release Date: 29/10/2020
## Quest-Tracker
- Should now remove "Popup" quests when you click the box.
---------------------------
EMA Version: v9.0.1-Release-v3.0(0161)
Game Version: 9.0.1
Release Date: 25/10/2020
## Quest
- fixed (bitbucket) issue #124
## Information
-- command line now should be right with how there coded with /ema-info
-- show is now a toggle.
---------------------------
EMA Version: v9.0.1-Release-v3.0(0160)
Game Version: 9.0.1
Release Date: 23/10/2020
## Quest-Tracker
-- More API changes Fixed!
---------------------------
EMA Version: v9.0.1-Release-v3.0(0159)
Game Version: 9.0.1
Release Date: 17/10/2020
## Disaply-Team
-- Can now show PLayerName on the HeathBars.
-- Can now Freeze the Portrait Frame
-- if a Character can not be found now sets a "Talking ?"
-- if Not Using Trufigcd in EMA it show noloner change the settings of the addon.
---------------------------
EMA Version: v9.0.1-Release-v3.0(0158)
Game Version: 9.0.1
Release Date: 17/10/2020
## Team
- Fixed API change for BN Friends.
## Quest
- Fixed more Quest-API.
---------------------------
EMA Version: v9.0.1-Release-v3.0(0157)
Game Version: 9.0.1
Release Date: 15/10/2020
# Quest
- If Master Auto Shareing Quest is on it should work again.
- ShareAll should work again.
# Quest-Tracker
- Fixed Disaply Problem with German Clients (bitbicket #114 )
---------------------------
EMA Version: v9.0.1-Release-v3.0(0156)
Game Version: 9.0.1
Release Date: 15/10/2020
# Display-Team
-- Fixed an Error if you login with a new Trufigcd Profile
---------------------------
EMA Version: v9.0.0-Release-v3.0(0155)
Game Version: 9.0.1
Release Date: 15/10/2020
## Quest
-- Removed some debug Code
## Quest-Tracker
-- Removed some Debug Code
---------------------------
EMA Version: v9.0.0-Release-v3.0(0154)
Game Version: 9.0.1
Release Date: 14/10/2020
## Quest-Tracker
-- Fixed a lua Error on some world quests
## Quest
-- fixed a Gossip if talking to a npc that has a vender GUI
## information
-- fixed the API Should now work
---------------------------
EMA Version: v9.0.0-Release-v3.0(0146-0153)
Game Version: 9.0.0
Release Date: 13/10/2020
## 9.0 Initial release
-- fixed wow-api chnages.
### Known issues.
##Display-Team
--added support to add the party frame from trugcd addon to EMA's.
## Toon
-- CC warn, Now shows the spell that was casted on the player
## ItemBar
-- Should Now work with Spells and Toys.
---------------------------
EMA Version: v8.3.0-Release-v2.5(0146)
Game Version: 8.3.0
Release Date: 20/07/2020
## Information
-- Trying to fix a bug i broke the *.DB so all settings got reset in this module ( sorry :( )
-- Echoes of Ny'alotha sometimes do not show on a team member and blocks them from being showen in the blizzard UI. ( Issue #107 )
- DEV NOTE: This has been making a problem with EMA information generating the Currency List i added a hotfix to stop this blocking the addon
- please to no report report it when a character Shows 0 Echoes of Ny'alotha
-this is not a EMA problem this a blizzard problem and is well known. A reclient load or deleteing you Cache will fix and they should show again.
---------------------------
EMA Version: v8.3.0-Release-v2.5(0145)
Game Version: 8.3.0
Release Date: 18/07/2020
##Ebonys Utilities
-- Fixed issue #106
---------------------------
EMA Version: v8.3.0-Release-v2.5(0144)
Game Version: 8.3.0
Release Date: 18/07/2020
##Follow
- Fixed a bug with warn pvp follow not getting truned off.
---------------------------
EMA Version: v8.3.0-Release-v2.5(0143)
Game Version: 8.3.0
Release Date: 17/07/2020
## Information
-- Changed Command line to [info] from [information]
-- Added Echoes of Nyalotha
-- Added a chat !Triggers that work in party/guild/raid
- !emahelp = Shows all the Triggers
- !gold = Tells you how much gold you have on your team
- !item = [ItemName] = shows how many of a item you have in your team.
- !durability or !durr = Shows your teams Durability.
- !keys = Shows your KeyStones
- !Bagspace = shows your Teams Bagspace.
---------------------------
EMA Version: v8.3.0-Release-v2.4(0142)
Game Version: 8.3.0
Release Date: 16/07/2020
## Toon
- Fixed a bug with Toggle WarMode
# item-Bar
-- Removed Add Add Satche ls Items To Bar due to a Big API change
---------------------------
EMA Version: v8.3.0-Release-v2.4(0140/1)
Game Version: 8.3.0
Release Date: 30/05/2020
## Toon
- Updated Summon API
- Durability Warning will not warn ( "(ind)%" )
---------------------------
EMA Version: v8.3.0-Release-v2.4(0139)
Game Version: 8.3.0
Release Date: 07/02/2020
## Bank
- Fixed a bug that would not put normal items in the bank
## information
- Fixed Issue #96
---------------------------
EMA Version: v8.3.0-Release-v2.4(0138)
Game Version: 8.3.0
Release Date: 02/02/2020
## Toon
- Added Auto Accept Party Sync Requests.
---------------------------
EMA Version: v8.3.0-Release-v2.3(0137)
Game Version: 8.3.0
Release Date: 01/02/2020
## Core
- Updated ToC to 8.3.0
## Bank
- New Module Bank!
- Store more junk in the bank!
##information
-- WIP: Lots of new code in here sorry!
-- added 8.3
- Coalescing Visions
- Corrupted Mementos
---------------------------
EMA Version: v8.2.2-Release-v2.2(0136)
Game Version: 8.2.5
Release Date: 03/10/2019
## Core
- Updated Toc to 8.2.5
## Team
-- Fixed Issue #20 Again!
- Dev Note: Fixed The Lua Error But Did Not Fix The Friend System. ( Is a MixInTable Now)
---------------------------
EMA Version: v8.2.0-Release-v2.2(0135)
Game Version: 8.2.0
Release Date: 24/9/2019
## Trade
-- Fixed A Bug Where The Groups On Boe And Crafting Reagents Was Not Getting Send To Other Team Members
## Team
-- Fixed Issue Classic #20 (Changed API )
---------------------------
EMA Version: v8.2.0-Release-v2.2(0134)
Game Version: 8.2.0
Release Date: 14/9/2019
# Trade, Guild, Purchase, Mail
- Fixed a Global Error where it was not removing the item from the right Selected Item
---------------------------
EMA Version: v8.2.0-Release-v2.2(0133)
Game Version: 8.2.0
Release Date: 3/8/2019
# Disaply Team
- Fixed a SetPoint Bug
---------------------------
EMA Version: v8.2.0-Release-v2.2(0132)
Game Version: 8.2.0
Release Date: 31/7/2019
# Core
- Updated Ace3 to r1214
# Item-Use
- Fixed Command Line Help Files. issue #83
# Information
- Fixed a SetPoint Bug
---------------------------
EMA Version: v8.2.0-Release-v2.2(0131)
Game Version: 8.2.0
Release Date: 27/7/2019
## Trade, Vender, Purchase, Mail, Guild
-- You can Now Use Shift+Click to add the Item to the EditBox.
(Dev Note: The Ui Is Protected On Normal Click And Could Not Use Items )
## Trade
-- Holding "Shift Key" will not trade items to master. (If For Some Reason U Did Not Want To Use Ema-Trade)
## Communications
-- Now Uses Its Own Prefix And Not Jamba's
-- Changed LayOut
-- Removed Boost Communications ( As Chat Chatthrottlelib Now Uses The Same Settings )
## Currency
-- Added 8.2 Currencys
- Prismatic Manapearl
---------------------------
EMA Version: v8.2.0-Release-v2.1(0127)
Game Version: 8.2.0
Release Date: 26/6/2019
## Core
- Updated Ace3
- Updated SharedMediaWidgets
- Updated LibSharedMedia-3.0
## Message
- Fixed 8.2 Sound changes
- Added new sound EMA Warning (from jamba-extras)
- Had to added blizzard own Raid warning Sound for libsheardmedia to work. (hacky)
---------------------------
EMA Version: v8.1.5-Release-v2.1(0126)
Game Version: 8.1.5
Release Date: 8/6/2019
## Core
- Updated Ace3
- Updated LibSharedMedia-3.0
## Item-Use
- Will now Disaply Item count to 9999 before it * out Issue #20
## Interaction
- Fixed a Bug not telling Team when you loot a Epic/Rare BoE items
## Toon
- Fixed Issue #70
---------------------------
EMA Version: v8.1.5-Release-v2.0(0121)
Game Version: 8.1.5
Release Date: 16/4/2019
## information (curr)
- Fixed a bug with it still reporting to use old Command lines "help"
---------------------------
EMA Version: v8.1.5-Release-v2.0(0120)
Game Version: 8.1.5
Release Date: 13/4/2019
EMA V2
## Core
- Fixed ToC files to support 8.1.5
-- Dev Note: This Was Hotfixed Into The Game As There Was No Toc Change At The Start Of The Patch Grrrr!
- Fixed Some Text Placements
- Command Line v2
--* /EMA Config To Now Open The Config!
--* Now Shows A "Help" If The Command Is Wrong Or You Added A Unknown Command In.
--** Can Not Open Config In combat (As it can not draw the GUI when in combat)
- New Year, A New Year to add to copyright!
## Team
-- Remove All Team Command Should Now Work Again.
## Vender
- Should Now Work With The TradeSkill Master 4 UI Issue#26
- Now Sells One Item At A Item Then Trying To Loop The Bag!
-- Fixed Items gettting stuck/selling very very slow when in a stack.
- Fixed The Sell Items, And Gold Prices In Chat
- Added A Global Sell List, This Works Across "All" Characters
-- Dev Note: Use "/EMA-purchase Sell" To Copy From The Local List To The Global List
- Added Support To Sell or Destroy Already Known Toys and Mounts
## Purchase
- Updated GUI
- Added A Global Sell List, This Works Across "All" Characters
-- Dev Note: Use "/EMA-purchase copy" To Copy From The Local List To The Global List
## Trade
- Added A Global Sell List, This Works Across "All" Characters
-- Dev Note: Use "/EMA-trade copy" To Copy From The Local List To The Global List
- fixed issue #61
## Mail
- Added A Global Sell List, This Works Across "All" Characters
-- Dev Note: Use "/EMA-Mail copy" To Copy From The Local List To The Global List
- Should Send Gold After its send all items issue #52
- Fixed issue #59
## GuildBank
- Added A Global Sell List, This Works Across "All" Characters
-- Dev Note: Use "/EMA-Sell copy" To Copy From The Local List To The Global List
- Fixed Bug #65
## Item-Use
- Should Remove Quest Items On Its Own From The Item Bar Again
## Currency
- Added 8.1 Currency's
-- 7th Legion Service
-- Honorbound Service
-- Titan Residuum
## Interaction
-- Added Tells The Team If They Looted A BoE Mount!
---------------------------
EMA Version: v8.1.0-Release(0108)
Game Version: 8.1.0
Release Date: 12/12/2018
## Toon
-- Fixed some API changes in WarMode that was changed in patch 8.1
---------------------------
EMA Version: v8.0.1-Release-v1.0(0107)
Game Version: 8.0.1
Release Date: 02/12/2018
## Mail
# Added Support to Mail Gold!
# Fix The Mail Page getting stuck on the Outgoing Mail when Nothing to send!
# Postal addon should nolonger clear the last character you Mailed
---------------------------
EMA Version: v8.0.1-Release-v1.0(0106)
Game Version: 8.0.1
Release Date: 17/11/2018
## Interaction
# Loot
- Should Close Loot Window If There is no Items to Loot! issue #13
#Taxi
- Taxi service changed to try and deal better with the Newer FightMap with the Same Point NAME! issue #38
## Quest
- Fixed a bug Lua Error on quest when the clone does not have more then one item to pick issue #17
## Item-Bar
- Fixed A Bug Where It Was Clearing Items In The Players Bag! issue #46
---------------------------
EMA Version: v8.0.1-Release-v1.0(0103)
Game Version: 8.0.1
Release Date: 23/10/2018
## Interaction
-- Fixed A bug where two FightPoints on the map has the same "name" issue #38
## Toon
-- Should Nolonger Spam the Team Saying WarMode Can Only Be Trun Off in Capital Citys
---------------------------
EMA Version: v8.0.1-Release-v1.0(0102)
Game Version: 8.0.1
Release Date: 30/09/2018
## Guild
- Added Enhancement "deposited X gold to the guild bank" message issue #42 ( B:0102 )
## Toon
- Repair
-- Using Blizzard GoldStings( B:0102 )
## Mail
-- No Longer Keeps Curser in MailNameEditBox Issue #40 ( B:0102 )
## Currency
-- Currency List Sorted Better issue #35 ( B:0102 )
---------------------------
EMA Version: v8.0.1-Release-v1.0(0099)
Game Version: 8.0.1
Release Date: 10/09/2018
## Group/tag
-- CommandLine /EMA AddCharacterToGroup <name> <Group> Should Do Something Now
## isboxer
-- will now update teamlist on login!
---------------------------
EMA Version: v8.0.1-Release-v1.0(0098)
Game Version: 8.0.1
Release Date: 10/09/2018
## Trade
-- Fixed issues #32
## ItemUse
-- Should not remove Non-Quest items from the bar!
## Mail
-- Holding Down Shift Key when you open the MailBox Will Stop You Sending Mail!
---------------------------
EMA Version: v8.0.1-Release-v1.0(0097)
Game Version: 8.0.1
Release Date: 09/09/2018
## Follow/isboxer
-- The old jamba comamnds /jamba-follow should work again with EMA
## Guild
-- Fix a bug where the BlackList Option was not Setting on the GUI Right
## Mail
-- Fix a bug where the BlackList Option was not Setting on the GUI Right
-- Should Now Send The Right Items To The Right Toon
-Developer Note: The Goblins Really Massed Up The Itemsmatic7se So We Added More Booom!!!
-- Will Not Try And Send More Then Attachments_Max_Send( 12 Items ) At A Time!
-- Does Not Try And Send Mail Again Before The The 1st Mail Is Send.
---------------------------
EMA Version: v8.0.1-Release-v1.0(0096)
Game Version: 8.0.1
Release Date: 08/09/2018
## Core
- Updated License To "All Rights Reserved" To Stop People Stealing My Code For There Own Non-Public "Releases" - Without My permission
- To Match CurseForge
- Added
Libdatabroker-1.1
- Added A Check To See If you Running EMA and Jamba Twogather Thia will Disable "Jamba"
-- Developer Note: Really You Don't Want To Do This! Kittens Will Die!!!
## Follow
- Fixed issues #24 ( Follow Strobe Getting Canceled Out When Pvp Follow Warning Goes Off )
## Mail
- New Module sends a List/BoE/Reagents Items To A Character.
- Will Only Trade BoE Gear! and CraftingReagent has been Updated both Now Have Groups!
- Added A BlackList To Stop Mailing Items
## Trade
- Fixed Issues #23
- Trade > Not Working With Connected Realms
- Fixed A Bug That Was Not Setting Grouplist Right.
## Guild
- Fixed A Bug That Was Not Setting Grouplist Right.
## LDBBar
- Some Code Help From Jabberie a few EMA Options Edited and made to Look better by ME!
- Click To open EMA Config
- Middle Click To Open Team Config
- Right Click to Push "ALL" settings
---------------------------
EMA Version: v8.0.1-Release-v1.0(0095)
Game Version: 8.0.1
Release Date: 26/8/2018
## Team
- Seems somewhere along the lines the code for "invite" <Tag> went MIA!!!
---------------------------
EMA Version: v8.0.1-Release-v1.0(0094)
Game Version: 8.0.1
Release Date: 26/8/2018
## Core/Random
-Cleaned Up Some Debug Code
## Team
- Invite GroupTag Should Work Again
- Should Set To Raid if over 5 members!
- Set Assistant Is now working ( was it ever? )
## Trade
- Should Not Trade White Items (tools) When Have On Trade BoE items
## Guild
- Should Not Place White Items (tools) in Guild Bank When Have On BoE items
## ISBoxer
- Fixed A Bug Where The Isboxer Teamlist Registering Right With EMA
##Currency
- Added All BFA Currencys.
---------------------------
EMA Version: v8.0.1-Release-v1.0(0092)
Game Version: 8.0.1
Release Date: 24/8/2018
-- The Am Sorry About Everything Update!
## Core/Random
-Fixed a Typo In Bindings.xml issue #7
- Should No Longer Get silly lag when looting issue #1
- Fixed issue #6
## Team
- Fixed A Bug Where The Character Position Got Reset To 0 When Removing A Ream Member!
- Team List Selecting Should No Longer Reset To Top Of List To Top Of List When Removing A Character
- ISBoxer Added Team Members Is Back!
## Sell
- Reworked The Sell System And Should Be A Lot Faster uing The New Min/Max System.
**- Really This Time It Should Sell All Items In The Vender/Sell List And Players Bag Without Stoping At Around 12 Items
- Added A BlackList To Stop Selling Items, Philosopher's Stones Comes to Mind
- Redesigned The Sell UI
- The Should Now Work With Blizzards Ilvl System better!
- You Can Now Destroy Items In The Sell List As Well This Will Delete The Item On All Chars At The Vender!
- Maybe You Nerver Wonnted The Heathstone After All!!
- Sell List Selecting Should No Longer Reset To Top Of List When Removing A Item
## Trade
- Reworked The Trade System And Should Be A Lot Faster uing The New Min/Max System.
- Will Only Trade BoE Gear! and CraftingReagent has been Updated both Now Have Groups!
- Added A BlackList To Stop Selling Tradeing Items
- Redesigned The Trade UI
- Trade List Selecting Should No Longer Reset To Top Of List When Removing A Item
## Guild
- Reworked The Guild System.
- Will Only Place in BoE Gear! and CraftingReagent has been Updated both Now Have Groups!
- Added A BlackList To Stop Placeing In Items
- Redesigned The Guild UI
- Guild List Selecting Should No Longer Reset To Top Of List When Removing A Item
## Item-Use
- Cleaned Up Some Code And Tracked Down A "Small" Lag Issue
- Removed Artifact Power From Bars
- We Don't Seem To Have Useable Artifact Items In BFA And Legion Ones Are Vender "Trash"
## Interaction
- Auto Loot
- Using New API to Find BoE Items You Loot!
--Developer Note: Did not seem to "work"
- Fixed Tell Team If you get Rare Or Epic BoEs
## Toon
**- Follow
**- Added A Warning If A Membmer Of Your Team Is In PvP Combat Or You Have The Lack Of the Use Of Follow
**- Should Not Spam PvP Follow Warnings!
**- Requests