-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRelNotes.json
More file actions
989 lines (989 loc) · 30.6 KB
/
RelNotes.json
File metadata and controls
989 lines (989 loc) · 30.6 KB
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
{
"NOTES": {
"k021001": {
"major": "2",
"minor": "10",
"patch": "1",
"description": [
{
"tag": "Fix",
"info": "tutorial was not hiding on OHC closing"
}
]
},
"k021000": {
"major": "2",
"minor": "10",
"patch": "0",
"description": [
{
"tag": "Fix",
"info": "lua error in tutorials.lua"
}
]
},
"k020900": {
"major": "2",
"minor": "9",
"patch": "0",
"description": [
{
"tag": "Toc",
"info": "12.0.1"
}
]
},
"k020800": {
"major": "2",
"minor": "8",
"patch": "0",
"description": [
{
"tag": "Fix",
"info": "Add OrderHallClassSpecCategory with tooltip functionality and XML layout"
},
{
"tag": "Fix",
"info": "Fix follower tooltip functionality by updating garrisonFollowerID extraction"
},
{
"tag": "Fix",
"info": "Added Legacy files for removed Bizzard objects"
}
]
},
"k020700": {
"major": "2",
"minor": "7",
"patch": "0",
"description": [
{
"tag": "Toc",
"info": "11.2.7"
}
]
},
"k020600": {
"major": "2",
"minor": "6",
"patch": "0",
"description": [
{
"tag": "Toc",
"info": "11.2.0"
},
{
"tag": "Fix",
"info": "Removed a glitch when clicking on minimap button"
},
{
"tag": "Feature",
"info": "Added category"
},
{
"tag": "Internale",
"info": "removed unused parameters"
}
]
},
"k020502": {
"major": "2",
"minor": "5",
"patch": "2",
"description": [
{
"tag": "Toc",
"info": "11.1.5"
}
]
},
"k020501": {
"major": "2",
"minor": "5",
"patch": "1",
"description": [
{
"tag": "Toc",
"info": "11.0.7"
}
]
},
"k020500": {
"major": "2",
"minor": "5",
"patch": "0",
"description": [
{
"tag": "Fix",
"info": "Removed deprecated functions usage"
}
]
},
"k020401": {
"major": "2",
"minor": "4",
"patch": "1",
"description": [
{
"tag": "Feature",
"info": "Library update"
}
]
},
"k020400": {
"major": "2",
"minor": "4",
"patch": "0",
"description": [
{
"tag": "Toc",
"info": "Update for 11.0.2, 11.0.0"
}
]
},
"k020302": {
"major": "2",
"minor": "3",
"patch": "2",
"description": [
{
"tag": "Toc",
"info": "Update for 10.2.7"
},
{
"tag": "Fix",
"info": "Lua Error about SetJustifyV"
}
]
},
"k020200": {
"major": "2",
"minor": "2",
"patch": "0",
"description": [
{
"tag": "toc",
"info": "10.2.6"
}
]
},
"k011202": {
"major": "1",
"minor": "12",
"patch": "2",
"description": [
{
"tag": "Fix",
"info": "Removed chat spam"
}
]
},
"k010901": {
"major": "1",
"minor": "9",
"patch": "1",
"description": [
{
"tag": "Fix",
"info": "Message"
}
]
},
"k010900": {
"major": "1",
"minor": "9",
"patch": "0",
"description": [
{
"tag": "Toc",
"info": "bump"
}
]
},
"k010807": {
"major": "1",
"minor": "8",
"patch": "7",
"description": [
{
"tag": "Fix",
"info": "There was a typo im the fix, now lua error in mission list is gone. Sure. No doubt. Gnomish engineering quality grade"
}
]
},
"k010806": {
"major": "1",
"minor": "8",
"patch": "6",
"description": [
{
"tag": "Fix",
"info": "lua error in mission list"
}
]
},
"k010805": {
"major": "1",
"minor": "8",
"patch": "5",
"description": [
{
"tag": "Toc",
"info": "9.0.2"
}
]
},
"k010804": {
"major": "1",
"minor": "8",
"patch": "4",
"description": [
{
"tag": "Fix",
"info": "Message"
}
]
},
"k010802": {
"major": "1",
"minor": "8",
"patch": "2",
"description": [
{
"tag": "Fix",
"info": "Message"
}
]
},
"k010801": {
"major": "1",
"minor": "8",
"patch": "1",
"description": [
{
"tag": "Fix",
"info": "Message"
}
]
},
"k010800": {
"major": "1",
"minor": "8",
"patch": "0",
"description": [
{
"tag": "Toc",
"info": "9.0.1"
}
]
},
"k010706": {
"major": "1",
"minor": "7",
"patch": "6",
"description": [
{
"tag": "Toc",
"info": "8.3.0"
}
]
},
"k010705": {
"major": "1",
"minor": "7",
"patch": "5",
"description": [
{
"tag": "Feature",
"info": "8.2.5"
}
]
},
"k010704": {
"major": "1",
"minor": "7",
"patch": "4",
"description": [
{
"tag": "Feature",
"info": "8.2"
}
]
},
"k010703": {
"major": "1",
"minor": "7",
"patch": "3",
"description": [
{
"tag": "Fix",
"info": "Null error for tooltips on Followers #1"
}
]
},
"k010702": {
"major": "1",
"minor": "7",
"patch": "2",
"description": [
{
"tag": "Fix",
"info": "OrderHallCommander\\tutorials.lua"
}
]
},
"k010701": {
"major": "1",
"minor": "7",
"patch": "1",
"description": [
{
"tag": "Fix",
"info": "Removed \"OrderHallCommander"
},
{
"tag": "Feature",
"info": "ChampionCommander banner should now appear a maximum of 3 times"
}
]
},
"k010700": {
"major": "1",
"minor": "7",
"patch": "0",
"description": [
{
"tag": "Feature",
"info": "When viewing a mission you can now see all available parties clicking \"Analyze\""
},
{
"tag": "Feature",
"info": "To manage BFA Missions, please install MissionCommander"
}
]
},
"k010600": {
"major": "1",
"minor": "6",
"patch": "0",
"description": [
{
"tag": "Feature",
"info": "fully working under Battle for Azeroth"
},
{
"tag": "Fix",
"info": "error in autocomplete.lua line 484"
}
]
},
"k010514": {
"major": "1",
"minor": "5",
"patch": "14",
"description": [
{
"tag": "Feature",
"info": "added Earthen Mark for Shamans"
}
]
},
"k010513": {
"major": "1",
"minor": "5",
"patch": "13",
"description": [
{
"tag": "Fix",
"info": "lua error when both sorts were on \"Original method\" Thanks to Septh for noting it"
},
{
"tag": "Feature",
"info": "added Squires'Oath for paladins"
}
]
},
"k010511": {
"major": "1",
"minor": "5",
"patch": "11",
"description": [
{
"tag": "Fix",
"info": "Second sort was not working if not changed at least once in the current session"
},
{
"tag": "Feature",
"info": "Via Options now you can disable right click for blacklisting (Sponsorized by Katmandu)"
},
{
"tag": "Fix",
"info": "Removes Alpha warning (was due to a curse packager bug)"
},
{
"tag": "Fix",
"info": "#153 now closing mission panel with ESC also closes all OHC windows"
}
]
},
"k010510": {
"major": "1",
"minor": "5",
"patch": "10",
"description": [
{
"tag": "Feature",
"info": "Added a second level sort criteria"
},
{
"tag": "Fix",
"info": "LeftSide Icon are now updates as soon as mission table appears"
},
{
"tag": "Feature",
"info": "Added itemid 140931 (Bandit wanted poster) to quick buttons"
},
{
"tag": "Feature",
"info": "For reputation rewards, your current reputation with the related faction is shown"
}
]
},
"k010509": {
"major": "1",
"minor": "5",
"patch": "9",
"description": [
{
"tag": "Feature",
"info": "added more items to side bar"
},
{
"tag": "Feature",
"info": "removed from followerpage and moved to sidebar some items which doesnt need to be cast on a follower"
}
]
},
"k010508": {
"major": "1",
"minor": "5",
"patch": "8",
"description": [
{
"tag": "Fix",
"info": "1x OrderHallCommander\\missionlist.lua"
}
]
},
"k010507": {
"major": "1",
"minor": "5",
"patch": "7",
"description": [
{
"tag": "Fix",
"info": "#136 (and others) Lua error"
},
{
"tag": "Fix",
"info": "#137 Removed chat spam"
},
{
"tag": "Feature",
"info": "Class specific troop generating items added. Let me know if your class has issue"
},
{
"tag": "Feature",
"info": "Total xp are now shown as \"xp x followers\", so you can better compare missions (feature request #97)"
}
]
},
"k010506": {
"major": "1",
"minor": "5",
"patch": "6",
"description": [
{
"tag": "Fix",
"info": "#135 Using champion equipment causes the game to hang"
},
{
"tag": "Fix",
"info": "#117 Sometimes \"in progress\" mission were shown without followers"
},
{
"tag": "Fix",
"info": "Removed chat spam"
}
]
},
"k010505": {
"major": "1",
"minor": "5",
"patch": "5",
"description": [
{
"tag": "Feature",
"info": "Base chance can be now set up to 120% to allow for a bit of overcapping"
},
{
"tag": "Feature",
"info": "New Elite Overcap switch to force elites mission to always stay over 100%, if possibile"
},
{
"tag": "Feature",
"info": "You can restore shift-click to send a single mission from mission list"
},
{
"tag": "Fix",
"info": "Reset button was not working"
},
{
"tag": "Fix",
"info": "You can again change switches while viewing the mission page"
}
]
},
"k010504": {
"major": "1",
"minor": "5",
"patch": "4",
"description": [
{
"tag": "Feature",
"info": "#120 Starting mission from list now requires ctrl-shift"
},
{
"tag": "Feature",
"info": "#124 Moved action buttons to a safer spot"
},
{
"tag": "Fix",
"info": "#127 Side menu didnt stay closed"
},
{
"tag": "Fix",
"info": "#121 Window is now draggable even by the troop status bar"
},
{
"tag": "Fix",
"info": "#123 Sorting should now be more responsive to config changes"
},
{
"tag": "Fix",
"info": "#119 Bad display when more than 5 types of troops (really!) Tested up to 10 troops"
},
{
"tag": "Fix",
"info": "Side menu no longer get reopened at each start"
}
]
},
"k010503": {
"major": "1",
"minor": "5",
"patch": "3",
"description": [
{
"tag": "Feature",
"info": "you can now disable a troop type clicking its icon in the OHC troop bar"
},
{
"tag": "Fix",
"info": "Maximize xp was ignoring cap"
},
{
"tag": "Fix",
"info": "#119 Bad display when more than 5 types of troops"
},
{
"tag": "Fix",
"info": "#109 Future mission were missing in tooltip"
},
{
"tag": "Fix",
"info": "#118 Troops with random abilities should now be considered"
},
{
"tag": "Fix",
"info": "#99 Caused by same issue of 118, should be fixed"
}
]
},
"k010502": {
"major": "1",
"minor": "5",
"patch": "2",
"description": [
{
"tag": "Fix",
"info": "#108 Ignored\/Blacklisted missions aren't sorted at the bottom since 1.5.1"
}
]
},
"k010501": {
"major": "1",
"minor": "5",
"patch": "1",
"description": [
{
"tag": "Feature",
"info": "Added an (hopefully) nice tutorial"
},
{
"tag": "Fix",
"info": "Threat icons in missions panel are now consistent with the ones in mission page"
}
]
},
"k010500": {
"major": "1",
"minor": "5",
"patch": "0",
"description": [
{
"tag": "Feature",
"info": "Left Clicking a follower will lock him to the mission, so you can see how a mission composition will affect all the other ones"
},
{
"tag": "Feature",
"info": "Right clicking a follower slot forbids using it, so you can force OHC to use less follower for a specific mission. Usable only on the leftmost slot"
},
{
"tag": "Feature",
"info": "Autostart. Mission can be launched whith just one click via the \"Quick start mission button\". The first mission in the list is started."
},
{
"tag": "Feature",
"info": "Blacklisted missions or missions which are aunder the \"Absolute Minimum Chance\" value are not autolaunched"
},
{
"tag": "Feature",
"info": "You can now set a minimum success chance. If bonus chance can not be achieved, than OHC will not fill mission whicn not reach at least this percentage"
},
{
"tag": "Feature",
"info": "You can now set a minimum bonus chance. If it's not achieved, than OHC wil not waste forces and will try set the success chance closest to 100 as possible"
},
{
"tag": "Feature",
"info": "For troops, durability is shown in the mission button icon"
},
{
"tag": "Feature",
"info": "Reorganized troops' related switches"
},
{
"tag": "Feature",
"info": "Never kill troops switch forces OHC to only use troop with more than 1 durability left AND to counter deadly"
},
{
"tag": "Feature",
"info": "You can now choose if OHC prefers low or high durability troops"
},
{
"tag": "Feature",
"info": "Feature"
},
{
"tag": "Fix",
"info": "#68 Initial lag when opening panels should be gone or at least greatly reduced. YMV"
},
{
"tag": "Fix",
"info": "#65 Errors from ACE when rapidly changing sliders"
},
{
"tag": "Fix",
"info": "#66 Not using less than 3 units total"
},
{
"tag": "Fix",
"info": "#80 Krokul troops should be used more rarely"
},
{
"tag": "Fix",
"info": "#78 Ignore busy follower will be checked by defaults for new installs"
},
{
"tag": "Fix",
"info": "#86 Added mising equipments"
},
{
"tag": "Feature",
"info": "Feature"
},
{
"tag": "Note",
"info": "fixes to errors only appeared during beta testing are not listed"
}
]
},
"k010400": {
"major": "1",
"minor": "4",
"patch": "0",
"description": [
{
"tag": "Feature",
"info": "You can now deactivate the Not enough champions warning"
},
{
"tag": "Feature",
"info": "Item level in upgrade items is now more evident"
},
{
"tag": "Feature",
"info": "Equipped items are now quality colored"
},
{
"tag": "Fix",
"info": "Elite mission were not identified the right way"
},
{
"tag": "Fix",
"info": "#59 When changing switches while mission page was shown, selection was not updated"
},
{
"tag": "Fix",
"info": "#59 Mission report is now also closed when you use esc to close mission panel"
},
{
"tag": "Fix",
"info": "#60 Future parties now dont include compab ally if \"Use combat ally\" is not checked"
}
]
},
"k010300": {
"major": "1",
"minor": "3",
"patch": "0",
"description": [
{
"tag": "Feature",
"info": "updates time duration with the actual time duration with the selected party and colors it (green if better, red if worse)"
},
{
"tag": "Fix",
"info": "if mission is maxed, no longer fills it (mission can be sent with less than 3 followers)"
},
{
"tag": "Feature",
"info": "tries to use cheaper troops when available"
},
{
"tag": "Fix",
"info": "Elite mission chance is now computed the right way"
}
]
},
"k010202": {
"major": "1",
"minor": "2",
"patch": "2",
"description": [
{
"tag": "Fix",
"info": "#44 Error when changing options on send mission page"
},
{
"tag": "Fix",
"info": "#47 Troops shipment not appearing on panel loading"
},
{
"tag": "Fix",
"info": "Not enough champions warning was appearing way too often"
},
{
"tag": "Feature",
"info": "\"Better party available\" tooltip improvement, now also lists party composition"
},
{
"tag": "Fix",
"info": "Removes an incompatibility with AuroraUI"
}
]
},
"k010201": {
"major": "1",
"minor": "2",
"patch": "1",
"description": [
{
"tag": "Fix",
"info": "#43 Added missing consumable items"
},
{
"tag": "Fix",
"info": "#41 Consumables are now always shown"
},
{
"tag": "Fix",
"info": "#39 Removed usage of Blizzard UIDropDown in order to avoid random taint"
},
{
"tag": "Feature",
"info": "#40 Missions blacklisting available"
}
]
},
"k010103": {
"major": "1",
"minor": "1",
"patch": "3",
"description": [
{
"tag": "Fix",
"info": "#35 Now manages new champions ilevel upgrade token"
},
{
"tag": "Feature",
"info": "#30 added option to sort unfilled missions as last"
}
]
},
"k010102": {
"major": "1",
"minor": "1",
"patch": "2",
"description": [
{
"tag": "Feature",
"info": "Toc bump"
}
]
},
"k010101": {
"major": "1",
"minor": "1",
"patch": "1",
"description": [
{
"tag": "Fix",
"info": "Save troops honored (https"
},
{
"tag": "Fix",
"info": "restored future missions in tooltip"
},
{
"tag": "Fix",
"info": "improved kill troop information, now the skull is green if klll troops is in effect but used troops only have 1 durability left"
}
]
},
"k010100": {
"major": "1",
"minor": "1",
"patch": "0",
"description": [
{
"tag": "Fix",
"info": "All cache error should be gone"
},
{
"tag": "Feature",
"info": "new Don't use troops switch"
},
{
"tag": "Feature",
"info": "Separate state rcap for Champions and Troops"
},
{
"tag": "Feature",
"info": "you can decide if show busy or even inactive followers"
},
{
"tag": "Feature",
"info": "shift click on reward prints wowhead link in chat"
},
{
"tag": "Feature",
"info": "added icon to show active bonus and malus in mission buttons"
},
{
"tag": "Feature",
"info": "added an informative message when the options you checked lead to not being able to fill missions"
},
{
"tag": "Fix",
"info": "Healing Stream Totem is now considered as upgrade"
}
]
},
"k000204": {
"major": "0",
"minor": "2",
"patch": "4",
"description": [
{
"tag": "Fix",
"info": "lua errors in matchmaker.lua"
}
]
},
"k000200": {
"major": "0",
"minor": "2",
"patch": "0",
"description": [
{
"tag": "Fix",
"info": "sometimes cache was not refresh after completing missions,leaving al missions unpopulated"
}
]
},
"k000101": {
"major": "0",
"minor": "1",
"patch": "1",
"description": [
{
"tag": "Fix",
"info": "Checks we actually cached a follower before removing it from cache"
},
{
"tag": "Fix",
"info": "one follower missions where not supported"
},
{
"tag": "Fix",
"info": "Countered spells are now always marked"
},
{
"tag": "Feature",
"info": "new options for party selection"
}
]
},
"k000100": {
"major": "0",
"minor": "1",
"patch": "0",
"description": [
{
"tag": "Feature",
"info": "First release"
}
]
}
},
"PARAGRAPHS": [
"Description",
"Release Notes"
],
"TITLE": {
"addon": "me",
"title": "RELNOTES"
},
"WIKI": [
"= OrderHallCommander helps you when choosing the right follower for the right mission =",
"== General enhancements ==",
"* Mission panel is movable (position not saved, it's jus to see things, panel is so huge...)",
"* Success chance extimation shown in mission list (optionally considering only available followers)",
"* Proposed party buttons and mission autofill",
"* \"What if\" switches to change party composition based on criteria",
"== Silent mode ==",
"typing \/ohc silent in chat will eliminate every chat message from OrderHallCommander"
]
}