-
Notifications
You must be signed in to change notification settings - Fork 3
/
State.toml
9718 lines (9718 loc) · 845 KB
/
State.toml
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
[channels.stable.plugins."Dalamud.RichPresence"]
built_commit = "07ba4060253c96725e4005844c777d6e60f73957"
time_built = 2024-07-22T23:08:23.080
effective_version = "2.0.4.1"
[channels.stable.plugins."Dalamud.RichPresence".changelogs."2.0.1.0"]
time_released = 2022-10-19T19:52:28.668
changelog = "Updated dependencies. Might help with some recent connection failures."
[channels.stable.plugins."Dalamud.RichPresence".changelogs."2.0.2.0"]
time_released = 2023-01-11T18:29:14.817
changelog = "NET7 / API 8 support."
[channels.stable.plugins."Dalamud.RichPresence".changelogs."2.0.3.0"]
time_released = 2023-10-07T00:58:22.594
changelog = "API 9 support. (Thank you NPittinger)\n\nNew features:\n- Turn off rich presence when AFK (thank you sersorrel)\n"
[channels.stable.plugins."Dalamud.RichPresence".changelogs."2.0.4.0"]
time_released = 2024-07-10T13:50:58.377
changelog = "API 10 support. (Thank you Kazwolf)\n"
[channels.stable.plugins."Dalamud.RichPresence".changelogs."2.0.4.1"]
time_released = 2024-07-22T23:08:23.080
changelog = "IPC updated for WaitingWay. Now respects scaling.\n"
[channels.stable.plugins.Glamaholic]
built_commit = "8b16ee85dd9cba212bfa39ff28566eb2afeb86ce"
time_built = 2024-08-04T02:32:53.486
effective_version = "1.10.9.0"
[channels.stable.plugins.Glamaholic.changelogs."1.9.8.0"]
time_released = 2022-08-25T00:24:53.344
changelog = "API 7"
[channels.stable.plugins.Glamaholic.changelogs."1.9.9.0"]
time_released = 2022-08-26T01:27:50.521
changelog = "The Glamour Dresser has 800 slots now! Accounted for that and fixed the problems arising because of that."
[channels.stable.plugins.Glamaholic.changelogs."1.9.10.0"]
time_released = 2023-01-15T22:30:57.845
changelog = "API 8"
[channels.stable.plugins.Glamaholic.changelogs."1.9.11.0"]
time_released = 2023-05-25T17:31:22.325
changelog = "6.4"
[channels.stable.plugins.Glamaholic.changelogs."1.9.12.0"]
time_released = 2023-05-30T03:11:25.857
changelog = "Fix for creating saved plates from the fitting room."
[channels.stable.plugins.Glamaholic.changelogs."1.9.13.0"]
time_released = 2023-08-31T22:40:16.688
changelog = "Fix for creating saved plates from the fitting room."
[channels.stable.plugins.Glamaholic.changelogs."1.9.14.0"]
time_released = 2023-10-04T01:13:12.314
changelog = "API 9"
[channels.stable.plugins.Glamaholic.changelogs."1.10.6.0"]
time_released = 2024-07-30T16:00:49.299
changelog = "Glamaholic has been adopted!\n\nUpdated for Dawntrail & API X.\n\n**New Features**\n- Added \"Export as Text\" feature, available in the button bar at the bottom of the glamour edit and preview pane.\n- Added \"Fill with New Emperor\" options to fill empty slots with New Emperor either in-plate or when applying or trying a plate on.\n- Added Troubleshooting Mode to help track down potential issues\n - Activate through Settings -> \"Troubleshooting mode\", then check `/xllog` for messages starting with `[Troubleshooting]`\n\nIf you encounter any issues, please enable troubleshooting mode (see above) and let us know in the Glamaholic thread of the Plugin Help Forum on Discord. Thanks!\n"
[channels.stable.plugins.Glamaholic.changelogs."1.10.9.0"]
time_released = 2024-08-04T02:32:53.486
changelog = "Bug Fixes\n- Opo-opo brown dye is now correctly imported for Eorzea Collection glamours.\n\nNew Features\n- Began cross-plugin interoperability for other supported glamour plugins.\n - Note: features related to other plugins will only appear if supported plugins are installed and enabled.\n- Eorzea Collection imports are now automatically tagged as such.\n- Added \"Try On\" for Eorzea Collection importing.\n- Added \"Mass Import\" for Eorzea Collection.\n- Added dye list + copy for Glamaholic plates.\n\nFor troubleshooting, please enable Troubleshooting mode (Settings -> Troubleshooting mode), reproduce the issue, then post any log line from `/xllog` starting with `[Troubleshooting]`. Thanks!\n"
[channels.stable.plugins.DeathRecap]
built_commit = "6ee0124d504cc101a3ebcc19be2cfcbeb0c9e62b"
time_built = 2024-07-01T19:45:35.544
effective_version = "1.12.0.0"
[channels.stable.plugins.DeathRecap.changelogs."1.8.0.2"]
time_released = 2022-08-24T14:27:31.170
changelog = "Signatures for 6.2\n"
[channels.stable.plugins.DeathRecap.changelogs."1.9.0.0"]
time_released = 2022-10-02T19:29:46.787
changelog = "- Added a row filter so you can hide buff/debuff/healing/damage events\n- Will now decode _rsv_ names used in savage and ultimate encounters to their actual names\n- Allow hiding and reordering columns in the event table\n- Added an experimental histogram view (still needs some visual improvements)\n- Recap window can now also be closed with /dr and /deathrecap\n- Added an option to immediatly open the recap on death\n- Allow collapsing the recap window\n- Will now display most recent status effects first in the status effect column\n- Fixed an issue causing -550 DoT events to be displayed\n"
[channels.stable.plugins.DeathRecap.changelogs."1.9.1.0"]
time_released = 2023-01-12T18:08:29.614
changelog = "Update for Patch 6.3\n"
[channels.stable.plugins.DeathRecap.changelogs."1.10.0.0"]
time_released = 2023-04-06T17:10:03.452
changelog = "- Will now open the correct death recap when clicking a link in chat, not just the latest one.\n- Use improved window management from Dalamud.Windowing (thanks MidoriKami)\n"
[channels.stable.plugins.DeathRecap.changelogs."1.10.1.0"]
time_released = 2023-04-06T19:13:38.006
changelog = "- Add option to disable in PvP\n"
[channels.stable.plugins.DeathRecap.changelogs."1.10.2.0"]
time_released = 2023-05-24T19:33:56.911
changelog = "Update for Patch 6.4\n"
[channels.stable.plugins.DeathRecap.changelogs."1.10.2.1"]
time_released = 2023-05-29T03:21:01.253
changelog = "Fixed recap DoT values being *slightly* inaccurate\n"
[channels.stable.plugins.DeathRecap.changelogs."1.10.2.2"]
time_released = 2023-07-15T19:30:42.593
changelog = "Added Dismantle to the list of captured status effects (thanks Speedas)\n"
[channels.stable.plugins.DeathRecap.changelogs."1.10.2.3"]
time_released = 2023-07-18T19:44:41.248
changelog = "Add BLU Bad Breath, Conked from Magic Hammer, and Candy Cane (new in 6.45) to the list of captures status effects. (Thanks xiashtra)\n"
[channels.stable.plugins.DeathRecap.changelogs."1.10.3.0"]
time_released = 2023-09-06T19:14:32.861
changelog = "Now uses the \"System Message\" chat type as default to avoid spamming all chat windows.\nAlso fixed some chat types missing a space between player name and \"has\".\n"
[channels.stable.plugins.DeathRecap.changelogs."1.11.0.0"]
time_released = 2023-10-04T00:59:03.320
changelog = "Update for patch 6.5\n"
[channels.stable.plugins.DeathRecap.changelogs."1.11.1.0"]
time_released = 2024-04-07T17:21:01.262
changelog = "- Fix Well Fed & Medicated icon in death recap\n- Show healing from Kardia, Nascent Glint and similar abilties (by Cformaintain)\n"
[channels.stable.plugins.DeathRecap.changelogs."1.12.0.0"]
time_released = 2024-07-01T19:45:35.544
changelog = "Update for 7.0\n"
[channels.stable.plugins.PetScale]
built_commit = "c2ee86503a372ff8bd9dccc9cd3cf1f64a4d49f1"
time_built = 2024-08-01T23:57:00.108
effective_version = "2.0.1.0"
[channels.stable.plugins.PetScale.changelogs."1.1.0.0"]
time_released = 2024-03-20T00:25:31.331
changelog = "- New plugin that allows you to control the scale of summoner pets\n"
[channels.stable.plugins.PetScale.changelogs."1.2.0.0"]
time_released = 2024-03-27T20:26:57.917
changelog = "- Added option to scale Eos and Selene up to regular fairy size\n"
[channels.stable.plugins.PetScale.changelogs."1.2.1.0"]
time_released = 2024-04-05T15:21:28.041
changelog = "- Fixed broken filter\n- Possible fix for expanding dropdown\n"
[channels.stable.plugins.PetScale.changelogs."1.3.0.0"]
time_released = 2024-07-11T02:59:45.512
changelog = "- DT Update\n- Support added for Solar Bahamut\n"
[channels.stable.plugins.PetScale.changelogs."2.0.1.0"]
time_released = 2024-08-01T23:57:00.108
changelog = "- Switched pet matching to use ContentId, thus eliminating false-positive matches\n- Added support for custom sizes of MCH, SCH, DRK, and fixed-size SMN pets\n- Pet custom size will not be set in PvP\n- Added the ability to add a new entry by typing the character name in the Character filter box\n- Fixed bug where fairy setting would always set a size\n- Pets will revert to their vanilla size when an entry is removed and on plugin unload, if they're still around\n- Slowed down the plugin by only 3.5 times instead of 4.5 times\n"
[channels.stable.plugins.EasyEyes]
built_commit = "e8cb035ed1d0cf4e9393849e62f3f90e8d487241"
time_built = 2024-07-14T03:40:40.101
effective_version = "1.3.0.0"
[channels.stable.plugins.EasyEyes.changelogs]
[channels.stable.plugins.Tourist]
built_commit = "80bbef448fff5175bf9559e4259d971418f80661"
time_built = 2024-07-02T19:41:11.833
effective_version = "1.2.15"
[channels.stable.plugins.Tourist.changelogs."1.2.9"]
time_released = 2022-08-25T00:25:23.483
changelog = "API 7"
[channels.stable.plugins.Tourist.changelogs."1.2.10"]
time_released = 2022-09-11T05:01:23.656
changelog = "API 7"
[channels.stable.plugins.Tourist.changelogs."1.2.11"]
time_released = 2023-04-05T04:46:01.166
changelog = "6.3"
[channels.stable.plugins.Tourist.changelogs."1.2.12"]
time_released = 2023-04-15T19:05:49.270
changelog = "Fix a crash in squadrons"
[channels.stable.plugins.Tourist.changelogs."1.2.13"]
time_released = 2023-08-31T22:39:33.987
changelog = "Fix a crash in squadrons"
[channels.stable.plugins.Tourist.changelogs."1.2.14"]
time_released = 2023-10-04T01:11:17.085
changelog = "API 9"
[channels.stable.plugins.Tourist.changelogs."1.2.15"]
time_released = 2024-07-02T19:41:11.833
changelog = "Dawntrail"
[channels.stable.plugins.HarpHero]
built_commit = "60c29a5b7f54675c5d0a2333a2a2a33a78e66765"
time_built = 2024-07-03T02:54:12.472
effective_version = "1.10.0.0"
[channels.stable.plugins.HarpHero.changelogs]
[channels.stable.plugins.ScoutHelper]
built_commit = "7db3022906da598c98c53c604ba21cd4c40f9ce5"
time_built = 2024-08-25T15:01:40.523
effective_version = "1.6.2.0"
[channels.stable.plugins.ScoutHelper.changelogs."1.2.2.0"]
time_released = 2024-07-13T04:18:54.446
changelog = "update to support 7.0 Dawntrail"
[channels.stable.plugins.ScoutHelper.changelogs."1.3.2.0"]
time_released = 2024-07-19T18:25:30.616
changelog = "(patch) update instance numbers"
[channels.stable.plugins.Malmstone]
built_commit = "86e365d62fb66baddb0481a1f0c1bbf1b7fd00f6"
time_built = 2024-09-29T00:32:48.720
effective_version = "1.0.7.1"
[channels.stable.plugins.Malmstone.changelogs."1.0.7.1"]
time_released = 2024-09-29T00:32:48.720
changelog = "Stable Release! This is a plugin with features that help make Series Malmstones in PVP a better experience\n"
[channels.stable.plugins.EmoteLog]
built_commit = "dde908b1254bb165748bc92b6aeb9d9b6468817a"
time_built = 2024-07-01T19:31:33.837
effective_version = "1.1.3.0"
[channels.stable.plugins.EmoteLog.changelogs."1.0.0.0"]
time_released = 2023-04-05T02:44:33.742
changelog = "Initial public release"
[channels.stable.plugins.EmoteLog.changelogs."1.0.1.0"]
time_released = 2023-04-27T21:54:10.759
changelog = "- Added font size configuration\n- Added text wrapping configuration\n"
[channels.stable.plugins.EmoteLog.changelogs."1.0.1.1"]
time_released = 2023-05-04T19:18:02.009
changelog = "- Fixed a crash that can occur on login\n"
[channels.stable.plugins.EmoteLog.changelogs."1.1.1.1"]
time_released = 2023-10-05T01:19:31.541
changelog = "- Updated to API v9 and 6.5\n"
[channels.stable.plugins.EmoteLog.changelogs."1.1.2.0"]
time_released = 2024-04-02T20:22:24.377
changelog = "- Added support for the new Dalamud font selection\n"
[channels.stable.plugins.EmoteLog.changelogs."1.1.3.0"]
time_released = 2024-07-01T19:31:33.838
changelog = "- Dawntrail baby\n"
[channels.stable.plugins.PingPlugin]
built_commit = "ce59dff751335dc5ce6d059fc9fae0c5294c27f5"
time_built = 2024-07-03T03:46:08.473
effective_version = "2.7.0.0"
[channels.stable.plugins.PingPlugin.changelogs."2.5.0.0"]
time_released = 2023-01-11T18:11:58.516
changelog = "- Updates for 6.3\n"
[channels.stable.plugins.PingPlugin.changelogs."2.5.1.0"]
time_released = 2023-03-24T23:11:57.173
changelog = "- Fixed server bar display failing to set up sometimes\n"
[channels.stable.plugins.PingPlugin.changelogs."2.5.2.0"]
time_released = 2023-05-26T06:43:23.559
changelog = "- Update fallback IP addresses for existing DCs\n- Add fallback IP addresses for Meteor and Dynamis\n"
[channels.stable.plugins.PingPlugin.changelogs."2.5.3.0"]
time_released = 2023-06-09T01:52:59.399
changelog = "- Fix font management logic\n"
[channels.stable.plugins.PingPlugin.changelogs."2.5.4.0"]
time_released = 2023-06-13T18:00:14.545
changelog = "- Fix ping sometimes getting stuck at 0ms (thanks Diyagi!)\n"
[channels.stable.plugins.PingPlugin.changelogs."2.6.0.0"]
time_released = 2023-10-05T09:16:29.425
changelog = "- Updates for API 9\n"
[channels.stable.plugins.PingPlugin.changelogs."2.7.0.0"]
time_released = 2024-07-03T03:46:08.473
changelog = "- Updated for API X\n- Updated font handling\n- Updated lobby server addresses\n- Added fallback for Shadow ping detection\n"
[channels.stable.plugins.PlayerTrack]
built_commit = "840f96dc52c86957d2dfbbc0280c9594824f4b75"
time_built = 2024-09-30T13:20:24.408
effective_version = "3.4.8.0"
[channels.stable.plugins.PlayerTrack.changelogs]
[channels.stable.plugins.Congratulations]
built_commit = "8a395e49d69ac09f2c639189b230b3f6ad74ab01"
time_built = 2024-07-20T08:29:15.799
effective_version = "1.3.0.0"
[channels.stable.plugins.Congratulations.changelogs."1.2.0.0"]
time_released = 2023-03-06T16:39:10.585
changelog = "Get aurally rewarded when you get commended on duties.\n\nComes with default sounds for when you get commended by 1/3, 2/3, 3/3 or all seven members of the duty you were in, but you can set custom sounds for each type of trigger by opening /congratsconfig.\n\nThe fractioned values are in relation to how many of those members could commend you (i.e. excluding those that were in your party before joining the duty).\n"
[channels.stable.plugins.Congratulations.changelogs."1.2.1.0"]
time_released = 2023-03-07T23:25:56.441
changelog = "- Fix sound not working when applying the game's sound effect volume in 6.35.\n"
[channels.stable.plugins.Congratulations.changelogs."1.2.2.0"]
time_released = 2023-03-11T21:25:25.360
changelog = "- Fix disabled \"Play Sound\" checkbox not affecting anything.\n"
[channels.stable.plugins.Congratulations.changelogs."1.2.3.0"]
time_released = 2023-10-04T01:34:50.231
changelog = "Update to API 9 / patch 6.5.\n"
[channels.stable.plugins.Congratulations.changelogs."1.3.0.0"]
time_released = 2024-07-20T08:29:15.799
changelog = "Updated for FFXIV 7.01\n"
[channels.stable.plugins."Dalamud.LoadingImage"]
built_commit = "fd25d8c5cbd7c48b88dfba80916bcfe761629f36"
time_built = 2023-10-19T18:09:25.417
effective_version = "1.0.0.12"
[channels.stable.plugins."Dalamud.LoadingImage".changelogs]
[channels.stable.plugins.OBSPlugin]
built_commit = "4e050c9e63651a4b633a714b90cb5d4018b952cf"
time_built = 2024-07-08T06:50:20.181
effective_version = "1.0.4.0"
[channels.stable.plugins.OBSPlugin.changelogs."1.0.2.3"]
time_released = 2023-01-15T04:19:23.614
changelog = "API8 & net7 & move to stable"
[channels.stable.plugins.OBSPlugin.changelogs."1.0.2.4"]
time_released = 2023-02-11T13:36:50.318
changelog = "Don't stop recording in raid clear cutscenes"
[channels.stable.plugins.OBSPlugin.changelogs."1.0.2.5"]
time_released = 2023-10-04T00:32:01.337
changelog = "- StreamFX -> Composite Blur- api9 (patch6.5)"
[channels.stable.plugins.OBSPlugin.changelogs."1.0.2.6"]
time_released = 2023-10-04T01:29:41.319
changelog = "- StreamFX -> Composite Blur- api9 (patch6.5)"
[channels.stable.plugins.OBSPlugin.changelogs."1.0.4.0"]
time_released = 2024-07-08T06:50:20.181
changelog = "- ffxiv 7.0 support"
[channels.stable.plugins.TwitchXIV]
built_commit = "e0141b89b1069ea7c368ac9956fecbc199feb514"
time_built = 2024-07-02T05:08:44.818
effective_version = "1.0.0.1"
[channels.stable.plugins.TwitchXIV.changelogs."1.0.0.0"]
time_released = 2023-10-04T15:07:48.274
changelog = "Updated for patch 6.5"
[channels.stable.plugins.TwitchXIV.changelogs."1.0.0.1"]
time_released = 2024-07-02T05:08:44.818
changelog = "Updated for patch 7.0"
[channels.stable.plugins.AutoTimer]
built_commit = "282ceb1a287e6fe31040380b4cc9fa20f06a199e"
time_built = 2024-07-03T03:40:00.517
effective_version = "1.1.0.0"
[channels.stable.plugins.AutoTimer.changelogs."1.0.0.3"]
time_released = 2024-01-28T22:58:41.388
changelog = "- Fix crash related to usage of non-auto-attack actions (eating food, etc.)"
[channels.stable.plugins.AutoTimer.changelogs."1.1.0.0"]
time_released = 2024-07-03T03:40:00.517
changelog = "- Updated to Dawntrail\r\n- Resolved issue where Inspiration was incorrectly counting towards Pictomancer auto-attack haste\r\n- Added option to scale the bar"
[channels.stable.plugins.ItemUse]
built_commit = "3ad9d20921fec60b9269ef1e684f716d96bf2750"
time_built = 2024-08-28T15:57:08.249
effective_version = "1.0.0.0"
[channels.stable.plugins.ItemUse.changelogs."1.0.0.0"]
time_released = 2024-08-28T15:57:08.249
changelog = "- Fixed an issue where fish previously did not display certain flags correctly when collectible.\n- Added data for missing wrist gear coffers and removed data for certain inapplicable coffers.\n- Example icons now show next to their relevant settings in the plugin configuration window.\n- Users can now customize the item text highlight colors.\n- Code cleanup.\n"
[channels.stable.plugins.WinTitle]
built_commit = "ef6b104a141eab3d593a2678bc2c8844d4e1abaa"
time_built = 2024-08-13T06:24:56.653
effective_version = "1.1.2.0"
[channels.stable.plugins.WinTitle.changelogs."1.0.4.0"]
time_released = 2022-08-29T06:47:29.574
changelog = "API 7"
[channels.stable.plugins.WinTitle.changelogs."1.0.5.0"]
time_released = 2023-01-12T04:34:19.576
changelog = "API 8"
[channels.stable.plugins.WinTitle.changelogs."1.0.5.1"]
time_released = 2023-03-14T23:06:27.675
changelog = "API 8"
[channels.stable.plugins.WinTitle.changelogs."1.0.6.0"]
time_released = 2023-10-04T06:58:51.964
changelog = "API 9"
[channels.stable.plugins.WinTitle.changelogs."1.0.7.0"]
time_released = 2024-07-08T18:27:54.107
changelog = "API 9"
[channels.stable.plugins.WinTitle.changelogs."1.0.7.1"]
time_released = 2024-08-10T17:42:52.323
changelog = "Add new maintainer."
[channels.stable.plugins.WinTitle.changelogs."1.1.0.0"]
time_released = 2024-08-11T20:07:13.816
changelog = "Add an option to set the logged character as the window title."
[channels.stable.plugins.WinTitle.changelogs."1.1.1.0"]
time_released = 2024-08-11T23:51:36.110
changelog = "Update title on world travel."
[channels.stable.plugins.WinTitle.changelogs."1.1.2.0"]
time_released = 2024-08-13T06:24:56.653
changelog = "Fix load error."
[channels.stable.plugins.Tippy]
built_commit = "5c18d6b21461b0bbe4583a86787ef4a3565e5ce6"
time_built = 2023-01-12T02:01:32.150
effective_version = "1.4.0.0"
[channels.stable.plugins.Tippy.changelogs]
[channels.stable.plugins.ItemSearchPlugin]
built_commit = "181a9b387201e4dbfbd0540fe02c9256b1032f17"
time_built = 2024-07-03T14:13:04.768
effective_version = "1.10.0.1"
[channels.stable.plugins.ItemSearchPlugin.changelogs]
[channels.stable.plugins.NoTankYou]
built_commit = "0636d319b80510283e5009a3715f4bcdb27f7194"
time_built = 2024-08-26T07:30:18.627
effective_version = "7.1.0.0"
[channels.stable.plugins.NoTankYou.changelogs]
[channels.stable.plugins.PushyFinder]
built_commit = "d070a666fddeb7067129b664d84b3054720484a8"
time_built = 2024-07-08T07:14:28.175
effective_version = "1.3.0.0"
[channels.stable.plugins.PushyFinder.changelogs."1.0.0.1"]
time_released = 2023-05-11T02:47:05.028
changelog = "Move to live\n"
[channels.stable.plugins.PushyFinder.changelogs."1.0.0.2"]
time_released = 2023-05-24T19:53:39.379
changelog = "Fix for Patch 6.4.\n\nAt the time of this writing, the plugin does not function due to changes in ClientStructs.\n"
[channels.stable.plugins.PushyFinder.changelogs."1.1.1.0"]
time_released = 2024-02-12T18:44:23.338
changelog = "**PushyFinder has been updated for APIv9!**\nThe plugin is now functional again on current versions of FINAL FANTASY XIV, and all of your settings are still there.\nSorry for the long wait!\n"
[channels.stable.plugins.PushyFinder.changelogs."1.2.0.0"]
time_released = 2024-06-10T18:24:20.507
changelog = "**PushyFinder now supports Discord notifications!**\nCheck the new Discord tab, in the settings menu, for more info!\n"
[channels.stable.plugins.PushyFinder.changelogs."1.3.0.0"]
time_released = 2024-07-08T07:14:28.175
changelog = "PushyFinder is updated for Final Fantasy XIV: Dawntrail and Dalamud API 10.\n"
[channels.stable.plugins.MPTickBar]
built_commit = "8a8a23c08537ad24286ff353469f2047da2f3cd0"
time_built = 2024-03-20T20:16:42.554
effective_version = "1.4.1.8"
[channels.stable.plugins.MPTickBar.changelogs."1.4.1.2"]
time_released = 2022-08-24T22:48:13.699
changelog = ".net6 and D17 migration"
[channels.stable.plugins.MPTickBar.changelogs."1.4.1.3"]
time_released = 2022-09-18T21:29:02.120
changelog = " Version 1.4.1.3\n- (Reconfiguration required) Visibility options have been reworked for better flexibility configuration. Users should take a look at this and hide indesired UI elements if needed.\n"
[channels.stable.plugins.MPTickBar.changelogs."1.4.1.4"]
time_released = 2022-09-20T21:27:54.288
changelog = "Version 1.4.1.3\n- (Reconfiguration required) Visibility options have been reworked for better flexibility configuration. \n- Users should take a look at this and hide indesired UI elements if needed.\nVersion 1.4.1.4\n- Added more visibility options.\n"
[channels.stable.plugins.MPTickBar.changelogs."1.4.1.5"]
time_released = 2023-01-11T18:40:09.643
changelog = "Version 1.4.1.5\n- .net 7 update.\n"
[channels.stable.plugins.MPTickBar.changelogs."1.4.1.6"]
time_released = 2023-10-04T19:21:49.832
changelog = "- Patch 6.5 / Dalamud API 9 update.\n"
[channels.stable.plugins.MPTickBar.changelogs."1.4.1.7"]
time_released = 2024-02-27T21:07:50.001
changelog = "- Hide in pvp.\n"
[channels.stable.plugins.MPTickBar.changelogs."1.4.1.8"]
time_released = 2024-03-20T20:16:42.554
changelog = "- .NET 8.0.\n"
[channels.stable.plugins.PetRenamer]
built_commit = "e61677beef574388414090a39e54ab0b80976632"
time_built = 2024-10-04T20:15:39.680
effective_version = "2.2.0.5"
[channels.stable.plugins.PetRenamer.changelogs."1.0.0.0"]
time_released = 2023-08-15T19:10:24.843
changelog = " + [1.0.0.0] First full release of Pet Nicknames.\r\n + Give nicknames to your minions and pets using /petname,/minionname.\r\n + Custom nicknames will show on nameplates, target bars, party lists, tooltips and in emotes.\r\n + See a list of all your minionnames and petnames using /petnames,/minionnames.\r\n + Share your petnames with others.\r\n + Use /petconfig,/minionconfig for more in depth settings.\r\n + This plugin is DelvUI compatible (Once they release the update on their side).\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.5.1"]
time_released = 2023-12-25T19:55:24.621
changelog = " + [1.4.5.1]\r\n + Temporarily Adds Falling Show To The Toolbar\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.5.2"]
time_released = 2023-12-27T00:22:03.091
changelog = " + [1.4.5.2]\r\n + Fixes some UI elements not displaying properly.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.2.2"]
time_released = 2023-10-12T00:18:33.321
changelog = " + [1.4.2.2]\r\n + Custom names will show up on Esteem again.\r\n + [1.4.2.1]\r\n + Fixed a bug where Legacy Compatibily would only trigger once.\r\n + [1.4.2.0]\r\n + Every different Battle Pet model can now be assigned a name. No more naming per Job.\r\n + You can no longer see names on models that are Human. Sorry to those that enjoyed this feature, but it is problematic :(\r\n + Save File Version Updated from Version 7 to Version 8.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."2.1.1.4"]
time_released = 2024-08-16T17:25:49.528
changelog = " [2.1.1.4]\r\n \"TYpe\"\r\n"
[channels.stable.plugins.PetRenamer.changelogs."2.1.1.3"]
time_released = 2024-08-15T18:48:52.587
changelog = " [2.1.1.3]\r\n The 2.0 release of pet nicknames to stable!\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.0.1"]
time_released = 2023-10-05T08:13:13.341
changelog = " + [1.3.1.1]\r\n + Fixed Log Spam when logging into any character\r\n"
[channels.stable.plugins.PetRenamer.changelogs."2.1.2.1"]
time_released = 2024-08-19T19:12:27.885
changelog = " [2.1.2.1]\r\n Fixes a crucial IPC issue.\r\n Adds IPC tester to the dev window. (after all, why shouldn't you get to play with my development code)\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.5.0.3"]
time_released = 2024-07-21T18:30:58.088
changelog = " [1.5.0.3]\r\n Fixed the deprecation fix.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.4.1"]
time_released = 2023-11-19T18:34:58.533
changelog = " + [1.4.4.1]\r\n + Fixed a typo. (I know, gamechanging update this one)\r\n + Emotes should work on the Japanese client again!\r\n + [1.4.4.0]\r\n + Fixed an issue where the Pet Rename Window would sometimes not work.\r\n + Mappy is now integrated into Pet Nicknames.\r\n + [1.4.3.5]\r\n + Fixed stutter upon summoning a pet.\r\n + You can now give nicknames to pets turned into player characters again.\r\n (Gamers, I'm serious! If I get even a single report of this being abused again, I will disable the feature again for everybody!)\r\n + Code optimizations.\r\n + [1.4.3.4]\r\n + The plugin will now save upon removing a user!\r\n + Improved stability upon logging into an alt account.\r\n + Code optimizations.\r\n + The pet list will now reset upon relogging.\r\n + Fixed an issue where the pet list wouldn't draw correctly under certain circumstances.\r\n + [1.4.3.3]\r\n + The plugin should work for people with a - in their name now!\r\n + A warning will now be displayed when you enter a PVP area and the plugin disables itself.\r\n + Fixed an IPC issue.\r\n + [1.4.3.2]\r\n + Updated IPC Points.\r\n + Removed dependency on Penumbra for redrawing nameplates.\r\n + Rewrote the complete Pet List. This has been on my todo for a month now and I'm very happy with the results.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."2.2.0.2"]
time_released = 2024-09-06T13:18:50.711
changelog = " [2.2.0.2]\r\n Push from testing to stable.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."2.1.2.2"]
time_released = 2024-08-23T11:49:56.920
changelog = " [2.1.2.2]\r\n Better Party List Resolve (AKA, if 2 people in your party have the same name, I now know who is who c:)\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.0.2"]
time_released = 2023-10-05T18:20:17.069
changelog = " + [1.4.0.2]\r\n + Fixed Map Pet Tooltips not working. (By completely removing the feature and reimplementing it later down the line when it actually fully functions and works).\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.8.8"]
time_released = 2024-05-25T20:36:50.797
changelog = " [1.4.8.8]\r\n PetRenamer.GameObjectRenameDict is now available for other plogons to use!\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.5.0.1"]
time_released = 2024-07-02T20:14:04.265
changelog = " [1.5.0.1]\r\n Removed Mappy IPC. (Don't worry, Mappy will still work! Even better than before now!)\r\n Updated to ApiX.\r\n Updated for 7.0 version of the game.\r\n \r\n (New summoner summons are not yet available for renaming, I am currently power leveling summoner to lvl 100 to add them!)\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.8.5"]
time_released = 2024-04-11T19:30:04.462
changelog = " [1.4.8.5]\r\n PVP warning message can now be disabled\r\n"
[channels.stable.plugins.PetRenamer.changelogs."2.2.0.3"]
time_released = 2024-09-11T15:17:53.645
changelog = " [2.2.0.3]\r\n Fixed an issue where the Petlist incorrectly thought the selected user was the local user.\r\n Fixed an issue where users wouldn't transform into IPC users upon receiving IPC data (this clears manual shares unless synced, this is intentional from now on).\r\n Fixed an issue where users with zero pets would show up in the Petlist. This was impossible to occur before, since the implementation of sync this occurs when someone has zero pets.\r\n Added a subtle outline on input fields that are empty.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.4.3"]
time_released = 2023-11-22T19:11:18.180
changelog = " + [1.4.4.3]\r\n + Fixed log spam that could occur.\r\n + Changed to Mappy IPC to be compatible with the new update. (We forgive, but never forget!)\r\n + Fixed an issue where upon switching alts another log would spam.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.4.5"]
time_released = 2023-11-25T16:48:09.466
changelog = " + [1.4.4.5]\r\n + This plugin now works for users with a new save file!\r\n + Summon text works (again) on german client...\r\n + [1.4.4.4]\r\n + Added the ability to reorder the Petlist.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.5.0.2"]
time_released = 2024-07-18T06:19:02.537
changelog = " [1.5.0.2]\r\n Fixed deprecation issue.\r\n Re-enabled context menus.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.5.3"]
time_released = 2024-01-01T21:48:39.813
changelog = " + [1.4.5.3]\r\n + Temporarily adds fireworks to the toolbar.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.8.4"]
time_released = 2024-03-20T20:16:35.477
changelog = " [1.4.8.4]\r\n .Net8 Bump\r\n Fixed profile pictures not redownloading.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.8.1"]
time_released = 2024-02-28T02:18:33.780
changelog = " [1.4.8.1]\r\n Fixed an issue where commands would still show in chat.\r\n [1.4.8.0]\r\n The Mappy popup window is now reduced to a chat message.\r\n Chat messages that Pet Nicknames sets hidden now properly remain hidden.\r\n Pets on the Mappy Map will no longer show stuck when you are mounted.\r\n Pet Nicknames is now enabled in the Wolves' Den Pier, but as a result even more restricted in non-Wolves' Den Pier zones.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."2.1.2.0"]
time_released = 2024-08-16T21:40:33.946
changelog = " [2.1.2.0]\r\n Re-added Pet Action Chat nicknames.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.0.1.0"]
time_released = 2023-08-16T19:46:37.389
changelog = " + [1.0.1.0]\r\n + Soft targets are now supported.\r\n + Fixed some IPC end point issues.\r\n + [1.0.0.0] First full release of Pet Nicknames.\r\n + Give nicknames to your minions and pets using /petname,/minionname.\r\n + Custom nicknames will show on nameplates, target bars, party lists, tooltips and in emotes.\r\n + See a list of all your minionnames and petnames using /petnames,/minionnames.\r\n + Share your petnames with others.\r\n + Use /petconfig,/minionconfig for more in depth settings.\r\n + This plugin is DelvUI compatible (Once they release the update on their side).\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.6.0"]
time_released = 2024-01-08T19:16:49.752
changelog = " + [1.4.6.0]\r\n + Giving a Battle Pet command or them leaving the battle will now properly show their nicknames in chat.\r\n + Tentatively fixed an issue to do with soft skeletons (/petmirage).\r\n + Fireworks in the toolbar have been removed from the event.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.5.4"]
time_released = 2024-01-02T19:19:58.828
changelog = " + [1.4.5.4]\r\n + The setting automatically Switch Petmode should now work again.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.8.6"]
time_released = 2024-04-26T15:07:46.209
changelog = " [1.4.8.6]\r\n Fixes an issue related to new alt accounts not working.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."2.1.2.3"]
time_released = 2024-08-25T14:46:50.036
changelog = " [2.1.2.3]\r\n Fixes a couple bugs.\r\n The party list will now refresh in real time when updating names.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.0.1.1"]
time_released = 2023-08-19T03:11:56.210
changelog = " + [1.0.1.1]\r\n + Actually fully fixed soft targeting.\r\n + [1.0.0.0] First full release of Pet Nicknames.\r\n + Give nicknames to your minions and pets using /petname,/minionname.\r\n + Custom nicknames will show on nameplates, target bars, party lists, tooltips and in emotes.\r\n + See a list of all your minionnames and petnames using /petnames,/minionnames.\r\n + Share your petnames with others.\r\n + Use /petconfig,/minionconfig for more in depth settings.\r\n + This plugin is DelvUI compatible (Once they release the update on their side).\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.2.5"]
time_released = 2023-10-24T19:54:42.728
changelog = " + [1.4.2.5]\r\n + Fixed an issue that caused DelvUI nameplates to not show up with this plugin enabled.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.6.4"]
time_released = 2024-02-08T03:57:28.708
changelog = " + [1.4.6.4]\r\n + Toolbar Events are now automatic.\r\n + Fixed a bug where the Topaz Carbuncle target text would not work as intended.\r\n + [1.4.6.3]\r\n + Fixed an issue where summoner would overwrite Pet Mirage settings at any given oppertunity. (Now it should only happen sometimes, usually when I want it to :) )\r\n + The chat should now be less greedy in renaming pet names.\r\n + The context menu config setting works again.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.3.0.0"]
time_released = 2023-09-28T18:58:30.390
changelog = " + [1.3.0.0]\r\n + Images, Images everywhere.\r\n + Will now show Minion and Battle Pet images\r\n + Will now show profile pictures (when enabled) in the Player Select list in the Pet List screen.\r\n + [1.2.4.0]\r\n + Added chaching to multiple search functions improving performance by a lot. (For some functions I've measured 4x the performance :D)\r\n + Added support for the minion notebook (Note that using the search function will still use work using the base minion name, trust me I'm working on it)\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.0.0"]
time_released = 2023-10-04T06:59:35.046
changelog = " + [1.3.1.0]\r\n + Updated for 6.5\r\n"
[channels.stable.plugins.PetRenamer.changelogs."2.2.0.4"]
time_released = 2024-09-18T19:24:23.178
changelog = " [2.2.0.4]\r\n Empty data will get send over IPC a lot less. (This shouldn't happen actually, I just haven't found the underlying issue yet.)\r\n Made the rename window's minimum width slightly smaller so people won't hamstring themselves into not seeing the input field.\r\n Added a couple tags so people will find the plugin via very specific search querries easier.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.6.1"]
time_released = 2024-01-19T00:51:26.707
changelog = " + [1.4.6.1]\r\n + Names should now display properly in German.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.5.0.4"]
time_released = 2024-07-24T12:03:18.019
changelog = " [1.5.0.4]\r\n Fixes IPC crash with other plogons.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.2.4"]
time_released = 2023-10-21T02:03:08.360
changelog = " + [1.4.2.4]\r\n + Fixed an issue where the pet search bar would crash your game.\r\n Aparently no one uses this feature so it wasn't until just now that I found this crash.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.6.2"]
time_released = 2024-01-27T19:14:23.570
changelog = " + [1.4.6.2]\r\n + For users that didn't split their target bars. Target Bar renaming and casting functionalities should now work!\r\n (This has literally been bugged since day one. Enjoy your new feature set!)\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.7.1"]
time_released = 2024-02-14T19:13:08.145
changelog = " + [1.4.7.1]\r\n + Ready for nicknames!\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.2.1.2"]
time_released = 2023-09-02T17:30:16.835
changelog = " + [1.2.1.2]\r\n + Fixed a rare crash occuring during targeting.\r\n + Fixed imported lists not saving.\r\n + [1.2.1.1]\r\n + Updates now dispose properly O///O\r\n + No more colour themes leaking when quitting the plugin.\r\n + Huge, and I mean HUGE performance improvements.\r\n + More intuitive UI and theme upgrades.\r\n + There is now a help screen.\r\n + Target Bars are now hook based, no more flickering.\r\n + Save file version updated from 4 to 5\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.8.3"]
time_released = 2024-03-03T16:20:05.035
changelog = " [1.4.8.3]\r\n 'Give Nickname' has been renamed to '[P] Rename' (Get used to it)\r\n The plugin icon is changed because in reality... I cannot see green properly.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.3.1"]
time_released = 2023-11-01T03:46:05.508
changelog = " + [1.4.3.1]\r\n + Fixed an issue where under certain circumstances this plugin wouldn't close.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.8.2"]
time_released = 2024-03-01T21:04:00.213
changelog = " [1.4.8.2]\r\n Fixed an issue where active chocobos would interfere with battle pet resolving.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.2.3"]
time_released = 2023-10-13T19:12:18.924
changelog = " + [1.4.2.3]\r\n + Fixed an issue where sometimes pet names would show as lower case variants.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."1.4.5.0"]
time_released = 2023-12-14T19:18:31.565
changelog = " + [1.4.5.0]\r\n + Fixed a lot of bugs related to the search bar.\r\n + Profile pictures work again.\r\n This function got a complete rewrite and should now no longer DDOS a server when misusing /petdev.\r\n If you experience any issues with this feature, or notice EXTREMELY LONG startup times, please notify me.\r\n + Fixed some issues with dragging in the Petlist window.\r\n + Profile pictures and Pet Images are now clickable.\r\n + Anonymous Mode Added\r\n + The pet rename window will now redraw properly under more circumstances.\r\n + Added (minimal) support for the Yokai Watch Guide.\r\n"
[channels.stable.plugins.PetRenamer.changelogs."2.2.0.5"]
time_released = 2024-10-04T20:15:39.680
changelog = " [2.2.0.5]\r\n Tentative fix for unplayable lag during extremely rare conditions.\r\n"
reviewer = "bleatbot"
[[channels.stable.plugins.PetRenamer.changelogs."2.2.0.5".used_needs]]
key = "DalamudPackager"
version = "2.1.13"
[[channels.stable.plugins.PetRenamer.changelogs."2.2.0.5".used_needs]]
key = "HtmlAgilityPack"
version = "1.11.54"
[[channels.stable.plugins.PetRenamer.changelogs."2.2.0.5".used_needs]]
key = "SkiaSharp"
version = "3.0.0-preview.3.1"
[[channels.stable.plugins.PetRenamer.changelogs."2.2.0.5".used_needs]]
key = "SkiaSharp.NativeAssets.macOS"
version = "3.0.0-preview.3.1"
[[channels.stable.plugins.PetRenamer.changelogs."2.2.0.5".used_needs]]
key = "SkiaSharp.NativeAssets.Win32"
version = "3.0.0-preview.3.1"
[channels.stable.plugins."Waitingway.Dalamud"]
built_commit = "251fea4be625416c4c0ba5a5f889f2f39e9eb55b"
time_built = 2024-09-02T09:32:53.795
effective_version = "2.2.0.0"
[channels.stable.plugins."Waitingway.Dalamud".changelogs."1.2.4"]
time_released = 2022-11-27T00:06:37.416
changelog = "Updated for Dalamud API 7"
[channels.stable.plugins."Waitingway.Dalamud".changelogs."1.2.5"]
time_released = 2023-01-14T02:32:28.582
changelog = "Updated for Dalamud API 8"
[channels.stable.plugins."Waitingway.Dalamud".changelogs."1.2.6"]
time_released = 2023-10-06T02:36:42.060
changelog = "Updated for Dalamud API 9"
[channels.stable.plugins.G4EUkrChatSupport]
built_commit = "68b0c9b0ccedf10df1888a59341333673890f875"
time_built = 2024-02-19T19:13:56.701
effective_version = "1.0.0.34"
[channels.stable.plugins.G4EUkrChatSupport.changelogs."1.0.0.28"]
time_released = 2023-06-12T22:53:37.731
changelog = "Fix for ConfigWindow size."
[channels.stable.plugins.G4EUkrChatSupport.changelogs."1.0.0.31"]
time_released = 2023-10-05T09:14:45.308
changelog = "Updated with new Dalamud requirements."
[channels.stable.plugins.G4EUkrChatSupport.changelogs."1.0.0.32"]
time_released = 2024-02-18T14:47:52.254
changelog = "Logo and config window update."
[channels.stable.plugins.G4EUkrChatSupport.changelogs."1.0.0.34"]
time_released = 2024-02-19T19:13:56.701
changelog = "Fix for config button styles."
[channels.stable.plugins.Honorific]
built_commit = "e71465e7912143bbe86b602d0e841deb87ebebd5"
time_built = 2024-07-17T08:50:30.481
effective_version = "1.5.0.1"
[channels.stable.plugins.Honorific.changelogs]
[channels.stable.plugins.ChatAlerts]
built_commit = "bba3fd03eeb065b45623a07aa6656d804bc23f8a"
time_built = 2024-07-01T19:38:01.390
effective_version = "2.1.0.0"
[channels.stable.plugins.ChatAlerts.changelogs."2.0.1.0"]
time_released = 2022-08-24T00:50:45.260
changelog = "Updated for Dalamud staging."
[channels.stable.plugins.ChatAlerts.changelogs."2.0.2.0"]
time_released = 2023-01-11T18:29:21.489
changelog = "Updated for Dalamud staging."
[channels.stable.plugins.Wordsmith]
built_commit = "0d45cc53534a384dfdd387d982cde84c6c2becd4"
time_built = 2024-09-26T19:15:10.085
effective_version = "1.15.1.0"
[channels.stable.plugins.Wordsmith.changelogs."1.4.3"]
time_released = 2022-08-28T01:58:09.686
changelog = "Updating to the new API7 system. Added history system. Fixed several issues."
[channels.stable.plugins.Wordsmith.changelogs."1.11.1.0"]
time_released = 2023-11-05T03:41:41.895
changelog = "# Wordsmith v1.11.1 Patch Notes:\n[FIXED] Fixed a crash related to zero-length words in the Tally system."
[channels.stable.plugins.Wordsmith.changelogs."1.11.0.0"]
time_released = 2023-11-02T19:26:50.111
changelog = "# Wordsmith v1.11.0 Patch Notes:\n[FIXED] Fixed multiple UI scaling issues that were most notable at high scales.\n\n[FEATURE] New feature! Word usage stats. Scratch pads will now track how many times you've used a word since opening the scratch pad.\nThis feature was requested so it could help users to avoid repetative typing. To view the statistics click the \"Text\" menu item on the scratchpad and choose \"Word Statistics\" sub menu item.\nYou can view and clear the statistics from there.\nDo disable this feature follow these steps:\n click the \"Settings\" menu item on any scratchpad or type /wordsmith.\n Navigate to the \"General\" tab.\n Uncheck the box next to \"Track Word Usage.\" "
[channels.stable.plugins.Wordsmith.changelogs."1.10.3.0"]
time_released = 2023-11-02T02:26:50.776
changelog = "# Wordsmith v1.10.3 Patch Notes:\n[FIXED] Fixed a bug that caused auto-spellcheck to not work as intended."
[channels.stable.plugins.Wordsmith.changelogs."1.10.1.0"]
time_released = 2023-10-06T17:22:38.099
changelog = "# Wordsmith v1.10.1 Patch Notes:\n[UPDATE] Updated to 6.5"
[channels.stable.plugins.Wordsmith.changelogs."1.9.1"]
time_released = 2023-02-07T19:28:18.710
changelog = "# Wordsmith v1.9.1 Patch Notes\nBug Fixes:\n [FIXED] Spellcheck not automatically running as expected."
[channels.stable.plugins.Wordsmith.changelogs."1.9.0"]
time_released = 2023-01-16T02:35:04.731
changelog = "# Wordsmith v1.9.0 Patch Notes\n\n* Updated for API 8\n* Minor optimization"
[channels.stable.plugins.Wordsmith.changelogs."1.8.2"]
time_released = 2023-01-08T23:22:37.549
changelog = "# Wordsmith v1.8.2 Patch Notes\n\n# New Features:\n * Setting thesaurus history size to 0 will now be unlimited.\n\n# UI Changes:\n * Fixed the strange column sizing in the help window on the `Roleplaying` tab.\n * Removed setting to change enter key behavior.\n * Advanced setting panel in the `Marks & Tags` secion now scales with the amount of content rather than just being a certain size.\n * `When OOC is` column of advanced marker settings is now fixed width.\n * `Max Text Length` option changed from `SlideInt` to `DragInt` to allow typing desired value.\n\n# Bugs Fixed:\n [FIXED] Custom markers copying unusable data to clipboard\n [FIXED] Changing chat header doesn't update text until after a text change.\n [FIXED] Copying history item copies the wrong data.\n [FIXED] Searching a word in the Thesaurus that is currently in history will declare the search as failed.\n [FIXED] Searching the same word with different capitalization counted as an entirely different word.\n [FIXED] Thesaurus keeping one too few search history items.\n [FIXED] Chunk markers defined as `Before OOC` were appearing after `Before Body` in the list.\n\n# Technical Stuff:\n * Found a redundancy in a method that caused extra CPU time.\n * Made a change to the way chunk generation is handled so that chunk generation will always happen in the `Update()` method to ensure that it is never run multiple times in a single frame.\n * Removed the setting for enter key behavior. This setting has been obsolete for a while now.\n * Increased the maximum possible value of `Max Text Length` for scratch pads."
[channels.stable.plugins.Wordsmith.changelogs."1.8.1"]
time_released = 2023-01-07T19:47:09.997
changelog = "# Wordsmith v1.8.1 Patch Notes\n\n## New Features:\n * When adding a word to the custom dictionary it should now automatically remove all detected spelling errors with that word in all scratch pads.\n * Roman numerals (capital letters only) will no longer be detected as a spelling error.\n * Alias `+` button now disabled by default until valid information entered.\n\n## UI Changes:\n * `Custom Dictionary Entries` is now written in a table header not a text object.\n\n## Bugs Fixed:\n [FIXED] Incorrect spelling error detections and word alignment.\n [FIXED] Contractions are counted as a spelling error.\n [FIXED] Unable to add words to custom dictionary\n [FIXED] Scratch Pad doesn't always split on sentence.\n [FIXED] Deleting a search item from the thesaurus could cause an error to occur.\n [FIXED] Chunks sometimes formed at strange locations.\n [FIXED] Selecting `Copy Text To Clipboard` for a history item would cause a CTD.\n [FIXED] Spelling suggestions giving garbage results at times.\n\n## Technical Stuff:\n * Incorrect spelling error detection caused by not unwrapping string before running spellcheck. The solution was to unwrap the string.\n * Contractions were counted as spelling errors because the text was used in spellchecking not the Regex match value.\n * Adding words to dictionary was not unwrapping the string first leading to unwanted behaviors.\n * Found an issue with calculating where to split the chunks that could lead to not breaking on a sentence terminator when one is available and managed to fix it.\n * Found an issue where deleting a thesaurus item could cause an error dump due to a modified collection exception.\n * Found an infinite loop in `Copy Text To Clipboard`."
[channels.stable.plugins.Wordsmith.changelogs."1.7.7"]
time_released = 2022-12-31T00:42:22.244
changelog = "# Wordsmith v1.7.7 Patch Notes\n\n## New Features:\n* Using Ctrl+C in the text input of a ScratchPad will now copy the unwrapped text. (This will not include headers)\n\n## UI Changes:\n* Open Scratch Pads in the ScratchPads tab of the Settings UI now has a minimum size. (See bug fixes 1)\n* Added a `Show Advanced Settings` option to the settings page to hide and show the more advanced settings of the plugin.\n* The `Bug?` button in Settings will now show a message box that gives the user an idea of what kind information to include in a bug report.\n* The `Bug?` button in Settings has been renamed to `Found A Bug?`\n* Added a tooltip to the `Buy Me A Ko-Fi` button that explains the nature of the button.\n* Redesigned the `Replace Text Suggestions` list\n\n## Bugs Fixed:\n1. The height of the `Open Scratch Pads` section in the ScratchPads tab of the Settings UI could become 0 if there was no room left in the window.\n2. Major performance loss with large text entries.\n3. Right clicking on the `Replace Text` input field would cause word wrapping to temporarily break.\n\n## Technical Stuff:\n* PadState class has been moved to the DataTypes.cs file\n* Added more error reporting in an attempt to catch a bug that was reported.\n* Adjusted the way UI is drawn in the ScratchPad (Switching away from tables. No visual difference should be noticeable)\n* Removed some unnecessary `if` statements from the saving settings process.\n* There was a minor calculation issue in the way text was displayed that was causing a massive drop in performance. By changing the way the calculation is handled I was able to bring massive performance gains to Wordsmith. I sincerely apologize to everyone for any performance issues they may have experienced with Wordsmith until this point."
[channels.stable.plugins.Wordsmith.changelogs."1.7.5"]
time_released = 2022-12-05T18:06:39.526
changelog = "New Features:\n [X] Using the command /scratchpad {id} with a deleted ID will now create a new pad with the recycled ID.\n [X] Using the command /scratchpad {id} with an unused ID will now create a new pad with the new ID (yes, /scratchpad 42069 works).\n [X] Named Scratch Pads! You can now use /scratchpad followed by any name you want to create a pad with a custom tag that will even show in the settings window.\n [X] Added a notice system to tell users about the new features and things. (Can be disabled in Settings General tab.)\n\nUI Changes:\n [X] Open Scratch Pads table moved to a child frame with its own scrollbar.\n [X] Open Scratch Pads table now has a \"Hide\" button for visible pads where the \"Show\" button appears for hidden pads.\n [X] Updated message box/error alert behavior. Alerts/Message Boxes will now display centered in the screen and cannot be moved or folded.\n [X] Message boxes now automatically size themselves.\n [X] SettingsUI Open Scratch Pads \"Chat Header\" column renamed to \"Description\".\n [X] SettingsUi now has a \"General\" section.\n\nBug Fixes:\n [X] The \"Close\" button in Settings for open pads will now use the \"Confirm Scratch Pad Delete\" configuration option.\n [X] Fixed a loop issue that caused loading web manifest and dictionary files to always try three times instead of stopping at the first successful attempt.\n [X] Fixed a bug that could cause Confirm Delete Scratchpads setting to be accidentally changed.\n\nTechnical Stuff:\n [X] Refactored DebugUI.cs in a way that has compressed the code down and made it easier to read and understand.\n [X] Removed obsolete interface.\n [X] Removed unnecessary methods ShowResetDictionary() and ShowRestoreSettings() which were just wrapper methods for ShowMessageBox()\n [X] Restructured Rect struct to accomodate more uses.\n [X] Added a GetWindowName() method to several windows to prevent window naming errors.\n [X] Refactored extension methods GetProperties(...) and Dump(...) to use obj instead of obsolete interface IReflected\n [X] Updated the Wordsmith.cs header comment.\n [X] Refactored WordsmithUI.AddWindow(Window?) to alleviate a bug that could result in adding an already existing window if the window_lock was disabled.\n [X] WordsmithUI.CleanWindowList() should now abort while windows are locked."
[channels.stable.plugins.Wordsmith.changelogs."1.7.4"]
time_released = 2022-11-30T01:58:06.483
changelog = "New Features:\n [X] Customizable size of text entry.\n [X] Scratch Pad settings are now organized into categories with collapsing headers.\n\nBug Fixes:\n [X] Headers should not leave behind extra characters when parsed anymore.\n [X] Header color settings require applying now.\n\nNotes:\n [X] Renamed Ctrl+Enter Key behavior 0 from \"None\" to \"New Line\" to better represent what the behavior actually does.\n [X] Sealed several classes"
[channels.stable.plugins.Wordsmith.changelogs."1.7.3"]
time_released = 2022-11-29T02:57:32.408
changelog = "Bug Fixes: \n [x] Aliases not fixing header properly\n [x] Scale issue causing buttons to be cut off at bottom of Scratchpad.\n [x] \"Close\" button showing incorrectly for history.\n [x] Aliases being parsed is leaving an extra space after.\n [x] Aliases for linkshells not working properly.\n [x] Confirm Scratch Pad Delete not functional on Auto-Delete\n [x] Typing a capital letter into the thesaurus could cause the thesaurus to fail to load result\n [x] Wordsmith failing to load dictionary manifest due to HTML response 304 even with retries.\n [x] Wordsmith failing to load dictionary.\n\nNotes:\n [x] Reworked handling of header parsing to use Regex to better identify headers including aliased headers.\n [x] Scale issue resolved. The issue was caused by adding frame padding to expected header/footer size prior to applying scale which threw off calculation.\n [x] \"Close\" button was inside unclosed history child frame causing it to load in the wrong location.\n [x] Refactored Global.cs. Many objects in the Global file did not need global scope and were instead moved to the files where they were actually used.\n [x] The retries for loading the manifest failed to reset the IfModifiedSince flag due to a scoping issue. Wordsmith should now load the dictionary more reliably.\n [x] The dictionary could fail to load from error 304. Added retries in the same way that was done to loading manifest. Wordsmith should now load the dictionary more reliably."
[channels.stable.plugins.Wordsmith.changelogs."1.7.2"]
time_released = 2022-11-27T00:06:31.875
changelog = "Optimized several sections of code. Updated thesaurus to use Merriam-Webster API. Fixed several bugs."
[channels.stable.plugins.Wordsmith.changelogs."1.7.0"]
time_released = 2022-11-25T06:27:54.863
changelog = "Optimized several sections of code. Updated thesaurus to use Merriam-Webster API. Fixed several bugs."
[channels.stable.plugins.Wordsmith.changelogs."1.5.0"]
time_released = 2022-08-31T18:25:05.529
changelog = "Added automated spell checking and an error dump for logging and reporting errors."
[channels.stable.plugins.Wordsmith.changelogs."1.15.0.0"]
time_released = 2024-07-10T07:34:14.500
changelog = "# Wordsmith v1.15.0 Patch notes\nUpdated Wordsmith to work with the new Dalamud API and .NET 8.0"
[channels.stable.plugins.Wordsmith.changelogs."1.15.1.0"]
time_released = 2024-09-26T19:15:10.085
changelog = "# Wordsmith v1.15.1\nMinor update. Mostly to fix soon to be broken links (Like Github)."
[channels.stable.plugins.RemotePartyFinder]
built_commit = "fb6027caa06089cd321a0d74bbdcbaf2f45633de"
time_built = 2024-07-19T18:26:56.210
effective_version = "1.0.13.0"
[channels.stable.plugins.RemotePartyFinder.changelogs."1.0.8.0"]
time_released = 2022-08-25T00:24:00.175
changelog = "API 7"
[channels.stable.plugins.RemotePartyFinder.changelogs."1.0.9.0"]
time_released = 2023-01-15T22:29:38.298
changelog = "API 8"
[channels.stable.plugins.RemotePartyFinder.changelogs."1.0.10.0"]
time_released = 2023-08-31T22:41:10.864
changelog = "API 8"
[channels.stable.plugins.RemotePartyFinder.changelogs."1.0.11.0"]
time_released = 2023-10-04T01:12:59.492
changelog = "API 9"
[channels.stable.plugins.RemotePartyFinder.changelogs."1.0.12.0"]
time_released = 2024-04-09T19:11:51.926
changelog = ".NET 8"
[channels.stable.plugins.RemotePartyFinder.changelogs."1.0.13.0"]
time_released = 2024-07-19T18:26:56.210
changelog = "Update for Dawntrail"
[channels.stable.plugins.PixelPerfect]
built_commit = "20523a5ae403ce1e07467116dd6f85ebe3a32c0b"
time_built = 2024-07-08T19:09:51.680
effective_version = "3.1.0.0"
[channels.stable.plugins.PixelPerfect.changelogs."2.0.0.1"]
time_released = 2022-08-30T17:06:30.772
changelog = "Updated for 6.2"
[channels.stable.plugins.PixelPerfect.changelogs."2.0.0.2"]
time_released = 2023-01-12T04:34:24.750
changelog = "Updated for 6.3"
[channels.stable.plugins.PixelPerfect.changelogs."3.0.0.0"]
time_released = 2023-01-16T08:20:00.408
changelog = "Added many requested features."
[channels.stable.plugins.PixelPerfect.changelogs."3.0.1.0"]
time_released = 2023-01-17T07:25:36.340
changelog = "Fixed crash of 0 scale, Added better Job selection, Added offset for rings/dots, Added ability to re-order doodles"
[channels.stable.plugins.PixelPerfect.changelogs."3.0.2.0"]
time_released = 2023-01-18T04:22:31.859
changelog = "Fixed another crash. Added option for messages."
[channels.stable.plugins.PixelPerfect.changelogs."3.0.3.0"]
time_released = 2023-03-10T18:42:14.267
changelog = "Added ring offset rotation, export/import, and sheathed check."
[channels.stable.plugins.PixelPerfect.changelogs."3.0.4.0"]
time_released = 2023-10-04T00:17:40.058
changelog = "Added images, added dashed rings, API9 update."
[channels.stable.plugins.PixelPerfect.changelogs."3.1.0.0"]
time_released = 2024-07-08T19:09:51.680
changelog = "APIX Update. Added VPR/PCT. Added Z axis editing. Added Cones. Added fill"
[channels.stable.plugins.RezPls]
built_commit = "9633c8f39d5f4eaa6080ea932795ee94f2c42f22"
time_built = 2024-07-08T07:13:53.363
effective_version = "1.3.0.1"
[channels.stable.plugins.RezPls.changelogs."1.2.4.1"]
time_released = 2022-08-24T14:29:45.934
changelog = "Updated for Dalamud staging."
[channels.stable.plugins.RezPls.changelogs."1.2.5.0"]
time_released = 2023-01-11T23:26:52.301
changelog = "Updated for Dalamud staging."
[channels.stable.plugins.Fungah]
built_commit = "ae441fd192099df9e2662fe26a0fb2d9210afdff"
time_built = 2024-07-04T20:37:42.981
effective_version = "1.0.0.4"
[channels.stable.plugins.Fungah.changelogs]
[channels.stable.plugins.QuestAWAY]
built_commit = "0b88eb9ddcf184bfe4c75f89400e3e27f3ecec67"
time_built = 2024-07-17T06:19:39.574
effective_version = "2.0.0.5"
[channels.stable.plugins.QuestAWAY.changelogs]
[channels.stable.plugins.XIVCombo]
built_commit = "df259c4b57c99efa0ddfe8d8ffa6e29a14b759dd"
time_built = 2024-08-12T05:15:45.601
effective_version = "1.8.5.0"
[channels.stable.plugins.XIVCombo.changelogs."1.7.14.0"]
time_released = 2022-08-24T07:34:18.819
changelog = "Another API update, another round of enabling others to make cheat plugins.Added Egress and Enshroud combos for Reaper.Removed Crown Play for AST.Re-added Mirage Dive/High Jump for DRG (thanks Yoship!!!!)"
[channels.stable.plugins.XIVCombo.changelogs."1.7.15.0"]
time_released = 2022-08-26T19:16:34.282
changelog = "Add Scattergun to ACB combo for MCH\n\t\t"
[channels.stable.plugins.XIVCombo.changelogs."1.7.16.0"]
time_released = 2022-08-31T23:32:55.584
changelog = "made the gui slightly more forgiving for non-default settings"
[channels.stable.plugins.XIVCombo.changelogs."1.7.17.0"]
time_released = 2022-09-03T03:25:57.600
changelog = "added monk section"
[channels.stable.plugins.XIVCombo.changelogs."1.7.18.0"]
time_released = 2022-09-03T16:03:05.022
changelog = "added arcane circle for rprstopped being unnecessarily crabish in mnk section"
[channels.stable.plugins.XIVCombo.changelogs."1.7.19.0"]
time_released = 2022-09-03T17:01:46.663
changelog = "added arcane circle for rprstopped being unnecessarily crabish in mnk section"
[channels.stable.plugins.XIVCombo.changelogs."1.7.20.0"]
time_released = 2022-09-04T12:41:03.586
changelog = "fixed arcane circle combo"
[channels.stable.plugins.XIVCombo.changelogs."1.7.21.0"]
time_released = 2023-01-11T18:28:52.396
changelog = "updated for patchremoved goring blade combo. thanks yoship for making pld playable!"
[channels.stable.plugins.XIVCombo.changelogs."1.7.23.0"]
time_released = 2023-01-14T02:36:20.307
changelog = "updated for patchremoved goring blade combo. thanks yoship for making pld playable!"
[channels.stable.plugins.XIVCombo.changelogs."1.7.24.0"]
time_released = 2023-05-31T19:19:32.746
changelog = "fix energy drain being broken on scholar\n\t\t"
[channels.stable.plugins.XIVCombo.changelogs."1.7.25.0"]
time_released = 2023-10-06T15:55:28.301
changelog = "6.5\n\t\t"
[channels.stable.plugins.XIVCombo.changelogs."1.8.5.0"]
time_released = 2024-08-12T05:15:45.601
changelog = "Dawntrail update, supporting new jobs and abilities, cleaning up obsolete combosWelcome to the family MNK\n\t\t"
[channels.stable.plugins.ResizableHUD]
built_commit = "758240d986771793e24974ad3c1c85d8160e69e5"
time_built = 2024-07-01T19:11:23.345
effective_version = "1.3.0.0"
[channels.stable.plugins.ResizableHUD.changelogs."1.1.4.0"]
time_released = 2023-04-30T04:52:23.459
changelog = "1.1.0\n- Added addon inspector\n-- With the addon inspector enabled, you can right-click to bring up a context menu, and add any addons (UI elements) that under your mouse\n-- Additionally, you can toggle an edit option to move and scale UI elements with the arrow keys.\n- Added relative scaling options\n- Configurations now auto-sort when a new element is added\n- Added position anchor option\n- Units are now initialized to their real position, with their real scale\n- Removed most commands in favor of using the addon inspector\n1.1.1\n- Make config file unique per character\n1.1.2\n- Cleanup to the editor\n- You can now attach UI elements to another\n1.1.3\n- Fixed a but related to attachments\n1.1.4\n- Added autocompletion to the attachment option\n"
[channels.stable.plugins.ResizableHUD.changelogs."1.1.6.0"]
time_released = 2023-05-05T19:16:29.342
changelog = "1.5.0\n- Bumped version numver\n1.6.0\n- Added opacity option\n"
[channels.stable.plugins.ResizableHUD.changelogs."1.1.7.0"]
time_released = 2023-05-07T09:08:07.613
changelog = "1.1.5\n- Bumped version numver\n1.1.6\n- Added opacity option\n1.1.7\n- Fix scaling being disabled by default on new entries (should have been opacity)\n- Added option to update values to on screen values\n- Fixed version numbers in changelog\n"
[channels.stable.plugins.ResizableHUD.changelogs."1.2.0.0"]
time_released = 2023-10-04T15:07:26.154
changelog = "- Updated for 6.5\n- Updated for API9\n"
[channels.stable.plugins.ResizableHUD.changelogs."1.2.1.0"]
time_released = 2023-10-24T15:04:13.858
changelog = "- Fixed issue causing addon inspector to not render\n"
[channels.stable.plugins.ResizableHUD.changelogs."1.3.0.0"]
time_released = 2024-07-01T19:11:23.345
changelog = "- API 10/7.0 Update\n"
[channels.stable.plugins.FastJobSwitcher]
built_commit = "06d1f173599f478a5d33f1147e72e3894568c0bb"
time_built = 2024-07-05T18:28:02.993
effective_version = "2.0.0.0"
[channels.stable.plugins.FastJobSwitcher.changelogs."2.0.0.0"]
time_released = 2024-07-05T18:28:02.993
changelog = "Version 2.0.0.0:\n - Updated to API10\n"
[channels.stable.plugins.NOTED]
built_commit = "788b467fc75ad6f05eaa49b03f3f6999fb03a7dd"
time_built = 2024-07-05T02:03:59.820
effective_version = "1.3.0.0"
[channels.stable.plugins.NOTED.changelogs."1.0.0.0"]
time_released = 2023-01-12T02:01:21.833
changelog = "- Added support for Patch 6.3 and Dalamud Api8.\n- Moved out of testing."
[channels.stable.plugins.NOTED.changelogs."1.1.0.0"]
time_released = 2023-02-04T23:31:48.007
changelog = "- Added some visibility settings.\n- Added keybind to toggle notes on/off.\n- Added keybinds to cycle through notes."
[channels.stable.plugins.NOTED.changelogs."1.1.1.0"]
time_released = 2023-02-11T17:18:39.980
changelog = "- Combined all duties from The Masked Carnivale into a single entry.\n\t+ Each challenge was treated as a different duty before, but since the internal ID is the same it was creating issues."
[channels.stable.plugins.NOTED.changelogs."1.2.0.0"]
time_released = 2023-10-04T00:10:40.907
changelog = "- Added support for patch 6.5 and Dalamud API 9."
[channels.stable.plugins.NOTED.changelogs."1.2.1.0"]
time_released = 2024-03-23T01:30:28.394
changelog = "- Removed duplicated duty entries.\n- Added support for the Tab key when writing notes.\n- Fixed visual issues in the settings windows.\n- Fixed crash with notes containing the \"%\" character"
[channels.stable.plugins.NOTED.changelogs."1.2.1.1"]
time_released = 2024-03-27T20:27:03.285
changelog = "- Fixed note not appearing when creating it inside the duty."
[channels.stable.plugins.NOTED.changelogs."1.2.2.0"]
time_released = 2024-04-02T20:22:36.547
changelog = "- Added a \"No Duty\" entry. Notes added to this section will be shown while outside of duties.\n- Duties are now filled automatically when creating a new note while being inside a duty.\n- Added context menu to the notes list to Export or Delete with Right Click.\n- Added context menu to the duty list to Delete all notes for a duty with Right Click."
[channels.stable.plugins.NOTED.changelogs."1.3.0.0"]
time_released = 2024-07-05T02:03:59.820
changelog = "- Added support for Dawntrail and Dalamud API 10."
[channels.stable.plugins.InventoryTools]
built_commit = "8b52fd6eec34bfae78388caea84b2170da838bee"
time_built = 2024-08-04T17:42:32.881
effective_version = "1.7.0.20"
[channels.stable.plugins.InventoryTools.changelogs."1.2.0.2"]
time_released = 2022-08-26T08:32:22.295
changelog = "- API 7\n- Decreased non CS sig usage\n- Glamour Chest supports 800\n - Fixed an issue that would cause the more info window to open regardless if no hot key was set."
[channels.stable.plugins.InventoryTools.changelogs."1.6.1.7"]
time_released = 2023-10-04T15:51:07.526
changelog = "**6.5 Support**\n- Added a ItemCountOwned IPC, thanks nebel :)\n- Store/Patch data added for 6.5, still missing items related to submarines and item sets, PM if you have anything to add\n- Addded plugin installer main window button\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.2.0"]
time_released = 2023-10-17T14:25:38.649
changelog = "**New Features**\n- Airships, Submarines, Mobs, Retainer Ventures should allow their source columns to be filtered\n- New column/filter that lets you search for the total number of recipes an item is involved in\n**Bug Fixes**\n- Fix free company credit parsing\n- Fixed some bad sub data due to SQ renaming things(thanks infi)\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.1.5"]
time_released = 2023-09-05T17:09:32.463
changelog = "**New Features**\n- Added in a gathered by filter and column\n- Display options added to craft filters(invert highlighting, etc)\n\n**Fixes**\n- Catch failures to save market cache\n"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.5"]
time_released = 2023-06-05T08:44:08.542
changelog = "Fix 2 crashes that could stop the plugin from loading\nFix hotkey bug\nAdd mappy data, should have a huge percentage of mob spawns mapped out, still working on mob drops\nAdd Earthbreak Aethersand (thanks Faye Y.)\n"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.9"]
time_released = 2023-06-16T07:18:11.967
changelog = "Adjust ItemCount IPC to use int instead of uint\n"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.8"]
time_released = 2023-06-14T19:51:44.843
changelog = "Framers kit's will now count as items that can be tracked with the acquired column\nFixed some of the existing mob data that was missing decimals\nUpdated SQ store items list\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.18"]
time_released = 2024-07-29T16:13:02.222
changelog = "### Fixed\n\n- Hopefully fully fixed column hiding not breaking the layout\n- Craft/Gather button columns now work as intended\n- Having an empty tooltip amount owned scope would sometimes make the tooltip show no owned items\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.10"]
time_released = 2023-06-22T20:20:15.331
changelog = "Add an ingredient search filter(this will calculate the ingredients required to craft the items selected in the filters configuration and only show those ingredients)\nFilters now have a reset button to quickly clear their settings\nMultiple choice filters can now be searched from the setting interface + you can add all the items in the drop down list with a button\nAdded 6.4 submarine drops and unlocks (thanks Infi <3)\n"
[channels.stable.plugins.InventoryTools.changelogs."1.4.1.0"]
time_released = 2023-03-28T17:59:27.973
changelog = "New Duties, Mobs, Airships, Submarines Windows\nTabbed/Sidebar Layouts for Craft/Filters windows\nProper Free Company support\nHotkeys for all windows\nUI overhaul\nFilter and inventory saving speed ups\nCraft CSV export\nMore player currencies are parsed"
[channels.stable.plugins.InventoryTools.changelogs."1.6.2.9"]
time_released = 2024-03-17T14:12:41.885
changelog = "**Fixes**\n- Stop some game calls being made in the plugin load\n- The armoire should now highlight again\n- The default highlighting colour for tabs was incorrect\n**Improvements**\n- Highlighting now uses the addon lifecycle service provided by Dalamud\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.2.0.16"]
time_released = 2023-01-26T17:15:01.276
changelog = "This is a bug fix release. Fixed some potential bugs with IPC initalisation, retainer sort scanning(rolled back to file monitoring for now) and an assembly related crash."
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.10"]
time_released = 2024-07-09T18:48:17.527
changelog = "**Allagan Tools 1.7.0.10**\n- Fix a crash that wold occur when booting the plugin for the first time.\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.1.4"]
time_released = 2023-07-28T08:18:00.210
changelog = "**New Features**\n- Craft Completion Mode: Can choose to delete or leave items on completion\n- Completed items will show a red X allowing for quickly removing them from a list\n- The craft list \"To Craft\" list can now be shown as tabs or as it currently is(a giant table)\n\n**Fixes**\n- Removing a craft item will be more consistent\n- Completed items will show as \"Completed\" instead of \"Waiting\"\n- When collapsing/expanding the \"To Craft\" and \"Items in Retainers/Bags\" sections, the table layout should stay consistent\n- Output items were not checking against the HQRequireds list(Kiwikahawai)\n"
[channels.stable.plugins.InventoryTools.changelogs."1.4.1.4"]
time_released = 2023-04-19T12:46:43.619
changelog = "Retainer Venture Column/Filter\nReal Money Shop Column/Filter\nAdded a window for viewing ventures + window for individual ventures\nAdded a new search operator, having a single ! will show all items that are not empty\nGil is now right aligned for easier reading\nAdded more mob spawn data(thanks users for contributing)\nFixed a copy json to clipboard crash for craft lists\nAdded a Item ID column\nAdded a Source World column\n"
[channels.stable.plugins.InventoryTools.changelogs."1.4.1.3"]
time_released = 2023-04-13T14:53:22.611
changelog = "Map links should be point to the correct map and have the correct coordinates, especially subdivisions\nThe quantity and available columns should function faster when searching\nTooltip stability intensifies(<3 to Caraxi)\nUI scaling fixes\nStop FC from being ignored even if the name fails to parse\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.2.1"]
time_released = 2023-12-17T19:19:30.635
changelog = "**The API update**\n- Add in some new IPC calls for getting inventory(thanks to emyxiv)\n- Fix a bug with setting company craft phases(thanks to zhyupe)\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.7"]
time_released = 2024-07-03T01:58:12.052
changelog = "**Allagan Tools 1.7.0.7**\n- API X support\n- 7.0 patch data updated, this is still a WIP\n- Tooltips have been disabled temporarily\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.12"]
time_released = 2024-07-14T11:24:42.087
changelog = "### Added\n\n- The output items of craft lists can now be ordered based on the \"Output Ordering\" setting by class or name\n- Added a \"Is custom delivery hand in?\" column/filter\n- Added a new menu in craft lists that allows you to clear all items and import/export the contents of the list(to your clipboard)\n- Added a new hotkey for opening the lists window\n- The item window has a new \"Owned\" section showing all the locations of items within your characters that the plugin knows about\n### Fixed\n\n- Certain columns were not showing as available to add within craft lists\n- The active search scopes were not fully working\n- All slash commands that open AT windows will now toggle instead of only opening\n- The configuration wizard's labels should no longer clip\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.2.2"]
time_released = 2024-01-11T23:32:43.341
changelog = "**New Features/Updates**\n- Add \"Is Dropped By Mob\" column/filter\n- Add \"Can be Equipped\" column/filter\n- Orphaned inventories will be removed on plugin load\n- Character management section has been updated\n- New IPC methods, GetSearchFilters & GetRetrievalItems - thanks pikajude\n- Gamer Escape/Console Games Wiki shorcuts in the item window and right click menus\n\n**Fixes**\n- Fix certain costs for rewards at special shops not listing properly\n- Fix \"Is Timed Node\" filter\n- Fix craft lists not refreshing after an item is added/removed via IPC\n- Fix an issue where history columns were not exporting any data to CSV\n- Item level filter no longer restricts to equipment, if you want to replicate this filter, use the new \"Can be Equipped\" filter in combination with the existing filter\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.2.7"]
time_released = 2024-03-15T18:25:00.656
changelog = "**Fixes**\n- Optimize inventory scanner further\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.1.9"]
time_released = 2023-10-06T17:49:56.965
changelog = "**New Features**\n- Added Ephemeral Craft Lists - Add the items you need and once you've crafted them the list deletes itself\n- New craft lists will append a number on the end if a craft list with that name already exists\n- Added \"Name (Selector)\" filter for picking items you want to show in a list as a stop gap until a favourites and/or other system is implemented\n**Improvements**\n- Minor tweaks to the UI for clarity\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.8"]
time_released = 2024-07-03T13:54:44.638
changelog = "**Allagan Tools 1.7.0.8**\n- Tooltips are back in action\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.1.1"]
time_released = 2023-07-17T19:20:20.416
changelog = "- Bicolour gem vendors will now show up and any vendors with no name will be listed as \"Unknown Vendor\" instead of not appearing at all\n- Aetherial reduction will let you pick the item to reduce and will be factored into the craft\n- Craft window splitter should be easier to see\n- Gathering uptime text in the craft window will be red if it's down, green if it's up\n"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.11"]
time_released = 2023-06-29T19:23:32.744
changelog = "Add search filter to acqusition icons column\nRemove unrequired logging\nUpdate lumina supplemental(Thanks to Emma for the mob spawn data)\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.2.8"]
time_released = 2024-03-16T19:23:11.418
changelog = "**Fixes**\n- Stutter fix thanks to Azure Gem, please submit feedback if you still have issues\n"
[channels.stable.plugins.InventoryTools.changelogs."1.4.1.1"]
time_released = 2023-03-29T22:06:45.239
changelog = "Item Patch data added + filter/column, fixed a bug with craft quantities underflowing, fixed an issue with certain data sheets not loading in, added some extra tooltip safety"
[channels.stable.plugins.InventoryTools.changelogs."1.6.1.3"]
time_released = 2023-07-23T00:15:58.692
changelog = "- The acquisition icon column will display in a slightly nicer order(at least until it's configurable)\n- Fixed the way in which shop locations are grouped (KiwiKahawai)\n- Fixes to marked items as properly returned (rather than still used) (KiwiKahawai)\n- Solves issues with items not appearing in filters if HQ required is set (KiwiKahawai)\n- Minor changes to CriticalCommonLib to help support other plugins using it\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.2.5"]
time_released = 2024-02-22T01:57:39.208
changelog = "**Fixes**\n- Skybuilder resource inspection needed quantity was not calculating correctly\n"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.4"]
time_released = 2023-05-30T03:11:17.451
changelog = "**\nFix a stackoverflow when generating company crafts\nFix Free Company Credit scanning(you need to open the FC window or FC shop in the workshop to get the value reflected in the plugin)\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.1.2"]
time_released = 2023-07-19T19:22:48.177
changelog = "- Company Craft phases should now show/switch correctly\n- Add reduction data for 6.45 + previously missing reduction items\n- Fix a crash that could occur on plugin unload\n- Added a HQ Item count IPC method(thanks Taurenkey)\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.4"]
time_released = 2024-06-03T14:44:19.794
changelog = "**Allagan Tools 1.7 - Reworked**\n- With this version comes an entirely reworked internal structure, which should give a much more reliable base for any new features I decide to add. To go along with the new internals are:\n\n**New Features:**\n- All columns can now be renamed and some can be configured, multiple copies of the same column can be added\n- The market integration now supports multiple worlds, associated columns and craft lists can be configured to pick which worlds are applicable to you\n- The more information window has a market tab listing the current prices\n- Configuration wizard for when you first install the plugin and if you choose when new features come out\n- Buy/craft/gather button columns added\n- Favourites column added\n- Add to craft list context menu added\n- The plugin can be opened when not logged in\n- A icon can be added to the main dalamud menu for easy access\n\n\n**Changes:**\n- Filters are now called Lists so there are Item Lists and Craft Lists\n- Settings menus reworked\n- Support .net 8(finally)\n\n**Removed:**\n- Some of the older Inventory Tools specific slash commands\n\nThanks to all the testers for their bug reports and patience <3\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.2.0.14"]
time_released = 2023-01-18T15:55:31.268
changelog = "Fixed Highlighting in Retainer & Main Character Bags\nFixed Gearset Parsing\nFixed context menu offsets - more information should work again\nFixed an issue with the help menu not showing in specific cases\nFixed a bug that would wipe certain inventories when logging in/out"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.5"]
time_released = 2024-06-04T12:36:06.086
changelog = "**Allagan Tools 1.7.0.5**\n- Thanks for all the bug reports! Please head over to #plugin-help-forum or submit feedback if you are still having issues\n\n**New Features**\nAdd to Active Craft List context menu feature added\nNext uptime column added\n\n\n**Fixes**\nCertain columns were not being saved/loaded properly when added to lists\nThe tooltip footer/header were not showing up in the correct position\nThe add to craft list context menu was showing up regardless of wanting it or not\nWhen adding an item from certain windows to a craft list, no item would be added\nWhen closing the crafts window, the active list will disable properly(assuming no other list window is open)\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.13"]
time_released = 2024-07-18T07:33:42.243
changelog = "### Added\n\n- Added a new \"Seach\" context menu, provides similar functionality to the game's search but will search across whatever scope you define\n- Bicolour Gem Vendors will now show NPCs and their respective locations\n- Added new mob spawn data (thanks to Emma <3)\n\n### Fixed\n\n- The context menu shortcuts will now work correctly in the market board\n- When using \"Active Character\" in any of the inventory scopes, this will now consider any \"characters\" owned by your logged in character as also active\n- Removed some old incorrect mob spawn data\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.1.8"]
time_released = 2023-10-05T08:13:39.097
changelog = "**Bug fix**\n- Fix crash that occurs due to duplicate item patch data\n- :plofix:\n"
[channels.stable.plugins.InventoryTools.changelogs."1.4.1.2"]
time_released = 2023-04-05T02:44:59.692
changelog = "Fix for lag when searching in certain circumstances\nAdded ability to copy filters/craft lists as JSON to your clipboard\nCan be dyed filter/column added\nUses column added\nPatch filter updated to finalise items for 6.35\nAdded more coffer contents\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.11"]
time_released = 2024-07-13T17:39:49.082
changelog = "**New Features**\n- Grand company turn in column/filter added\n- Character owner column added\n- Items that are grand company turn-ins will now display that in the Uses/Rewards section of the more item window\n- Add in inventory scope picker for \"Amount Owned\" tooltip allowing you to pick which items are shown\n\n**Bug Fixes**\n- Labels in the wizard should no longer be cut off\n- Tetris has returned!\n\nMore fixes and features to come, stay tuned\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.17"]
time_released = 2024-07-28T19:43:33.297
changelog = "### Added\n\n- Added a amount owned tooltip sorting option(by retainer name or by inventory category name)\n- Added a outdated gear filter/column(will compare your current class/job levels to the gear in the specified inventories)\n\n### Fixed\n\n- Table columns can be hidden/shown using the built-in imgui menu without breaking the layout\n- Fixed a bug that would cause right clicking on a list/craft table item to fail\n\n### Known Issues\n\n- Sometimes AT will fail to load, this is not a AT issue, it is a Dalamud issue that has been fixed but is currently only fixed on staging.\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.2.0.13"]
time_released = 2023-01-17T07:53:30.238
changelog = "While this also updates the plugin for 6.3 it's also a full release of the new parsing/scanning system, along with a plethora of new features and additions. Please post a message in the Allagan Tools help channel if you run into issues. See the changelog here https://github.com/Critical-Impact/InventoryTools/commit/5573f9a84ea714bb191d18e6744533a20119d306"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.16"]
time_released = 2024-07-23T12:17:25.562
changelog = "### Added\n\n- Added a \"Is From Fate?\" filter/column\n- More data is available for the following:\n - Desynth results of items\n - Loot\n - Reduction\n - Gardening\n - Mob Drops\n - Submarine/Airship Drops\n\n### Fixed\n\n- Items should now should the show the correct type of scrip for their requirements\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.6"]
time_released = 2023-06-05T16:43:20.989
changelog = "Actually fix the housing crash, much appreciated to Laissabelle for helping me track it down\n"
[channels.stable.plugins.InventoryTools.changelogs."1.2.0.15"]
time_released = 2023-01-21T09:05:27.619
changelog = "Fixed retainer sort order crashing\nFixed configuration not saving on game exit"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.3"]
time_released = 2023-05-29T03:20:55.873
changelog = "**\nStop a potential crash when generating craft materials\nCorrect the calculations for skybuilder recipes\nRe-enable context menu integration\nFree company credit of your active FC is now being parsed\nFree company credit has it's own item now and a page of what can be purchased with it\nThe JSON export will now use lower case names for it's keys\nThe ventures table in the item window should display nicer\n"
[channels.stable.plugins.InventoryTools.changelogs."1.2.0.4"]
time_released = 2022-09-03T17:01:40.116
changelog = "Barring anything major probably the last release for a few weeks at least, back to EW main story, hopefully this get's the majority of people sorted :)\n- Bug Fixes\n- Stopped a potential memory leak\n- Removed old commands from showing in help\n- The hotkey check I had in place could have been causing lag, have tweaked it.\n- Improved draw times of each window\n- People with higher font sizes and ui scales should hopefully be able to see all the buttons\n- Collapsing either of the craft window sections will have the other section take the available space.\n- The inventory scanning process now runs in the thread pool, hopefully this should reduce stuttering when any item movement occurs(and a rescan needs to happen)."
[channels.stable.plugins.InventoryTools.changelogs."1.6.2.6"]
time_released = 2024-03-14T16:54:16.705
changelog = "**Fixes**\n- The \"Relative Item Level\" column is no longer a debug only column, give it a try!\n- The inventory scanner now runs on the main thread(prefix for new Dalamud version)\n"
[channels.stable.plugins.InventoryTools.changelogs."1.3.1.0"]
time_released = 2023-02-22T03:08:11.830
changelog = "Crafting calculation fixes\nReworked tooltips(new implementation + more display options)\nCharacter/retainer world is now tracked + source world filter\nAdded wildcard searching\nAdded IPC service for getting item counts, enabling/disabling filters, managing craft lists and item add/remove events\nFixed an issue with the class job filter"
[channels.stable.plugins.InventoryTools.changelogs."1.3.1.1"]
time_released = 2023-03-07T18:16:53.248
changelog = "Update to support new CS changes."
[channels.stable.plugins.InventoryTools.changelogs."1.2.0.18"]
time_released = 2023-02-06T19:33:32.848
changelog = "This is purely a crash fix release, nothing else bar the crash has been fixed. You may still encounter a crash until you restart the game."
[channels.stable.plugins.InventoryTools.changelogs."1.6.2.3"]
time_released = 2024-02-12T18:43:54.375
changelog = "**New Features/Updates**\n**New Features**\n- Ephemeral Nodes are now supported\n- Can be Traded was split into Can be Traded and Can be placed on Market\n**Fixes**\n- Character rename restored\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.6"]
time_released = 2024-06-10T18:12:43.796
changelog = "**Allagan Tools 1.7.0.6**\n\n**New Features**\nAdded Ephemeral & Hidden Node columns/filters\n\n**Bug Fixes**\nCertain items were showing as being collected from ephemeral nodes when they were not\nColumns in the columns/craft columns picker will be in alphabetical order\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.15"]
time_released = 2024-07-21T18:30:48.683
changelog = "### Added\n\n- The craft window will warn you when a Universalis request failed, listing the date it happened, and to inform the user of a back off period. It will also warn the user if they make too many requests in a given time period(due to too many plugins making requests).\n\n### Fixed\n\n- Changing the \"Retainer Retrieval\" setting via the Retainer Bell icon in the craft settings column will refresh the craft list properly.\n- Fixed caching of the \"Columns\" tab that meant that some available columns would not show up.\n- The windows tab in the main configuration window had somehow been lost in the shuffle, it's back where it should be.\n- Some of the vendors were not parsing due to a bug in LuminaSupplemental, those vendors should now show again.\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.9"]
time_released = 2024-07-08T19:10:31.423
changelog = "**Allagan Tools 1.7.0.9**\n- Company Credit will now track again\n- Import/Export of lists works properly again\n- Trial Synthesis will no longer count towards craft lists\n- Rolled back a fix applied to counter a bug in dalamud(those with inventory not scanning issues should hopefully be sorted)\n- Stopped an old migration from running that would duplicate certain columns\n- Console Games Wiki links for items with a # will now be correct\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.2.4"]
time_released = 2024-02-13T18:30:29.332
changelog = "**Fixes**\n- Fix potential STG crash related to fonts\n"
[channels.stable.plugins.InventoryTools.changelogs."1.2.0.5"]
time_released = 2022-09-10T19:01:10.341
changelog = "Mini update, one new feature and a refresh on some of the data sourced from garland tools for 6.2\n- Thanks to @sabrinaxiv we have a new setting for tooltips, 'Limit to items belonging to the current character?'"
[channels.stable.plugins.InventoryTools.changelogs."1.6.1.6"]
time_released = 2023-09-12T19:12:49.277
changelog = "**New Features**\n- Added in a gathered by filter and column\n"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.1"]
time_released = 2023-05-09T20:42:33.897
changelog = "**House Storage has arrived**\nSo this took a while but it has finally come to fruition. A few things to note:\n\n- To have a house register with the plugin you must first enter it, have permission and then open the 'Indoor Furnishings' menu. This will allow for the plugin to see you own the house and add it to your 'Characters' list.\n- Once the house is registered due to the way the inventory data of each section is provided, you must enter each section to have it be parsed by the plugin. For Indoor and Outdoor Furnishings you must enter the storeroom tab before that data is collected.\n- For Interior Fixtures open the relevant section in the housing menu.\n- There's a lot of moving parts so if you run into issues, bugs or crashes hit up the #plugin-help-forum on discord.\n- I'll be working on making the 'Is Housing Item' filter a bit more reliable as this might be more important now.\n\nOther Fixes:\nFix to workshop items not having the full set of materials in craft lists\nStopped the FC name from being wiped out\nAdded has been gathered column and filter\nNew /moreinfo or /itemwindow command added that will accept either an item's name or ID and show the more item information window\n"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.2"]
time_released = 2023-05-24T14:36:04.974
changelog = "**6.4 - Tears of the Plogon**\nSupport for 6.4\nUpdated patch data for items\nUpdated coffer contents\nUpdated shop items\nHide the fabled Diadchos Sword\nMore Information context menu disabled for now\nA good egg provided more NPC spawn data <3\n"
[channels.stable.plugins.InventoryTools.changelogs."1.5.0.7"]
time_released = 2023-06-12T22:54:05.018
changelog = "Tetris has returned! Turn it on in the 'Fun' section within Settings -> General\nThe add item search field now accepts advanced filters (||,&&,!, etc)\nAdded an extra ~800 mob drops, the data should be far more complete and include drops from the latest expansion\n"
[channels.stable.plugins.InventoryTools.changelogs."1.6.1.0"]
time_released = 2023-07-15T15:25:36.247
changelog = "This is the live release of the crafting update for Allagan Tools which brings it closer to being a full replacement of some of the existing external tools. The update includes the following changes: \n\n- Improved handling of items with sources other than crafting. Sourcing can be configured via a priority system and then overridden per item\n- There are now options to group the items in the craft list\n - Precrafts: Class, Depth, Together\n - Everything Else: Zone, Together\n - Crystals/Currency: Seperate/Together\n- NQ/HQ can be configured per item\n- Retainer Retrieval can be configured per item\n- Any item can be added to a craft list(completion tracking for non-craft items will come later)\n- Teleporation and zoning for vendors has been greatly improved\n- There has been a lot of changes under the hood to accommodate these changes so any issues please head to the #plugin-help-forum\nA inventory history module has also been added, it's still very new and is opt in, the plugin will prompt you when you open the new \"History\" filter if you wish to turn it on.\n\nAlso massive thanks to KiwiKahawai for helping me test this thing and helping me reign in my constant feature creep :slight_smile:\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.14"]
time_released = 2024-07-19T17:40:03.604
changelog = "### Added\n\n- Added a calamity salvager filter and column, also items that can be purchased from a calamity salvager will be listed within the item window for applicable items.\n\n### Fixed\n\n- Fixed a bug that would list missing ingredients for a craft even if they weren't missing\n- Fixed duplicate patch data that was breaking the patch column\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.2.0.17"]
time_released = 2023-01-29T12:37:15.403
changelog = "This is a bug fix release. Fixed an issue when you initially add in a craft list. Have put in more code to help mitigate a potential saving crash. If anyone is crashing reliably and knows their way around a debugger, can they attach it and get a stack trace please."
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.19"]
time_released = 2024-07-30T16:01:24.879
changelog = "### Added\n\n- Added a new section to the item window that displays the possible recipes for an item and the ingredients for each\n- Updated patch data for 7.05\n\n### Fixed\n\n- Attempting to open the craft log via AT will no longer be allowed while crafting\n- Fixed a bug that would cause the Gather/Purchase/Buy column to break how right clicking interacted with the tables\n\n"
[channels.stable.plugins.InventoryTools.changelogs."1.7.0.20"]